diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..b0ee5d8 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,55 @@ +# Contributing + +Contributions are **welcome** and will be fully **credited**. + +Please read and understand the contribution guide before creating an issue or pull request. + +## Etiquette + +This project is open source, and as such, the maintainers give their free time to build and maintain the source code +held within. They make the code freely available in the hope that it will be of use to other developers. It would be +extremely unfair for them to suffer abuse or anger for their hard work. + +Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the +world that developers are civilized and selfless people. + +It's the duty of the maintainer to ensure that all submissions to the project are of sufficient +quality to benefit the project. Many developers have different skills, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used. + +## Viability + +When requesting or submitting new features, first consider whether it might be useful to others. Open +source projects are used by many developers, who may have entirely different needs to your own. Think about +whether or not your feature is likely to be used by other users of the project. + +## Procedure + +Before filing an issue: + +- Attempt to replicate the problem, to ensure that it wasn't a coincidental incident. +- Check to make sure your feature suggestion isn't already present within the project. +- Check the pull requests tab to ensure that the bug doesn't have a fix in progress. +- Check the pull requests tab to ensure that the feature isn't already in progress. + +Before submitting a pull request: + +- Check the codebase to ensure that your feature doesn't already exist. +- Check the pull requests to ensure that another person hasn't already submitted the feature or fix. + +## Requirements + +If the project maintainer has any additional requirements, you will find them listed here. + +- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://pear.php.net/package/PHP_CodeSniffer). + +- **Add tests!** - Your patch won't be accepted if it doesn't have tests. + +- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. + +- **Consider our release cycle** - We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option. + +- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. + +- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. + +**Happy coding**! diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..8fa85ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,66 @@ +name: Bug Report +description: Report an Issue or Bug with the Package +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + We're sorry to hear you have a problem. Can you help us solve it by providing the following details. + - type: textarea + id: what-happened + attributes: + label: What happened? + description: What did you expect to happen? + placeholder: I cannot currently do X thing because when I do, it breaks X thing. + validations: + required: true + - type: textarea + id: how-to-reproduce + attributes: + label: How to reproduce the bug + description: How did this occur, please add any config values used and provide a set of reliable steps if possible. + placeholder: When I do X I see Y. + validations: + required: true + - type: input + id: package-version + attributes: + label: Package Version + description: What version of our Package are you running? Please be as specific as possible + placeholder: 2.0.0 + validations: + required: true + - type: input + id: php-version + attributes: + label: PHP Version + description: What version of PHP are you running? Please be as specific as possible + placeholder: 8.2.0 + validations: + required: true + - type: input + id: laravel-version + attributes: + label: Laravel Version + description: What version of Laravel are you running? Please be as specific as possible + placeholder: 9.0.0 + validations: + required: true + - type: dropdown + id: operating-systems + attributes: + label: Which operating systems does with happen with? + description: You may select more than one. + multiple: true + options: + - macOS + - Windows + - Linux + - type: textarea + id: notes + attributes: + label: Notes + description: Use this field to provide any other notes that you feel might be relevant to the issue. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f96f504 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question + url: https://github.com/tomatophp/filament-locations/discussions/new?category=q-a + about: Ask the community for help + - name: Request a feature + url: https://github.com/tomatophp/filament-locations/discussions/new?category=ideas + about: Share ideas for new features + - name: Report a security issue + url: https://github.com/tomatophp/filament-locations/security/policy + about: Learn how to notify us for sensitive bugs diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..b2490a9 --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,3 @@ +# Security Policy + +If you discover any security related issues, please email info@3x1.io instead of using the issue tracker. diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0bc378d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependencies" diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..27c23a4 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,32 @@ +name: dependabot-auto-merge +on: pull_request_target + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2.2.0 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + + - name: Auto-merge Dependabot PRs for semver-minor updates + if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}} + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + + - name: Auto-merge Dependabot PRs for semver-patch updates + if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}} + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/fix-php-code-styling.yml b/.github/workflows/fix-php-code-styling.yml new file mode 100644 index 0000000..e71024d --- /dev/null +++ b/.github/workflows/fix-php-code-styling.yml @@ -0,0 +1,30 @@ +name: 'PHP Code Styling' + +on: + workflow_dispatch: + push: + branches: + - master + paths: + - '**.php' + +permissions: + contents: write + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + + - name: Fix PHP code style issues + uses: aglipanci/laravel-pint-action@v2 + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "Format Code" + commit_user_name: 'GitHub Actions' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..14a3ed3 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,68 @@ +name: "Tests" + +on: + workflow_dispatch: + push: + branches: + - master + paths: + - '**.php' + pull_request: + types: + - opened + - synchronize + branches: + - master + paths: + - '**.php' + - '.github/workflows/tests.yml' + - 'phpunit.xml.dist' + - 'composer.json' + - 'composer.lock' + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest] + php: [8.3, 8.2] + laravel: [11.*] + stability: [prefer-stable] + include: + - laravel: 11.* + testbench: 9.* + carbon: 3.* + collision: 8.* + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Cache Dependencies + uses: actions/cache@v4 + with: + path: ~/.composer/cache/files + key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo + coverage: none + + - name: Install Dependencies + run: | + echo "::add-matcher::${{ runner.tool_cache }}/php.json" + echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + + - name: Install Dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" "nunomaduro/collision:${{ matrix.collision }}" --no-interaction --no-update + composer update --${{ matrix.stability }} --prefer-dist --no-interaction + composer db + + - name: Execute tests + run: vendor/bin/pest diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4f23795 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +.DS_Store +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode +/.zed diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 0000000..4123157 --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,37 @@ +notPath('bootstrap/*') + ->notPath('storage/*') + ->notPath('resources/view/mail/*') + ->in([ + __DIR__ . '/src', + __DIR__ . '/tests', + ]) + ->name('*.php') + ->notName('*.blade.php') + ->ignoreDotFiles(true) + ->ignoreVCS(true); + +return (new PhpCsFixer\Config()) + ->setRules([ + '@PSR2' => true, + 'array_syntax' => ['syntax' => 'short'], + 'ordered_imports' => ['sort_algorithm' => 'alpha'], + 'no_unused_imports' => true, + 'not_operator_with_successor_space' => true, + 'trailing_comma_in_multiline' => true, + 'phpdoc_scalar' => true, + 'unary_operator_spaces' => true, + 'binary_operator_spaces' => true, + 'blank_line_before_statement' => [ + 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], + ], + 'phpdoc_single_line_var_spacing' => true, + 'phpdoc_var_without_name' => true, + 'method_argument_space' => [ + 'on_multiline' => 'ensure_fully_multiline', + 'keep_multiple_spaces_after_comma' => true, + ] + ]) + ->setFinder($finder); diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..18c9147 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,128 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. diff --git a/README.md b/README.md index 78a99c1..5d2748b 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,14 @@ finally reigster the plugin on `/app/Providers/Filament/AdminPanelProvider.php` ->plugin(\TomatoPHP\FilamentLocations\FilamentLocationsPlugin::make()) ``` +## Currency Helper + +```php +dollar($amount) +``` + +it will return the money amount with the currency symbol + ## Publish Assets you can publish config file by use this command diff --git a/composer.json b/composer.json index c68b460..df123f9 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,9 @@ }, "autoload-dev": { "psr-4": { - "Tests\\": "tests/" + "TomatoPHP\\FilamentLocations\\Tests\\": "tests/src/", + "TomatoPHP\\FilamentLocations\\Tests\\Database\\Factories\\": "tests/database/factories", + "TomatoPHP\\FilamentLocations\\Tests\\Database\\Seeders\\": "tests/database/seeder" } }, "extra": { @@ -36,9 +38,39 @@ "email": "info@3x1.io" } ], + "scripts": { + "testbench": "vendor/bin/testbench package:discover --ansi", + "db": "vendor/bin/testbench package:create-sqlite-db && vendor/bin/testbench migrate && vendor/bin/testbench migrate:fresh", + "analyse": "vendor/bin/phpstan analyse src tests", + "test": "vendor/bin/pest", + "test-coverage": "vendor/bin/pest --coverage", + "format": "vendor/bin/pint" + }, + "config": { + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true + } + }, "require": { "php": "^8.1|^8.2", "tomatophp/console-helpers": "^1.1", - "filament/filament": "^3.0.0" - } + "filament/filament": "^3.2", + "tomatophp/filament-settings-hub": "^2.0", + "calebporzio/sushi": "*" + }, + "require-dev": { + "laravel/pint": "^1.18", + "livewire/livewire": "^2.10|^3.0", + "nunomaduro/larastan": "^2.9", + "orchestra/testbench": "^9.5", + "pestphp/pest": "^2.36", + "pestphp/pest-plugin-laravel": "^2.4", + "pestphp/pest-plugin-livewire": "^2.1", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan-deprecation-rules": "^1.2", + "phpstan/phpstan-phpunit": "^1.4" + }, + "version": "2.0.0" } diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..5e1074b --- /dev/null +++ b/composer.lock @@ -0,0 +1,12304 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "1e2f2d29dda34848612a4977ad820d43", + "packages": [ + { + "name": "anourvalar/eloquent-serialize", + "version": "1.2.26", + "source": { + "type": "git", + "url": "https://github.com/AnourValar/eloquent-serialize.git", + "reference": "756c1232ff0d02321fd90f4fe3c221d6a7b8d697" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/756c1232ff0d02321fd90f4fe3c221d6a7b8d697", + "reference": "756c1232ff0d02321fd90f4fe3c221d6a7b8d697", + "shasum": "" + }, + "require": { + "laravel/framework": "^8.0|^9.0|^10.0|^11.0", + "php": "^7.4|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.26", + "laravel/legacy-factories": "^1.1", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5|^10.5", + "psalm/plugin-laravel": "^2.8", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade" + } + } + }, + "autoload": { + "psr-4": { + "AnourValar\\EloquentSerialize\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Laravel Query Builder (Eloquent) serialization", + "homepage": "https://github.com/AnourValar/eloquent-serialize", + "keywords": [ + "anourvalar", + "builder", + "copy", + "eloquent", + "job", + "laravel", + "query", + "querybuilder", + "queue", + "serializable", + "serialization", + "serialize" + ], + "support": { + "issues": "https://github.com/AnourValar/eloquent-serialize/issues", + "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.26" + }, + "time": "2024-11-16T12:29:47+00:00" + }, + { + "name": "blade-ui-kit/blade-heroicons", + "version": "2.5.0", + "source": { + "type": "git", + "url": "https://github.com/blade-ui-kit/blade-heroicons.git", + "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/4ed3ed08e9ac192d0d126b2f12711d6fb6576a48", + "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48", + "shasum": "" + }, + "require": { + "blade-ui-kit/blade-icons": "^1.6", + "illuminate/support": "^9.0|^10.0|^11.0", + "php": "^8.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5|^11.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "BladeUI\\Heroicons\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dries Vints", + "homepage": "https://driesvints.com" + } + ], + "description": "A package to easily make use of Heroicons in your Laravel Blade views.", + "homepage": "https://github.com/blade-ui-kit/blade-heroicons", + "keywords": [ + "Heroicons", + "blade", + "laravel" + ], + "support": { + "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", + "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.5.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/driesvints", + "type": "github" + }, + { + "url": "https://www.paypal.com/paypalme/driesvints", + "type": "paypal" + } + ], + "time": "2024-11-18T19:59:07+00:00" + }, + { + "name": "blade-ui-kit/blade-icons", + "version": "1.7.2", + "source": { + "type": "git", + "url": "https://github.com/blade-ui-kit/blade-icons.git", + "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/75a54a3f5a2810fcf6574ab23e91b6cc229a1b53", + "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0", + "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "illuminate/view": "^8.0|^9.0|^10.0|^11.0", + "php": "^7.4|^8.0", + "symfony/console": "^5.3|^6.0|^7.0", + "symfony/finder": "^5.3|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.5.1", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5|^11.0" + }, + "bin": [ + "bin/blade-icons-generate" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "BladeUI\\Icons\\BladeIconsServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "BladeUI\\Icons\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dries Vints", + "homepage": "https://driesvints.com" + } + ], + "description": "A package to easily make use of icons in your Laravel Blade views.", + "homepage": "https://github.com/blade-ui-kit/blade-icons", + "keywords": [ + "blade", + "icons", + "laravel", + "svg" + ], + "support": { + "issues": "https://github.com/blade-ui-kit/blade-icons/issues", + "source": "https://github.com/blade-ui-kit/blade-icons" + }, + "funding": [ + { + "url": "https://github.com/sponsors/driesvints", + "type": "github" + }, + { + "url": "https://www.paypal.com/paypalme/driesvints", + "type": "paypal" + } + ], + "time": "2024-10-17T17:38:00+00:00" + }, + { + "name": "brick/math", + "version": "0.12.1", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "5.16.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.12.1" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-11-29T23:19:16+00:00" + }, + { + "name": "calebporzio/sushi", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/calebporzio/sushi.git", + "reference": "01dd34fe3374f5fb7ce63756c0419385e31cd532" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/calebporzio/sushi/zipball/01dd34fe3374f5fb7ce63756c0419385e31cd532", + "reference": "01dd34fe3374f5fb7ce63756c0419385e31cd532", + "shasum": "" + }, + "require": { + "ext-pdo_sqlite": "*", + "ext-sqlite3": "*", + "illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "php": "^7.1.3|^8.0" + }, + "require-dev": { + "doctrine/dbal": "^2.9 || ^3.1.4", + "orchestra/testbench": "3.8.* || 3.9.* || ^4.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^7.5 || ^8.4 || ^9.0 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Sushi\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Caleb Porzio", + "email": "calebporzio@gmail.com" + } + ], + "description": "Eloquent's missing \"array\" driver.", + "support": { + "source": "https://github.com/calebporzio/sushi/tree/v2.5.2" + }, + "funding": [ + { + "url": "https://github.com/calebporzio", + "type": "github" + } + ], + "time": "2024-04-24T15:23:03+00:00" + }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d", + "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "conflict": { + "doctrine/dbal": "<4.0.0 || >=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "danharrin/date-format-converter", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/danharrin/date-format-converter.git", + "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e", + "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/helpers.php", + "src/standards.php" + ], + "psr-4": { + "DanHarrin\\DateFormatConverter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dan Harrin", + "email": "dan@danharrin.com" + } + ], + "description": "Convert token-based date formats between standards.", + "homepage": "https://github.com/danharrin/date-format-converter", + "support": { + "issues": "https://github.com/danharrin/date-format-converter/issues", + "source": "https://github.com/danharrin/date-format-converter" + }, + "funding": [ + { + "url": "https://github.com/danharrin", + "type": "github" + } + ], + "time": "2024-06-13T09:38:44+00:00" + }, + { + "name": "danharrin/livewire-rate-limiting", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/danharrin/livewire-rate-limiting.git", + "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb", + "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb", + "shasum": "" + }, + "require": { + "illuminate/support": "^9.0|^10.0|^11.0", + "php": "^8.0" + }, + "require-dev": { + "livewire/livewire": "^3.0", + "livewire/volt": "^1.3", + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "DanHarrin\\LivewireRateLimiting\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dan Harrin", + "email": "dan@danharrin.com" + } + ], + "description": "Apply rate limiters to Laravel Livewire actions.", + "homepage": "https://github.com/danharrin/livewire-rate-limiting", + "support": { + "issues": "https://github.com/danharrin/livewire-rate-limiting/issues", + "source": "https://github.com/danharrin/livewire-rate-limiting" + }, + "funding": [ + { + "url": "https://github.com/danharrin", + "type": "github" + } + ], + "time": "2024-05-06T09:10:03+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/dbal", + "version": "4.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/dbal.git", + "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0", + "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^0.5.3|^1", + "php": "^8.1", + "psr/cache": "^1|^2|^3", + "psr/log": "^1|^2|^3" + }, + "require-dev": { + "doctrine/coding-standard": "12.0.0", + "fig/log-test": "^1", + "jetbrains/phpstorm-stubs": "2023.2", + "phpstan/phpstan": "1.12.6", + "phpstan/phpstan-phpunit": "1.4.0", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "10.5.30", + "psalm/plugin-phpunit": "0.19.0", + "slevomat/coding-standard": "8.13.1", + "squizlabs/php_codesniffer": "3.10.2", + "symfony/cache": "^6.3.8|^7.0", + "symfony/console": "^5.4|^6.3|^7.0", + "vimeo/psalm": "5.25.0" + }, + "suggest": { + "symfony/console": "For helpful console commands such as SQL execution and import of files." + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\DBAL\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + } + ], + "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", + "homepage": "https://www.doctrine-project.org/projects/dbal.html", + "keywords": [ + "abstraction", + "database", + "db2", + "dbal", + "mariadb", + "mssql", + "mysql", + "oci8", + "oracle", + "pdo", + "pgsql", + "postgresql", + "queryobject", + "sasql", + "sql", + "sqlite", + "sqlserver", + "sqlsrv" + ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/4.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", + "type": "tidelift" + } + ], + "time": "2024-10-10T18:01:27+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + }, + "time": "2024-01-30T19:34:25+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2023-10-06T06:47:41+00:00" + }, + { + "name": "filament/actions", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/actions.git", + "reference": "631b38a36f5209a3884182acee60a0db682c6d24" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/actions/zipball/631b38a36f5209a3884182acee60a0db682c6d24", + "reference": "631b38a36f5209a3884182acee60a0db682c6d24", + "shasum": "" + }, + "require": { + "anourvalar/eloquent-serialize": "^1.2", + "filament/forms": "self.version", + "filament/infolists": "self.version", + "filament/notifications": "self.version", + "filament/support": "self.version", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/database": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "league/csv": "^9.14", + "openspout/openspout": "^4.23", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Actions\\ActionsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Actions\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful action modals to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:31+00:00" + }, + { + "name": "filament/filament", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/panels.git", + "reference": "3f170b1c57033ad8e9e6bd71f3dc3f0665bf3ae9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/panels/zipball/3f170b1c57033ad8e9e6bd71f3dc3f0665bf3ae9", + "reference": "3f170b1c57033ad8e9e6bd71f3dc3f0665bf3ae9", + "shasum": "" + }, + "require": { + "danharrin/livewire-rate-limiting": "^0.3|^1.0", + "filament/actions": "self.version", + "filament/forms": "self.version", + "filament/infolists": "self.version", + "filament/notifications": "self.version", + "filament/support": "self.version", + "filament/tables": "self.version", + "filament/widgets": "self.version", + "illuminate/auth": "^10.45|^11.0", + "illuminate/console": "^10.45|^11.0", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/cookie": "^10.45|^11.0", + "illuminate/database": "^10.45|^11.0", + "illuminate/http": "^10.45|^11.0", + "illuminate/routing": "^10.45|^11.0", + "illuminate/session": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "illuminate/view": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\FilamentServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/global_helpers.php", + "src/helpers.php" + ], + "psr-4": { + "Filament\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A collection of full-stack components for accelerated Laravel app development.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:35+00:00" + }, + { + "name": "filament/forms", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/forms.git", + "reference": "c73351c086036bd8de24e8671fd97018942d6d61" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/c73351c086036bd8de24e8671fd97018942d6d61", + "reference": "c73351c086036bd8de24e8671fd97018942d6d61", + "shasum": "" + }, + "require": { + "danharrin/date-format-converter": "^0.3", + "filament/actions": "self.version", + "filament/support": "self.version", + "illuminate/console": "^10.45|^11.0", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/database": "^10.45|^11.0", + "illuminate/filesystem": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "illuminate/validation": "^10.45|^11.0", + "illuminate/view": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Forms\\FormsServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Filament\\Forms\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful forms to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:31+00:00" + }, + { + "name": "filament/infolists", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/infolists.git", + "reference": "7946035f47746e69ff9d98bfed04b0248000ee2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/infolists/zipball/7946035f47746e69ff9d98bfed04b0248000ee2e", + "reference": "7946035f47746e69ff9d98bfed04b0248000ee2e", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/support": "self.version", + "illuminate/console": "^10.45|^11.0", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/database": "^10.45|^11.0", + "illuminate/filesystem": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "illuminate/view": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Infolists\\InfolistsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Infolists\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful read-only infolists to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:31+00:00" + }, + { + "name": "filament/notifications", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/notifications.git", + "reference": "c19df07c801c5550de0d30957c5a316f53019533" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/c19df07c801c5550de0d30957c5a316f53019533", + "reference": "c19df07c801c5550de0d30957c5a316f53019533", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/support": "self.version", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/filesystem": "^10.45|^11.0", + "illuminate/notifications": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Notifications\\NotificationsServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Testing/Autoload.php" + ], + "psr-4": { + "Filament\\Notifications\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful notifications to any Livewire app.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-10-23T07:36:14+00:00" + }, + { + "name": "filament/spatie-laravel-settings-plugin", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/spatie-laravel-settings-plugin.git", + "reference": "8d9f1a19147e2cf765d353bb7250f92f866fc78f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/spatie-laravel-settings-plugin/zipball/8d9f1a19147e2cf765d353bb7250f92f866fc78f", + "reference": "8d9f1a19147e2cf765d353bb7250f92f866fc78f", + "shasum": "" + }, + "require": { + "filament/filament": "self.version", + "illuminate/console": "^10.45|^11.0", + "illuminate/filesystem": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-settings": "^2.2|^3.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\SpatieLaravelSettingsPluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Filament support for `spatie/laravel-settings`.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-10-16T12:07:29+00:00" + }, + { + "name": "filament/support", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/support.git", + "reference": "13b1e485d3bc993950c9e61a3f6a8cb05efd2b96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/support/zipball/13b1e485d3bc993950c9e61a3f6a8cb05efd2b96", + "reference": "13b1e485d3bc993950c9e61a3f6a8cb05efd2b96", + "shasum": "" + }, + "require": { + "blade-ui-kit/blade-heroicons": "^2.2.1", + "doctrine/dbal": "^3.2|^4.0", + "ext-intl": "*", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "illuminate/view": "^10.45|^11.0", + "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0", + "livewire/livewire": "^3.4.10", + "php": "^8.1", + "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0", + "spatie/color": "^1.5", + "spatie/invade": "^1.0|^2.0", + "spatie/laravel-package-tools": "^1.9", + "symfony/console": "^6.0|^7.0", + "symfony/html-sanitizer": "^6.1|^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Support\\SupportServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Filament\\Support\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Core helper methods and foundation code for all Filament packages.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:51+00:00" + }, + { + "name": "filament/tables", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/tables.git", + "reference": "5f1b04952080e71f3f72bae3801f2757619722e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/5f1b04952080e71f3f72bae3801f2757619722e7", + "reference": "5f1b04952080e71f3f72bae3801f2757619722e7", + "shasum": "" + }, + "require": { + "filament/actions": "self.version", + "filament/forms": "self.version", + "filament/support": "self.version", + "illuminate/console": "^10.45|^11.0", + "illuminate/contracts": "^10.45|^11.0", + "illuminate/database": "^10.45|^11.0", + "illuminate/filesystem": "^10.45|^11.0", + "illuminate/support": "^10.45|^11.0", + "illuminate/view": "^10.45|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Tables\\TablesServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Tables\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful tables to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:47+00:00" + }, + { + "name": "filament/widgets", + "version": "v3.2.124", + "source": { + "type": "git", + "url": "https://github.com/filamentphp/widgets.git", + "reference": "59a907af93c9027180e2bac5879f35b5fb11c96f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filamentphp/widgets/zipball/59a907af93c9027180e2bac5879f35b5fb11c96f", + "reference": "59a907af93c9027180e2bac5879f35b5fb11c96f", + "shasum": "" + }, + "require": { + "filament/support": "self.version", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Filament\\Widgets\\WidgetsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Filament\\Widgets\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Easily add beautiful dashboard widgets to any Livewire component.", + "homepage": "https://github.com/filamentphp/filament", + "support": { + "issues": "https://github.com/filamentphp/filament/issues", + "source": "https://github.com/filamentphp/filament" + }, + "time": "2024-11-13T16:35:48+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "genealabs/laravel-model-caching", + "version": "11.0.1", + "source": { + "type": "git", + "url": "https://github.com/mikebronner/laravel-model-caching.git", + "reference": "2a38f0f1ed3554cf2da272d66c4d08a7885f196b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mikebronner/laravel-model-caching/zipball/2a38f0f1ed3554cf2da272d66c4d08a7885f196b", + "reference": "2a38f0f1ed3554cf2da272d66c4d08a7885f196b", + "shasum": "" + }, + "require": { + "genealabs/laravel-pivot-events": "^10.0|^11.0", + "illuminate/cache": "^10.0|^11.0", + "illuminate/config": "^10.0|^11.0", + "illuminate/console": "^10.0|^11.0", + "illuminate/container": "^10.0|^11.0", + "illuminate/database": "^10.0|^11.0", + "illuminate/http": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "php": ">=8.1" + }, + "require-dev": { + "doctrine/dbal": "^3.3", + "fakerphp/faker": "^1.11", + "laravel/legacy-factories": "^1.3", + "laravel/nova": "^4.0", + "orchestra/testbench": "^8.0|^9.0", + "orchestra/testbench-browser-kit": "^8.0", + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.0", + "slevomat/coding-standard": "^7.0|^8.14", + "squizlabs/php_codesniffer": "^3.6", + "symfony/thanks": "^1.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "GeneaLabs\\LaravelModelCaching\\Providers\\Service" + ] + } + }, + "autoload": { + "psr-4": { + "GeneaLabs\\LaravelModelCaching\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike Bronner", + "email": "hello@genealabs.com" + } + ], + "description": "Automatic caching for Eloquent models.", + "support": { + "issues": "https://github.com/mikebronner/laravel-model-caching/issues", + "source": "https://github.com/mikebronner/laravel-model-caching/tree/11.0.1" + }, + "time": "2024-03-14T23:34:57+00:00" + }, + { + "name": "genealabs/laravel-pivot-events", + "version": "11.0.0", + "source": { + "type": "git", + "url": "https://github.com/mikebronner/laravel-pivot-events.git", + "reference": "16e974d80160774641f4323f5ffb757b79f300d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mikebronner/laravel-pivot-events/zipball/16e974d80160774641f4323f5ffb757b79f300d3", + "reference": "16e974d80160774641f4323f5ffb757b79f300d3", + "shasum": "" + }, + "require": { + "illuminate/database": "^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0" + }, + "require-dev": { + "orchestra/testbench": "^9.0", + "phpunit/phpunit": "^10.5", + "symfony/thanks": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "GeneaLabs\\LaravelPivotEvents\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike Bronner", + "email": "hello@genealabs.com", + "homepage": "https://genealabs.com", + "role": "Developer" + } + ], + "description": "This package introduces new eloquent events for sync(), attach(), detach() or updateExistingPivot() methods on BelongsToMany relation.", + "homepage": "https://github.com/mikebronner/laravel-pivot-events", + "keywords": [ + "eloquent events", + "eloquent extra events", + "laravel BelongsToMany events", + "laravel pivot events", + "laravel sync events" + ], + "support": { + "issues": "https://github.com/mikebronner/laravel-pivot-events/issues", + "source": "https://github.com/mikebronner/laravel-pivot-events" + }, + "time": "2024-03-14T23:24:54+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:45:45+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2024-07-24T11:22:20+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2024-10-17T10:06:22+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2024-07-18T11:15:46+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-12-03T19:50:20+00:00" + }, + { + "name": "kirschbaum-development/eloquent-power-joins", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git", + "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3c1af9b86b02f1e39219849c1d2fee7cf77e8638", + "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638", + "shasum": "" + }, + "require": { + "illuminate/database": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "dev-master", + "laravel/legacy-factories": "^1.0@dev", + "orchestra/testbench": "^8.0|^9.0", + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Kirschbaum\\PowerJoins\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Luis Dalmolin", + "email": "luis.nh@gmail.com", + "role": "Developer" + } + ], + "description": "The Laravel magic applied to joins.", + "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins", + "keywords": [ + "eloquent", + "join", + "laravel", + "mysql" + ], + "support": { + "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues", + "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.0.1" + }, + "time": "2024-11-26T13:22:08+00:00" + }, + { + "name": "laravel/framework", + "version": "v11.34.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "ed07324892c87277b7d37ba76b1a6f93a37401b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/ed07324892c87277b7d37ba76b1a6f93a37401b5", + "reference": "ed07324892c87277b7d37ba76b1a6f93a37401b5", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.72.2|^3.4", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.0.3", + "symfony/error-handler": "^7.0.3", + "symfony/finder": "^7.0.3", + "symfony/http-foundation": "^7.0.3", + "symfony/http-kernel": "^7.0.3", + "symfony/mailer": "^7.0.3", + "symfony/mime": "^7.0.3", + "symfony/polyfill-php83": "^1.31", + "symfony/process": "^7.0.3", + "symfony/routing": "^7.0.3", + "symfony/uid": "^7.0.3", + "symfony/var-dumper": "^7.0.3", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" + }, + "conflict": { + "mockery/mockery": "1.6.8", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/log-implementation": "1.0|2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/concurrency": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^9.6", + "pda/pheanstalk": "^5.0.6", + "phpstan/phpstan": "^1.11.5", + "phpunit/phpunit": "^10.5.35|^11.3.6", + "predis/predis": "^2.3", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.0.3", + "symfony/http-client": "^7.0.3", + "symfony/psr-http-message-bridge": "^7.0.3", + "symfony/translation": "^7.0.3" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", + "mockery/mockery": "Required to use mocking (^1.6).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).", + "predis/predis": "Required to use the predis connector (^2.3).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Log/functions.php", + "src/Illuminate/Support/functions.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-11-26T21:32:01+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f", + "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "illuminate/collections": "^10.0|^11.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.2" + }, + "time": "2024-11-12T14:59:47+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "0d8d3d8086984996df86596a86dea60398093a81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/0d8d3d8086984996df86596a86dea60398093a81", + "reference": "0d8d3d8086984996df86596a86dea60398093a81", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "illuminate/support": "^10.0|^11.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2024-11-19T01:38:44+00:00" + }, + { + "name": "league/commonmark", + "version": "2.5.3", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.6-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-08-16T11:46:16+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/csv", + "version": "9.18.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/csv.git", + "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/b02d010e4055ae992247f6ffd1e7b103ef2a0790", + "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1.2" + }, + "require-dev": { + "ext-dom": "*", + "ext-xdebug": "*", + "friendsofphp/php-cs-fixer": "^3.64.0", + "phpbench/phpbench": "^1.3.1", + "phpstan/phpstan": "^1.12.6", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", + "phpunit/phpunit": "^10.5.16 || ^11.4.1", + "symfony/var-dumper": "^6.4.8 || ^7.1.5" + }, + "suggest": { + "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", + "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "League\\Csv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://github.com/nyamsprod/", + "role": "Developer" + } + ], + "description": "CSV data manipulation made easy in PHP", + "homepage": "https://csv.thephpleague.com", + "keywords": [ + "convert", + "csv", + "export", + "filter", + "import", + "read", + "transform", + "write" + ], + "support": { + "docs": "https://csv.thephpleague.com", + "issues": "https://github.com/thephpleague/csv/issues", + "rss": "https://github.com/thephpleague/csv/releases.atom", + "source": "https://github.com/thephpleague/csv" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-10-18T08:14:48+00:00" + }, + { + "name": "league/flysystem", + "version": "3.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "league/uri", + "version": "7.4.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4", + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.3", + "php": "^8.1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.4.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-03-23T07:42:40+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.4.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-03-23T07:42:40+00:00" + }, + { + "name": "livewire/livewire", + "version": "v3.5.12", + "source": { + "type": "git", + "url": "https://github.com/livewire/livewire.git", + "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d", + "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d", + "shasum": "" + }, + "require": { + "illuminate/database": "^10.0|^11.0", + "illuminate/routing": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "illuminate/validation": "^10.0|^11.0", + "laravel/prompts": "^0.1.24|^0.2|^0.3", + "league/mime-type-detection": "^1.9", + "php": "^8.1", + "symfony/console": "^6.0|^7.0", + "symfony/http-kernel": "^6.2|^7.0" + }, + "require-dev": { + "calebporzio/sushi": "^2.1", + "laravel/framework": "^10.15.0|^11.0", + "mockery/mockery": "^1.3.1", + "orchestra/testbench": "^8.21.0|^9.0", + "orchestra/testbench-dusk": "^8.24|^9.1", + "phpunit/phpunit": "^10.4", + "psy/psysh": "^0.11.22|^0.12" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Livewire\\LivewireServiceProvider" + ], + "aliases": { + "Livewire": "Livewire\\Livewire" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Livewire\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Caleb Porzio", + "email": "calebporzio@gmail.com" + } + ], + "description": "A front-end framework for Laravel.", + "support": { + "issues": "https://github.com/livewire/livewire/issues", + "source": "https://github.com/livewire/livewire/tree/v3.5.12" + }, + "funding": [ + { + "url": "https://github.com/livewire", + "type": "github" + } + ], + "time": "2024-10-15T19:35:06+00:00" + }, + { + "name": "masterminds/html5", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + } + ], + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + }, + "time": "2024-03-31T07:05:07+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.8.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67", + "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.8.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2024-11-12T13:57:08+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.8.2", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947", + "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.57.2", + "kylekatarnls/multi-tester": "^2.5.3", + "ondrejmirtes/better-reflection": "^6.25.0.4", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan": "^1.11.2", + "phpunit/phpunit": "^10.5.20", + "squizlabs/php_codesniffer": "^3.9.0" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2024-11-07T17:46:48+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.4" + }, + "require-dev": { + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.5", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.5" + }, + "time": "2024-08-07T15:39:19+00:00" + }, + { + "name": "nicmart/tree", + "version": "0.8.0", + "source": { + "type": "git", + "url": "https://github.com/nicmart/Tree.git", + "reference": "8d02952acc9779a2c14f7a9c4ac1650c3dacb545" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nicmart/Tree/zipball/8d02952acc9779a2c14f7a9c4ac1650c3dacb545", + "reference": "8d02952acc9779a2c14f7a9c4ac1650c3dacb545", + "shasum": "" + }, + "require": { + "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.31.0", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.13.0", + "fakerphp/faker": "^1.23.0", + "infection/infection": "~0.26.19", + "phpunit/phpunit": "^9.6.14", + "psalm/plugin-phpunit": "~0.18.4", + "vimeo/psalm": "^5.16.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Tree\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolò Martini", + "email": "nicmartnic@gmail.com" + }, + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.", + "support": { + "issues": "https://github.com/nicmart/Tree/issues", + "source": "https://github.com/nicmart/Tree/tree/0.8.0" + }, + "time": "2023-12-02T13:24:56+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.1.8" + }, + "require-dev": { + "illuminate/console": "^11.33.2", + "laravel/pint": "^1.18.2", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^7.1.8", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-11-21T10:39:51+00:00" + }, + { + "name": "openspout/openspout", + "version": "v4.27.0", + "source": { + "type": "git", + "url": "https://github.com/openspout/openspout.git", + "reference": "1841a6047b4d23d1d353821b8a03f8d599a94143" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/openspout/openspout/zipball/1841a6047b4d23d1d353821b8a03f8d599a94143", + "reference": "1841a6047b4d23d1d353821b8a03f8d599a94143", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-filter": "*", + "ext-libxml": "*", + "ext-xmlreader": "*", + "ext-zip": "*", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "ext-zlib": "*", + "friendsofphp/php-cs-fixer": "^3.65.0", + "infection/infection": "^0.29.8", + "phpbench/phpbench": "^1.3.1", + "phpstan/phpstan": "^2.0.2", + "phpstan/phpstan-phpunit": "^2.0.1", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^11.4.3" + }, + "suggest": { + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)", + "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "OpenSpout\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Adrien Loison", + "email": "adrien@box.com" + } + ], + "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way", + "homepage": "https://github.com/openspout/openspout", + "keywords": [ + "OOXML", + "csv", + "excel", + "memory", + "odf", + "ods", + "office", + "open", + "php", + "read", + "scale", + "spreadsheet", + "stream", + "write", + "xlsx" + ], + "support": { + "issues": "https://github.com/openspout/openspout/issues", + "source": "https://github.com/openspout/openspout/tree/v4.27.0" + }, + "funding": [ + { + "url": "https://paypal.me/filippotessarotto", + "type": "custom" + }, + { + "url": "https://github.com/Slamdunk", + "type": "github" + } + ], + "time": "2024-11-25T10:23:43+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a", + "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.0", + "php": "^7.3 || ^8.0", + "phpdocumentor/reflection-common": "^2.0", + "phpstan/phpdoc-parser": "^1.18|^2.0" + }, + "require-dev": { + "ext-tokenizer": "*", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^9.5", + "rector/rector": "^0.13.9", + "vimeo/psalm": "^4.25" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0" + }, + "time": "2024-11-09T15:12:26+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "phpstan/phpdoc-parser", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299", + "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^5.3.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^9.6", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0" + }, + "time": "2024-10-13T11:29:49+00:00" + }, + { + "name": "psr/cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/3.0.0" + }, + "time": "2021-02-03T23:26:27+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.6", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.6" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2024-04-27T21:32:50+00:00" + }, + { + "name": "ryangjchandler/blade-capture-directive", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/ryangjchandler/blade-capture-directive.git", + "reference": "cb6f58663d97f17bece176295240b740835e14f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1", + "reference": "cb6f58663d97f17bece176295240b740835e14f1", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^10.0|^11.0", + "php": "^8.1", + "spatie/laravel-package-tools": "^1.9.2" + }, + "require-dev": { + "nunomaduro/collision": "^7.0|^8.0", + "nunomaduro/larastan": "^2.0", + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.0", + "pestphp/pest-plugin-laravel": "^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^10.0", + "spatie/laravel-ray": "^1.26" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider" + ], + "aliases": { + "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective" + } + } + }, + "autoload": { + "psr-4": { + "RyanChandler\\BladeCaptureDirective\\": "src", + "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ryan Chandler", + "email": "support@ryangjchandler.co.uk", + "role": "Developer" + } + ], + "description": "Create inline partials in your Blade templates with ease.", + "homepage": "https://github.com/ryangjchandler/blade-capture-directive", + "keywords": [ + "blade-capture-directive", + "laravel", + "ryangjchandler" + ], + "support": { + "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues", + "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0" + }, + "funding": [ + { + "url": "https://github.com/ryangjchandler", + "type": "github" + } + ], + "time": "2024-02-26T18:08:49+00:00" + }, + { + "name": "spatie/browsershot", + "version": "4.4.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/browsershot.git", + "reference": "3ff350cd0a36943759e2932a27d8cd18c11e5fdc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/browsershot/zipball/3ff350cd0a36943759e2932a27d8cd18c11e5fdc", + "reference": "3ff350cd0a36943759e2932a27d8cd18c11e5fdc", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "ext-json": "*", + "php": "^8.2", + "spatie/temporary-directory": "^2.0", + "symfony/process": "^6.0|^7.0" + }, + "require-dev": { + "pestphp/pest": "^1.20", + "spatie/image": "^3.6", + "spatie/pdf-to-text": "^1.52", + "spatie/phpunit-snapshot-assertions": "^4.2.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Browsershot\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://github.com/freekmurze", + "role": "Developer" + } + ], + "description": "Convert a webpage to an image or pdf using headless Chrome", + "homepage": "https://github.com/spatie/browsershot", + "keywords": [ + "chrome", + "convert", + "headless", + "image", + "pdf", + "puppeteer", + "screenshot", + "webpage" + ], + "support": { + "source": "https://github.com/spatie/browsershot/tree/4.4.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-11-25T16:02:22+00:00" + }, + { + "name": "spatie/color", + "version": "1.6.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/color.git", + "reference": "4c540ffbef68a3df3d209718ae06deaab081e708" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/color/zipball/4c540ffbef68a3df3d209718ae06deaab081e708", + "reference": "4c540ffbef68a3df3d209718ae06deaab081e708", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "pestphp/pest": "^1.22", + "phpunit/phpunit": "^6.5||^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Color\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sebastian De Deyne", + "email": "sebastian@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A little library to handle color conversions", + "homepage": "https://github.com/spatie/color", + "keywords": [ + "color", + "conversion", + "rgb", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/color/issues", + "source": "https://github.com/spatie/color/tree/1.6.1" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-11-18T15:00:47+00:00" + }, + { + "name": "spatie/crawler", + "version": "8.2.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/crawler.git", + "reference": "c659f2fe4954249755990e42394a14d6d847a0a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/crawler/zipball/c659f2fe4954249755990e42394a14d6d847a0a7", + "reference": "c659f2fe4954249755990e42394a14d6d847a0a7", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^7.3", + "guzzlehttp/psr7": "^2.0", + "illuminate/collections": "^10.0|^11.0", + "nicmart/tree": "^0.8.0", + "php": "^8.1", + "spatie/browsershot": "^3.45|^4.0", + "spatie/robots-txt": "^2.0", + "symfony/dom-crawler": "^6.0|^7.0" + }, + "require-dev": { + "pestphp/pest": "^2.0", + "spatie/ray": "^1.37" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Crawler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be" + } + ], + "description": "Crawl all internal links found on a website", + "homepage": "https://github.com/spatie/crawler", + "keywords": [ + "crawler", + "link", + "spatie", + "website" + ], + "support": { + "issues": "https://github.com/spatie/crawler/issues", + "source": "https://github.com/spatie/crawler/tree/8.2.3" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + }, + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-07-31T10:46:19+00:00" + }, + { + "name": "spatie/invade", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/invade.git", + "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63", + "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "pestphp/pest": "^1.20", + "phpstan/phpstan": "^1.4", + "spatie/ray": "^1.28" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Spatie\\Invade\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "A PHP function to work with private properties and methods", + "homepage": "https://github.com/spatie/invade", + "keywords": [ + "invade", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/invade/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-05-17T09:06:10+00:00" + }, + { + "name": "spatie/laravel-package-tools", + "version": "1.16.6", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-package-tools.git", + "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1f26942dc1e5c49eacfced34fdbc29ed234bd7b3", + "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^9.28|^10.0|^11.0", + "php": "^8.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "orchestra/testbench": "^7.7|^8.0", + "pestphp/pest": "^1.22", + "phpunit/phpunit": "^9.5.24", + "spatie/pest-plugin-test-time": "^1.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\LaravelPackageTools\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "Tools for creating Laravel packages", + "homepage": "https://github.com/spatie/laravel-package-tools", + "keywords": [ + "laravel-package-tools", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/laravel-package-tools/issues", + "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.6" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-11-18T15:02:02+00:00" + }, + { + "name": "spatie/laravel-settings", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-settings.git", + "reference": "2da8cb5b051678725476b299ef8e13b2e5015260" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/2da8cb5b051678725476b299ef8e13b2e5015260", + "reference": "2da8cb5b051678725476b299ef8e13b2e5015260", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/database": "^8.73|^9.0|^10.0|^11.0", + "php": "^7.4|^8.0", + "phpdocumentor/type-resolver": "^1.5", + "spatie/temporary-directory": "^1.3|^2.0" + }, + "require-dev": { + "ext-redis": "*", + "larastan/larastan": "^2.0", + "mockery/mockery": "^1.4", + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.21|^2.0", + "pestphp/pest-plugin-laravel": "^1.2|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5|^10.0", + "spatie/laravel-data": "^1.0.0|^2.0.0|^4.0.0", + "spatie/pest-plugin-snapshots": "^1.1|^2.0", + "spatie/phpunit-snapshot-assertions": "^4.2|^5.0", + "spatie/ray": "^1.36" + }, + "suggest": { + "spatie/data-transfer-object": "Allows for DTO casting to settings. (deprecated)" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\LaravelSettings\\LaravelSettingsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Spatie\\LaravelSettings\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "Store your application settings", + "homepage": "https://github.com/spatie/laravel-settings", + "keywords": [ + "laravel-settings", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/laravel-settings/issues", + "source": "https://github.com/spatie/laravel-settings/tree/3.4.0" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + }, + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-09-20T13:48:17+00:00" + }, + { + "name": "spatie/laravel-sitemap", + "version": "7.2.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-sitemap.git", + "reference": "6d3d7637690a9710456a01bacabf5088f93ffe11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/6d3d7637690a9710456a01bacabf5088f93ffe11", + "reference": "6d3d7637690a9710456a01bacabf5088f93ffe11", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^7.8", + "illuminate/support": "^10.0|^11.0", + "nesbot/carbon": "^2.71|^3.0", + "php": "^8.2", + "spatie/crawler": "^8.0.1", + "spatie/laravel-package-tools": "^1.16.1", + "symfony/dom-crawler": "^6.3.4|^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.6.6", + "orchestra/testbench": "^8.14|^9.0", + "pestphp/pest": "^2.24", + "spatie/pest-plugin-snapshots": "^2.1", + "spatie/phpunit-snapshot-assertions": "^5.1.2", + "spatie/temporary-directory": "^2.2" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\Sitemap\\SitemapServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Spatie\\Sitemap\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "Create and generate sitemaps with ease", + "homepage": "https://github.com/spatie/laravel-sitemap", + "keywords": [ + "laravel-sitemap", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/laravel-sitemap/tree/7.2.1" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + } + ], + "time": "2024-05-21T12:31:34+00:00" + }, + { + "name": "spatie/robots-txt", + "version": "2.2.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/robots-txt.git", + "reference": "31763e5ca23fb0efa6dc6b700beb5ebfeab89432" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/robots-txt/zipball/31763e5ca23fb0efa6dc6b700beb5ebfeab89432", + "reference": "31763e5ca23fb0efa6dc6b700beb5ebfeab89432", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.0|^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Robots\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brent Roose", + "email": "brent@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "Determine if a page may be crawled from robots.txt and robots meta tags", + "homepage": "https://github.com/spatie/robots-txt", + "keywords": [ + "robots-txt", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/robots-txt/issues", + "source": "https://github.com/spatie/robots-txt/tree/2.2.3" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + }, + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-10-22T08:17:03+00:00" + }, + { + "name": "spatie/temporary-directory", + "version": "2.2.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/temporary-directory.git", + "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", + "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\TemporaryDirectory\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alex Vanderbist", + "email": "alex@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "Easily create, use and destroy temporary directories", + "homepage": "https://github.com/spatie/temporary-directory", + "keywords": [ + "php", + "spatie", + "temporary-directory" + ], + "support": { + "issues": "https://github.com/spatie/temporary-directory/issues", + "source": "https://github.com/spatie/temporary-directory/tree/2.2.1" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + }, + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2023-12-25T11:46:58+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "97bebc53548684c17ed696bc8af016880f0f098d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d", + "reference": "97bebc53548684c17ed696bc8af016880f0f098d", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/console", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5", + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-06T14:23:19+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/dom-crawler", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "794ddd5481ba15d8a04132c95e211cd5656e09fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/794ddd5481ba15d8a04132c95e211cd5656e09fb", + "reference": "794ddd5481ba15d8a04132c95e211cd5656e09fb", + "shasum": "" + }, + "require": { + "masterminds/html5": "^2.6", + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "require-dev": { + "symfony/css-selector": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\DomCrawler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases DOM navigation for HTML and XML documents", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-25T15:11:02+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.1.7", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "010e44661f4c6babaf8c4862fe68c24a53903342" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342", + "reference": "010e44661f4c6babaf8c4862fe68c24a53903342", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.1.7" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-05T15:34:55+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "87254c78dd50721cfd015b62277a8281c5589702" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702", + "reference": "87254c78dd50721cfd015b62277a8281c5589702", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8", + "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-01T08:31:23+00:00" + }, + { + "name": "symfony/html-sanitizer", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/html-sanitizer.git", + "reference": "a25620fc6407e14331f3c0c5668eb4f35c392d4a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/a25620fc6407e14331f3c0c5668eb4f35c392d4a", + "reference": "a25620fc6407e14331f3c0c5668eb4f35c392d4a", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "league/uri": "^6.5|^7.0", + "masterminds/html5": "^2.7.2", + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HtmlSanitizer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Titouan Galopin", + "email": "galopintitouan@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.", + "homepage": "https://symfony.com", + "keywords": [ + "Purifier", + "html", + "sanitizer" + ], + "support": { + "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112", + "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-09T09:16:45+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e", + "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.0.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^7.1", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^7.1", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-13T14:25:32+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd", + "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "caa1e521edb2650b8470918dfe51708c237f0598" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598", + "reference": "caa1e521edb2650b8470918dfe51708c237f0598", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-25T15:11:02+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892", + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-06T14:23:19+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a", + "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-01T08:31:23+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/string", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-13T13:31:21+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f", + "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-28T12:35:13+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "65befb3bb2d503bbffbd08c815aa38b472999917" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917", + "reference": "65befb3bb2d503bbffbd08c815aa38b472999917", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8", + "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.1.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-08T15:46:42+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.2.7", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" + }, + "time": "2023-12-08T13:03:43+00:00" + }, + { + "name": "tomatophp/console-helpers", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/tomatophp/console-helpers.git", + "reference": "69dd818a2bfa7d038467fb526be6c9b573d36a34" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tomatophp/console-helpers/zipball/69dd818a2bfa7d038467fb526be6c9b573d36a34", + "reference": "69dd818a2bfa7d038467fb526be6c9b573d36a34", + "shasum": "" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "TomatoPHP\\ConsoleHelpers\\ConsoleHelpersServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "TomatoPHP\\ConsoleHelpers\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fady Mondy", + "email": "EngFadyMondy@gmail.com" + } + ], + "description": "tons of helper you need for you artisan command line application", + "keywords": [ + "application", + "artisan", + "command", + "console", + "helpers", + "line" + ], + "support": { + "issues": "https://github.com/tomatophp/console-helpers/issues", + "source": "https://github.com/tomatophp/console-helpers/tree/v1.1.0" + }, + "funding": [ + { + "url": "https://github.com/3x1io", + "type": "github" + } + ], + "time": "2023-02-12T12:00:38+00:00" + }, + { + "name": "tomatophp/filament-settings-hub", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/tomatophp/filament-settings-hub.git", + "reference": "621bd1af3b287698384b6f13c827a715d93e3d2c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tomatophp/filament-settings-hub/zipball/621bd1af3b287698384b6f13c827a715d93e3d2c", + "reference": "621bd1af3b287698384b6f13c827a715d93e3d2c", + "shasum": "" + }, + "require": { + "filament/filament": "^3.2", + "filament/notifications": "^3.2", + "filament/spatie-laravel-settings-plugin": "^3.2", + "genealabs/laravel-model-caching": "^11.0", + "php": "^8.2|^8.3", + "spatie/laravel-sitemap": "^7.2", + "tomatophp/console-helpers": "^1.1" + }, + "require-dev": { + "laravel/pint": "^1.18", + "livewire/livewire": "^2.10|^3.0", + "nunomaduro/larastan": "^2.9", + "orchestra/testbench": "^9.5", + "pestphp/pest": "^2.36", + "pestphp/pest-plugin-laravel": "^2.4", + "pestphp/pest-plugin-livewire": "^2.1", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan-deprecation-rules": "^1.2", + "phpstan/phpstan-phpunit": "^1.4" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "TomatoPHP\\FilamentSettingsHub\\FilamentSettingsHubServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "TomatoPHP\\FilamentSettingsHub\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fady Mondy", + "email": "info@3x1.io" + } + ], + "description": "Manage your Filament app settings with GUI and helpers", + "keywords": [ + "Settings", + "filament", + "laravel", + "php", + "spatie-integrations", + "tomatophp" + ], + "support": { + "issues": "https://github.com/tomatophp/filament-settings-hub/issues", + "source": "https://github.com/tomatophp/filament-settings-hub/tree/v2.0.1" + }, + "funding": [ + { + "url": "https://github.com/3x1io", + "type": "github" + } + ], + "time": "2024-11-27T10:57:59+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:52:34+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "brianium/paratest", + "version": "v7.4.8", + "source": { + "type": "git", + "url": "https://github.com/paratestphp/paratest.git", + "reference": "cf16fcbb9b8107a7df6b97e497fc91e819774d8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/cf16fcbb9b8107a7df6b97e497fc91e819774d8b", + "reference": "cf16fcbb9b8107a7df6b97e497fc91e819774d8b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-pcre": "*", + "ext-reflection": "*", + "ext-simplexml": "*", + "fidry/cpu-core-counter": "^1.2.0", + "jean85/pretty-package-versions": "^2.0.6", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0", + "phpunit/php-code-coverage": "^10.1.16", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-timer": "^6.0.0", + "phpunit/phpunit": "^10.5.36", + "sebastian/environment": "^6.1.0", + "symfony/console": "^6.4.7 || ^7.1.5", + "symfony/process": "^6.4.7 || ^7.1.5" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0.0", + "ext-pcov": "*", + "ext-posix": "*", + "phpstan/phpstan": "^1.12.6", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", + "squizlabs/php_codesniffer": "^3.10.3", + "symfony/filesystem": "^6.4.3 || ^7.1.5" + }, + "bin": [ + "bin/paratest", + "bin/paratest_for_phpstorm" + ], + "type": "library", + "autoload": { + "psr-4": { + "ParaTest\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Scaturro", + "email": "scaturrob@gmail.com", + "role": "Developer" + }, + { + "name": "Filippo Tessarotto", + "email": "zoeslam@gmail.com", + "role": "Developer" + } + ], + "description": "Parallel testing for PHP", + "homepage": "https://github.com/paratestphp/paratest", + "keywords": [ + "concurrent", + "parallel", + "phpunit", + "testing" + ], + "support": { + "issues": "https://github.com/paratestphp/paratest/issues", + "source": "https://github.com/paratestphp/paratest/tree/v7.4.8" + }, + "funding": [ + { + "url": "https://github.com/sponsors/Slamdunk", + "type": "github" + }, + { + "url": "https://paypal.me/filippotessarotto", + "type": "paypal" + } + ], + "time": "2024-10-15T12:45:19+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-19T14:15:21+00:00" + }, + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "fidry/cpu-core-counter", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/theofidry/cpu-core-counter.git", + "reference": "8520451a140d3f46ac33042715115e290cf5785f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f", + "reference": "8520451a140d3f46ac33042715115e290cf5785f", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "fidry/makefile": "^0.2.0", + "fidry/php-cs-fixer-config": "^1.1.2", + "phpstan/extension-installer": "^1.2.0", + "phpstan/phpstan": "^1.9.2", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "phpstan/phpstan-phpunit": "^1.2.2", + "phpstan/phpstan-strict-rules": "^1.4.4", + "phpunit/phpunit": "^8.5.31 || ^9.5.26", + "webmozarts/strict-phpunit": "^7.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Fidry\\CpuCoreCounter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Théo FIDRY", + "email": "theo.fidry@gmail.com" + } + ], + "description": "Tiny utility to get the number of CPU cores.", + "keywords": [ + "CPU", + "core" + ], + "support": { + "issues": "https://github.com/theofidry/cpu-core-counter/issues", + "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0" + }, + "funding": [ + { + "url": "https://github.com/theofidry", + "type": "github" + } + ], + "time": "2024-08-06T10:04:20+00:00" + }, + { + "name": "filp/whoops", + "version": "2.16.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2", + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.16.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2024-09-25T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "jean85/pretty-package-versions", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/Jean85/pretty-package-versions.git", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Jean85\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alessandro Lai", + "email": "alessandro.lai85@gmail.com" + } + ], + "description": "A library to get pretty versions strings of installed dependencies", + "keywords": [ + "composer", + "package", + "release", + "versions" + ], + "support": { + "issues": "https://github.com/Jean85/pretty-package-versions/issues", + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" + }, + "time": "2024-11-18T16:19:46+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "353ac12134b98e2e7c3333d916bd3e523931e583" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583", + "reference": "353ac12134b98e2e7c3333d916bd3e523931e583", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0", + "illuminate/contracts": "^10.24|^11.0", + "illuminate/log": "^10.24|^11.0", + "illuminate/process": "^10.24|^11.0", + "illuminate/support": "^10.24|^11.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.12|^9.0", + "pestphp/pest": "^2.20", + "pestphp/pest-plugin-type-coverage": "^2.3", + "phpstan/phpstan": "^1.10", + "symfony/var-dumper": "^6.3|^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Pail\\PailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Pail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Easily delve into your Laravel application's log files directly from the command line.", + "homepage": "https://github.com/laravel/pail", + "keywords": [ + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2024-10-23T12:56:23+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.18.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "cef51821608239040ab841ad6e1c6ae502ae3026" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026", + "reference": "cef51821608239040ab841ad6e1c6ae502ae3026", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.65.0", + "illuminate/view": "^10.48.24", + "larastan/larastan": "^2.9.11", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.17.0", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2024-11-26T15:34:00+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.10.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.10.0" + }, + "time": "2024-09-23T13:32:56+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.12.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-11-08T17:47:46+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.3.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" + }, + "time": "2024-10-08T18:51:32+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.5.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "f5c101b929c958e849a633283adff296ed5f38f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5", + "reference": "f5c101b929c958e849a633283adff296ed5f38f5", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.16.0", + "nunomaduro/termwind": "^2.1.0", + "php": "^8.2.0", + "symfony/console": "^7.1.5" + }, + "conflict": { + "laravel/framework": "<11.0.0 || >=12.0.0", + "phpunit/phpunit": "<10.5.1 || >=12.0.0" + }, + "require-dev": { + "larastan/larastan": "^2.9.8", + "laravel/framework": "^11.28.0", + "laravel/pint": "^1.18.1", + "laravel/sail": "^1.36.0", + "laravel/sanctum": "^4.0.3", + "laravel/tinker": "^2.10.0", + "orchestra/testbench-core": "^9.5.3", + "pestphp/pest": "^2.36.0 || ^3.4.0", + "sebastian/environment": "^6.1.0 || ^7.2.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2024-10-15T16:06:32+00:00" + }, + { + "name": "nunomaduro/larastan", + "version": "v2.9.12", + "source": { + "type": "git", + "url": "https://github.com/larastan/larastan.git", + "reference": "19012b39fbe4dede43dbe0c126d9681827a5e908" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/larastan/larastan/zipball/19012b39fbe4dede43dbe0c126d9681827a5e908", + "reference": "19012b39fbe4dede43dbe0c126d9681827a5e908", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/container": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/contracts": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/database": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/http": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/pipeline": "^9.52.16 || ^10.28.0 || ^11.16", + "illuminate/support": "^9.52.16 || ^10.28.0 || ^11.16", + "php": "^8.0.2", + "phpmyadmin/sql-parser": "^5.9.0", + "phpstan/phpstan": "^1.12.11" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0", + "laravel/framework": "^9.52.16 || ^10.28.0 || ^11.16", + "mockery/mockery": "^1.5.1", + "nikic/php-parser": "^4.19.1", + "orchestra/canvas": "^7.11.1 || ^8.11.0 || ^9.0.2", + "orchestra/testbench-core": "^7.33.0 || ^8.13.0 || ^9.0.9", + "phpstan/phpstan-deprecation-rules": "^1.2", + "phpunit/phpunit": "^9.6.13 || ^10.5.16" + }, + "suggest": { + "orchestra/testbench": "Using Larastan for analysing a package needs Testbench" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Larastan\\Larastan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Can Vural", + "email": "can9119@gmail.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel", + "keywords": [ + "PHPStan", + "code analyse", + "code analysis", + "larastan", + "laravel", + "package", + "php", + "static analysis" + ], + "support": { + "issues": "https://github.com/larastan/larastan/issues", + "source": "https://github.com/larastan/larastan/tree/v2.9.12" + }, + "funding": [ + { + "url": "https://github.com/canvural", + "type": "github" + } + ], + "abandoned": "larastan/larastan", + "time": "2024-11-26T23:09:02+00:00" + }, + { + "name": "orchestra/canvas", + "version": "v9.1.3", + "source": { + "type": "git", + "url": "https://github.com/orchestral/canvas.git", + "reference": "dbe51d918c4614f9c5ac9b7b7d3baac2360daf5d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orchestral/canvas/zipball/dbe51d918c4614f9c5ac9b7b7d3baac2360daf5d", + "reference": "dbe51d918c4614f9c5ac9b7b7d3baac2360daf5d", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "composer/semver": "^3.0", + "illuminate/console": "^11.26", + "illuminate/database": "^11.26", + "illuminate/filesystem": "^11.26", + "illuminate/support": "^11.26", + "orchestra/canvas-core": "^9.0", + "orchestra/testbench-core": "^9.2", + "php": "^8.2", + "symfony/polyfill-php83": "^1.28", + "symfony/yaml": "^7.0" + }, + "require-dev": { + "laravel/framework": "^11.26", + "laravel/pint": "^1.17", + "mockery/mockery": "^1.6", + "phpstan/phpstan": "^1.11", + "phpunit/phpunit": "^11.0", + "spatie/laravel-ray": "^1.35" + }, + "bin": [ + "canvas" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.0-dev" + }, + "laravel": { + "providers": [ + "Orchestra\\Canvas\\LaravelServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Orchestra\\Canvas\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Mior Muhammad Zaki", + "email": "crynobone@gmail.com" + } + ], + "description": "Code Generators for Laravel Applications and Packages", + "support": { + "issues": "https://github.com/orchestral/canvas/issues", + "source": "https://github.com/orchestral/canvas/tree/v9.1.3" + }, + "time": "2024-10-02T01:00:54+00:00" + }, + { + "name": "orchestra/canvas-core", + "version": "v9.0.0", + "source": { + "type": "git", + "url": "https://github.com/orchestral/canvas-core.git", + "reference": "3a29eecf324fe02e3e5628e422314b5cd1a80e48" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orchestral/canvas-core/zipball/3a29eecf324fe02e3e5628e422314b5cd1a80e48", + "reference": "3a29eecf324fe02e3e5628e422314b5cd1a80e48", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "composer/semver": "^3.0", + "illuminate/console": "^11.0", + "illuminate/filesystem": "^11.0", + "php": "^8.2", + "symfony/polyfill-php83": "^1.28" + }, + "require-dev": { + "laravel/framework": "^11.0", + "laravel/pint": "^1.6", + "mockery/mockery": "^1.5.1", + "orchestra/testbench-core": "^9.0", + "phpstan/phpstan": "^1.10.6", + "phpunit/phpunit": "^10.1", + "symfony/yaml": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.0-dev" + }, + "laravel": { + "providers": [ + "Orchestra\\Canvas\\Core\\LaravelServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Orchestra\\Canvas\\Core\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Mior Muhammad Zaki", + "email": "crynobone@gmail.com" + } + ], + "description": "Code Generators Builder for Laravel Applications and Packages", + "support": { + "issues": "https://github.com/orchestral/canvas/issues", + "source": "https://github.com/orchestral/canvas-core/tree/v9.0.0" + }, + "time": "2024-03-06T10:00:21+00:00" + }, + { + "name": "orchestra/testbench", + "version": "v9.6.1", + "source": { + "type": "git", + "url": "https://github.com/orchestral/testbench.git", + "reference": "97cc0e7cd52540ae9149b4a4fc512b198fed0237" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orchestral/testbench/zipball/97cc0e7cd52540ae9149b4a4fc512b198fed0237", + "reference": "97cc0e7cd52540ae9149b4a4fc512b198fed0237", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "fakerphp/faker": "^1.23", + "laravel/framework": "^11.33.2", + "mockery/mockery": "^1.6.10", + "orchestra/testbench-core": "^9.6.2", + "orchestra/workbench": "^9.8", + "php": "^8.2", + "phpunit/phpunit": "^10.5.35 || ^11.3.6", + "symfony/process": "^7.0.3", + "symfony/yaml": "^7.0.3", + "vlucas/phpdotenv": "^5.6.1" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mior Muhammad Zaki", + "email": "crynobone@gmail.com", + "homepage": "https://github.com/crynobone" + } + ], + "description": "Laravel Testing Helper for Packages Development", + "homepage": "https://packages.tools/testbench/", + "keywords": [ + "BDD", + "TDD", + "dev", + "laravel", + "laravel-packages", + "testing" + ], + "support": { + "issues": "https://github.com/orchestral/testbench/issues", + "source": "https://github.com/orchestral/testbench/tree/v9.6.1" + }, + "time": "2024-11-20T00:28:28+00:00" + }, + { + "name": "orchestra/testbench-core", + "version": "v9.6.2", + "source": { + "type": "git", + "url": "https://github.com/orchestral/testbench-core.git", + "reference": "a776c94ab989f88e44b3d7f2f9df8e7ccb242974" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/a776c94ab989f88e44b3d7f2f9df8e7ccb242974", + "reference": "a776c94ab989f88e44b3d7f2f9df8e7ccb242974", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "php": "^8.2", + "symfony/polyfill-php83": "^1.31", + "symfony/polyfill-php84": "^1.31" + }, + "conflict": { + "brianium/paratest": "<7.3.0 || >=8.0.0", + "laravel/framework": "<11.33.2 || >=12.0.0", + "laravel/serializable-closure": "<1.3.0 || >=3.0.0", + "nunomaduro/collision": "<8.0.0 || >=9.0.0", + "phpunit/phpunit": "<10.5.35 || >=11.0.0 <11.3.6 || >=11.5.0" + }, + "require-dev": { + "fakerphp/faker": "^1.23", + "laravel/framework": "^11.33.2", + "laravel/pint": "^1.17", + "laravel/serializable-closure": "^1.3 || ^2.0", + "mockery/mockery": "^1.6.10", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35 || ^11.3.6", + "symfony/process": "^7.0.3", + "symfony/yaml": "^7.0.3", + "vlucas/phpdotenv": "^5.6.1" + }, + "suggest": { + "brianium/paratest": "Allow using parallel tresting (^7.3).", + "ext-pcntl": "Required to use all features of the console signal trapping.", + "fakerphp/faker": "Allow using Faker for testing (^1.23).", + "laravel/framework": "Required for testing (^11.33.2).", + "mockery/mockery": "Allow using Mockery for testing (^1.6).", + "nunomaduro/collision": "Allow using Laravel style tests output and parallel testing (^8.0).", + "orchestra/testbench-dusk": "Allow using Laravel Dusk for testing (^9.0).", + "phpunit/phpunit": "Allow using PHPUnit for testing (^10.5 || ^11.0).", + "symfony/process": "Required to use Orchestra\\Testbench\\remote function (^7.0).", + "symfony/yaml": "Required for Testbench CLI (^7.0).", + "vlucas/phpdotenv": "Required for Testbench CLI (^5.4.1)." + }, + "bin": [ + "testbench" + ], + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Orchestra\\Testbench\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mior Muhammad Zaki", + "email": "crynobone@gmail.com", + "homepage": "https://github.com/crynobone" + } + ], + "description": "Testing Helper for Laravel Development", + "homepage": "https://packages.tools/testbench", + "keywords": [ + "BDD", + "TDD", + "dev", + "laravel", + "laravel-packages", + "testing" + ], + "support": { + "issues": "https://github.com/orchestral/testbench/issues", + "source": "https://github.com/orchestral/testbench-core" + }, + "time": "2024-11-20T00:25:28+00:00" + }, + { + "name": "orchestra/workbench", + "version": "v9.8.0", + "source": { + "type": "git", + "url": "https://github.com/orchestral/workbench.git", + "reference": "7e098f6c09276f0ed6f774cffe11fad53cf25c3a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orchestral/workbench/zipball/7e098f6c09276f0ed6f774cffe11fad53cf25c3a", + "reference": "7e098f6c09276f0ed6f774cffe11fad53cf25c3a", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "fakerphp/faker": "^1.23", + "laravel/framework": "^11.31", + "laravel/pail": "^1.2", + "laravel/tinker": "^2.9", + "nunomaduro/collision": "^8.0", + "orchestra/canvas": "^9.1", + "orchestra/testbench-core": "^9.6", + "php": "^8.2", + "symfony/polyfill-php83": "^1.31", + "symfony/polyfill-php84": "^1.31", + "symfony/yaml": "^7.0.3" + }, + "require-dev": { + "laravel/pint": "^1.17", + "mockery/mockery": "^1.6.10", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35 || ^11.3.6", + "symfony/process": "^7.0.3" + }, + "suggest": { + "ext-pcntl": "Required to use all features of the console signal trapping." + }, + "type": "library", + "autoload": { + "psr-4": { + "Orchestra\\Workbench\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mior Muhammad Zaki", + "email": "crynobone@gmail.com" + } + ], + "description": "Workbench Companion for Laravel Packages Development", + "keywords": [ + "dev", + "laravel", + "laravel-packages", + "testing" + ], + "support": { + "issues": "https://github.com/orchestral/workbench/issues", + "source": "https://github.com/orchestral/workbench/tree/v9.8.0" + }, + "time": "2024-11-18T23:21:07+00:00" + }, + { + "name": "pestphp/pest", + "version": "v2.36.0", + "source": { + "type": "git", + "url": "https://github.com/pestphp/pest.git", + "reference": "f8c88bd14dc1772bfaf02169afb601ecdf2724cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pestphp/pest/zipball/f8c88bd14dc1772bfaf02169afb601ecdf2724cd", + "reference": "f8c88bd14dc1772bfaf02169afb601ecdf2724cd", + "shasum": "" + }, + "require": { + "brianium/paratest": "^7.3.1", + "nunomaduro/collision": "^7.11.0|^8.4.0", + "nunomaduro/termwind": "^1.16.0|^2.1.0", + "pestphp/pest-plugin": "^2.1.1", + "pestphp/pest-plugin-arch": "^2.7.0", + "php": "^8.1.0", + "phpunit/phpunit": "^10.5.36" + }, + "conflict": { + "filp/whoops": "<2.16.0", + "phpunit/phpunit": ">10.5.36", + "sebastian/exporter": "<5.1.0", + "webmozart/assert": "<1.11.0" + }, + "require-dev": { + "pestphp/pest-dev-tools": "^2.17.0", + "pestphp/pest-plugin-type-coverage": "^2.8.7", + "symfony/process": "^6.4.0|^7.1.5" + }, + "bin": [ + "bin/pest" + ], + "type": "library", + "extra": { + "pest": { + "plugins": [ + "Pest\\Plugins\\Bail", + "Pest\\Plugins\\Cache", + "Pest\\Plugins\\Coverage", + "Pest\\Plugins\\Init", + "Pest\\Plugins\\Environment", + "Pest\\Plugins\\Help", + "Pest\\Plugins\\Memory", + "Pest\\Plugins\\Only", + "Pest\\Plugins\\Printer", + "Pest\\Plugins\\ProcessIsolation", + "Pest\\Plugins\\Profile", + "Pest\\Plugins\\Retry", + "Pest\\Plugins\\Snapshot", + "Pest\\Plugins\\Verbose", + "Pest\\Plugins\\Version", + "Pest\\Plugins\\Parallel" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "files": [ + "src/Functions.php", + "src/Pest.php" + ], + "psr-4": { + "Pest\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "The elegant PHP Testing Framework.", + "keywords": [ + "framework", + "pest", + "php", + "test", + "testing", + "unit" + ], + "support": { + "issues": "https://github.com/pestphp/pest/issues", + "source": "https://github.com/pestphp/pest/tree/v2.36.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + } + ], + "time": "2024-10-15T15:30:56+00:00" + }, + { + "name": "pestphp/pest-plugin", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/pestphp/pest-plugin.git", + "reference": "e05d2859e08c2567ee38ce8b005d044e72648c0b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e05d2859e08c2567ee38ce8b005d044e72648c0b", + "reference": "e05d2859e08c2567ee38ce8b005d044e72648c0b", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2.0.0", + "composer-runtime-api": "^2.2.2", + "php": "^8.1" + }, + "conflict": { + "pestphp/pest": "<2.2.3" + }, + "require-dev": { + "composer/composer": "^2.5.8", + "pestphp/pest": "^2.16.0", + "pestphp/pest-dev-tools": "^2.16.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Pest\\Plugin\\Manager" + }, + "autoload": { + "psr-4": { + "Pest\\Plugin\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The Pest plugin manager", + "keywords": [ + "framework", + "manager", + "pest", + "php", + "plugin", + "test", + "testing", + "unit" + ], + "support": { + "source": "https://github.com/pestphp/pest-plugin/tree/v2.1.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2023-08-22T08:40:06+00:00" + }, + { + "name": "pestphp/pest-plugin-arch", + "version": "v2.7.0", + "source": { + "type": "git", + "url": "https://github.com/pestphp/pest-plugin-arch.git", + "reference": "d23b2d7498475354522c3818c42ef355dca3fcda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/d23b2d7498475354522c3818c42ef355dca3fcda", + "reference": "d23b2d7498475354522c3818c42ef355dca3fcda", + "shasum": "" + }, + "require": { + "nunomaduro/collision": "^7.10.0|^8.1.0", + "pestphp/pest-plugin": "^2.1.1", + "php": "^8.1", + "ta-tikoma/phpunit-architecture-test": "^0.8.4" + }, + "require-dev": { + "pestphp/pest": "^2.33.0", + "pestphp/pest-dev-tools": "^2.16.0" + }, + "type": "library", + "extra": { + "pest": { + "plugins": [ + "Pest\\Arch\\Plugin" + ] + } + }, + "autoload": { + "files": [ + "src/Autoload.php" + ], + "psr-4": { + "Pest\\Arch\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The Arch plugin for Pest PHP.", + "keywords": [ + "arch", + "architecture", + "framework", + "pest", + "php", + "plugin", + "test", + "testing", + "unit" + ], + "support": { + "source": "https://github.com/pestphp/pest-plugin-arch/tree/v2.7.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + } + ], + "time": "2024-01-26T09:46:42+00:00" + }, + { + "name": "pestphp/pest-plugin-laravel", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/pestphp/pest-plugin-laravel.git", + "reference": "53df51169a7f9595e06839cce638c73e59ace5e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/53df51169a7f9595e06839cce638c73e59ace5e8", + "reference": "53df51169a7f9595e06839cce638c73e59ace5e8", + "shasum": "" + }, + "require": { + "laravel/framework": "^10.48.9|^11.5.0", + "pestphp/pest": "^2.34.7", + "php": "^8.1.0" + }, + "require-dev": { + "laravel/dusk": "^7.13.0", + "orchestra/testbench": "^8.22.3|^9.0.4", + "pestphp/pest-dev-tools": "^2.16.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Pest\\Laravel\\PestServiceProvider" + ] + }, + "pest": { + "plugins": [ + "Pest\\Laravel\\Plugin" + ] + } + }, + "autoload": { + "files": [ + "src/Autoload.php" + ], + "psr-4": { + "Pest\\Laravel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The Pest Laravel Plugin", + "keywords": [ + "framework", + "laravel", + "pest", + "php", + "test", + "testing", + "unit" + ], + "support": { + "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v2.4.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + } + ], + "time": "2024-04-27T10:41:54+00:00" + }, + { + "name": "pestphp/pest-plugin-livewire", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/pestphp/pest-plugin-livewire.git", + "reference": "e72a2f850f727dfdb6bfa6e2ee6ff478ccc93f97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e72a2f850f727dfdb6bfa6e2ee6ff478ccc93f97", + "reference": "e72a2f850f727dfdb6bfa6e2ee6ff478ccc93f97", + "shasum": "" + }, + "require": { + "livewire/livewire": "^2.12.3|^3.0", + "pestphp/pest": "^2.9.1", + "php": "^8.1" + }, + "require-dev": { + "orchestra/testbench": "^8.5.10", + "pestphp/pest-dev-tools": "^2.12.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/Autoload.php" + ], + "psr-4": { + "Pest\\Livewire\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The Pest Livewire Plugin", + "keywords": [ + "framework", + "livewire", + "pest", + "php", + "plugin", + "test", + "testing", + "unit" + ], + "support": { + "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v2.1.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2023-07-20T16:28:21+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.6.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/f3558a4c23426d12bffeaab463f8a8d8b681193c", + "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.1", + "ext-filter": "*", + "php": "^7.4 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7|^2.0", + "webmozart/assert": "^1.9.1" + }, + "require-dev": { + "mockery/mockery": "~1.3.5 || ~1.6.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "psalm/phar": "^5.26" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.0" + }, + "time": "2024-11-12T11:25:25+00:00" + }, + { + "name": "phpmyadmin/sql-parser", + "version": "5.10.1", + "source": { + "type": "git", + "url": "https://github.com/phpmyadmin/sql-parser.git", + "reference": "b14fd66496a22d8dd7f7e2791edd9e8674422f17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpmyadmin/sql-parser/zipball/b14fd66496a22d8dd7f7e2791edd9e8674422f17", + "reference": "b14fd66496a22d8dd7f7e2791edd9e8674422f17", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "phpmyadmin/motranslator": "<3.0" + }, + "require-dev": { + "phpbench/phpbench": "^1.1", + "phpmyadmin/coding-standard": "^3.0", + "phpmyadmin/motranslator": "^4.0 || ^5.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.9.12", + "phpstan/phpstan-phpunit": "^1.3.3", + "phpunit/phpunit": "^8.5 || ^9.6", + "psalm/plugin-phpunit": "^0.16.1", + "vimeo/psalm": "^4.11", + "zumba/json-serializer": "~3.0.2" + }, + "suggest": { + "ext-mbstring": "For best performance", + "phpmyadmin/motranslator": "Translate messages to your favorite locale" + }, + "bin": [ + "bin/highlight-query", + "bin/lint-query", + "bin/sql-parser", + "bin/tokenize-query" + ], + "type": "library", + "autoload": { + "psr-4": { + "PhpMyAdmin\\SqlParser\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "The phpMyAdmin Team", + "email": "developers@phpmyadmin.net", + "homepage": "https://www.phpmyadmin.net/team/" + } + ], + "description": "A validating SQL lexer and parser with a focus on MySQL dialect.", + "homepage": "https://github.com/phpmyadmin/sql-parser", + "keywords": [ + "analysis", + "lexer", + "parser", + "query linter", + "sql", + "sql lexer", + "sql linter", + "sql parser", + "sql syntax highlighter", + "sql tokenizer" + ], + "support": { + "issues": "https://github.com/phpmyadmin/sql-parser/issues", + "source": "https://github.com/phpmyadmin/sql-parser" + }, + "funding": [ + { + "url": "https://www.phpmyadmin.net/donate/", + "type": "other" + } + ], + "time": "2024-11-10T04:10:31+00:00" + }, + { + "name": "phpstan/extension-installer", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/phpstan/extension-installer.git", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/85e90b3942d06b2326fba0403ec24fe912372936", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2.0", + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.0 || ^2.0" + }, + "require-dev": { + "composer/composer": "^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2.0", + "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "PHPStan\\ExtensionInstaller\\Plugin" + }, + "autoload": { + "psr-4": { + "PHPStan\\ExtensionInstaller\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Composer plugin for automatic installation of PHPStan extensions", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpstan/extension-installer/issues", + "source": "https://github.com/phpstan/extension-installer/tree/1.4.3" + }, + "time": "2024-09-04T20:21:43+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.12.11", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + } + ], + "time": "2024-11-17T14:08:01+00:00" + }, + { + "name": "phpstan/phpstan-deprecation-rules", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", + "support": { + "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1" + }, + "time": "2024-09-11T15:52:35+00:00" + }, + { + "name": "phpstan/phpstan-phpunit", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "11d4235fbc6313ecbf93708606edfd3222e44949" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/11d4235fbc6313ecbf93708606edfd3222e44949", + "reference": "11d4235fbc6313ecbf93708606edfd3222e44949", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" + }, + "conflict": { + "phpunit/phpunit": "<7.0" + }, + "require-dev": { + "nikic/php-parser": "^4.13.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPUnit extensions and rules for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.1" + }, + "time": "2024-11-12T12:43:59+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "10.1.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.19.1 || ^5.1.0", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-text-template": "^3.0.1", + "sebastian/code-unit-reverse-lookup": "^3.0.0", + "sebastian/complexity": "^3.2.0", + "sebastian/environment": "^6.1.0", + "sebastian/lines-of-code": "^2.0.2", + "sebastian/version": "^4.0.1", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-22T04:31:57+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.5.36", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870", + "reference": "aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.12.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.16", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-invoker": "^4.0.0", + "phpunit/php-text-template": "^3.0.1", + "phpunit/php-timer": "^6.0.0", + "sebastian/cli-parser": "^2.0.1", + "sebastian/code-unit": "^2.0.0", + "sebastian/comparator": "^5.0.2", + "sebastian/diff": "^5.1.1", + "sebastian/environment": "^6.1.0", + "sebastian/exporter": "^5.1.2", + "sebastian/global-state": "^6.0.2", + "sebastian/object-enumerator": "^5.0.0", + "sebastian/recursion-context": "^5.0.0", + "sebastian/type": "^4.0.0", + "sebastian/version": "^4.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.36" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-10-08T15:36:51+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.4", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" + }, + "time": "2024-06-10T01:18:23+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:12:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-18T14:56:07+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "68ff824baeae169ec9f2137158ee529584553799" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:37:17+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T08:47:14+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:17:12+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:19:19+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:38:20+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "symfony/polyfill-php84", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "e5493eb51311ab0b1cc2243416613f06ed8f18bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/e5493eb51311ab0b1cc2243416613f06ed8f18bd", + "reference": "e5493eb51311ab0b1cc2243416613f06ed8f18bd", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php84\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php84/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T12:04:04+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671", + "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "ta-tikoma/phpunit-architecture-test", + "version": "0.8.4", + "source": { + "type": "git", + "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git", + "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636", + "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18.0 || ^5.0.0", + "php": "^8.1.0", + "phpdocumentor/reflection-docblock": "^5.3.0", + "phpunit/phpunit": "^10.5.5 || ^11.0.0", + "symfony/finder": "^6.4.0 || ^7.0.0" + }, + "require-dev": { + "laravel/pint": "^1.13.7", + "phpstan/phpstan": "^1.10.52" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPUnit\\Architecture\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ni Shi", + "email": "futik0ma011@gmail.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Methods for testing application architecture", + "keywords": [ + "architecture", + "phpunit", + "stucture", + "test", + "testing" + ], + "support": { + "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues", + "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4" + }, + "time": "2024-01-05T14:10:56+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": "^8.1|^8.2" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/config/filament-locations.php b/config/filament-locations.php index 0cbfd2d..43b990d 100644 --- a/config/filament-locations.php +++ b/config/filament-locations.php @@ -1,12 +1,27 @@ [ - "country" => true, - "city" => true, - "area" => true, - "languages" => true, - "currency" => true, - "locations" => true, - ] + /** + * ---------------------------- + * Data Driver + * ---------------------------- + * + * You can choose between the following drivers: json, database + */ + 'driver' => env('FILAMENT_LOCATIONS_DRIVER', 'json'), + + /** + * ---------------------------- + * JSON Data Path + * ---------------------------- + * + * The path to the JSON data file. + */ + 'json' => [ + 'areas' => null, + 'cities' => null, + 'countries' => null, + 'currencies' => null, + 'languages' => null, + ], ]; diff --git a/database/data/areas.json b/database/data/areas.json new file mode 100644 index 0000000..9d3113e --- /dev/null +++ b/database/data/areas.json @@ -0,0 +1,44512 @@ +[ +{"id":"1","name":"القاهرة","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"2","name":"الجيزة","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"3","name":"السادس من أكتوبر","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"4","name":"الشيخ زايد","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"5","name":"الحوامدية","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"6","name":"البدرشين","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"7","name":"الصف","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"8","name":"أطفيح","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"9","name":"العياط","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"10","name":"الباويطي","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"11","name":"منشأة القناطر","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"12","name":"أوسيم","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"13","name":"كرداسة","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"14","name":"أبو النمرس","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"15","name":"كفر غطاطي","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"16","name":"منشأة البكاري","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"17","name":"الأسكندرية","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"18","name":"برج العرب","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"19","name":"برج العرب الجديدة","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"20","name":"بنها","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"21","name":"قليوب","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"22","name":"شبرا الخيمة","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"23","name":"القناطر الخيرية","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"24","name":"الخانكة","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"25","name":"كفر شكر","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"26","name":"طوخ","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"27","name":"قها","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"28","name":"العبور","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"29","name":"الخصوص","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"30","name":"شبين القناطر","city_id":"12","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"31","name":"دمنهور","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"32","name":"كفر الدوار","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"33","name":"رشيد","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"34","name":"إدكو","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"35","name":"أبو المطامير","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"36","name":"أبو حمص","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"37","name":"الدلنجات","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"38","name":"المحمودية","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"39","name":"الرحمانية","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"40","name":"إيتاي البارود","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"41","name":"حوش عيسى","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"42","name":"شبراخيت","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"43","name":"كوم حمادة","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"44","name":"بدر","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"45","name":"وادي النطرون","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"46","name":"النوبارية الجديدة","city_id":"6","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"47","name":"مرسى مطروح","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"48","name":"الحمام","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"49","name":"العلمين","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"50","name":"الضبعة","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"51","name":"النجيلة","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"52","name":"سيدي براني","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"53","name":"السلوم","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"54","name":"سيوة","city_id":"23","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"55","name":"دمياط","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"56","name":"دمياط الجديدة","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"57","name":"رأس البر","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"58","name":"فارسكور","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"59","name":"الزرقا","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"60","name":"السرو","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"61","name":"الروضة","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"62","name":"كفر البطيخ","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"63","name":"عزبة البرج","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"64","name":"ميت أبو غالب","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"65","name":"كفر سعد","city_id":"19","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"66","name":"المنصورة","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"67","name":"طلخا","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"68","name":"ميت غمر","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"69","name":"دكرنس","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"70","name":"أجا","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"71","name":"منية النصر","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"72","name":"السنبلاوين","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"73","name":"الكردي","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"74","name":"بني عبيد","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"75","name":"المنزلة","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"76","name":"تمي الأمديد","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"77","name":"الجمالية","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"78","name":"شربين","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"79","name":"المطرية","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"80","name":"بلقاس","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"81","name":"ميت سلسيل","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"82","name":"جمصة","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"83","name":"محلة دمنة","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"84","name":"نبروه","city_id":"4","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"85","name":"كفر الشيخ","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"86","name":"دسوق","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"87","name":"فوه","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"88","name":"مطوبس","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"89","name":"برج البرلس","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"90","name":"بلطيم","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"91","name":"مصيف بلطيم","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"92","name":"الحامول","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"93","name":"بيلا","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"94","name":"الرياض","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"95","name":"سيدي سالم","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"96","name":"قلين","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"97","name":"سيدي غازي","city_id":"22","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"98","name":"طنطا","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"99","name":"المحلة الكبرى","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"100","name":"كفر الزيات","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"101","name":"زفتى","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"102","name":"السنطة","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"103","name":"قطور","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"104","name":"بسيون","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"105","name":"سمنود","city_id":"8","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"106","name":"شبين الكوم","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"107","name":"مدينة السادات","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"108","name":"منوف","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"109","name":"سرس الليان","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"110","name":"أشمون","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"111","name":"الباجور","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"112","name":"قويسنا","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"113","name":"بركة السبع","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"114","name":"تلا","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"115","name":"الشهداء","city_id":"10","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"116","name":"الزقازيق","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"117","name":"العاشر من رمضان","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"118","name":"منيا القمح","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"119","name":"بلبيس","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"120","name":"مشتول السوق","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"121","name":"القنايات","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"122","name":"أبو حماد","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"123","name":"القرين","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"124","name":"ههيا","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"125","name":"أبو كبير","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"126","name":"فاقوس","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"127","name":"الصالحية الجديدة","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"128","name":"الإبراهيمية","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"129","name":"ديرب نجم","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"130","name":"كفر صقر","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"131","name":"أولاد صقر","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"132","name":"الحسينية","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"133","name":"صان الحجر القبلية","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"134","name":"منشأة أبو عمر","city_id":"20","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"135","name":"بورسعيد","city_id":"18","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"136","name":"بورفؤاد","city_id":"18","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"137","name":"الإسماعيلية","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"138","name":"فايد","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"139","name":"القنطرة شرق","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"140","name":"القنطرة غرب","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"141","name":"التل الكبير","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"142","name":"أبو صوير","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"143","name":"القصاصين الجديدة","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"144","name":"السويس","city_id":"14","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"145","name":"العريش","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"146","name":"الشيخ زويد","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"147","name":"نخل","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"148","name":"رفح","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"149","name":"بئر العبد","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"150","name":"الحسنة","city_id":"26","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"151","name":"الطور","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"152","name":"شرم الشيخ","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"153","name":"دهب","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"154","name":"نويبع","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"155","name":"طابا","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"156","name":"سانت كاترين","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"157","name":"أبو رديس","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"158","name":"أبو زنيمة","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"159","name":"رأس سدر","city_id":"21","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"160","name":"بني سويف","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"161","name":"بني سويف الجديدة","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"162","name":"الواسطى","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"163","name":"ناصر","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"164","name":"إهناسيا","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"165","name":"ببا","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"166","name":"الفشن","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"167","name":"سمسطا","city_id":"17","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"168","name":"الفيوم","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"169","name":"الفيوم الجديدة","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"170","name":"طامية","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"171","name":"سنورس","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"172","name":"إطسا","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"173","name":"إبشواي","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"174","name":"يوسف الصديق","city_id":"7","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"175","name":"المنيا","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"176","name":"المنيا الجديدة","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"177","name":"العدوة","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"178","name":"مغاغة","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"179","name":"بني مزار","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"180","name":"مطاي","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"181","name":"سمالوط","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"182","name":"المدينة الفكرية","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"183","name":"ملوي","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"184","name":"دير مواس","city_id":"11","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"185","name":"أسيوط","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"186","name":"أسيوط الجديدة","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"187","name":"ديروط","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"188","name":"منفلوط","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"189","name":"القوصية","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"190","name":"أبنوب","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"191","name":"أبو تيج","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"192","name":"الغنايم","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"193","name":"ساحل سليم","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"194","name":"البداري","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"195","name":"صدفا","city_id":"16","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"196","name":"الخارجة","city_id":"13","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"197","name":"باريس","city_id":"13","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"198","name":"موط","city_id":"13","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"199","name":"الفرافرة","city_id":"13","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"200","name":"بلاط","city_id":"13","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"201","name":"الغردقة","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"202","name":"رأس غارب","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"203","name":"سفاجا","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"204","name":"القصير","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"205","name":"مرسى علم","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"206","name":"الشلاتين","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"207","name":"حلايب","city_id":"5","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"208","name":"سوهاج","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"209","name":"سوهاج الجديدة","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"210","name":"أخميم","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"211","name":"أخميم الجديدة","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"212","name":"البلينا","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"213","name":"المراغة","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"214","name":"المنشأة","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"215","name":"دار السلام","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"216","name":"جرجا","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"217","name":"جهينة الغربية","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"218","name":"ساقلته","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"219","name":"طما","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"220","name":"طهطا","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"221","name":"قنا","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"222","name":"قنا الجديدة","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"223","name":"أبو تشت","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"224","name":"نجع حمادي","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"225","name":"دشنا","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"226","name":"الوقف","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"227","name":"قفط","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"228","name":"نقادة","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"229","name":"فرشوط","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"230","name":"قوص","city_id":"25","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"231","name":"الأقصر","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"232","name":"الأقصر الجديدة","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"233","name":"إسنا","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"234","name":"طيبة الجديدة","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"235","name":"الزينية","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"236","name":"البياضية","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"237","name":"القرنة","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"238","name":"أرمنت","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"239","name":"الطود","city_id":"24","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"240","name":"أسوان","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"241","name":"أسوان الجديدة","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"242","name":"دراو","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"243","name":"كوم أمبو","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"244","name":"نصر النوبة","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"245","name":"كلابشة","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"246","name":"إدفو","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"247","name":"الرديسية","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"248","name":"البصيلية","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"249","name":"السباعية","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"250","name":"ابوسمبل السياحية","city_id":"15","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"251","name":"الهرم","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"252","name":"حدائق الزيتون","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"253","name":"التجمع الثالث","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"254","name":"التجمع الخامس","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"255","name":"مدينة نصر","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"256","name":"فيصل","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"257","name":"الحي الاول","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"258","name":"وسط البلد","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"259","name":"مدينة السلام","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"260","name":"الوراق","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"261","name":"حلمية الزيتون","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"262","name":"الملاحة الجديدة","city_id":"14","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"263","name":"المنيل","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"264","name":"سيدي جابر","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"265","name":"شبرا مصر","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"266","name":"جسر السويس","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"267","name":"ميامي","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"268","name":"المقطم","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"269","name":"شيراتون المطار","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"270","name":"العامرية","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"271","name":"طريق المعادي","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"272","name":"كورنيش الشرق","city_id":"27","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"273","name":"الدراسة","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"274","name":"مدينه نصر","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"275","name":"العباسية","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"276","name":"ميدان مارادونا","city_id":"9","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"277","name":"حدايق الاهرام","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"278","name":"السيده عائشة","city_id":"1","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"279","name":"الدقي","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"280","name":"اكتوبر","city_id":"2","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"281","name":"جناكليس","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"282","name":"برج العرب القديم","city_id":"3","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"283","name":"وادي حوف","city_id":"30","created_at":"2020-06-17 13:00:46","updated_at":"2020-06-17 13:00:46","translations":null,"is_activated":"1"}, +{"id":"284","name":"حدائق القبة","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"285","name":"السواح","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"286","name":"صلاح سالم","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"287","name":"التجمع الاول","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"288","name":"المهندسين","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"289","name":"المنيب","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"290","name":"الوايلي","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"291","name":"الاميرية","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"292","name":"مصر الجديدة","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"293","name":"الزاويه الحمراء","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"294","name":"القصر العيني","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"295","name":"المعادي","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"296","name":"حدائق الاهرام","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"297","name":"هضبة الهرم","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"298","name":"عزبة النخل","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"299","name":"التحرير","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"300","name":"مدينة بدر","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"301","name":"عين شمس","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"302","name":"الدقهلية","city_id":"4","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"303","name":"حلوان","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"304","name":"شبرا","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"305","name":"القطامية","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"306","name":"سراي القبه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"307","name":"سرايا القبة","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"308","name":"امبابه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"309","name":"البحيرة","city_id":"6","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"310","name":"العجوزة","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"311","name":"روض الفرج","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"312","name":"نزلة السمان","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"313","name":"باب الشعرية","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"314","name":"المرج","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"315","name":"السيده زينب","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"316","name":"بولاق الدكرور","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"317","name":"مدينة الشروق","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"318","name":"البراجيل","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"319","name":"15 مايو","city_id":"30","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"320","name":"الاسماعيلية","city_id":"34","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"321","name":"المنهندسين","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"322","name":"سيدي بشر","city_id":"3","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"323","name":"مريوطية","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"324","name":"الشرقية","city_id":"20","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"325","name":"اسوان","city_id":"15","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"326","name":"اسيوط","city_id":"16","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"327","name":"كيلوبترا","city_id":"3","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"328","name":"المرج الجديدة","city_id":"12","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"329","name":"الوادي الجديد","city_id":"13","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"330","name":"سموحة","city_id":"3","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"331","name":"عباس العقاد","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"332","name":"المعصرة","city_id":"30","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"333","name":"بور سعيد","city_id":"38","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"334","name":"المطريه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"335","name":"مدينه المستقبل","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"336","name":"شبرا الخيمه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"337","name":"السيده عائشه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"338","name":"السيده خديجه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"339","name":"إمبابة","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"340","name":"العمرانيه","city_id":"2","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"341","name":"اشمون","city_id":"10","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"342","name":"الفجاله","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"343","name":"مدينه 15 مايو","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"344","name":"الخانكه","city_id":"1","created_at":"2020-06-17 13:00:47","updated_at":"2020-06-17 13:00:47","translations":null,"is_activated":"1"}, +{"id":"345","name":"السيده نفسيه","city_id":"1","created_at":"2020-09-30 03:32:23","updated_at":"2020-09-30 03:32:23","translations":null,"is_activated":"1"}, +{"id":"346","name":"مدينة المستقبل","city_id":"1","created_at":"2020-10-27 15:27:30","updated_at":"2020-10-27 15:27:30","translations":null,"is_activated":"1"}, +{"id":"347","name":"نج","city_id":"11","created_at":"2020-10-28 16:47:38","updated_at":"2020-10-28 16:47:38","translations":null,"is_activated":"1"}, +{"id":"348","name":"نجع","city_id":"11","created_at":"2020-10-28 16:47:47","updated_at":"2020-10-28 16:47:47","translations":null,"is_activated":"1"}, +{"id":"349","name":"نجع حمادي","city_id":"11","created_at":"2020-10-28 16:47:54","updated_at":"2020-10-28 16:47:54","translations":null,"is_activated":"1"}, +{"id":"350","name":"شبر","city_id":"1","created_at":"2020-10-28 17:23:42","updated_at":"2020-10-28 17:23:42","translations":null,"is_activated":"1"}, +{"id":"351","name":"صفط اللبن","city_id":"2","created_at":"2020-10-28 17:29:29","updated_at":"2020-10-28 17:29:29","translations":null,"is_activated":"1"}, +{"id":"352","name":"امبابه","city_id":"2","created_at":"2020-10-28 18:50:37","updated_at":"2020-10-28 18:50:37","translations":null,"is_activated":"1"}, +{"id":"353","name":"حلو","city_id":"1","created_at":"2020-10-28 19:15:52","updated_at":"2020-10-28 19:15:52","translations":null,"is_activated":"1"}, +{"id":"354","name":"مصطفي النحاس","city_id":"1","created_at":"2020-10-28 19:20:14","updated_at":"2020-10-28 19:20:14","translations":null,"is_activated":"1"}, +{"id":"355","name":"مصر الجديده","city_id":"1","created_at":"2020-10-28 19:22:00","updated_at":"2020-10-28 19:22:00","translations":null,"is_activated":"1"}, +{"id":"356","name":"الرحاب","city_id":"29","created_at":"2020-10-28 19:26:00","updated_at":"2020-10-28 19:26:00","translations":null,"is_activated":"1"}, +{"id":"357","name":"منشية ناصر","city_id":"1","created_at":"2020-10-28 19:29:04","updated_at":"2020-10-28 19:29:04","translations":null,"is_activated":"1"}, +{"id":"358","name":"المحله","city_id":"8","created_at":"2020-10-28 19:47:37","updated_at":"2020-10-28 19:47:37","translations":null,"is_activated":"1"}, +{"id":"359","name":"طيبة","city_id":"24","created_at":"2020-10-29 02:59:37","updated_at":"2020-10-29 02:59:37","translations":null,"is_activated":"1"}, +{"id":"360","name":"صفط اللبن","city_id":"11","created_at":"2020-10-29 03:01:07","updated_at":"2020-10-29 03:01:07","translations":null,"is_activated":"1"}, +{"id":"361","name":"مدينة","city_id":"1","created_at":"2020-10-29 03:05:05","updated_at":"2020-10-29 03:05:05","translations":null,"is_activated":"1"}, +{"id":"362","name":"بور فؤاد","city_id":"18","created_at":"2020-10-29 16:22:24","updated_at":"2020-10-29 16:22:24","translations":null,"is_activated":"1"}, +{"id":"363","name":"المعاد","city_id":"1","created_at":"2020-10-29 17:19:11","updated_at":"2020-10-29 17:19:11","translations":null,"is_activated":"1"}, +{"id":"364","name":"المعا","city_id":"1","created_at":"2020-10-29 17:19:12","updated_at":"2020-10-29 17:19:12","translations":null,"is_activated":"1"}, +{"id":"365","name":"العبور","city_id":"1","created_at":"2020-10-29 18:15:21","updated_at":"2020-10-29 18:15:21","translations":null,"is_activated":"1"}, +{"id":"366","name":"حمامات القبة","city_id":"1","created_at":"2020-10-30 02:15:06","updated_at":"2020-10-30 02:15:06","translations":null,"is_activated":"1"}, +{"id":"367","name":"مصر القديمة","city_id":"1","created_at":"2020-10-30 02:16:49","updated_at":"2020-10-30 02:16:49","translations":null,"is_activated":"1"}, +{"id":"368","name":"الرحاب","city_id":"1","created_at":"2020-10-30 13:43:33","updated_at":"2020-10-30 13:43:33","translations":null,"is_activated":"1"}, +{"id":"369","name":"شبرا الخيمه","city_id":"1","created_at":"2020-10-30 14:41:10","updated_at":"2020-10-30 14:41:10","translations":null,"is_activated":"1"}, +{"id":"370","name":"الغردقة","city_id":"34","created_at":"2020-10-30 17:14:29","updated_at":"2020-10-30 17:14:29","translations":null,"is_activated":"1"}, +{"id":"371","name":"ميت عقبة","city_id":"2","created_at":"2020-10-30 17:30:07","updated_at":"2020-10-30 17:30:07","translations":null,"is_activated":"1"}, +{"id":"372","name":"النزهه","city_id":"1","created_at":"2020-10-30 18:17:53","updated_at":"2020-10-30 18:17:53","translations":null,"is_activated":"1"}, +{"id":"373","name":"الشروق","city_id":"1","created_at":"2020-10-30 18:58:32","updated_at":"2020-10-30 18:58:32","translations":null,"is_activated":"1"}, +{"id":"374","name":"المريوطيه","city_id":"2","created_at":"2020-10-31 05:04:40","updated_at":"2020-10-31 05:04:40","translations":null,"is_activated":"1"}, +{"id":"375","name":"الق","city_id":"1","created_at":"2020-10-31 08:11:54","updated_at":"2020-10-31 08:11:54","translations":null,"is_activated":"1"}, +{"id":"376","name":"شرم","city_id":"5","created_at":"2020-10-31 08:17:53","updated_at":"2020-10-31 08:17:53","translations":null,"is_activated":"1"}, +{"id":"377","name":"شرم الشيخ","city_id":"5","created_at":"2020-10-31 08:18:02","updated_at":"2020-10-31 08:18:02","translations":null,"is_activated":"1"}, +{"id":"378","name":"الجماليه","city_id":"4","created_at":"2020-10-31 11:06:59","updated_at":"2020-10-31 11:06:59","translations":null,"is_activated":"1"}, +{"id":"379","name":"القيصر","city_id":"5","created_at":"2020-10-31 11:15:30","updated_at":"2020-10-31 11:15:30","translations":null,"is_activated":"1"}, +{"id":"380","name":"العبو","city_id":"1","created_at":"2020-10-31 15:23:07","updated_at":"2020-10-31 15:23:07","translations":null,"is_activated":"1"}, +{"id":"381","name":"النهضة","city_id":"1","created_at":"2020-10-31 19:41:21","updated_at":"2020-10-31 19:41:21","translations":null,"is_activated":"1"}, +{"id":"382","name":"الزيتون","city_id":"1","created_at":"2020-11-01 15:03:21","updated_at":"2020-11-01 15:03:21","translations":null,"is_activated":"1"}, +{"id":"383","name":"العبا","city_id":"1","created_at":"2020-11-01 15:55:58","updated_at":"2020-11-01 15:55:58","translations":null,"is_activated":"1"}, +{"id":"384","name":"الماظة","city_id":"1","created_at":"2020-11-01 17:45:12","updated_at":"2020-11-01 17:45:12","translations":null,"is_activated":"1"}, +{"id":"385","name":"ارض اللواء","city_id":"2","created_at":"2020-11-02 12:58:01","updated_at":"2020-11-02 12:58:01","translations":null,"is_activated":"1"}, +{"id":"386","name":"طنان","city_id":"12","created_at":"2020-11-02 13:43:39","updated_at":"2020-11-02 13:43:39","translations":null,"is_activated":"1"}, +{"id":"387","name":"الدق","city_id":"2","created_at":"2020-11-02 16:28:03","updated_at":"2020-11-02 16:28:03","translations":null,"is_activated":"1"}, +{"id":"388","name":"رمسيس","city_id":"1","created_at":"2020-11-02 17:12:52","updated_at":"2020-11-02 17:12:52","translations":null,"is_activated":"1"}, +{"id":"389","name":"ابشواى","city_id":"7","created_at":"2020-11-03 05:48:16","updated_at":"2020-11-03 05:48:16","translations":null,"is_activated":"1"}, +{"id":"390","name":"مدين","city_id":"1","created_at":"2020-11-03 13:13:07","updated_at":"2020-11-03 13:13:07","translations":null,"is_activated":"1"}, +{"id":"391","name":"عزبه النخل","city_id":"1","created_at":"2020-11-03 13:28:37","updated_at":"2020-11-03 13:28:37","translations":null,"is_activated":"1"}, +{"id":"392","name":"مدينتى","city_id":"1","created_at":"2020-11-03 22:07:49","updated_at":"2020-11-03 22:07:49","translations":null,"is_activated":"1"}, +{"id":"393","name":"العوايد","city_id":"3","created_at":"2020-11-06 15:02:37","updated_at":"2020-11-06 15:02:37","translations":null,"is_activated":"1"}, +{"id":"394","name":"سمنود","city_id":"1","created_at":"2020-11-06 15:04:16","updated_at":"2020-11-06 15:04:16","translations":null,"is_activated":"1"}, +{"id":"395","name":"الهر","city_id":"2","created_at":"2020-11-06 15:05:28","updated_at":"2020-11-06 15:05:28","translations":null,"is_activated":"1"}, +{"id":"396","name":"الاسماعيليه","city_id":"33","created_at":"2020-11-06 16:49:12","updated_at":"2020-11-06 16:49:12","translations":null,"is_activated":"1"}, +{"id":"397","name":"حدائق","city_id":"1","created_at":"2020-11-07 15:49:40","updated_at":"2020-11-07 15:49:40","translations":null,"is_activated":"1"}, +{"id":"398","name":"عابدين","city_id":"1","created_at":"2020-11-08 08:06:04","updated_at":"2020-11-08 08:06:04","translations":null,"is_activated":"1"}, +{"id":"399","name":"دار السلام","city_id":"1","created_at":"2020-11-08 18:16:34","updated_at":"2020-11-08 18:16:34","translations":null,"is_activated":"1"}, +{"id":"400","name":"النزهه الجديده","city_id":"1","created_at":"2020-11-09 05:20:17","updated_at":"2020-11-09 05:20:17","translations":null,"is_activated":"1"}, +{"id":"401","name":"مصر القديمه","city_id":"1","created_at":"2020-11-09 05:48:43","updated_at":"2020-11-09 05:48:43","translations":null,"is_activated":"1"}, +{"id":"402","name":"عين شمس الشرقيه","city_id":"1","created_at":"2020-11-09 10:22:33","updated_at":"2020-11-09 10:22:33","translations":null,"is_activated":"1"}, +{"id":"403","name":"الخصوص","city_id":"1","created_at":"2020-11-09 18:55:08","updated_at":"2020-11-09 18:55:08","translations":null,"is_activated":"1"}, +{"id":"404","name":"القلعة","city_id":"1","created_at":"2020-11-09 18:56:18","updated_at":"2020-11-09 18:56:18","translations":null,"is_activated":"1"}, +{"id":"405","name":"حدائق حلوان","city_id":"1","created_at":"2020-11-09 19:04:29","updated_at":"2020-11-09 19:04:29","translations":null,"is_activated":"1"}, +{"id":"406","name":"بشتيل","city_id":"2","created_at":"2020-11-10 18:51:32","updated_at":"2020-11-10 18:51:32","translations":null,"is_activated":"1"}, +{"id":"407","name":"الطالبيه","city_id":"2","created_at":"2020-11-11 17:14:15","updated_at":"2020-11-11 17:14:15","translations":null,"is_activated":"1"}, +{"id":"408","name":"السادات","city_id":"14","created_at":"2020-11-11 18:07:15","updated_at":"2020-11-11 18:07:15","translations":null,"is_activated":"1"}, +{"id":"409","name":"العصافرة","city_id":"3","created_at":"2020-11-13 02:41:36","updated_at":"2020-11-13 02:41:36","translations":null,"is_activated":"1"}, +{"id":"410","name":"أبو قير","city_id":"3","created_at":"2020-11-13 21:13:51","updated_at":"2020-11-13 21:13:51","translations":null,"is_activated":"1"}, +{"id":"411","name":"اكتوبر","city_id":"2","created_at":"2020-11-14 17:46:35","updated_at":"2020-11-14 17:46:35","translations":null,"is_activated":"1"}, +{"id":"412","name":"ابشوا","city_id":"7","created_at":"2020-11-14 22:15:20","updated_at":"2020-11-14 22:15:20","translations":null,"is_activated":"1"}, +{"id":"413","name":"القليوبية","city_id":"12","created_at":"2020-11-16 19:07:38","updated_at":"2020-11-16 19:07:38","translations":null,"is_activated":"1"}, +{"id":"414","name":"العرم","city_id":"2","created_at":"2020-11-16 19:09:46","updated_at":"2020-11-16 19:09:46","translations":null,"is_activated":"1"}, +{"id":"415","name":"العجمى","city_id":"3","created_at":"2020-11-17 03:24:27","updated_at":"2020-11-17 03:24:27","translations":null,"is_activated":"1"}, +{"id":"416","name":"الوراق","city_id":"1","created_at":"2020-11-17 19:33:30","updated_at":"2020-11-17 19:33:30","translations":null,"is_activated":"1"}, +{"id":"417","name":"الابراهيمية","city_id":"3","created_at":"2020-11-18 03:51:50","updated_at":"2020-11-18 03:51:50","translations":null,"is_activated":"1"}, +{"id":"418","name":"زهراء مدينه نصر","city_id":"1","created_at":"2020-11-18 13:01:58","updated_at":"2020-11-18 13:01:58","translations":null,"is_activated":"1"}, +{"id":"419","name":"ارمنت","city_id":"24","created_at":"2020-11-19 05:23:47","updated_at":"2020-11-19 05:23:47","translations":null,"is_activated":"1"}, +{"id":"420","name":"سرابيوم","city_id":"9","created_at":"2020-11-20 02:34:13","updated_at":"2020-11-20 02:34:13","translations":null,"is_activated":"1"}, +{"id":"421","name":"حلوان","city_id":"1","created_at":"2020-11-20 08:30:48","updated_at":"2020-11-20 08:30:48","translations":null,"is_activated":"1"}, +{"id":"422","name":"ابو النمرس","city_id":"2","created_at":"2020-11-20 13:24:03","updated_at":"2020-11-20 13:24:03","translations":null,"is_activated":"1"}, +{"id":"423","name":"البدرشي","city_id":"2","created_at":"2020-11-21 11:14:58","updated_at":"2020-11-21 11:14:58","translations":null,"is_activated":"1"}, +{"id":"424","name":"المع","city_id":"1","created_at":"2020-11-21 15:46:58","updated_at":"2020-11-21 15:46:58","translations":null,"is_activated":"1"}, +{"id":"425","name":"الملك فيصل","city_id":"2","created_at":"2020-11-21 18:02:23","updated_at":"2020-11-21 18:02:23","translations":null,"is_activated":"1"}, +{"id":"426","name":"الدرعية","city_id":"37","created_at":"2020-12-06 01:56:40","updated_at":"2020-12-06 01:56:40","translations":null,"is_activated":"1"}, +{"id":"427","name":"الرياض","city_id":"37","created_at":"2020-12-06 01:56:47","updated_at":"2020-12-06 01:56:47","translations":null,"is_activated":"1"}, +{"id":"428","name":"الدوادمي","city_id":"37","created_at":"2020-12-06 01:57:02","updated_at":"2020-12-06 01:57:02","translations":null,"is_activated":"1"}, +{"id":"429","name":"القويعية","city_id":"37","created_at":"2020-12-06 01:57:10","updated_at":"2020-12-06 01:57:10","translations":null,"is_activated":"1"}, +{"id":"430","name":"الأفلاج","city_id":"37","created_at":"2020-12-06 01:57:17","updated_at":"2020-12-06 01:57:17","translations":null,"is_activated":"1"}, +{"id":"431","name":"سدير","city_id":"37","created_at":"2020-12-06 01:57:23","updated_at":"2020-12-06 01:57:23","translations":null,"is_activated":"1"}, +{"id":"432","name":"شقراء","city_id":"37","created_at":"2020-12-06 01:57:31","updated_at":"2020-12-06 01:57:31","translations":null,"is_activated":"1"}, +{"id":"433","name":"عفيف","city_id":"37","created_at":"2020-12-06 01:57:41","updated_at":"2020-12-06 01:57:41","translations":null,"is_activated":"1"}, +{"id":"434","name":"ضرماء","city_id":"37","created_at":"2020-12-06 01:57:49","updated_at":"2020-12-06 01:57:49","translations":null,"is_activated":"1"}, +{"id":"435","name":"رماح","city_id":"37","created_at":"2020-12-06 01:57:57","updated_at":"2020-12-06 01:57:57","translations":null,"is_activated":"1"}, +{"id":"436","name":"حريملاء","city_id":"37","created_at":"2020-12-06 01:58:04","updated_at":"2020-12-06 01:58:04","translations":null,"is_activated":"1"}, +{"id":"437","name":"الغاط","city_id":"37","created_at":"2020-12-06 01:58:10","updated_at":"2020-12-06 01:58:10","translations":null,"is_activated":"1"}, +{"id":"438","name":"الخرج","city_id":"37","created_at":"2020-12-06 01:58:22","updated_at":"2020-12-06 01:58:22","translations":null,"is_activated":"1"}, +{"id":"439","name":"المجمعة","city_id":"37","created_at":"2020-12-06 01:58:28","updated_at":"2020-12-06 01:58:28","translations":null,"is_activated":"1"}, +{"id":"440","name":"الحريق","city_id":"37","created_at":"2020-12-06 01:58:33","updated_at":"2020-12-06 01:58:33","translations":null,"is_activated":"1"}, +{"id":"441","name":"وادي الدواسر","city_id":"37","created_at":"2020-12-06 01:58:39","updated_at":"2020-12-06 01:58:39","translations":null,"is_activated":"1"}, +{"id":"442","name":"الزلفي","city_id":"37","created_at":"2020-12-06 01:58:45","updated_at":"2020-12-06 01:58:45","translations":null,"is_activated":"1"}, +{"id":"443","name":"حوطة تميم","city_id":"37","created_at":"2020-12-06 01:58:51","updated_at":"2020-12-06 01:58:51","translations":null,"is_activated":"1"}, +{"id":"444","name":"السليل","city_id":"37","created_at":"2020-12-06 01:58:57","updated_at":"2020-12-06 01:58:57","translations":null,"is_activated":"1"}, +{"id":"445","name":"المزاحمية","city_id":"37","created_at":"2020-12-06 01:59:05","updated_at":"2020-12-06 01:59:05","translations":null,"is_activated":"1"}, +{"id":"446","name":"ثادق","city_id":"37","created_at":"2020-12-06 01:59:11","updated_at":"2020-12-06 01:59:11","translations":null,"is_activated":"1"}, +{"id":"447","name":"الجموم","city_id":"38","created_at":"2020-12-06 01:59:20","updated_at":"2020-12-06 01:59:20","translations":null,"is_activated":"1"}, +{"id":"448","name":"الكامل","city_id":"38","created_at":"2020-12-06 01:59:26","updated_at":"2020-12-06 01:59:26","translations":null,"is_activated":"1"}, +{"id":"449","name":"الخرمة","city_id":"38","created_at":"2020-12-06 01:59:33","updated_at":"2020-12-06 01:59:33","translations":null,"is_activated":"1"}, +{"id":"450","name":"الليث","city_id":"38","created_at":"2020-12-06 01:59:54","updated_at":"2020-12-06 01:59:54","translations":null,"is_activated":"1"}, +{"id":"451","name":"القنفذة","city_id":"38","created_at":"2020-12-06 02:00:01","updated_at":"2020-12-06 02:00:01","translations":null,"is_activated":"1"}, +{"id":"452","name":"الطائف","city_id":"38","created_at":"2020-12-06 02:00:07","updated_at":"2020-12-06 02:00:07","translations":null,"is_activated":"1"}, +{"id":"453","name":"جدة","city_id":"38","created_at":"2020-12-06 02:00:13","updated_at":"2020-12-06 02:00:13","translations":null,"is_activated":"1"}, +{"id":"454","name":"خليص","city_id":"38","created_at":"2020-12-06 02:02:54","updated_at":"2020-12-06 02:02:54","translations":null,"is_activated":"1"}, +{"id":"455","name":"مكة المكرمة","city_id":"38","created_at":"2020-12-06 02:03:00","updated_at":"2020-12-06 02:03:00","translations":null,"is_activated":"1"}, +{"id":"456","name":"رابغ","city_id":"38","created_at":"2020-12-06 02:03:06","updated_at":"2020-12-06 02:03:06","translations":null,"is_activated":"1"}, +{"id":"457","name":"رنية","city_id":"38","created_at":"2020-12-06 02:03:11","updated_at":"2020-12-06 02:03:11","translations":null,"is_activated":"1"}, +{"id":"458","name":"تربة","city_id":"38","created_at":"2020-12-06 02:03:18","updated_at":"2020-12-06 02:03:18","translations":null,"is_activated":"1"}, +{"id":"459","name":"المدينة","city_id":"39","created_at":"2020-12-06 02:03:26","updated_at":"2020-12-06 02:03:26","translations":null,"is_activated":"1"}, +{"id":"460","name":"ينبع","city_id":"39","created_at":"2020-12-06 02:03:34","updated_at":"2020-12-06 02:03:34","translations":null,"is_activated":"1"}, +{"id":"461","name":"العلا","city_id":"39","created_at":"2020-12-06 02:03:40","updated_at":"2020-12-06 02:03:40","translations":null,"is_activated":"1"}, +{"id":"462","name":"الحناكية","city_id":"39","created_at":"2020-12-06 02:03:57","updated_at":"2020-12-06 02:03:57","translations":null,"is_activated":"1"}, +{"id":"463","name":"مهد الذهب","city_id":"39","created_at":"2020-12-06 02:04:02","updated_at":"2020-12-06 02:04:02","translations":null,"is_activated":"1"}, +{"id":"464","name":"خيبر","city_id":"39","created_at":"2020-12-06 02:04:08","updated_at":"2020-12-06 02:04:08","translations":null,"is_activated":"1"}, +{"id":"465","name":"بدر","city_id":"39","created_at":"2020-12-06 02:04:13","updated_at":"2020-12-06 02:04:13","translations":null,"is_activated":"1"}, +{"id":"466","name":"السويرقية","city_id":"39","created_at":"2020-12-06 02:04:20","updated_at":"2020-12-06 02:04:20","translations":null,"is_activated":"1"}, +{"id":"467","name":"العيص","city_id":"39","created_at":"2020-12-06 02:04:27","updated_at":"2020-12-06 02:04:27","translations":null,"is_activated":"1"}, +{"id":"468","name":"وادي الفرع","city_id":"39","created_at":"2020-12-06 02:04:33","updated_at":"2020-12-06 02:04:33","translations":null,"is_activated":"1"}, +{"id":"469","name":"بريدة","city_id":"40","created_at":"2020-12-06 02:04:41","updated_at":"2020-12-06 02:04:41","translations":null,"is_activated":"1"}, +{"id":"470","name":"عنيزة","city_id":"40","created_at":"2020-12-06 02:04:48","updated_at":"2020-12-06 02:04:48","translations":null,"is_activated":"1"}, +{"id":"471","name":"الرس","city_id":"40","created_at":"2020-12-06 02:04:54","updated_at":"2020-12-06 02:04:54","translations":null,"is_activated":"1"}, +{"id":"472","name":"المذنب","city_id":"40","created_at":"2020-12-06 02:05:01","updated_at":"2020-12-06 02:05:01","translations":null,"is_activated":"1"}, +{"id":"473","name":"البكيرية","city_id":"40","created_at":"2020-12-06 02:05:08","updated_at":"2020-12-06 02:05:08","translations":null,"is_activated":"1"}, +{"id":"474","name":"البدائع","city_id":"40","created_at":"2020-12-06 02:05:15","updated_at":"2020-12-06 02:05:15","translations":null,"is_activated":"1"}, +{"id":"475","name":"الأسياح","city_id":"40","created_at":"2020-12-06 02:05:23","updated_at":"2020-12-06 02:05:23","translations":null,"is_activated":"1"}, +{"id":"476","name":"النبهانية","city_id":"40","created_at":"2020-12-06 02:05:31","updated_at":"2020-12-06 02:05:31","translations":null,"is_activated":"1"}, +{"id":"477","name":"الشماسية","city_id":"40","created_at":"2020-12-06 02:05:37","updated_at":"2020-12-06 02:05:37","translations":null,"is_activated":"1"}, +{"id":"478","name":"عيون الجواء","city_id":"40","created_at":"2020-12-06 02:05:44","updated_at":"2020-12-06 02:05:44","translations":null,"is_activated":"1"}, +{"id":"479","name":"رياض الخبراء","city_id":"40","created_at":"2020-12-06 02:05:50","updated_at":"2020-12-06 02:05:50","translations":null,"is_activated":"1"}, +{"id":"480","name":"عقلة الصقور","city_id":"40","created_at":"2020-12-06 02:05:58","updated_at":"2020-12-06 02:05:58","translations":null,"is_activated":"1"}, +{"id":"481","name":"ضريه","city_id":"40","created_at":"2020-12-06 02:06:04","updated_at":"2020-12-06 02:06:04","translations":null,"is_activated":"1"}, +{"id":"482","name":"الأحساء","city_id":"41","created_at":"2020-12-06 02:06:13","updated_at":"2020-12-06 02:06:13","translations":null,"is_activated":"1"}, +{"id":"483","name":"القطيف","city_id":"41","created_at":"2020-12-06 02:06:23","updated_at":"2020-12-06 02:06:23","translations":null,"is_activated":"1"}, +{"id":"484","name":"الخبر","city_id":"41","created_at":"2020-12-06 02:06:38","updated_at":"2020-12-06 02:06:38","translations":null,"is_activated":"1"}, +{"id":"485","name":"الخفجي","city_id":"41","created_at":"2020-12-06 02:06:48","updated_at":"2020-12-06 02:06:48","translations":null,"is_activated":"1"}, +{"id":"486","name":"الدمام","city_id":"41","created_at":"2020-12-06 02:06:55","updated_at":"2020-12-06 02:06:55","translations":null,"is_activated":"1"}, +{"id":"487","name":"بقيق","city_id":"41","created_at":"2020-12-06 02:07:02","updated_at":"2020-12-06 02:07:02","translations":null,"is_activated":"1"}, +{"id":"488","name":"الجبيل","city_id":"41","created_at":"2020-12-06 02:07:11","updated_at":"2020-12-06 02:07:11","translations":null,"is_activated":"1"}, +{"id":"489","name":"حفر الباطن","city_id":"41","created_at":"2020-12-06 02:07:22","updated_at":"2020-12-06 02:07:22","translations":null,"is_activated":"1"}, +{"id":"490","name":"رأس تنورة","city_id":"41","created_at":"2020-12-06 02:07:29","updated_at":"2020-12-06 02:07:29","translations":null,"is_activated":"1"}, +{"id":"491","name":"النعيرية","city_id":"41","created_at":"2020-12-06 02:07:37","updated_at":"2020-12-06 02:07:37","translations":null,"is_activated":"1"}, +{"id":"492","name":"قرية العليا","city_id":"41","created_at":"2020-12-06 02:07:45","updated_at":"2020-12-06 02:07:45","translations":null,"is_activated":"1"}, +{"id":"493","name":"نجران","city_id":"42","created_at":"2020-12-06 02:07:55","updated_at":"2020-12-06 02:07:55","translations":null,"is_activated":"1"}, +{"id":"494","name":"شرورة","city_id":"42","created_at":"2020-12-06 02:08:02","updated_at":"2020-12-06 02:08:02","translations":null,"is_activated":"1"}, +{"id":"495","name":"حبونا","city_id":"42","created_at":"2020-12-06 02:08:15","updated_at":"2020-12-06 02:08:15","translations":null,"is_activated":"1"}, +{"id":"496","name":"بدر الجنوب","city_id":"42","created_at":"2020-12-06 02:08:23","updated_at":"2020-12-06 02:08:23","translations":null,"is_activated":"1"}, +{"id":"497","name":"يدمه","city_id":"42","created_at":"2020-12-06 02:08:31","updated_at":"2020-12-06 02:08:31","translations":null,"is_activated":"1"}, +{"id":"498","name":"ثار","city_id":"42","created_at":"2020-12-06 02:08:42","updated_at":"2020-12-06 02:08:42","translations":null,"is_activated":"1"}, +{"id":"499","name":"خباش","city_id":"42","created_at":"2020-12-06 02:08:50","updated_at":"2020-12-06 02:08:50","translations":null,"is_activated":"1"}, +{"id":"500","name":"الخرخير","city_id":"42","created_at":"2020-12-06 02:08:57","updated_at":"2020-12-06 02:08:57","translations":null,"is_activated":"1"}, +{"id":"501","name":"عرعر","city_id":"43","created_at":"2020-12-06 02:09:09","updated_at":"2020-12-06 02:09:09","translations":null,"is_activated":"1"}, +{"id":"502","name":"رفحاء","city_id":"43","created_at":"2020-12-06 02:09:16","updated_at":"2020-12-06 02:09:16","translations":null,"is_activated":"1"}, +{"id":"503","name":"طريف","city_id":"43","created_at":"2020-12-06 02:09:23","updated_at":"2020-12-06 02:09:23","translations":null,"is_activated":"1"}, +{"id":"504","name":"العويقيلة","city_id":"43","created_at":"2020-12-06 02:09:34","updated_at":"2020-12-06 02:09:34","translations":null,"is_activated":"1"}, +{"id":"505","name":"جديدة عرعر","city_id":"43","created_at":"2020-12-06 02:09:44","updated_at":"2020-12-06 02:09:44","translations":null,"is_activated":"1"}, +{"id":"506","name":"شعبة نصاب","city_id":"43","created_at":"2020-12-06 02:09:51","updated_at":"2020-12-06 02:09:51","translations":null,"is_activated":"1"}, +{"id":"507","name":"القريات","city_id":"44","created_at":"2020-12-06 02:09:58","updated_at":"2020-12-06 02:09:58","translations":null,"is_activated":"1"}, +{"id":"508","name":"دومة الجندل","city_id":"44","created_at":"2020-12-06 02:10:06","updated_at":"2020-12-06 02:10:06","translations":null,"is_activated":"1"}, +{"id":"509","name":"طبرجل","city_id":"44","created_at":"2020-12-06 02:10:12","updated_at":"2020-12-06 02:10:12","translations":null,"is_activated":"1"}, +{"id":"510","name":"سكاكا","city_id":"44","created_at":"2020-12-06 02:10:20","updated_at":"2020-12-06 02:10:20","translations":null,"is_activated":"1"}, +{"id":"511","name":"حائل","city_id":"45","created_at":"2020-12-06 02:10:40","updated_at":"2020-12-06 02:10:40","translations":null,"is_activated":"1"}, +{"id":"512","name":"الحائط","city_id":"45","created_at":"2020-12-06 02:10:50","updated_at":"2020-12-06 02:10:50","translations":null,"is_activated":"1"}, +{"id":"513","name":"بقعاء","city_id":"45","created_at":"2020-12-06 02:10:57","updated_at":"2020-12-06 02:10:57","translations":null,"is_activated":"1"}, +{"id":"514","name":"الشنان","city_id":"45","created_at":"2020-12-06 02:11:06","updated_at":"2020-12-06 02:11:06","translations":null,"is_activated":"1"}, +{"id":"515","name":"الحليفة","city_id":"45","created_at":"2020-12-06 02:11:14","updated_at":"2020-12-06 02:11:14","translations":null,"is_activated":"1"}, +{"id":"516","name":"الغزالة","city_id":"45","created_at":"2020-12-06 02:11:22","updated_at":"2020-12-06 02:11:22","translations":null,"is_activated":"1"}, +{"id":"517","name":"الشملي","city_id":"45","created_at":"2020-12-06 02:11:30","updated_at":"2020-12-06 02:11:30","translations":null,"is_activated":"1"}, +{"id":"518","name":"بلجرشي","city_id":"46","created_at":"2020-12-06 02:11:38","updated_at":"2020-12-06 02:11:38","translations":null,"is_activated":"1"}, +{"id":"519","name":"المندق","city_id":"46","created_at":"2020-12-06 02:11:48","updated_at":"2020-12-06 02:11:48","translations":null,"is_activated":"1"}, +{"id":"520","name":"المخواة","city_id":"46","created_at":"2020-12-06 02:11:54","updated_at":"2020-12-06 02:11:54","translations":null,"is_activated":"1"}, +{"id":"521","name":"قلوة","city_id":"46","created_at":"2020-12-06 02:12:01","updated_at":"2020-12-06 02:12:01","translations":null,"is_activated":"1"}, +{"id":"522","name":"العقيق","city_id":"46","created_at":"2020-12-06 02:12:08","updated_at":"2020-12-06 02:12:08","translations":null,"is_activated":"1"}, +{"id":"523","name":"القرى","city_id":"46","created_at":"2020-12-06 02:12:14","updated_at":"2020-12-06 02:12:14","translations":null,"is_activated":"1"}, +{"id":"524","name":"الحجرة","city_id":"46","created_at":"2020-12-06 02:12:20","updated_at":"2020-12-06 02:12:20","translations":null,"is_activated":"1"}, +{"id":"525","name":"غامد الزناد","city_id":"46","created_at":"2020-12-06 02:12:26","updated_at":"2020-12-06 02:12:26","translations":null,"is_activated":"1"}, +{"id":"526","name":"بني حسن","city_id":"46","created_at":"2020-12-06 02:12:33","updated_at":"2020-12-06 02:12:33","translations":null,"is_activated":"1"}, +{"id":"527","name":"أبها","city_id":"47","created_at":"2020-12-06 02:12:41","updated_at":"2020-12-06 02:12:41","translations":null,"is_activated":"1"}, +{"id":"528","name":"خميس مشيط","city_id":"47","created_at":"2020-12-06 02:12:51","updated_at":"2020-12-06 02:12:51","translations":null,"is_activated":"1"}, +{"id":"529","name":"بيشة","city_id":"47","created_at":"2020-12-06 02:13:00","updated_at":"2020-12-06 02:13:00","translations":null,"is_activated":"1"}, +{"id":"530","name":"النماص","city_id":"47","created_at":"2020-12-06 02:13:08","updated_at":"2020-12-06 02:13:08","translations":null,"is_activated":"1"}, +{"id":"531","name":"محايل عسير","city_id":"47","created_at":"2020-12-06 02:13:14","updated_at":"2020-12-06 02:13:14","translations":null,"is_activated":"1"}, +{"id":"532","name":"رجال ألمع","city_id":"47","created_at":"2020-12-06 02:13:20","updated_at":"2020-12-06 02:13:20","translations":null,"is_activated":"1"}, +{"id":"533","name":"المجاردة","city_id":"47","created_at":"2020-12-06 02:13:28","updated_at":"2020-12-06 02:13:28","translations":null,"is_activated":"1"}, +{"id":"534","name":"سراه عبيدة","city_id":"47","created_at":"2020-12-06 02:13:36","updated_at":"2020-12-06 02:13:36","translations":null,"is_activated":"1"}, +{"id":"535","name":"أحد رفيدة","city_id":"47","created_at":"2020-12-06 02:13:43","updated_at":"2020-12-06 02:13:43","translations":null,"is_activated":"1"}, +{"id":"536","name":"بلقرن","city_id":"47","created_at":"2020-12-06 02:13:49","updated_at":"2020-12-06 02:13:49","translations":null,"is_activated":"1"}, +{"id":"537","name":"تثليث","city_id":"47","created_at":"2020-12-06 02:14:01","updated_at":"2020-12-06 02:14:01","translations":null,"is_activated":"1"}, +{"id":"538","name":"ظهران الجنوب","city_id":"47","created_at":"2020-12-06 02:14:09","updated_at":"2020-12-06 02:14:09","translations":null,"is_activated":"1"}, +{"id":"539","name":"البرك","city_id":"47","created_at":"2020-12-06 02:14:16","updated_at":"2020-12-06 02:14:16","translations":null,"is_activated":"1"}, +{"id":"540","name":"الامواه","city_id":"47","created_at":"2020-12-06 02:14:23","updated_at":"2020-12-06 02:14:23","translations":null,"is_activated":"1"}, +{"id":"541","name":"الحرجة","city_id":"47","created_at":"2020-12-06 02:14:30","updated_at":"2020-12-06 02:14:30","translations":null,"is_activated":"1"}, +{"id":"542","name":"بارق","city_id":"47","created_at":"2020-12-06 02:14:39","updated_at":"2020-12-06 02:14:39","translations":null,"is_activated":"1"}, +{"id":"543","name":"طريب","city_id":"47","created_at":"2020-12-06 02:14:45","updated_at":"2020-12-06 02:14:45","translations":null,"is_activated":"1"}, +{"id":"544","name":"تنومه","city_id":"47","created_at":"2020-12-06 02:14:50","updated_at":"2020-12-06 02:14:50","translations":null,"is_activated":"1"}, +{"id":"545","name":"جيزان","city_id":"48","created_at":"2020-12-06 02:15:06","updated_at":"2020-12-06 02:15:06","translations":null,"is_activated":"1"}, +{"id":"546","name":"أبو عريش","city_id":"48","created_at":"2020-12-06 02:15:13","updated_at":"2020-12-06 02:15:13","translations":null,"is_activated":"1"}, +{"id":"547","name":"صبيا","city_id":"48","created_at":"2020-12-06 02:15:22","updated_at":"2020-12-06 02:15:22","translations":null,"is_activated":"1"}, +{"id":"548","name":"صامطة","city_id":"48","created_at":"2020-12-06 02:15:30","updated_at":"2020-12-06 02:15:30","translations":null,"is_activated":"1"}, +{"id":"549","name":"أحد المسارحة","city_id":"48","created_at":"2020-12-06 02:15:40","updated_at":"2020-12-06 02:15:40","translations":null,"is_activated":"1"}, +{"id":"550","name":"بيش","city_id":"48","created_at":"2020-12-06 02:15:46","updated_at":"2020-12-06 02:15:46","translations":null,"is_activated":"1"}, +{"id":"551","name":"العارضة","city_id":"48","created_at":"2020-12-06 02:15:54","updated_at":"2020-12-06 02:15:54","translations":null,"is_activated":"1"}, +{"id":"552","name":"فيفاء","city_id":"48","created_at":"2020-12-06 02:16:04","updated_at":"2020-12-06 02:16:04","translations":null,"is_activated":"1"}, +{"id":"553","name":"هروب","city_id":"48","created_at":"2020-12-06 02:16:11","updated_at":"2020-12-06 02:16:11","translations":null,"is_activated":"1"}, +{"id":"554","name":"الوجه","city_id":"49","created_at":"2020-12-06 02:16:18","updated_at":"2020-12-06 02:16:18","translations":null,"is_activated":"1"}, +{"id":"555","name":"ضباء","city_id":"49","created_at":"2020-12-06 02:16:24","updated_at":"2020-12-06 02:16:24","translations":null,"is_activated":"1"}, +{"id":"556","name":"أملج","city_id":"49","created_at":"2020-12-06 02:16:33","updated_at":"2020-12-06 02:16:33","translations":null,"is_activated":"1"}, +{"id":"557","name":"حقل","city_id":"49","created_at":"2020-12-06 02:16:40","updated_at":"2020-12-06 02:16:40","translations":null,"is_activated":"1"}, +{"id":"558","name":"تيماء","city_id":"49","created_at":"2020-12-06 02:16:46","updated_at":"2020-12-06 02:16:46","translations":null,"is_activated":"1"}, +{"id":"559","name":"البدع","city_id":"49","created_at":"2020-12-06 02:16:52","updated_at":"2020-12-06 02:16:52","translations":null,"is_activated":"1"}, +{"id":"560","name":"حالة عمار","city_id":"49","created_at":"2020-12-06 02:17:01","updated_at":"2020-12-06 02:17:01","translations":null,"is_activated":"1"}, +{"id":"561","name":"Berat","city_id":"74","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"562","name":"Polican","city_id":"74","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"563","name":"Ure Vajgurore","city_id":"74","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"564","name":"Bulqize","city_id":"75","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"565","name":"Delvine","city_id":"76","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"566","name":"Bilisht","city_id":"77","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"567","name":"Maqellare","city_id":"78","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"568","name":"Peshkopi","city_id":"78","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"569","name":"Durres","city_id":"79","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"570","name":"Shijak","city_id":"79","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"571","name":"Cerrik","city_id":"80","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"572","name":"Elbasan","city_id":"80","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"573","name":"Kerrabe","city_id":"80","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"574","name":"Fier","city_id":"81","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"575","name":"Patos","city_id":"81","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"576","name":"Roskovec","city_id":"81","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"577","name":"Gjirokaster","city_id":"82","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"578","name":"Libohove","city_id":"82","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"579","name":"Gramsh","city_id":"83","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"580","name":"Krume","city_id":"84","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"581","name":"Kavaje","city_id":"85","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"582","name":"Erseke","city_id":"86","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"583","name":"Leskovik","city_id":"86","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"584","name":"Korce","city_id":"87","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"585","name":"Maliq","city_id":"87","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"586","name":"Fushe-Kruje","city_id":"88","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"587","name":"Kruje","city_id":"88","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"588","name":"Mamurras","city_id":"88","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"589","name":"Milot","city_id":"88","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"590","name":"Kucove","city_id":"89","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"591","name":"Kukes","city_id":"90","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"592","name":"Lac","city_id":"91","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"593","name":"Lezhe","city_id":"92","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"594","name":"Shengjin","city_id":"92","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"595","name":"Librazhd","city_id":"93","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"596","name":"Perrenjas","city_id":"93","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"is_activated":"1"}, +{"id":"597","name":"Lushnje","city_id":"94","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"598","name":"Rrogozhine","city_id":"94","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"599","name":"Ballsh","city_id":"95","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"600","name":"Burrel","city_id":"97","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"601","name":"Klos","city_id":"97","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"602","name":"Kraste","city_id":"97","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"603","name":"Ulze","city_id":"97","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"604","name":"Kurbnesh","city_id":"98","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"605","name":"Rreshen","city_id":"98","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"606","name":"Rubik","city_id":"98","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"607","name":"Peqin","city_id":"99","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"608","name":"Kelcyre","city_id":"100","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"609","name":"Permet","city_id":"100","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"610","name":"Pogradec","city_id":"101","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"611","name":"Fierze","city_id":"102","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"612","name":"Fushe-Arrez","city_id":"102","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"613","name":"Puke","city_id":"102","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"614","name":"Konispol","city_id":"103","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"615","name":"Sarande","city_id":"103","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"616","name":"Shkoder","city_id":"104","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"617","name":"Corovode","city_id":"105","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"618","name":"Memaliaj","city_id":"106","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"619","name":"Tepelene","city_id":"106","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"620","name":"Kamze","city_id":"107","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"621","name":"Paskuqan","city_id":"107","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"622","name":"Tirane","city_id":"107","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"623","name":"Vore","city_id":"107","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"624","name":"Bajram Curri","city_id":"108","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"625","name":"Himare","city_id":"109","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"626","name":"Orikum","city_id":"109","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"627","name":"Selenice","city_id":"109","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"628","name":"Vlore","city_id":"109","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"629","name":"Adrar","city_id":"112","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"630","name":"Awlaf","city_id":"112","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"631","name":"Rijan","city_id":"112","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"632","name":"Timimun","city_id":"112","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"633","name":"Hydra","city_id":"113","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"634","name":"Kouba","city_id":"113","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"is_activated":"1"}, +{"id":"635","name":"Annabah","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"636","name":"Birrahhal","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"637","name":"Saraydih","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"638","name":"Sidi Amar","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"639","name":"al-Buni","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"640","name":"al-Hajar","city_id":"114","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"641","name":" Abadlah","city_id":"115","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"642","name":"Bani Wanif","city_id":"115","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"643","name":"Bashshar","city_id":"115","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"644","name":"Qanadsan","city_id":"115","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"645","name":"Taghit","city_id":"115","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"646","name":" Aris","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"647","name":" Ayn Tutah","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"648","name":"Barikah","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"649","name":"Batnah","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"650","name":"Marwanah","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"651","name":"Naghaus","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"652","name":"Ra s-al- Ayun","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"653","name":"Tazult","city_id":"116","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"654","name":" Ayt Rizin","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"655","name":"Akbu","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"656","name":"Amizur","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"657","name":"Barbasha","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"658","name":"Bijayah","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"659","name":"Farrawn","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"660","name":"Ighram","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"661","name":"Sadduk","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"662","name":"Shamini","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"663","name":"Sidi Aysh","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"664","name":"Taskaryut","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"665","name":"Tazmalt","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"666","name":"Timazrit","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"667","name":"Uz-al-Laqin","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"668","name":"al-Qasr","city_id":"117","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"669","name":"Awlad Jallal","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"670","name":"Biskrah","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"671","name":"Sidi Khalid","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"672","name":"Sidi Ukbah","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"673","name":"Tulja","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"674","name":"Um ash","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"675","name":"Zaribat-al-Wad","city_id":"118","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"676","name":"Awlad Salam","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"677","name":"Awlad Yaysh","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"678","name":"Bani Khalil","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"679","name":"Bani Marad","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"680","name":"Bani Tamu","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"681","name":"Blidah","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"682","name":"Bu Arfa","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"683","name":"Bufarik","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"684","name":"Buinan","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"685","name":"Buqara","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"686","name":"Maftah","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"687","name":"Muzayah","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"688","name":"Shabli","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"689","name":"Shari ah","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"690","name":"Shiffa","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"691","name":"Sidi Mussa","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"692","name":"Suma","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"693","name":"Wadi al-Allagh","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"694","name":"al- Afrun","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"695","name":"al-Arba a","city_id":"119","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"696","name":" Ayn Bissim","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"697","name":"Aghbalu","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"698","name":"Bi r Ghabalu","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"699","name":"Buirah","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"700","name":"Lakhdariyah","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"701","name":"Shurfa","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"702","name":"Sur-al-Ghuzlan","city_id":"120","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"703","name":" Ayn Tayah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"704","name":"Awlad Haddaj","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"705","name":"Awlad Mussa","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"706","name":"Bani Amran","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"707","name":"Budwawu","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"708","name":"Budwawu al-Bahri","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"709","name":"Bumardas","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"710","name":"Burj Minayal","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"711","name":"Dalis","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"712","name":"Hammadi","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"713","name":"Issar","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"714","name":"Khamis-al-Khashnah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"715","name":"Nasiriyah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"716","name":"Raghayah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"717","name":"Sa abat","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"718","name":"Tinyah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"719","name":"al-Arba a Tash","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"720","name":"ar-Ruwibah","city_id":"121","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"721","name":"Ammi Mussa","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"722","name":"Ghalizan","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"723","name":"Jidiwiyah","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"724","name":"Mazunah","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"725","name":"Sidi Muhammad Ban Ali","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"726","name":"Wadi Rahiyu","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"727","name":"Zammurah","city_id":"123","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"728","name":"Biryan","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"729","name":"Bu Nura","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"730","name":"Ghardaia","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"731","name":"Ghardayah","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"732","name":"Matlili","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"733","name":"al-Ghuli ah","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"734","name":"al-Qararah","city_id":"124","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"735","name":"Ilizi","city_id":"125","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"736","name":"Amir Abd-al-Qadar","city_id":"126","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"is_activated":"1"}, +{"id":"737","name":"Jijili","city_id":"126","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"738","name":"Shifka","city_id":"126","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"739","name":"Tahar","city_id":"126","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"740","name":"al-Miliyah","city_id":"126","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"741","name":" Ayn Wissarah","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"742","name":" Ayn-al-Ibil","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"743","name":"Birin","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"744","name":"Dar Shiyukh","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"745","name":"Hassi Bahbah","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"746","name":"Jilfah","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"747","name":"Mis ad","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"748","name":"Sharif","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"749","name":"al-Idrisiyah","city_id":"127","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"750","name":"Khanshalah","city_id":"128","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"751","name":"Sharshar","city_id":"128","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"752","name":"Tawziyanat","city_id":"128","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"753","name":"al-Mahmal","city_id":"128","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"754","name":" Ayn-al-Hajal","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"755","name":" Ayn-al-Milh","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"756","name":"Bu Sa adah","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"757","name":"Hammam Dhala a","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"758","name":"Ma adid","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"759","name":"Maghra","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"760","name":"Masilah","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"761","name":"Sidi Aysa","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"762","name":"Wanugha","city_id":"129","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"763","name":" Ayn Bu Sif","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"764","name":"Birwaghiyah","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"765","name":"Midyah","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"766","name":"Qasr-al-Bukhari","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"767","name":"Shillalah","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"768","name":"Tablat","city_id":"130","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"769","name":"Farjiwah","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"770","name":"Milah","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"771","name":"Qararam Quqa","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"772","name":"Ruwashad","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"773","name":"Salghum-al- Ayd","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"774","name":"Sidi Maruf","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"775","name":"Sidi Marwan","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"776","name":"Tajananah","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"777","name":"Talighmah","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"778","name":"Wadi Athmaniyah","city_id":"131","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"779","name":"Bu Khanifiyah","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"780","name":"Muaskar","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"781","name":"Muhammadiyah","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"782","name":"Siq","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"783","name":"Tighinnif","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"784","name":"Wadi al-Abtal","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"785","name":"Zahana","city_id":"132","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"786","name":" Ayn Tadalas","city_id":"133","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"787","name":"Hassi Mamash","city_id":"133","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"788","name":"Mazaghran","city_id":"133","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"789","name":"Mustaghanam","city_id":"133","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"790","name":"Sidi Ali","city_id":"133","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"791","name":" Ayn Safra","city_id":"134","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"792","name":"Mishriyah","city_id":"134","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"793","name":"Naama","city_id":"134","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"794","name":"Oran","city_id":"135","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"795","name":"Ouargla","city_id":"136","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"796","name":" Ayn Bardah","city_id":"137","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"797","name":"Bumahra Ahmad","city_id":"137","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"798","name":"Hamman Awlad Ali","city_id":"137","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"799","name":"Qalmah","city_id":"137","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"800","name":"Wadi Zinati","city_id":"137","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"801","name":" Ayn Abid","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"802","name":" Ayn Samara","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"803","name":"Didush Murad","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"804","name":"Hamma Bu Ziyan","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"805","name":"Qustantinah","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"806","name":"Zighut Yusuf","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"807","name":"al-Khurub","city_id":"138","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"808","name":" Azzabah","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"809","name":"Amjaz Adshish","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"810","name":"Fil Fila","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"811","name":"Karkira","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"812","name":"Ramadan Jamal","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"813","name":"Sakikdah","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"814","name":"Shataybih","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"815","name":"Tamalus","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"816","name":"al-Harush","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"817","name":"al-Qull","city_id":"139","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"818","name":" Ayn Azl","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"819","name":" Ayn Arnat","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"820","name":" Ayn Taqrut","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"821","name":" Ayn Wilman","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"822","name":" Ayn-al-Khabira","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"823","name":"Bouira","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"824","name":"Buq ah","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"825","name":"Salah Bay","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"826","name":"Satif","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"827","name":"Setif","city_id":"140","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"is_activated":"1"}, +{"id":"828","name":"Ziyama Mansuriyah","city_id":"140","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"829","name":"al- Ulmah","city_id":"140","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"830","name":" Ayn-al-Hajar","city_id":"141","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"831","name":"Sayda ","city_id":"141","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"832","name":" Ayn Qazzan","city_id":"144","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"833","name":" Ayn Salah","city_id":"144","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"834","name":"Tamanghasat","city_id":"144","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"835","name":" Ayn Binyan","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"836","name":"Bu Isma il","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"837","name":"Bu Midfar ah","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"838","name":"Damus","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"839","name":"Duwirah","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"840","name":"Hajut","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"841","name":"Hammam Righa","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"842","name":"Sawlah","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"843","name":"Shiragha","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"844","name":"Shirshall","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"845","name":"Sidi Farj","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"846","name":"Stawali","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"847","name":"Tibazah","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"848","name":"Ziralda","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"849","name":"al-Qull ah","city_id":"145","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"850","name":"Bi r-al- Itir","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"851","name":"Hammamat","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"852","name":"Mursut","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"853","name":"Shariyah","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"854","name":"Tibissah","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"855","name":"Winzah","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"856","name":"al- Awaynat","city_id":"146","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"857","name":"Awlad Mimun","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"858","name":"Bani Mastar","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"859","name":"Bani Sikran","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"860","name":"Ghazawat","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"861","name":"Hannayah","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"862","name":"Maghniyah","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"863","name":"Nidruma","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"864","name":"Ramsh","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"865","name":"Sabra","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"866","name":"Shatwan","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"867","name":"Sibdu","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"868","name":"Sidi Abdallah","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"869","name":"Tilimsan","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"870","name":"al-Mansurah","city_id":"147","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"871","name":"Tinduf","city_id":"148","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"872","name":"Thaniyat-al-Had","city_id":"149","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"873","name":"Tisamsilt","city_id":"149","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"874","name":" Ayn Dhahab","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"875","name":"Firindah","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"876","name":"Mahdiyah","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"877","name":"Mashra a Asfa","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"878","name":"Qasr Shillalah","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"879","name":"Rahuyah","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"880","name":"Sughar","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"881","name":"Takhamarat","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"882","name":"Tiyarat","city_id":"150","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"883","name":" Ayn Bayda","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"884","name":" Ayn Fakrun","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"885","name":" Ayn Kirshah","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"886","name":" Ayn Malilah","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"887","name":"Bi r Shuhada","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"888","name":"Miskyanah","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"889","name":"Shamurah","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"890","name":"Umm-al-Bawaghi","city_id":"152","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"891","name":" Ayn Biya","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"892","name":" Ayn-at-Turk","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"893","name":"Arzu","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"894","name":"Bi r-al-Jir","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"895","name":"Butlilis","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"896","name":"Hassi Bu Nif","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"897","name":"Mars-al-Kabir","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"898","name":"Qadayal","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"899","name":"Sidi ash-Shami","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"900","name":"Wadi Thalatha","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"901","name":"Wahran","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"902","name":"al-Ansur","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"903","name":"as-Saniyah","city_id":"153","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"904","name":"Hassi Mas ud","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"905","name":"Nazla","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"906","name":"Ruwisiyat","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"907","name":"Tabisbast","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"908","name":"Tamalhat","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"909","name":"Tamasin","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"910","name":"Tayabat-al-Janubiyah","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"911","name":"Tughghurt","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"912","name":"Warqla","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"913","name":"al-Hajirah","city_id":"154","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"is_activated":"1"}, +{"id":"914","name":"Aflu","city_id":"158","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"915","name":"Hassi al-Raml","city_id":"158","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"916","name":"al-Aghwat","city_id":"158","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"917","name":"Brizyanah","city_id":"159","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"918","name":"al-Abyad Sidi Shaykh","city_id":"159","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"919","name":"al-Bayadh","city_id":"159","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"920","name":"Bab Azwar","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"921","name":"Baraki","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"922","name":"Bir Murad Rais","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"923","name":"Birkhadam","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"924","name":"Burj-al-Kiffan","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"925","name":"Dar-al-Bayda","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"926","name":"al-Jaza ir","city_id":"160","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"927","name":"Bayadha","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"928","name":"Dabilah","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"929","name":"Hassan Abd-al-Karim","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"930","name":"Hassi Halifa","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"931","name":"Jama a","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"932","name":"Maqran","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"933","name":"Qamar","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"934","name":"Raqiba","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"935","name":"Rubbah","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"936","name":"Sidi Amran","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"937","name":"al-Mighair","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"938","name":"al-Wad","city_id":"161","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"939","name":" Ayn Maran","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"940","name":"Abu al-Hassan","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"941","name":"Bani Hawa","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"942","name":"Bu Qadir","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"943","name":"Sidi Ukaskah","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"944","name":"Tanas","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"945","name":"Wadi Sali","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"946","name":"Wadi al-Fiddah","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"947","name":"ash-Shalif","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"948","name":"ash-Shattiyah","city_id":"162","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"949","name":"Ban Mahdi","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"950","name":"Bani Amar","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"951","name":"Basbas","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"952","name":"Dariyan","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"953","name":"Saba ita Muk","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"954","name":"al-Qal ah","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"955","name":"at-Tarif","city_id":"163","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"956","name":"Afono","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"957","name":"Alao","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"958","name":"Alofau","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"959","name":"Amouli","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"960","name":"Aoa","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"961","name":"Atu u","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"962","name":"Aua","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"963","name":"Aunu u","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"964","name":"Faga alu","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"965","name":"Faga itua","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"966","name":"Fagasa","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"967","name":"Fagatogo","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"968","name":"Lauli i","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"969","name":"Leloaloa","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"970","name":"Nu uuli","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"971","name":"Pago Pago","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"972","name":"Tula","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"973","name":"Utulei","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"974","name":"Vatia","city_id":"164","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"975","name":"Ofu","city_id":"165","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"976","name":"Aoloau","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"977","name":"Faleniu","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"978","name":"Futiga","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"979","name":"Ili ili","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"980","name":"Leone","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"981","name":"Malaeimi","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"982","name":"Malaeloa-Aitulagi","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"983","name":"Malaeloa-Ituau","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"984","name":"Mapusagafou","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"985","name":"Mesepa","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"986","name":"Pava ia i","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"987","name":"Tafuna","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"988","name":"Taputimu","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"989","name":"Vailoatai","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"990","name":"Vaitogi","city_id":"167","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"991","name":"Canillo","city_id":"169","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"992","name":"Encamp","city_id":"170","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"is_activated":"1"}, +{"id":"993","name":"Ordino","city_id":"173","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"994","name":"Caxito","city_id":"175","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"995","name":"Benguela","city_id":"176","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"996","name":"Lobito","city_id":"176","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"997","name":"Camacupa","city_id":"177","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"998","name":"Catabola","city_id":"177","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"999","name":"Catumbela","city_id":"177","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1000","name":"Chissamba","city_id":"177","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1001","name":"Kuito","city_id":"177","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1002","name":"Cabinda","city_id":"178","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1003","name":"Ondjiva","city_id":"179","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1004","name":"Caala","city_id":"180","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1005","name":"Catchiungo","city_id":"180","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1006","name":"Huambo","city_id":"180","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1007","name":"Longonjo","city_id":"180","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1008","name":"Caconda","city_id":"181","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1009","name":"Caluquembe","city_id":"181","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1010","name":"Lubango","city_id":"181","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1011","name":"Menongue","city_id":"182","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1012","name":"Luanda","city_id":"185","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1013","name":"Malanje","city_id":"188","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1014","name":"Cazaje","city_id":"189","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1015","name":"Leua","city_id":"189","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1016","name":"Luau","city_id":"189","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1017","name":"Luena","city_id":"189","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1018","name":"Lumeje","city_id":"189","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1019","name":"Namibe","city_id":"190","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1020","name":"Camabatela","city_id":"191","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1021","name":"Uige","city_id":"191","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1022","name":"M banza-Kongo","city_id":"192","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1023","name":"N zeto","city_id":"192","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1024","name":"Soyo","city_id":"192","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"is_activated":"1"}, +{"id":"1025","name":"Codrington","city_id":"201","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1026","name":"Catamarca","city_id":"209","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1027","name":"Presidencia Roque Saenz Pena","city_id":"210","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1028","name":"Resistencia","city_id":"210","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1029","name":"Comodoro Rivadavia","city_id":"211","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1030","name":"Puerto Madryn","city_id":"211","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1031","name":"Rawson","city_id":"211","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1032","name":"Trelew","city_id":"211","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1033","name":"Alta Gracia","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1034","name":"Bell Ville","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1035","name":"Cordoba","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1036","name":"Rio Cuarto","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1037","name":"Rio Tercero","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1038","name":"San Francisco","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1039","name":"Villa Carlos Paz","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1040","name":"Villa Maria","city_id":"212","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1041","name":"Corrientes","city_id":"213","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1042","name":"Goya","city_id":"213","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1043","name":"Mercedes","city_id":"213","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1044","name":"San Lorenzo","city_id":"213","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1045","name":"Formosa","city_id":"216","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1046","name":"Jujuy","city_id":"217","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1047","name":"Libertador General San Martin","city_id":"217","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1048","name":"San Pedro","city_id":"217","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1049","name":"Godoy Cruz","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1050","name":"Lujan","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1051","name":"Mendoza","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1052","name":"Rivadavia","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1053","name":"San Martin","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1054","name":"San Rafael","city_id":"220","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1055","name":"Eldorado","city_id":"221","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1056","name":"Obera","city_id":"221","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1057","name":"Posadas","city_id":"221","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1058","name":"Cutral Co","city_id":"222","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1059","name":"Neuquen","city_id":"222","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"is_activated":"1"}, +{"id":"1060","name":"Salta","city_id":"224","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1061","name":"San Ramon de la Nueva Oran","city_id":"224","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1062","name":"Tartagal","city_id":"224","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1063","name":"Tucuman","city_id":"231","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1064","name":"Ashtarak","city_id":"232","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1065","name":"Talin","city_id":"232","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1066","name":"Ararat","city_id":"233","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1067","name":"Artashat","city_id":"233","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1068","name":"Armavir","city_id":"234","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1069","name":"Vagharshapat","city_id":"234","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1070","name":"Gavar","city_id":"235","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1071","name":"Martuni","city_id":"235","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1072","name":"Sevan","city_id":"235","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1073","name":"Vardenis","city_id":"235","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1074","name":"Abovyan","city_id":"236","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1075","name":"Arzni","city_id":"236","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1076","name":"Charentsavan","city_id":"236","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1077","name":"Hrazdan","city_id":"236","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1078","name":"Akhtala","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1079","name":"Alaverdi","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1080","name":"Spitak","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1081","name":"Stepanavan","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1082","name":"Tashir","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1083","name":"Vanadzor","city_id":"237","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1084","name":"Artik","city_id":"238","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1085","name":"Gyumri","city_id":"238","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1086","name":"Stepanakert","city_id":"239","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1087","name":"Angeghakot","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1088","name":"Goris","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1089","name":"Kajaran","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1090","name":"Kapan","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1091","name":"Meghri","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1092","name":"Sisian","city_id":"240","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1093","name":"Dilijan","city_id":"241","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1094","name":"Ijevan","city_id":"241","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1095","name":"Yerevan","city_id":"243","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1096","name":"Aruba","city_id":"244","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1097","name":"Glenfield","city_id":"245","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1098","name":"Henderson","city_id":"245","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1099","name":"Milford","city_id":"245","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1100","name":"Balgowlah","city_id":"247","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"is_activated":"1"}, +{"id":"1101","name":"Balmain","city_id":"248","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"is_activated":"1"}, +{"id":"1102","name":"Bankstown","city_id":"249","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"is_activated":"1"}, +{"id":"1104","name":"Berat","city_id":"229","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1105","name":"Polican","city_id":"229","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1106","name":"Ure Vajgurore","city_id":"229","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1107","name":"Bulqize","city_id":"230","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1108","name":"Delvine","city_id":"231","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1109","name":"Bilisht","city_id":"232","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1110","name":"Maqellare","city_id":"233","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1111","name":"Peshkopi","city_id":"233","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1112","name":"Durres","city_id":"234","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1113","name":"Shijak","city_id":"234","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1114","name":"Cerrik","city_id":"235","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1115","name":"Elbasan","city_id":"235","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1116","name":"Kerrabe","city_id":"235","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1117","name":"Fier","city_id":"236","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1118","name":"Patos","city_id":"236","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1119","name":"Roskovec","city_id":"236","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1120","name":"Gjirokaster","city_id":"237","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1121","name":"Libohove","city_id":"237","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1122","name":"Gramsh","city_id":"238","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1123","name":"Krume","city_id":"239","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1124","name":"Kavaje","city_id":"240","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1125","name":"Erseke","city_id":"241","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1126","name":"Leskovik","city_id":"241","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"is_activated":"1"}, +{"id":"1127","name":"Korce","city_id":"242","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1128","name":"Maliq","city_id":"242","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1129","name":"Fushe-Kruje","city_id":"243","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1130","name":"Kruje","city_id":"243","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1131","name":"Mamurras","city_id":"243","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1132","name":"Milot","city_id":"243","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1133","name":"Kucove","city_id":"244","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1134","name":"Kukes","city_id":"245","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1135","name":"Lac","city_id":"246","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1136","name":"Lezhe","city_id":"247","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1137","name":"Shengjin","city_id":"247","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1138","name":"Librazhd","city_id":"248","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1139","name":"Perrenjas","city_id":"248","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1140","name":"Lushnje","city_id":"249","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1141","name":"Rrogozhine","city_id":"249","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1142","name":"Ballsh","city_id":"250","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"is_activated":"1"}, +{"id":"1146","name":"Camberwell","city_id":"228","created_at":"2024-01-21 11:51:29","updated_at":"2024-01-21 11:51:29","translations":null,"is_activated":"1"}, +{"id":"1150","name":"Caulfield","city_id":"257","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1151","name":"Chatswood","city_id":"258","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1152","name":"Cheltenham","city_id":"259","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1153","name":"Cherrybrook","city_id":"260","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1154","name":"Clayton","city_id":"261","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1155","name":"Collingwood","city_id":"262","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1156","name":"Hawthorn","city_id":"264","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1157","name":"Jannnali","city_id":"265","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1158","name":"Knoxfield","city_id":"266","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1159","name":"Melbourne","city_id":"267","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1160","name":"South Oakleigh","city_id":"267","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1161","name":"Cottesole","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1162","name":"Darch","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1163","name":"Mullaloo","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1164","name":"Noranda","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1165","name":"Osborne Park","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1166","name":"Willetton","city_id":"270","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1167","name":"Acacia Ridge","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1168","name":"Aitkenvale","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1169","name":"Alderley","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1170","name":"Alexander Hills","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1171","name":"Archerfield","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1172","name":"Ashmore","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1173","name":"Atherton","city_id":"271","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"is_activated":"1"}, +{"id":"1174","name":"Ayr","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1175","name":"Beachmere","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1176","name":"Beenleigh","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1177","name":"Beerwah","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1178","name":"Bell","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1179","name":"Belmont","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1180","name":"Biloela","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1181","name":"Birkdale","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1182","name":"Blackwater","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1183","name":"Bongaree","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1184","name":"Bonogin","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1185","name":"Boonah","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1186","name":"Bowen","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1187","name":"Brendale","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1188","name":"Brisbane","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1189","name":"Buddina","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1190","name":"Buderim","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1191","name":"Bundaberg","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1192","name":"Bundall","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1193","name":"Burleigh Heads","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1194","name":"Burpengary","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1195","name":"Cabaland","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1196","name":"Caboolture","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1197","name":"Cairns","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1198","name":"Cairns Northern Beaches","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1199","name":"Caloundra","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1200","name":"Capalaba","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1201","name":"Charters Towers","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1202","name":"Childers","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1203","name":"Cleveland","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1204","name":"Coolum Beach","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1205","name":"Coopers Plain","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1206","name":"Dalby","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1207","name":"Deception Bay","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1208","name":"Eagle Farm","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1209","name":"Eagleby","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1210","name":"Emerald","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1211","name":"Emundi","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1212","name":"Forest Lake","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1213","name":"Gatton","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1214","name":"Gladstone","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1215","name":"Gold Coast","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1216","name":"Gowrie Junction","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1217","name":"Gympie","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1218","name":"Helensvale","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1219","name":"Hervey Bay","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1220","name":"Ingham","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1221","name":"Innisfail","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1222","name":"Ipswich","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1223","name":"Jindalee","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1224","name":"Julatten","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1225","name":"Kawana Waters","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1226","name":"Kingaroy","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1227","name":"Lawnton","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1228","name":"Loganholme","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1229","name":"Mackay","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1230","name":"Mareeba","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1231","name":"Maroochydore","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1232","name":"Maroochydore-Mooloolaba","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1233","name":"Maryborough","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1234","name":"Miami","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1235","name":"Milton","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1236","name":"Molendinar","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1237","name":"Moranbah","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1238","name":"Morayfield","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1239","name":"Mossman","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1240","name":"Mount Glorious","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1241","name":"Mount Isa","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1242","name":"Murarrie","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1243","name":"Nairand Kay","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1244","name":"Nambour","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1245","name":"Nerang","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1246","name":"Nobby Beach","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1247","name":"Noosa Heads","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1248","name":"Noosaville","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1249","name":"Paddington","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1250","name":"Port Douglas","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1251","name":"Robina","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1252","name":"Rockhampton","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1253","name":"Rocklea","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1254","name":"Roma","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1255","name":"Rubyvale","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1256","name":"Sanctuary Cove","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1257","name":"Slade Point","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1258","name":"Southport","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1259","name":"Suburb","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1260","name":"Sunshine Coast","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1261","name":"Tewantin-Noosa","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1262","name":"The Summit","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1263","name":"Toowong","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1264","name":"Toowoomba","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1265","name":"Townsville","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1266","name":"Victoria Point","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1267","name":"Warwick","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1268","name":"Willawong","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1269","name":"Yatala","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1270","name":"Yeppoon","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1271","name":"Zillmere","city_id":"271","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1272","name":"Bridgewater-Gagebrook","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1273","name":"Burnie","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1274","name":"Burnie-Devonport","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1275","name":"Glenorchy","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1276","name":"Hobart","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1277","name":"Kingston-Blackmans Bay","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1278","name":"Launceston","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1279","name":"New Norfolk","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1280","name":"Rowella","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1281","name":"Sheffield","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1282","name":"Ulverstone","city_id":"273","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1283","name":"Templestowe","city_id":"274","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1284","name":"Albion","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1285","name":"Avenel","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1286","name":"Avondale Heights","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1287","name":"Baccus Marsh","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1288","name":"Bairnsdale","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1289","name":"Ballarat","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1290","name":"Balwyn","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1291","name":"Batman","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1292","name":"Bayswater","city_id":"275","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"is_activated":"1"}, +{"id":"1293","name":"Benalla","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1294","name":"Bendigo","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1295","name":"Bentleigh East","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1296","name":"Berwick","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1297","name":"Blackburn","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1298","name":"Blue Mountains","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1299","name":"Boronia","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1300","name":"Box Hill","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1301","name":"Brighton East","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1302","name":"Bundoora","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1303","name":"Campbellfield","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1304","name":"Carlton South","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1305","name":"Caroline Springs","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1306","name":"Castle Hill","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1307","name":"Castlemaine","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1308","name":"Chester","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1309","name":"Clayton South","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1310","name":"Clifton Springs","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1311","name":"Coburg","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1312","name":"Colac","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1313","name":"Craigieburn","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1314","name":"Cranbourne","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1315","name":"Crib Point","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1316","name":"Dandenong","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1317","name":"Devon Meadows","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1318","name":"Diamond Creek","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1319","name":"Doncaster East","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1320","name":"Doncester","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1321","name":"Donvale","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1322","name":"Echuca-Moama","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1323","name":"Elsternwick","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1324","name":"Eltham","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1325","name":"Fairfield","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1326","name":"Fitzroy","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1327","name":"Frnakston","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1328","name":"Geelong","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1329","name":"Glen Waverley","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1330","name":"Hallam","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1331","name":"Hamilton","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1332","name":"Hastings","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1333","name":"Healesville","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1334","name":"Horsham","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1335","name":"Hughesdale","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1336","name":"Ivanhoe","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1337","name":"Keilor","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1338","name":"Kensington","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1339","name":"Kerang","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1340","name":"Kilmore","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1341","name":"Kilsyth","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1342","name":"Kyabram","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1343","name":"Lakes Entrance","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1344","name":"Lalor","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1345","name":"Lara","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1346","name":"Laverton North","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1347","name":"Leopold","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1348","name":"Lower Templestowe","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1349","name":"Maidstone","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1350","name":"Malvern","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1351","name":"Melton","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1352","name":"Middle Park","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1353","name":"Mildura","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1354","name":"Mitcham","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1355","name":"Moe-Yallourn","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1356","name":"Moorabbin","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1357","name":"Mordialloc","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1358","name":"Morwell","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1359","name":"Mulgrave","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1360","name":"Murrumbeena","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1361","name":"Neerim South","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1362","name":"Noble Park North","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1363","name":"Notting Hill","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1364","name":"Oak Park","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1365","name":"Ocean Grove-Barwon Heads","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1366","name":"Olinda","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1367","name":"Pakenham","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1368","name":"Park Orchards","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1369","name":"Port Melbourne","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1370","name":"Portland","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1371","name":"Prahran","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1372","name":"Preston","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1373","name":"Pritbourne","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1374","name":"Queenscliff","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1375","name":"Reservoir","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1376","name":"Ringwood","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1377","name":"Rowville","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1378","name":"Sale","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1379","name":"Sandringham","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1380","name":"Scoresby","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1381","name":"Sebastopol","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1382","name":"Seymour","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1383","name":"Shepparton-Mooroopna","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1384","name":"Somerville","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1385","name":"South Yarra","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1386","name":"Southbank","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1387","name":"St. Albans","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1388","name":"St. Kilda East","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1389","name":"Stawell","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1390","name":"Sunbury","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1391","name":"Sunshine West","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1392","name":"Swan Hill","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1393","name":"Tatura","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1394","name":"Thomastown","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1395","name":"Thornbury","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1396","name":"Tongala","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1397","name":"Torquay","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1398","name":"Traralgon","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1399","name":"Tullamarine","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1400","name":"Vermont","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1401","name":"Wangaratta","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1402","name":"Wantirna","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1403","name":"Warragul","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1404","name":"Warrnambool","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1405","name":"Welshpool","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1406","name":"Wendouree","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1407","name":"Wonthaggi","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1408","name":"Woodend","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1409","name":"Yarrawonga-Mulwala","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1410","name":"Yea","city_id":"275","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"is_activated":"1"}, +{"id":"1411","name":"Wheeler","city_id":"278","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1412","name":"Eisenstadt","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1413","name":"GroBpetersdorf","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1414","name":"Jennersdorf","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1415","name":"Kemeten","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1416","name":"Mattersburg","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1417","name":"Neudorfl","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1418","name":"Neusiedl am See","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1419","name":"Oberwart","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1420","name":"Pinkafeld","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1421","name":"Rust","city_id":"282","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1422","name":"Maria Rain","city_id":"283","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1423","name":"Poggersdorf","city_id":"283","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1424","name":"Althofen","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1425","name":"Arnoldstein","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1426","name":"Bad Sankt Leonhard","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1427","name":"Bleiburg","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1428","name":"Ebenthal","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1429","name":"Eberndorf","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1430","name":"Feldkirchen","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1431","name":"Ferlach","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1432","name":"Finkenstein","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1433","name":"Friesach","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1434","name":"Hermagor","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1435","name":"Klagenfurt","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1436","name":"Lohnsburg","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1437","name":"Moosburg","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1438","name":"Paternion","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1439","name":"Radentheim","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1440","name":"Sankt Andra","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1441","name":"Sankt Jakob","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1442","name":"Sankt Veit","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1443","name":"Seeboden","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1444","name":"Spittal","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1445","name":"Velden am Worthersee","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1446","name":"Villach","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1447","name":"Volkermarkt","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1448","name":"Wernberg","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1449","name":"Wolfsberg","city_id":"284","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1450","name":"Amstetten","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1451","name":"Bad Voslau","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1452","name":"Baden","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1453","name":"Berndorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1454","name":"Boheimkirchen","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1455","name":"Bruck an der Leitha","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1456","name":"Brunn","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1457","name":"Deutsch-Wagram","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1458","name":"Ebreichsdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1459","name":"Eggendorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1460","name":"Fischamend","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1461","name":"Gablitz","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1462","name":"Ganserndorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1463","name":"Gerasdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1464","name":"Gloggnitz","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1465","name":"Gmund","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1466","name":"Greifenstein","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1467","name":"GroB-Enzersdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1468","name":"GroB-Gerungs","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1469","name":"Guntramsdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1470","name":"Haag","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1471","name":"Hainburg","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1472","name":"Heidenreichstein","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1473","name":"Herzogenburg","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1474","name":"Himberg","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1475","name":"Hollabrunn","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1476","name":"Horn","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1477","name":"Klosterneuburg","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1478","name":"Korneuburg","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1479","name":"Kottingbrunn","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1480","name":"Krems","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1481","name":"Laa","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1482","name":"Langenlois","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1483","name":"Langenzersdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1484","name":"Leobendorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1485","name":"Leopoldsdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1486","name":"Lilienfeld","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1487","name":"Loipersdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1488","name":"Maria Enzersdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1489","name":"Melk","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1490","name":"Mistelbach","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1491","name":"Modling","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1492","name":"Neulengbach","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1493","name":"Neunkirchen","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1494","name":"Niederleis","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1495","name":"Ober-Grabendorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1496","name":"Perchtoldsdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1497","name":"Pernitz","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1498","name":"Pottendorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1499","name":"Poysdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1500","name":"Pressbaum","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1501","name":"Purgstall","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1502","name":"Purkersdorf","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1503","name":"Reichenau","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1504","name":"Retz","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1505","name":"Sankt Andra-Wordern","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1506","name":"Sankt Peter in der Au","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1507","name":"Sankt Polten","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1508","name":"Sankt Valentin","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1509","name":"Scheibbs","city_id":"287","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"is_activated":"1"}, +{"id":"1510","name":"Schrems","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1511","name":"Schwechat","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1512","name":"Seitenstetten","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1513","name":"Sollenau","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1514","name":"Stockerau","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1515","name":"Strasshof","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1516","name":"Ternitz","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1517","name":"Traiskirchen","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1518","name":"Traismauer","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1519","name":"Tulln","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1520","name":"Vosendorf","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1521","name":"Waidhofen","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1522","name":"Wiener Neudorf","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1523","name":"Wiener Neustadt","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1524","name":"Wieselburg","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1525","name":"Wilhelmsburg","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1526","name":"Wolkersdorf","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1527","name":"Ybbs","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1528","name":"Ybbsitz","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1529","name":"Zistersdorf","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1530","name":"Zwettl","city_id":"287","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1531","name":"Alkoven","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1532","name":"Altheim","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1533","name":"Altmunster","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1534","name":"Andorf","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1535","name":"Ansfelden","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1536","name":"Asten","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1537","name":"Attnang-Puchheim","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1538","name":"Aurolzmunster","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1539","name":"Bad Goisern","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1540","name":"Bad Hall","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1541","name":"Bad Ischl","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1542","name":"Braunau","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1543","name":"Breitenfurt","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1544","name":"Ebensee","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1545","name":"Eferding","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1546","name":"Engerwitzdorf","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1547","name":"Enns","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1548","name":"Feldkirchen an der Donau","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1549","name":"Frankenburg","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1550","name":"Freistadt","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1551","name":"Gallneukirchen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1552","name":"Garsten","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1553","name":"Gmunden","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1554","name":"Gramastetten","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1555","name":"Grieskirchen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1556","name":"Gunskirchen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1557","name":"Horsching","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1558","name":"Kirchdorf an der Krems","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1559","name":"Kremsmunster","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1560","name":"Krenglbach","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1561","name":"Laakirchen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1562","name":"Lenzing","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1563","name":"Leonding","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1564","name":"Linz","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1565","name":"Loibichl","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1566","name":"Marchtrenk","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1567","name":"Mattighofen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1568","name":"Mauthausen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1569","name":"Micheldorf","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1570","name":"Neuhofen an der Krems","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1571","name":"Ohlsdorf","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1572","name":"Ottensheim","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1573","name":"Pasching","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1574","name":"Perg","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1575","name":"Pettenbach","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1576","name":"Pram","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1577","name":"Pregarten","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1578","name":"Puchenau","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1579","name":"Regau","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1580","name":"Ried","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1581","name":"Rohrbach in Oberosterreich","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1582","name":"Rutzenmoos","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1583","name":"Sankt Florian","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1584","name":"Sankt Georgen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1585","name":"Sankt Marien","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1586","name":"Scharding","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1587","name":"Scharnstein","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1588","name":"Schwertberg","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1589","name":"Seewalchen","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1590","name":"Sierning","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1591","name":"Stadl-Paura","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1592","name":"Steyr","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1593","name":"Steyregg","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1594","name":"Steyrermuhl","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1595","name":"Thalheim","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1596","name":"Timelkam","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1597","name":"Traun","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1598","name":"Vocklabruck","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1599","name":"Vocklamarkt","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1600","name":"Vorchdorf","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1601","name":"Wels","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1602","name":"Wilhering","city_id":"288","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1603","name":"Abtenau","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1604","name":"Anif","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1605","name":"Bad Gastein","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1606","name":"Bad Hofgastein","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1607","name":"Bergheim","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1608","name":"Bischofshofen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1609","name":"Bruck an der GroBglocknerstraB","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1610","name":"Burmoos","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1611","name":"Elsbethen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1612","name":"Eugendorf","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1613","name":"Forstau","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1614","name":"Grodig","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1615","name":"Hallein","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1616","name":"Hallwang","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1617","name":"Henndorf","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1618","name":"Kuchl","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1619","name":"Mayrhofen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1620","name":"Mittersill","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1621","name":"Neumarkt","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1622","name":"Oberndorf","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1623","name":"Obertrum am See","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1624","name":"Piesendorf","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1625","name":"Puch","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1626","name":"Radstadt","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1627","name":"Saalfelden","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1628","name":"Salzburg","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1629","name":"Sankt Johann im Pongau","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1630","name":"Seekirchen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1631","name":"Sieghartskirchen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1632","name":"StraBwalchen","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1633","name":"Strobl","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1634","name":"Tamsweg","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1635","name":"Thalgau","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1636","name":"Wals-Siezenheim","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1637","name":"Wolfgangsee","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1638","name":"Zell am See","city_id":"289","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1639","name":"Albersdorf","city_id":"290","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"is_activated":"1"}, +{"id":"1640","name":"Bad Aussee","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1641","name":"Barnbach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1642","name":"Bruck an der Mur","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1643","name":"Deutschlandsberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1644","name":"Eisenerz","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1645","name":"Feldbach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1646","name":"Feldkirchen bei Graz","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1647","name":"Fohnsdorf","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1648","name":"Frohnleiten","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1649","name":"Furstenfeld","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1650","name":"Gleisdorf","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1651","name":"Gratkorn","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1652","name":"Graz","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1653","name":"Hartberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1654","name":"Judenburg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1655","name":"Judendorf-StraBengel","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1656","name":"Kapfenberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1657","name":"Karlsdorf","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1658","name":"Kindberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1659","name":"Knittelfeld","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1660","name":"Koflach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1661","name":"Krieglach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1662","name":"Lannach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1663","name":"Leibnitz","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1664","name":"Leoben","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1665","name":"Liezen","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1666","name":"Murzzuschlag","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1667","name":"Rottenmann","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1668","name":"Schladming","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1669","name":"Seiersberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1670","name":"Spielberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1671","name":"Trofaiach","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1672","name":"Voitsberg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1673","name":"Wagna","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1674","name":"Weiz","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1675","name":"Zeltweg","city_id":"291","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1676","name":"Deutschfeistritz","city_id":"292","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1677","name":"Sankt Bartholoma","city_id":"292","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1678","name":"Absam","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1679","name":"Axams","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1680","name":"Ebbs","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1681","name":"Fugen","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1682","name":"Hall","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1683","name":"Haselgehr","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1684","name":"Hopfgarten","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1685","name":"Imst","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1686","name":"Innsbruck","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1687","name":"Jenbach","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1688","name":"Kirchberg","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1689","name":"Kirchbichl","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1690","name":"Kitzbuhel","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1691","name":"Kramsach","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1692","name":"Kufstein","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1693","name":"Landeck","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1694","name":"Lienz","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1695","name":"Matrei","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1696","name":"Neustift im Stubaital","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1697","name":"Reutte","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1698","name":"Rum","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1699","name":"Sankt Johann in Tirol","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1700","name":"Scheffau","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1701","name":"Schwaz","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1702","name":"St. Johann Am Walde","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1703","name":"Telfs","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1704","name":"Vols","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1705","name":"Vomp","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1706","name":"Wattens","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1707","name":"Worgl","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1708","name":"Zirl","city_id":"293","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1709","name":"Altach","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1710","name":"Bludenz","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1711","name":"Bregenz","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1712","name":"Chassieu","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1713","name":"Dietmannsried","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1714","name":"Dornbirn","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1715","name":"Feldkirch","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1716","name":"Frastanz","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1717","name":"Gotzis","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1718","name":"Hard","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1719","name":"Hochst","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1720","name":"Hohenems","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1721","name":"Horbranz","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1722","name":"Hufingen","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1723","name":"Lauterach","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1724","name":"Lochau","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1725","name":"Lustenau","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1726","name":"Mittelberg","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1727","name":"Nenzing","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1728","name":"Nuziders","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1729","name":"Rankweil","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1730","name":"Schruns","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1731","name":"Thuringen","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1732","name":"Wolfurt","city_id":"295","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1733","name":"Vienna","city_id":"296","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1734","name":"Wien","city_id":"296","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1735","name":"Alat","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1736","name":"Artyom","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1737","name":"Baki","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1738","name":"Bakixanov","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1739","name":"Balaxani","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1740","name":"Bilacari","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1741","name":"Bilqax","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1742","name":"Bina","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1743","name":"Buzovna","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1744","name":"Haci Zeynalabdin","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1745","name":"Hovsan","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1746","name":"Lokbatan","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1747","name":"Mastaga","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1748","name":"Puta","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1749","name":"Qarasuxur","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1750","name":"Qobustan","city_id":"297","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"is_activated":"1"}, +{"id":"1751","name":"Rasulzada","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1752","name":"Sabuncu","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1753","name":"Sanqacal","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1754","name":"Sumqayit","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1755","name":"Suraxani","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1756","name":"Xirdalan","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1757","name":"Zirya","city_id":"297","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1758","name":"Daskasan","city_id":"299","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1759","name":"Ganca","city_id":"299","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1760","name":"Xanlar","city_id":"299","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1761","name":"Ganja","city_id":"300","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1762","name":"Cabrayil","city_id":"301","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1763","name":"Kalbacar","city_id":"301","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1764","name":"Lacin","city_id":"301","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1765","name":"Astara","city_id":"302","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1766","name":"Goytapa","city_id":"302","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1767","name":"Lankaran","city_id":"302","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1768","name":"Masalli","city_id":"302","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1769","name":"Neftcala","city_id":"302","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1770","name":"Agcabadi","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1771","name":"Agdam","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1772","name":"Barda","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1773","name":"Mingacevir","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1774","name":"Tartar","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1775","name":"Yevlax","city_id":"303","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1776","name":"Ali Bayramli","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1777","name":"Bilasuvar","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1778","name":"Calilabad","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1779","name":"Qarasu","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1780","name":"Qazimammad","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1781","name":"Saatli","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1782","name":"Sabirabad","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1783","name":"Salyan","city_id":"304","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1784","name":"Susa","city_id":"305","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1785","name":"Xankandi","city_id":"305","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1786","name":"Xocavand","city_id":"305","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1787","name":"Culfa","city_id":"306","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1788","name":"Naxcivan","city_id":"306","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1789","name":"Ordubad","city_id":"306","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1790","name":"Sadarak","city_id":"306","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1791","name":"Sarur","city_id":"306","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1792","name":"Beylaqan","city_id":"307","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1793","name":"Fuzuli","city_id":"307","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1794","name":"Imisli","city_id":"307","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1795","name":"Agstafa","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1796","name":"Gadabay","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1797","name":"Kovlar","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1798","name":"Qaracamirli","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1799","name":"Qazax","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1800","name":"Samkir","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1801","name":"Tovuz","city_id":"308","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1802","name":"Amircan","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1803","name":"Balakan","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1804","name":"Katex","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1805","name":"Oguz","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1806","name":"Qabala","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1807","name":"Qax","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1808","name":"Saki","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1809","name":"Zaqatala","city_id":"309","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1810","name":"Agdas","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1811","name":"Agsu","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1812","name":"Goycay","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1813","name":"Ismayilli","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1814","name":"Kurdamir","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1815","name":"Samaxi","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1816","name":"Ucar","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1817","name":"Zardab","city_id":"310","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1818","name":"Davaci","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1819","name":"Quba","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1820","name":"Qusar","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1821","name":"Siyazan","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1822","name":"Xacmaz","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1823","name":"Xudat","city_id":"311","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1824","name":"Coopers Town","city_id":"312","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"is_activated":"1"}, +{"id":"1825","name":"Marsh Harbour","city_id":"312","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1826","name":"Andros Town","city_id":"314","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1827","name":"Nicholls Town","city_id":"314","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1828","name":"Alice Town","city_id":"316","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1829","name":"Freetown","city_id":"319","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1830","name":"Rock Sound","city_id":"319","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1831","name":"Pirates Well","city_id":"324","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1832","name":" Isa","city_id":"329","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1833","name":"Badiyah","city_id":"330","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1834","name":"Hidd","city_id":"331","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1835","name":"Mahama","city_id":"333","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1836","name":"Manama","city_id":"334","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1837","name":"Sitrah","city_id":"335","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1838","name":"al-Manamah","city_id":"336","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1839","name":"al-Muharraq","city_id":"337","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1840","name":"ar-Rifa a","city_id":"338","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1841","name":"Bandarban","city_id":"340","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"is_activated":"1"}, +{"id":"1842","name":"Barguna","city_id":"341","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1843","name":"Barisal","city_id":"342","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1844","name":"Gaurnadi","city_id":"342","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1845","name":"Mehendiganj","city_id":"342","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1846","name":"Nalchiti","city_id":"342","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1847","name":"Bhola","city_id":"343","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1848","name":"Burhanuddin","city_id":"343","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1849","name":"Char Fasson","city_id":"343","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1850","name":"Lalmohan","city_id":"343","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1851","name":"Adamighi","city_id":"344","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1852","name":"Bogora","city_id":"344","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1853","name":"Sherpur","city_id":"344","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1854","name":"Chandpur","city_id":"346","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1855","name":"Hajiganj","city_id":"346","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1856","name":"Boalkhali","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1857","name":"Chattagam","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1858","name":"Fatikchhari","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1859","name":"Lohagara","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1860","name":"Patiya","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1861","name":"Rangunia","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1862","name":"Raozan","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1863","name":"Sandip","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1864","name":"Satkaniya","city_id":"347","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1865","name":"Alamdanga","city_id":"349","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1866","name":"Chuadanga","city_id":"349","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1867","name":"Damurhuda","city_id":"349","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1868","name":"Dhaka","city_id":"350","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1869","name":"Dhamrai","city_id":"350","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1870","name":"Dohar","city_id":"350","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1871","name":"Bochanganj","city_id":"351","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1872","name":"Dinajpur","city_id":"351","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1873","name":"Fulbari","city_id":"351","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1874","name":"Parbatipur","city_id":"351","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1875","name":"Bhanga","city_id":"352","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1876","name":"Char Bhadrasan","city_id":"352","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1877","name":"Faridpur","city_id":"352","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1878","name":"Chhagalnaiya","city_id":"353","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1879","name":"Feni","city_id":"353","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1880","name":"Gaybanda","city_id":"354","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1881","name":"Gazipur","city_id":"355","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1882","name":"Tungi","city_id":"355","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1883","name":"Gopalganj","city_id":"356","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1884","name":"Tungi Para","city_id":"356","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1885","name":"Baniachang","city_id":"357","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1886","name":"Habiganj","city_id":"357","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1887","name":"Jamalpur","city_id":"359","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1888","name":"Sarishabari","city_id":"359","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1889","name":"Abhaynagar","city_id":"360","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1890","name":"Jessor","city_id":"360","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1891","name":"Jhikargachha","city_id":"360","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1892","name":"Keshabpur","city_id":"360","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"is_activated":"1"}, +{"id":"1893","name":"Jhalakati","city_id":"361","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1894","name":"Jhanaydah","city_id":"362","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1895","name":"Kaliganj","city_id":"362","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1896","name":"Kotchandpur","city_id":"362","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1897","name":"Shailkupa","city_id":"362","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1898","name":"Khagrachari","city_id":"363","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1899","name":"Manikchhari","city_id":"363","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1900","name":"Ramgarh","city_id":"363","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1901","name":"Khulna","city_id":"364","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1902","name":"Phultala","city_id":"364","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1903","name":"Bajitpur","city_id":"365","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1904","name":"Bhairab Bazar","city_id":"365","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1905","name":"Itna","city_id":"365","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1906","name":"Kishorganj","city_id":"365","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1907","name":"Komilla","city_id":"367","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1908","name":"Laksham","city_id":"367","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1909","name":"Chilmari","city_id":"368","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1910","name":"Kurigram","city_id":"368","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1911","name":"Nageshwari","city_id":"368","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1912","name":"Ulipur","city_id":"368","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1913","name":"Bheramara","city_id":"369","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1914","name":"Kushtiya","city_id":"369","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1915","name":"Lakshmipur","city_id":"370","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1916","name":"Ramganj","city_id":"370","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1917","name":"Ramgati","city_id":"370","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1918","name":"Raypur","city_id":"370","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1919","name":"Madaripur","city_id":"372","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1920","name":"Magura","city_id":"373","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1921","name":"Bhaluka","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1922","name":"Fulbaria","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1923","name":"Gafargaon","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1924","name":"Ishwarganj","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1925","name":"Maimansingh","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1926","name":"Muktagachha","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1927","name":"Trishal","city_id":"374","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1928","name":"Manikganj","city_id":"375","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1929","name":"Meherpur","city_id":"377","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1930","name":"Munshiganj","city_id":"378","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1931","name":"Kalia","city_id":"379","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1932","name":"Naral","city_id":"379","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1933","name":"Narayanganj","city_id":"380","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1934","name":"Rupganj","city_id":"380","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1935","name":"Narsingdi","city_id":"381","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1936","name":"Roypura","city_id":"381","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"is_activated":"1"}, +{"id":"1937","name":"Gurudaspur","city_id":"382","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1938","name":"Nator","city_id":"382","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1939","name":"Naugaon","city_id":"383","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1940","name":"Gomastapur","city_id":"384","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1941","name":"Nawabganj","city_id":"384","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1942","name":"Shibganj","city_id":"384","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1943","name":"Netrakona","city_id":"385","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1944","name":"Domar","city_id":"386","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1945","name":"Nilphamari","city_id":"386","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1946","name":"Sa idpur","city_id":"386","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1947","name":"Begamganj","city_id":"387","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1948","name":"Noakhali","city_id":"387","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1949","name":"Senbagh","city_id":"387","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1950","name":"Bera","city_id":"388","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1951","name":"Bhangura","city_id":"388","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1952","name":"Ishurdi","city_id":"388","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1953","name":"Pabna","city_id":"388","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1954","name":"Panchagarh","city_id":"389","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1955","name":"Patuakhali","city_id":"390","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1956","name":"Bhandaria","city_id":"391","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1957","name":"Mathbaria","city_id":"391","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1958","name":"Nesarabad","city_id":"391","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1959","name":"Pirojpur","city_id":"391","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1960","name":"Pangsha","city_id":"392","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1961","name":"Rajbari","city_id":"392","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1962","name":"Rajshahi","city_id":"393","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1963","name":"Kaptai","city_id":"394","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1964","name":"Rangamati","city_id":"394","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1965","name":"Badarganj","city_id":"395","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1966","name":"Kaunia","city_id":"395","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1967","name":"Rangpur","city_id":"395","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1968","name":"Satkhira","city_id":"396","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1969","name":"Palang","city_id":"397","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1970","name":"Nalitabari","city_id":"398","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1971","name":"Silhat","city_id":"399","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1972","name":"Shahjadpur","city_id":"400","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1973","name":"Sirajganj","city_id":"400","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1974","name":"Chhatak","city_id":"401","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1975","name":"Sunamganj","city_id":"401","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1976","name":"Gopalpur","city_id":"402","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1977","name":"Mirzapur","city_id":"402","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1978","name":"Sakhipur","city_id":"402","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1979","name":"Tangayal","city_id":"402","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"is_activated":"1"}, +{"id":"1980","name":"Pirganj","city_id":"403","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1981","name":"Thakurgaon","city_id":"403","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1982","name":"Baranavichy","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1983","name":"Bjaroza","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1984","name":"Bjeloozersk","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1985","name":"Brest","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1986","name":"David-Haradok","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1987","name":"Drahichyn","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1988","name":"Hancavichy","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1989","name":"Ivacevichy","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1990","name":"Ivanava","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1991","name":"Kamjenec","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1992","name":"Kobryn","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1993","name":"Kosava","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1994","name":"Ljahavichy","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1995","name":"Luninjec","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1996","name":"Malaryta","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1997","name":"Mikashevichy","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1998","name":"Pinsk","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"1999","name":"Pruzhany","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2000","name":"Stolin","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2001","name":"Vysokoje","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2002","name":"Zhabinka","city_id":"411","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2003","name":"Buda Kosheljovo","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2004","name":"Chechersk","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2005","name":"Dobrush","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2006","name":"Hojniki","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2007","name":"Homjel ","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2008","name":"Jel sk","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2009","name":"Kalinkavichy","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2010","name":"Kascjukovka","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2011","name":"Mazyr","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2012","name":"Narovlja","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2013","name":"Pjetrykav","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2014","name":"Rahachow","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2015","name":"Rechyca","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2016","name":"Svetlahorsk","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2017","name":"Vasilevichy","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2018","name":"Vjetka","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2019","name":"Zhlobin","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2020","name":"Zhytkavichy","city_id":"412","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2021","name":"Ashmjany","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2022","name":"Berjozovka","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2023","name":"Hrodna","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2024","name":"Lida","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2025","name":"Masty","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2026","name":"Navahrudak","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2027","name":"Shchuchyn","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2028","name":"Skidel ","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2029","name":"Slonim","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2030","name":"Smarhon ","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2031","name":"Vawkavysk","city_id":"413","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2032","name":"Asipovichy","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2033","name":"Babrujsk","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2034","name":"Byhau","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2035","name":"Chausy","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2036","name":"Cherikov","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2037","name":"Horki","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2038","name":"Kascjukovichy","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2039","name":"Klimavichy","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2040","name":"Krychaw","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2041","name":"Mahiljow","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2042","name":"Mstislav","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2043","name":"Shklov","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2044","name":"Slaeuharad","city_id":"414","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2045","name":"Minsk","city_id":"416","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"is_activated":"1"}, +{"id":"2046","name":"Petrikov","city_id":"418","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2047","name":"Baran ","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2048","name":"Braslav","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2049","name":"Chashniki","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2050","name":"Disna","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2051","name":"Dokshicy","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2052","name":"Dubrovna","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2053","name":"Haradok","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2054","name":"Hlybokaje","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2055","name":"Ljepjel ","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2056","name":"Mjory","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2057","name":"Navapolack","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2058","name":"Novalukoml ","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2059","name":"Orsha","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2060","name":"Pastavy","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2061","name":"Polack","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2062","name":"Polotsk","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2063","name":"Senno","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2064","name":"Talachyn","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2065","name":"Verhnjadzvimsk","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2066","name":"Vicebsk","city_id":"419","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2067","name":"Aartselaar","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2068","name":"Antwerpen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2069","name":"Arendonk","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2070","name":"Baarle-Hertog","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2071","name":"Balen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2072","name":"Beerse","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2073","name":"Berlaar","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2074","name":"Boechout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2075","name":"Bonheiden","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2076","name":"Boom","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2077","name":"Bornem","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2078","name":"Borsbeek","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2079","name":"Brasschaat","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2080","name":"Brecht","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2081","name":"Dessel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2082","name":"Deurne","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2083","name":"Duffel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2084","name":"Edegem","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2085","name":"Ekeren","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2086","name":"Essen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2087","name":"Geel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2088","name":"Geluvele","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2089","name":"Grobbendonk","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2090","name":"Heist-op-den-Berg","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2091","name":"Hemiksem","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2092","name":"Herentals","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2093","name":"Herenthout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2094","name":"Herselt","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2095","name":"Hoogstraten","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2096","name":"Hove","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2097","name":"Hulshout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2098","name":"Kalmpthout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2099","name":"Kalmthout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2100","name":"Kapellen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2101","name":"Kasterlee","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2102","name":"Kontich","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2103","name":"Laakdal","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2104","name":"Lier","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2105","name":"Lille","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2106","name":"Lint","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2107","name":"Malle","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2108","name":"Mechelen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2109","name":"Meerhout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2110","name":"Merksplas","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2111","name":"Mol","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2112","name":"Mortsel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2113","name":"Niel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2114","name":"Nijlen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2115","name":"Olen","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2116","name":"Oud-Turnhout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2117","name":"Putte","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2118","name":"Puurs","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2119","name":"Ranst","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2120","name":"Ravels","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2121","name":"Retie","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2122","name":"Rijkevorsel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2123","name":"Robrechts","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2124","name":"Rumst","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2125","name":"Schelle","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2126","name":"Schilde","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2127","name":"Schoten","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2128","name":"Sint-Amands","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2129","name":"Sint-Katelijne-Waver","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2130","name":"Stabroek","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2131","name":"Turnhout","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2132","name":"Vorselaar","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2133","name":"Vosselaar","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2134","name":"Westerlo","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2135","name":"Wijnegem","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2136","name":"Willebroek","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2137","name":"Wilrijk","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2138","name":"Wommelgem","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2139","name":"Wuustwezel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2140","name":"Zandhoven","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2141","name":"Zoersel","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2142","name":"Zwijndrecht","city_id":"420","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2143","name":"Berchem","city_id":"421","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2144","name":"Alsemberg","city_id":"422","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2145","name":"Asse Zellik","city_id":"422","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2146","name":"Brussels","city_id":"422","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2147","name":"Bruxelles","city_id":"422","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2148","name":"Diegem","city_id":"422","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"is_activated":"1"}, +{"id":"2149","name":"Brussel","city_id":"424","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2150","name":"Aiseau-Presles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2151","name":"Anderlues","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2152","name":"Antoing","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2153","name":"Ath","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2154","name":"Beaumont","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2155","name":"Beloeil","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2156","name":"Bernissart","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2157","name":"Binche","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2158","name":"Boussu","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2159","name":"Braine-le-Comte","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2160","name":"Brugelette","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2161","name":"Brunehaut","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2162","name":"Celles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2163","name":"Chapelle-lez-Herlaimont","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2164","name":"Charleroi","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2165","name":"Chatelet","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2166","name":"Chievres","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2167","name":"Chimay","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2168","name":"Colfontaine","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2169","name":"Comines-Warneton","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2170","name":"Courcelles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2171","name":"Dour","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2172","name":"Ecaussinnes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2173","name":"Ellezelles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2174","name":"Enghien","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2175","name":"Erquelinnes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2176","name":"Estaimpuis","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2177","name":"Estinnes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2178","name":"Farciennes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2179","name":"Fleurus","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2180","name":"Flobecq","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2181","name":"Fontaine-l Eveque","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2182","name":"Frameries","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2183","name":"Frasnes-lez-Anvaing","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2184","name":"Froidchapelle","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2185","name":"Gerpinnes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2186","name":"Haine-Saint-Pierre","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2187","name":"Ham-sur-Heure-Nalinnes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2188","name":"Hensies","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2189","name":"Honnelles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2190","name":"Jurbise","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2191","name":"La Louviere","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2192","name":"Le Roeulx","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2193","name":"Lens","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2194","name":"Les Bons Villers","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2195","name":"Lessines","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2196","name":"Leuze-en-Hainaut","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2197","name":"Lobbes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2198","name":"Manage","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2199","name":"Merbes-le-Chateau","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2200","name":"Momignies","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2201","name":"Mons","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2202","name":"Mont-de-l Enclus","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2203","name":"Montigny-le-Tilleul","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2204","name":"Morlanwelz","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2205","name":"Mouscron","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2206","name":"Pecq","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2207","name":"Peruwelz","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2208","name":"Pont-a-Celles","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2209","name":"Quaregnon","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2210","name":"Quevy","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2211","name":"Quievrain","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2212","name":"Rumes","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2213","name":"Saint-Ghislain","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2214","name":"Seneffe","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2215","name":"Silly","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2216","name":"Sivry-Rance","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2217","name":"Soignies","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2218","name":"Thuin","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2219","name":"Tournai","city_id":"426","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2220","name":"Amay","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2221","name":"Amel","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2222","name":"Angleur","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2223","name":"Ans","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2224","name":"Anthisnes","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2225","name":"Aubel","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2226","name":"Awans","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2227","name":"Aywaille","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2228","name":"Baelen","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2229","name":"Bassenge","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2230","name":"Berloz","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2231","name":"Beyne-Heusay","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2232","name":"Blegny","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2233","name":"Braives","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2234","name":"Bullingen","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2235","name":"Burdinne","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2236","name":"Burg-Reuland","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2237","name":"Butgenbach","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2238","name":"Chaudfontaine","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2239","name":"Clavier","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2240","name":"Comblain-au-Pont","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2241","name":"Crisnee","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2242","name":"Dalhem","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2243","name":"Dison","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2244","name":"Donceel","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2245","name":"Engis","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2246","name":"Esneux","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2247","name":"Eupen","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2248","name":"Faimes","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2249","name":"Ferrieres","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2250","name":"Fexhe-le-Haut-Clocher","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2251","name":"Flemalle","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2252","name":"Fleron","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2253","name":"Geer","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2254","name":"Grace-Hollogne","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2255","name":"Hamoir","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2256","name":"Hannut","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2257","name":"Heron","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2258","name":"Herstal","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2259","name":"Herve","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2260","name":"Huy","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2261","name":"Jalhay","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2262","name":"Juprelle","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2263","name":"Kelmis","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2264","name":"Liege","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2265","name":"Lierneux","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2266","name":"Limbourg","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2267","name":"Lincent","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2268","name":"Lontzen","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2269","name":"Malmedy","city_id":"427","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"is_activated":"1"}, +{"id":"2270","name":"Marchin","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2271","name":"Modave","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2272","name":"Montzen","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2273","name":"Nandrin","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2274","name":"Neupre","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2275","name":"Olne","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2276","name":"Oreye","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2277","name":"Ouffet","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2278","name":"Oupeye","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2279","name":"Pepinster","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2280","name":"Plombieres","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2281","name":"Racour","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2282","name":"Raeren","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2283","name":"Remicourt","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2284","name":"Saint-Georges-sur-Meuse","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2285","name":"Saint-Nicolas","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2286","name":"Sankt Vith","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2287","name":"Seraing","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2288","name":"Soumagne","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2289","name":"Spa","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2290","name":"Sprimont","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2291","name":"Stavelot","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2292","name":"Stoumont","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2293","name":"Theux","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2294","name":"Thimister-Clermont","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2295","name":"Tinlot","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2296","name":"Trois-Ponts","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2297","name":"Trooz","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2298","name":"Verlaine","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2299","name":"Verviers","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2300","name":"Villers-le-Bouillet","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2301","name":"Vise","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2302","name":"Waimes","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2303","name":"Wanze","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2304","name":"Waremme","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2305","name":"Wasseiges","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2306","name":"Welkenraedt","city_id":"427","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2307","name":"Alken","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2308","name":"As","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2309","name":"Beringen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2310","name":"Bilzen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2311","name":"Bocholt","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2312","name":"Borgloon","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2313","name":"Bree","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2314","name":"Diepenbeek","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2315","name":"Dilsen-Stokkem","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2316","name":"Genk","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2317","name":"Gingelom","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2318","name":"Halen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2319","name":"Ham","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2320","name":"Hamont-Achel","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2321","name":"Hasselt","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2322","name":"Hechtel-Eksel","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2323","name":"Heers","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2324","name":"Herk-de-Stad","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2325","name":"Herstappe","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2326","name":"Heusden-Zolder","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2327","name":"Hoeselt","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2328","name":"Houthalen-Helchteren","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2329","name":"Kinrooi","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2330","name":"Kortessem","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2331","name":"Kuringen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2332","name":"Lanaken","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2333","name":"Leopoldsburg","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2334","name":"Lommel","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2335","name":"Lummen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2336","name":"Maaseik","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2337","name":"Maasmechelen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2338","name":"Meeuwen-Gruitrode","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2339","name":"Neerpelt","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2340","name":"Nieuwerkerken","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2341","name":"Opglabbeek","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2342","name":"Overpelt","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2343","name":"Peer","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2344","name":"Riemst","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2345","name":"Sint-Truiden","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2346","name":"Tessenderlo","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2347","name":"Tongeren","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2348","name":"Voeren","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2349","name":"Wellen","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2350","name":"Zonhoven","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2351","name":"Zutendaal","city_id":"428","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2352","name":"Arlon","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2353","name":"Attert","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2354","name":"Aubange","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2355","name":"Bastogne","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2356","name":"Bertogne","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2357","name":"Bertrix","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2358","name":"Bouillon","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2359","name":"Chiny","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2360","name":"Daverdisse","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2361","name":"Durbuy","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2362","name":"Erezee","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2363","name":"Etalle","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2364","name":"Fauvillers","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2365","name":"Florenville","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2366","name":"Gouvy","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2367","name":"Grapfontaine","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2368","name":"Habay","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2369","name":"Herbeumont","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2370","name":"Hotton","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2371","name":"Houffalize","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2372","name":"La Roche-en-Ardenne","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2373","name":"Leglise","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2374","name":"Libin","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2375","name":"Libramont-Chevigny","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2376","name":"Manhay","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2377","name":"Marche-en-Famenne","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2378","name":"Marloie","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2379","name":"Martelange","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2380","name":"Meix-devant-Virton","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2381","name":"Messancy","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2382","name":"Musson","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2383","name":"Nassogne","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2384","name":"Neufchateau","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2385","name":"Paliseul","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2386","name":"Rendeux","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2387","name":"Rouvroy","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2388","name":"Saint-Hubert","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2389","name":"Saint-Leger","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2390","name":"Sainte-Ode","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2391","name":"Tellin","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2392","name":"Tenneville","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2393","name":"Tintigny","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2394","name":"Vaux-sur-Sure","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2395","name":"Vielsalm","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2396","name":"Virton","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2397","name":"Wellin","city_id":"429","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2398","name":"Andenne","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2399","name":"Anhee","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2400","name":"Assesse","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2401","name":"Beauraing","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2402","name":"Bievre","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2403","name":"Cerfontaine","city_id":"430","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"is_activated":"1"}, +{"id":"2404","name":"Ciney","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2405","name":"Couvin","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2406","name":"Dinant","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2407","name":"Doische","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2408","name":"Eghezee","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2409","name":"Fernelmont","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2410","name":"Floreffe","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2411","name":"Florennes","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2412","name":"Fosses-la-Ville","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2413","name":"Gedinne","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2414","name":"Gembloux","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2415","name":"Gesves","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2416","name":"Hamois","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2417","name":"Hastiere","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2418","name":"Havelange","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2419","name":"Houyet","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2420","name":"Jambes","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2421","name":"Jemeppe-sur-Sambre","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2422","name":"La Bruyere","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2423","name":"Malonne","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2424","name":"Mettet","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2425","name":"Namur","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2426","name":"Ohey","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2427","name":"Onhaye","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2428","name":"Philippeville","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2429","name":"Profondeville","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2430","name":"Rochefort","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2431","name":"Sambreville","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2432","name":"Sombreffe","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2433","name":"Somme-Leuze","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2434","name":"Suarlee","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2435","name":"Viroinval","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2436","name":"Vresse-sur-Semois","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2437","name":"Walcourt","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2438","name":"Yvoir","city_id":"430","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2439","name":"Gullegem","city_id":"431","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2440","name":"Langdorp","city_id":"431","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2441","name":"Aalst","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2442","name":"Aalter","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2443","name":"Assenede","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2444","name":"Berlare","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2445","name":"Beveren","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2446","name":"Brakel","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2447","name":"Buggenhout","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2448","name":"De Pinte","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2449","name":"Deinze","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2450","name":"Denderleeuw","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2451","name":"Dendermonde","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2452","name":"Destelbergen","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2453","name":"Drongen","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2454","name":"Eeklo","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2455","name":"Erembodegem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2456","name":"Erpe-Mere","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2457","name":"Evergem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2458","name":"Gavere","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2459","name":"Gent","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2460","name":"Geraardsbergen","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2461","name":"Ghent","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2462","name":"Haaltert","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2463","name":"Hamme","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2464","name":"Herzele","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2465","name":"Horebeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2466","name":"Kaprijke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2467","name":"Kerksken","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2468","name":"Kluisbergen","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2469","name":"Knesselare","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2470","name":"Kruibeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2471","name":"Kruishoutem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2472","name":"Laarne","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2473","name":"Lebbeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2474","name":"Lede","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2475","name":"Lierde","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2476","name":"Lochristi","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2477","name":"Lokeren","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2478","name":"Lovendegem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2479","name":"Maarkedal","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2480","name":"Maldegem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2481","name":"Melle","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2482","name":"Merelbeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2483","name":"Moerbeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2484","name":"Nazareth","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2485","name":"Nevele","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2486","name":"Ninove","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2487","name":"Oosterzele","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2488","name":"Oudenaarde","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2489","name":"Ronse","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2490","name":"Semmerzake","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2491","name":"Sint-Gillis-Waas","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2492","name":"Sint-Laureins","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2493","name":"Sint-Lievens-Houtem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2494","name":"Sint-Martens-Latem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2495","name":"Sint-Niklaas","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2496","name":"Stekene","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2497","name":"Temse","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2498","name":"Waarschoot","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2499","name":"Waasmunster","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2500","name":"Wachtebeke","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2501","name":"Wetteren","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2502","name":"Wichelen","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2503","name":"Wortegem-Petegem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2504","name":"Zele","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2505","name":"Zelzate","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2506","name":"Zingem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2507","name":"Zomergem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2508","name":"Zottegem","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2509","name":"Zulte","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2510","name":"Zwalm","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2511","name":"Zwijnaarde","city_id":"432","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2512","name":"Aarschot","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2513","name":"Affligem","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2514","name":"Asse","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2515","name":"Beersel","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2516","name":"Begijnendijk","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2517","name":"Bekkevoort","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2518","name":"Bertem","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2519","name":"Bever","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2520","name":"Bierbeek","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2521","name":"Boortmeerbeek","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2522","name":"Boutersem","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2523","name":"Diest","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2524","name":"Dilbeek","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2525","name":"Drogenbos","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2526","name":"Galmaarden","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2527","name":"Geetbets","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2528","name":"Glabbeek","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2529","name":"Gooik","city_id":"434","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"is_activated":"1"}, +{"id":"2530","name":"Grimbergen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2531","name":"Haacht","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2532","name":"Halle","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2533","name":"Herent","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2534","name":"Herne","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2535","name":"Hoegaarden","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2536","name":"Hoeilaart","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2537","name":"Holsbeek","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2538","name":"Huldenberg","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2539","name":"Kampenhout","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2540","name":"Kapelle-op-den-Bos","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2541","name":"Keerbergen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2542","name":"Kortenaken","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2543","name":"Kortenberg","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2544","name":"Kraainem","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2545","name":"Landen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2546","name":"Lennik","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2547","name":"Leuven","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2548","name":"Liedekerke","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2549","name":"Linkebeek","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2550","name":"Linter","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2551","name":"Londerzeel","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2552","name":"Lubbeek","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2553","name":"Machelen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2554","name":"Meise","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2555","name":"Merchtem","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2556","name":"Opwijk","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2557","name":"Oud-Heverlee","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2558","name":"Overijse","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2559","name":"Pepingen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2560","name":"Roosdaal","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2561","name":"Rotselaar","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2562","name":"Scherpenheuvel-Zichem","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2563","name":"Sint-Genesius-Rode","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2564","name":"Sint-Pieters-Leeuw","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2565","name":"Steenokkerzeel","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2566","name":"Ternat","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2567","name":"Tervuren","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2568","name":"Tielt-Winge","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2569","name":"Tienen","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2570","name":"Tremelo","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2571","name":"Vilvoorde","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2572","name":"Wemmel","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2573","name":"Wezembeek-Oppem","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2574","name":"Zaventem","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2575","name":"Zemst","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2576","name":"Zoutleeuw","city_id":"434","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2577","name":"Callenelle","city_id":"435","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2578","name":"Marcinelle","city_id":"435","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2579","name":"Strepy-Bracquegnies","city_id":"435","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2580","name":"Alveringem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2581","name":"Anzegem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2582","name":"Ardooie","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2583","name":"Avelgem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2584","name":"Beernem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2585","name":"Blankenberge","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2586","name":"Bredene","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2587","name":"Brugge","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2588","name":"Damme","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2589","name":"De Haan","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2590","name":"De Panne","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2591","name":"Deerlijk","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2592","name":"Dentergem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2593","name":"Diksmuide","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2594","name":"Geluveld","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2595","name":"Gistel","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2596","name":"Harelbeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2597","name":"Heuvelland","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2598","name":"Hooglede","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2599","name":"Houthulst","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2600","name":"Ichtegem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2601","name":"Ieper","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2602","name":"Ingelmunster","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2603","name":"Ingooigem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2604","name":"Izegem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2605","name":"Jabbeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2606","name":"Knokke-Heist","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2607","name":"Koekelare","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2608","name":"Koksijde","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2609","name":"Kortemark","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2610","name":"Kortrijk","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2611","name":"Kuurne","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2612","name":"Langemark-Poelkapelle","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2613","name":"Ledegem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2614","name":"Lendelede","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2615","name":"Lichtervelde","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2616","name":"Lo-Reninge","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2617","name":"Menen","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2618","name":"Mesen","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2619","name":"Meulebeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2620","name":"Middelkerke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2621","name":"Moorslede","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2622","name":"Nieuwpoort","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2623","name":"Oostende","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2624","name":"Oostkamp","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2625","name":"Oostrozebeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2626","name":"Oudenburg","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2627","name":"Pittem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2628","name":"Poperinge","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2629","name":"Roeselare","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2630","name":"Ruiselede","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2631","name":"Spiere-Helkijn","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2632","name":"Staden","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2633","name":"Tielt","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2634","name":"Torhout","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2635","name":"Veurne","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2636","name":"Vleteren","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2637","name":"Waregem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2638","name":"Wervik","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2639","name":"Wevelgem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2640","name":"Wielsbeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2641","name":"Wingene","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2642","name":"Zedelgem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2643","name":"Zeebrugge","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2644","name":"Zonnebeke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2645","name":"Zuienkerke","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2646","name":"Zwevegem","city_id":"436","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2647","name":"Belize","city_id":"437","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2648","name":"Belmopan","city_id":"438","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2649","name":"Benque Viejo","city_id":"438","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2650","name":"San Ignacio","city_id":"438","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"is_activated":"1"}, +{"id":"2651","name":"Corozal","city_id":"439","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2652","name":"Punta Gorda","city_id":"442","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2653","name":"Kandi","city_id":"443","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2654","name":"Malanville","city_id":"443","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2655","name":"Batia","city_id":"444","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2656","name":"Boukombe","city_id":"444","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2657","name":"Kouande","city_id":"444","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2658","name":"Natitingou","city_id":"444","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2659","name":"Allada","city_id":"445","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2660","name":"Cotonou","city_id":"445","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2661","name":"Ouidah","city_id":"445","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2662","name":"Tanguiete","city_id":"445","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2663","name":"Bembereke","city_id":"446","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2664","name":"Nikki","city_id":"446","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2665","name":"Parakou","city_id":"446","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2666","name":"Tchaourou","city_id":"446","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2667","name":"Dassa","city_id":"447","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2668","name":"Savalou","city_id":"447","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2669","name":"Save","city_id":"447","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2670","name":"Aplahoue","city_id":"448","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2671","name":"Dogbo","city_id":"448","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2672","name":"Djougou","city_id":"449","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2673","name":"Athieme","city_id":"451","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2674","name":"Come","city_id":"451","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2675","name":"Grand Popo","city_id":"451","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2676","name":"Lokossa","city_id":"451","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2677","name":"Adjohoun","city_id":"452","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2678","name":"Porto Novo","city_id":"452","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2679","name":"Ketou","city_id":"453","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2680","name":"Pobe","city_id":"453","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2681","name":"Sakete","city_id":"453","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2682","name":"Abomey","city_id":"454","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2683","name":"Bohicon","city_id":"454","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2684","name":"Cove","city_id":"454","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2685","name":"Zagnanado","city_id":"454","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2686","name":"Jakar","city_id":"456","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2687","name":"Chhukha","city_id":"457","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2688","name":"Phuentsholing","city_id":"457","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2689","name":"Damphu","city_id":"458","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2690","name":"Taga Dzong","city_id":"459","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2691","name":"Geylegphug","city_id":"460","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"is_activated":"1"}, +{"id":"2692","name":"Ha","city_id":"461","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2693","name":"Lhuntshi","city_id":"462","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2694","name":"Mongar","city_id":"463","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2695","name":"Pemagatsel","city_id":"464","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2696","name":"Gasa","city_id":"465","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2697","name":"Punakha","city_id":"465","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2698","name":"Paro","city_id":"466","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2699","name":"Phuntsholing","city_id":"467","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2700","name":"Samchi","city_id":"467","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2701","name":"Shemgang","city_id":"469","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2702","name":"Tashigang","city_id":"470","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2703","name":"Thimphu","city_id":"471","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2704","name":"Timphu","city_id":"471","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2705","name":"Tongsa","city_id":"472","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2706","name":"Wangdiphodrang","city_id":"473","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2707","name":"Guayaramerin","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2708","name":"Magdalena","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2709","name":"Reyes","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2710","name":"Riberalta","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2711","name":"Rurrenabaque","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2712","name":"San Borja","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2713","name":"San Ramon","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2714","name":"Santa Ana","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2715","name":"Santa Rosa","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2716","name":"Trinidad","city_id":"474","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2717","name":"Camargo","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2718","name":"Monteagudo","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2719","name":"Muyupampa","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2720","name":"Padilla","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2721","name":"Sucre","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2722","name":"Tarabuco","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2723","name":"Villa Serano","city_id":"475","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2724","name":"Aiquile","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2725","name":"Arani","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2726","name":"Capinota","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2727","name":"Chimore","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2728","name":"Cliza","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2729","name":"Cochabamba","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2730","name":"Colomi","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2731","name":"Entre Rios","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2732","name":"Irpa Irpa","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2733","name":"Ivirgarzama","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2734","name":"Mizque","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2735","name":"Punata","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2736","name":"Shinahota","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2737","name":"Sipe Sipe","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2738","name":"Tarata","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2739","name":"Ucurena","city_id":"476","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2740","name":"Caracollo","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2741","name":"Challapata","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2742","name":"Eucaliptus","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2743","name":"Huanuni","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2744","name":"Machacamarca","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2745","name":"Oruro","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2746","name":"Poopo","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2747","name":"Santiago de Huari","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2748","name":"Totoral","city_id":"478","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2749","name":"Cobija","city_id":"479","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"is_activated":"1"}, +{"id":"2750","name":"Atocha","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2751","name":"Betanzos","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2752","name":"Colquechaca","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2753","name":"Llallagua","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2754","name":"Potosi","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2755","name":"Santa Barbara","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2756","name":"Tupiza","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2757","name":"Uncia","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2758","name":"Uyuni","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2759","name":"Villazon","city_id":"480","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2760","name":"Bermejo","city_id":"481","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2761","name":"Tarija","city_id":"481","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2762","name":"Villamontes","city_id":"481","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2763","name":"Yacuiba","city_id":"481","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2764","name":"Kachikau","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2765","name":"Kasane","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2766","name":"Kavimba","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2767","name":"Kazungula","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2768","name":"Lesoma","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2769","name":"Muchinje-Mabale","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2770","name":"Pandamatenga","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2771","name":"Pandamatenga Botswana Defence ","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2772","name":"Parakarungu","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2773","name":"Satau","city_id":"489","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2774","name":"Francistown","city_id":"490","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2775","name":"Gaborone","city_id":"491","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2776","name":"Bere","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2777","name":"Charles Hill","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2778","name":"Chobokwane","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2779","name":"Dekar","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2780","name":"East Hanahai","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2781","name":"Ghanzi","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2782","name":"Groote Laagte","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2783","name":"Kacgae","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2784","name":"Karakobis","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2785","name":"Kuke Quarantine Camp","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2786","name":"Kule","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2787","name":"Makunda","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2788","name":"Ncojane","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2789","name":"New Xade","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2790","name":"New Xanagas","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2791","name":"Qabo","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2792","name":"Tsootsha","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2793","name":"West Hanahai","city_id":"492","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2794","name":"Jwaneng","city_id":"493","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2795","name":"Artisia","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2796","name":"Bokaa","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2797","name":"Dikgonye","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2798","name":"Dikwididi","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2799","name":"Kgomodiatshaba","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2800","name":"Khurutshe","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2801","name":"Leshibitse","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2802","name":"Mabalane","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2803","name":"Malolwane","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2804","name":"Malotwana Siding","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2805","name":"Matebeleng","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2806","name":"Mmamashia","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2807","name":"Mmathubudukwane","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2808","name":"Mochudi","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2809","name":"Modipane","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2810","name":"Morwa","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2811","name":"Oliphants Drift","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2812","name":"Oodi","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2813","name":"Pilane","city_id":"496","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"is_activated":"1"}, +{"id":"2814","name":"Ramonaka","city_id":"496","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2815","name":"Ramotlabaki","city_id":"496","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2816","name":"Rasesa","city_id":"496","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2817","name":"Sikwane","city_id":"496","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2818","name":"Boatlaname","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2819","name":"Botlhapatlou","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2820","name":"Diagane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2821","name":"Diphudugodu","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2822","name":"Diremogolo Lands","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2823","name":"Ditshegwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2824","name":"Ditshukudu","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2825","name":"Dumadumane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2826","name":"Dutlwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2827","name":"Gabane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2828","name":"Gakgatla","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2829","name":"Gakuto","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2830","name":"Galekgatshwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2831","name":"Gamodubu","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2832","name":"Gaphatshwa","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2833","name":"Hatsalatladi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2834","name":"Kamenakwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2835","name":"Kaudwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2836","name":"Kgaphamadi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2837","name":"Kgope","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2838","name":"Khekhenya-Chepetese","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2839","name":"Khudumelapye","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2840","name":"Kopong","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2841","name":"Kotolaname","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2842","name":"Kubung","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2843","name":"Kumakwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2844","name":"Kweneng","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2845","name":"Lentsweletau","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2846","name":"Lephepe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2847","name":"Lesirane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2848","name":"Letlhakeng","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2849","name":"Losilakgokong","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2850","name":"Maboane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2851","name":"Mahetlwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2852","name":"Makabanyane-Dikgokong","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2853","name":"Malwelwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2854","name":"Mamhiko","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2855","name":"Manaledi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2856","name":"Mantshwabisi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2857","name":"Marejwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2858","name":"Masebele","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2859","name":"Medie","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2860","name":"Metsibotlhoko","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2861","name":"Metsimotlhaba","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2862","name":"Mmakanke","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2863","name":"Mmankgodi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2864","name":"Mmanoko","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2865","name":"Mmokolodi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2866","name":"Mmopane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2867","name":"Mmopane Lands","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2868","name":"Mogoditshane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2869","name":"Mogoditshane Botswana Defence ","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2870","name":"Mogoditshane Lands","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2871","name":"Mogonono","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2872","name":"Molepolole","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2873","name":"Mononyane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2874","name":"Monwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2875","name":"Morabane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2876","name":"Morope","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2877","name":"Moshaweng","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2878","name":"Mosokotswe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2879","name":"Motokwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2880","name":"Ngware","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2881","name":"Nkoyaphiri","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2882","name":"Ramaphatlhe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2883","name":"Salajwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2884","name":"Serinane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2885","name":"Sesung","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2886","name":"Shadishadi","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2887","name":"Sojwe","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2888","name":"Sorilatholo","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2889","name":"Suping","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2890","name":"Takatokwane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2891","name":"Thamaga","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2892","name":"Thebephatshwa","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2893","name":"Tlowaneng","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2894","name":"Tsetseng","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2895","name":"Tswaane","city_id":"497","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2896","name":"Lobatse","city_id":"498","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2897","name":"Bodibeng","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2898","name":"Boro","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2899","name":"Botlhatlogo","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2900","name":"Chanoga","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2901","name":"Chuchubega","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2902","name":"Daonara","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2903","name":"Ditshiping","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2904","name":"Habu","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2905","name":"Jao","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2906","name":"Kareng","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2907","name":"Katamaga","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2908","name":"Kgakge","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2909","name":"Khwai Camp","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2910","name":"Komana","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2911","name":"Legotlhwana","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2912","name":"Mababe","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2913","name":"Makalamabedi","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2914","name":"Matlapana","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2915","name":"Matsaudi","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2916","name":"Mawana","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2917","name":"Mokgalo-Haka","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2918","name":"Morutsha","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2919","name":"Nxharaga","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2920","name":"Phuduhudu","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2921","name":"Samodupi","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2922","name":"Sankuyo","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2923","name":"Sehithwa","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2924","name":"Semboyo","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2925","name":"Sexaxa","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2926","name":"Shakawe","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2927","name":"Shorobe","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2928","name":"Somela","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2929","name":"Toteng","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2930","name":"Tsanekona","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2931","name":"Tsao","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2932","name":"Xaxaba","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2933","name":"Xhobe","city_id":"499","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2934","name":"Bethel","city_id":"500","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2935","name":"Borobadilepe","city_id":"500","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"is_activated":"1"}, +{"id":"2936","name":"Diabo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2937","name":"Digawana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2938","name":"Dikhukhung","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2939","name":"Dinatshana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2940","name":"Dipotsana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2941","name":"Ditlharapa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2942","name":"Gamajalela","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2943","name":"Gasita","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2944","name":"Gathwane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2945","name":"Good Hope","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2946","name":"Goora-seno","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2947","name":"Gopong","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2948","name":"Hebron","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2949","name":"Itholoke","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2950","name":"Kanaku","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2951","name":"Kangwe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2952","name":"Kanye","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2953","name":"Keng","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2954","name":"Kgomokasitwa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2955","name":"Kgoro","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2956","name":"Khakhea","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2957","name":"Khonkhwa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2958","name":"Kokong","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2959","name":"Lehoko","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2960","name":"Lejwana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2961","name":"Lekgolobotlo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2962","name":"Leporung","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2963","name":"Logagane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2964","name":"Lorolwana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2965","name":"Lorwana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2966","name":"Lotlhakane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2967","name":"Lotlhakane West","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2968","name":"Mabule","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2969","name":"Mabutsane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2970","name":"Madingwana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2971","name":"Magoriapitse","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2972","name":"Magotlhawane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2973","name":"Mahotshwane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2974","name":"Maisane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2975","name":"Makokwe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2976","name":"Malokaganyane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2977","name":"Manyana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2978","name":"Maokane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2979","name":"Marojane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2980","name":"Maruswa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2981","name":"Metlobo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2982","name":"Metlojane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2983","name":"Mmakgori","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2984","name":"Mmathethe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2985","name":"Mogojogojo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2986","name":"Mogonye","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2987","name":"Mogwalale","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2988","name":"Mokatako","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2989","name":"Mokgomane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2990","name":"Mokhomba","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2991","name":"Molapowabojang","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2992","name":"Molete","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2993","name":"Morwamosu","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2994","name":"Moshaneng","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2995","name":"Moshupa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2996","name":"Motlhwatse","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2997","name":"Motsentshe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2998","name":"Musi","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"2999","name":"Ngwatsau","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3000","name":"Ntlhantlhe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3001","name":"Papatlo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3002","name":"Phihitshwane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3003","name":"Pitsana-Potokwe","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3004","name":"Pitsane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3005","name":"Pitseng-Ralekgetho","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3006","name":"Pitshane Molopo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3007","name":"Rakhuna","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3008","name":"Ralekgetho","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3009","name":"Ramatlabama","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3010","name":"Ranaka","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3011","name":"Sedibeng","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3012","name":"Segakwana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3013","name":"Segwagwa","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3014","name":"Seherelela","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3015","name":"Sekhutlane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3016","name":"Sekoma","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3017","name":"Selokolela","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3018","name":"Semane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3019","name":"Sese","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3020","name":"Sheep Farm","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3021","name":"Tlhankane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3022","name":"Tlhareseleele","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3023","name":"Tshidilamolomo","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3024","name":"Tshwaane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3025","name":"Tsonyane","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3026","name":"Tswaaneng","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3027","name":"Tswagare-Lothoje-Lokalana","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3028","name":"Tswanyaneng","city_id":"500","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3029","name":"Beetsha","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3030","name":"Eretsha","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3031","name":"Etsha 1","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3032","name":"Etsha 13","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3033","name":"Etsha 6","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3034","name":"Etsha 8","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3035","name":"Etsha 9","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3036","name":"Gane","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3037","name":"Gonutsuga","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3038","name":"Gowe","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3039","name":"Gudingwa","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3040","name":"Gumare","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3041","name":"Ikoga","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3042","name":"Kajaja","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3043","name":"Kapotora Lands","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3044","name":"Kauxwhi","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3045","name":"Matswee","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3046","name":"Maun","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3047","name":"Moaha","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3048","name":"Mohembo East","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3049","name":"Mohembo West","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3050","name":"Mokgacha","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3051","name":"Ngarange","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3052","name":"Nokaneng","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3053","name":"Nxamasere","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3054","name":"Nxaunxau","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3055","name":"Nxwee","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3056","name":"Qangwa","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3057","name":"Roye","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3058","name":"Samochema","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3059","name":"Sekondomboro","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3060","name":"Sepopa","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3061","name":"Seronga","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3062","name":"Shaowe","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3063","name":"Tobere Lands","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3064","name":"Tubu","city_id":"502","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"is_activated":"1"}, +{"id":"3065","name":"Tubu Lands","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3066","name":"Xadau","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3067","name":"Xakao","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3068","name":"Xaxa","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3069","name":"Xhauga","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3070","name":"Xurube","city_id":"502","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3071","name":"Orapa","city_id":"503","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3072","name":"Sowa","city_id":"506","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3073","name":"Acrelandia","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3074","name":"Brasileia","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3075","name":"Cruzeiro do Sul","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3076","name":"Epitaciolandia","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3077","name":"Feijo","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3078","name":"Mancio Lima","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3079","name":"Manoel Urbano","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3080","name":"Marechal Thaumaturgo","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3081","name":"Placido de Castro","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3082","name":"Porto Walter","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3083","name":"Rio Branco","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3084","name":"Rodrigues Alves","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3085","name":"Sena Madureira","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3086","name":"Senador Guiomard","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3087","name":"Tarauaca","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3088","name":"Xapuri","city_id":"508","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3089","name":"Agua Branca","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3090","name":"Anadia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3091","name":"Arapiraca","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3092","name":"Atalaia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3093","name":"Barra de Santo Antonio","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3094","name":"Batalha","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3095","name":"Boca da Mata","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3096","name":"Cacimbinhas","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3097","name":"Cajueiro","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3098","name":"Campo Alegre","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3099","name":"Campo Grande","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3100","name":"Canapi","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3101","name":"Capela","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3102","name":"Coite do Noia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3103","name":"Colonia Leopoldina","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3104","name":"Coruripe","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3105","name":"Craibas","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3106","name":"Delmiro Gouveia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3107","name":"Dois Riachos","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3108","name":"Estrela de Alagoas","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3109","name":"Feira Grande","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3110","name":"Flexeiras","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3111","name":"Girau do Ponciano","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3112","name":"Ibateguara","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3113","name":"Igaci","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3114","name":"Igreja Nova","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3115","name":"Inhapi","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3116","name":"Joaquim Gomes","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3117","name":"Jundia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3118","name":"Junqueiro","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3119","name":"Lagoa da Canoa","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3120","name":"Limoeiro de Anadia","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3121","name":"Maceio","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3122","name":"Major Isidoro","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3123","name":"Maragogi","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3124","name":"Maravilha","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3125","name":"Marechal Deodoro","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3126","name":"Maribondo","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3127","name":"Mata Grande","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3128","name":"Matriz de Camaragibe","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3129","name":"Messias","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3130","name":"Minador do Negrao","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3131","name":"Murici","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3132","name":"Novo Lino","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3133","name":"Olho d Agua das Flores","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3134","name":"Olivenca","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3135","name":"Palmeira dos Indios","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3136","name":"Pao de Acucar","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3137","name":"Passo de Camaragibe","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3138","name":"Penedo","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3139","name":"Piacabucu","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3140","name":"Pilar","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3141","name":"Piranhas","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3142","name":"Poco das Trincheiras","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3143","name":"Porto Calvo","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3144","name":"Porto Real do Colegio","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3145","name":"Quebrangulo","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3146","name":"Rio Largo","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3147","name":"Santana do Ipanema","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3148","name":"Santana do Mundau","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3149","name":"Sao Jose da Laje","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3150","name":"Sao Jose da Tapera","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3151","name":"Sao Luis do Quitunde","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3152","name":"Sao Miguel dos Campos","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3153","name":"Sao Sebastiao","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3154","name":"Satuba","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3155","name":"Senador Rui Palmeira","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3156","name":"Taquarana","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3157","name":"Teotonio Vilela","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3158","name":"Traipu","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3159","name":"Uniao dos Palmares","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3160","name":"Vicosa","city_id":"509","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3161","name":"Amapa","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3162","name":"Laranjal do Jari","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3163","name":"Macapa","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3164","name":"Mazagao","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3165","name":"Oiapoque","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3166","name":"Santana","city_id":"510","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"is_activated":"1"}, +{"id":"3167","name":"Alvaraes","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3168","name":"Anori","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3169","name":"Apui","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3170","name":"Autazes","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3171","name":"Barcelos","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3172","name":"Barreirinha","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3173","name":"Benjamin Constant","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3174","name":"Boca do Acre","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3175","name":"Borba","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3176","name":"Canutama","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3177","name":"Carauari","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3178","name":"Careiro","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3179","name":"Careiro da Varzea","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3180","name":"Coari","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3181","name":"Codajas","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3182","name":"Eirunepe","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3183","name":"Envira","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3184","name":"Fonte Boa","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3185","name":"Guajara","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3186","name":"Humaita","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3187","name":"Ipixuna","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3188","name":"Iranduba","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3189","name":"Itacoatiara","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3190","name":"Japura","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3191","name":"Jutai","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3192","name":"Labrea","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3193","name":"Manacapuru","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3194","name":"Manaquiri","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3195","name":"Manaus","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3196","name":"Manicore","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3197","name":"Maraa","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3198","name":"Maues","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3199","name":"Nhamunda","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3200","name":"Nova Olinda do Norte","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3201","name":"Novo Airao","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3202","name":"Novo Aripuana","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3203","name":"Parintins","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3204","name":"Pauini","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3205","name":"Rio Preto da Eva","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3206","name":"Santa Isabel do Rio Negro","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3207","name":"Santo Antonio do Ica","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3208","name":"Sao Gabriel da Cachoeira","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3209","name":"Sao Paulo de Olivenca","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3210","name":"Tabatinga","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3211","name":"Tapaua","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3212","name":"Tefe","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3213","name":"Tonantins","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3214","name":"Uarini","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3215","name":"Urucara","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3216","name":"Urucurituba","city_id":"511","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3217","name":"Acajutiba","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3218","name":"Alagoinhas","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3219","name":"Amargosa","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3220","name":"Amelia Rodrigues","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3221","name":"America Dourada","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3222","name":"Anage","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3223","name":"Araci","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3224","name":"Aurelino Leal","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3225","name":"Baixa Grande","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3226","name":"Barra","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3227","name":"Barra da Estiva","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3228","name":"Barra do Choca","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3229","name":"Barreiras","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3230","name":"Belmonte","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3231","name":"Boa Vista do Tupim","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3232","name":"Bom Jesus da Lapa","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3233","name":"Boquira","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3234","name":"Brumado","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3235","name":"Buerarema","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3236","name":"Cachoeira","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3237","name":"Cacule","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3238","name":"Caetite","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3239","name":"Cafarnaum","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3240","name":"Camacan","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3241","name":"Camacari","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3242","name":"Camamu","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3243","name":"Campo Alegre de Lourdes","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3244","name":"Campo Formoso","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3245","name":"Canarana","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3246","name":"Canavieiras","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3247","name":"Candeias","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3248","name":"Candido Sales","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3249","name":"Cansancao","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3250","name":"Capim Grosso","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3251","name":"Caravelas","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3252","name":"Carinhanha","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3253","name":"Casa Nova","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3254","name":"Castro Alves","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3255","name":"Catu","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3256","name":"Cicero Dantas","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3257","name":"Cipo","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3258","name":"Coaraci","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3259","name":"Conceicao da Feira","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3260","name":"Conceicao do Almeida","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3261","name":"Conceicao do Coite","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3262","name":"Conceicao do Jacuipe","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3263","name":"Conde","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3264","name":"Coracao de Maria","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3265","name":"Coronel Joao Sa","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3266","name":"Correntina","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3267","name":"Cruz das Almas","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3268","name":"Curaca","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3269","name":"Dias d Avila","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3270","name":"Encruzilhada","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3271","name":"Esplanada","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3272","name":"Euclides da Cunha","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3273","name":"Eunapolis","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3274","name":"Feira de Santana","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3275","name":"Filadelfia","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3276","name":"Formosa do Rio Preto","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3277","name":"Gandu","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3278","name":"Guanambi","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3279","name":"Guaratinga","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3280","name":"Iacu","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3281","name":"Ibicarai","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3282","name":"Ibicui","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3283","name":"Ibipeba","city_id":"512","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"is_activated":"1"}, +{"id":"3284","name":"Ibirapitanga","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3285","name":"Ibirataia","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3286","name":"Ibotirama","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3287","name":"Iguai","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3288","name":"Ilheus","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3289","name":"Inhambupe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3290","name":"Ipiau","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3291","name":"Ipira","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3292","name":"Iraquara","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3293","name":"Irara","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3294","name":"Irece","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3295","name":"Itabela","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3296","name":"Itaberaba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3297","name":"Itabuna","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3298","name":"Itacare","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3299","name":"Itagi","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3300","name":"Itagiba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3301","name":"Itajuipe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3302","name":"Itamaraju","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3303","name":"Itambe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3304","name":"Itanhem","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3305","name":"Itaparica","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3306","name":"Itapetinga","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3307","name":"Itapicuru","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3308","name":"Itarantim","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3309","name":"Itirucu","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3310","name":"Itiuba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3311","name":"Itororo","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3312","name":"Ituacu","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3313","name":"Itubera","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3314","name":"Jacobina","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3315","name":"Jaguaquara","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3316","name":"Jaguarari","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3317","name":"Jequie","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3318","name":"Jeremoabo","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3319","name":"Jitauna","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3320","name":"Joao Dourado","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3321","name":"Juazeiro","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3322","name":"Jussara","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3323","name":"Laje","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3324","name":"Lapao","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3325","name":"Lauro de Freitas","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3326","name":"Livramento","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3327","name":"Macarani","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3328","name":"Macaubas","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3329","name":"Madre de Deus","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3330","name":"Mairi","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3331","name":"Maracas","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3332","name":"Maragogipe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3333","name":"Marau","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3334","name":"Mascote","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3335","name":"Mata de Sao Joao","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3336","name":"Medeiros Neto","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3337","name":"Miguel Calmon","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3338","name":"Milagres","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3339","name":"Monte Santo","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3340","name":"Morro de Chapeu","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3341","name":"Mucuri","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3342","name":"Mundo Novo","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3343","name":"Muritiba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3344","name":"Mutuipe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3345","name":"Nazare","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3346","name":"Nova Soure","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3347","name":"Nova Vicosa","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3348","name":"Olindina","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3349","name":"Oliveira dos Brejinhos","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3350","name":"Palmas de Monte Alto","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3351","name":"Paramirim","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3352","name":"Paratinga","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3353","name":"Paripiranga","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3354","name":"Pau Brasil","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3355","name":"Paulo Afonso","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3356","name":"Pilao Arcado","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3357","name":"Pindobacu","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3358","name":"Piritiba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3359","name":"Planalto","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3360","name":"Pocoes","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3361","name":"Pojuca","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3362","name":"Ponto Novo","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3363","name":"Porto Seguro","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3364","name":"Prado","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3365","name":"Presidente Tancredo Neves","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3366","name":"Queimadas","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3367","name":"Quijingue","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3368","name":"Rafael Jambeiro","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3369","name":"Remanso","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3370","name":"Riachao das Neves","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3371","name":"Riachao do Jacuipe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3372","name":"Riacho de Santana","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3373","name":"Ribeira do Pombal","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3374","name":"Rio Real","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3375","name":"Ruy Barbosa","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3376","name":"Salvador","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3377","name":"Santa Cruz Cabralia","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3378","name":"Santa Ines","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3379","name":"Santa Maria da Vitoria","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3380","name":"Santa Rita de Cassia","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3381","name":"Santaluz","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3382","name":"Santo Amaro","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3383","name":"Santo Antonio de Jesus","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3384","name":"Santo Estevao","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3385","name":"Sao Desiderio","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3386","name":"Sao Felipe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3387","name":"Sao Francisco do Conde","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3388","name":"Sao Gabriel","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3389","name":"Sao Goncalo dos Campos","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3390","name":"Sao Sebastiao do Passe","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3391","name":"Saubara","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3392","name":"Seabra","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3393","name":"Senhor do Bonfim","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3394","name":"Sento Se","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3395","name":"Serra Dourada","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3396","name":"Serra do Ramalho","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3397","name":"Serrinha","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3398","name":"Simoes Filho","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3399","name":"Sobradinho","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3400","name":"Souto Soares","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3401","name":"Tanhacu","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3402","name":"Taperoa","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3403","name":"Tapiramuta","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3404","name":"Teixeira de Freitas","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3405","name":"Teofilandia","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3406","name":"Terra Nova","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3407","name":"Tremedal","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3408","name":"Tucano","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3409","name":"Uaua","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3410","name":"Ubaira","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3411","name":"Ubaitaba","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3412","name":"Ubata","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3413","name":"Una","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3414","name":"Urucuca","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3415","name":"Utinga","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3416","name":"Valenca","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3417","name":"Valente","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3418","name":"Vera Cruz","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3419","name":"Vitoria da Conquista","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3420","name":"Wenceslau Guimaraes","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3421","name":"Xique-Xique","city_id":"512","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"is_activated":"1"}, +{"id":"3422","name":"Acarau","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3423","name":"Acopiara","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3424","name":"Amontada","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3425","name":"Aquiraz","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3426","name":"Aracati","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3427","name":"Aracoiaba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3428","name":"Araripe","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3429","name":"Assare","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3430","name":"Aurora","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3431","name":"Barbalha","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3432","name":"Barro","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3433","name":"Barroquinha","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3434","name":"Baturite","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3435","name":"Beberibe","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3436","name":"Bela Cruz","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3437","name":"Boa Viagem","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3438","name":"Brejo Santo","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3439","name":"Camocim","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3440","name":"Campos Sales","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3441","name":"Caninde","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3442","name":"Carire","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3443","name":"Caririacu","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3444","name":"Cascavel","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3445","name":"Caucaia","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3446","name":"Cedro","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3447","name":"Chorozinho","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3448","name":"Coreau","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3449","name":"Crateus","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3450","name":"Crato","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3451","name":"Cruz","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3452","name":"Eusebio","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3453","name":"Farias Brito","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3454","name":"Forquilha","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3455","name":"Fortaleza","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3456","name":"Granja","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3457","name":"Guaiuba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3458","name":"Guaraciaba do Norte","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3459","name":"Hidrolandia","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3460","name":"Horizonte","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3461","name":"Ibiapina","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3462","name":"Ico","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3463","name":"Iguatu","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3464","name":"Independencia","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3465","name":"Ipu","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3466","name":"Ipueiras","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3467","name":"Iraucuba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3468","name":"Itaitinga","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3469","name":"Itapage","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3470","name":"Itapipoca","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3471","name":"Itarema","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3472","name":"Jaguaribe","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3473","name":"Jaguaruana","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3474","name":"Jardim","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3475","name":"Juazeiro do Norte","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3476","name":"Jucas","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3477","name":"Lavras da Mangabeira","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3478","name":"Limoeiro do Norte","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3479","name":"Maracanau","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3480","name":"Maranguape","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3481","name":"Marco","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3482","name":"Massape","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3483","name":"Mauriti","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3484","name":"Missao Velha","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3485","name":"Mombaca","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3486","name":"Morada Nova","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3487","name":"Nova Russas","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3488","name":"Novo Oriente","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3489","name":"Ocara","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3490","name":"Oros","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3491","name":"Pacajus","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3492","name":"Pacatuba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3493","name":"Paracuru","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3494","name":"Paraipaba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3495","name":"Parambu","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3496","name":"Pedra Branca","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3497","name":"Pentecoste","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3498","name":"Quixada","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3499","name":"Quixeramobim","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3500","name":"Quixere","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3501","name":"Redencao","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3502","name":"Reriutaba","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3503","name":"Russas","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3504","name":"Santa Quiteria","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3505","name":"Santana do Acarau","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3506","name":"Sao Benedito","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3507","name":"Sao Goncalo do Amarante","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3508","name":"Senador Pompeu","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3509","name":"Sobral","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3510","name":"Tabuleiro do Norte","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3511","name":"Tamboril","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3512","name":"Taua","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3513","name":"Tiangua","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3514","name":"Trairi","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3515","name":"Ubajara","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3516","name":"Umirim","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3517","name":"Uruburetama","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3518","name":"Varjota","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3519","name":"Varzea Alegre","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3520","name":"Vicosa do Ceara","city_id":"513","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3521","name":"Abadiania","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3522","name":"Acreuna","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3523","name":"Aguas Lindas de Goias","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3524","name":"Alexania","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3525","name":"Anapolis","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3526","name":"Anicuns","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3527","name":"Aparecida de Goiania","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3528","name":"Aragarcas","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3529","name":"Bela Vista de Goias","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3530","name":"Bom Jesus de Goias","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3531","name":"Buriti Alegre","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3532","name":"Cacu","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3533","name":"Caiaponia","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3534","name":"Caldas Novas","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3535","name":"Campos Belos","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3536","name":"Campos Verdes","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3537","name":"Carmo do Rio Verde","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3538","name":"Catalao","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3539","name":"Cavalcante","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3540","name":"Ceres","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3541","name":"Cidade Ocidental","city_id":"516","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"is_activated":"1"}, +{"id":"3542","name":"Cocalzinho de Coias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3543","name":"Cristalina","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3544","name":"Crixas","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3545","name":"Doverlandia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3546","name":"Edeia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3547","name":"Firminopolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3548","name":"Goianapolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3549","name":"Goianesia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3550","name":"Goiania","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3551","name":"Goianira","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3552","name":"Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3553","name":"Goiatuba","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3554","name":"Guapo","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3555","name":"Iaciara","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3556","name":"Indiara","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3557","name":"Inhumas","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3558","name":"Ipameri","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3559","name":"Ipora","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3560","name":"Itaberai","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3561","name":"Itapaci","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3562","name":"Itapirapua","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3563","name":"Itapuranga","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3564","name":"Itumbiara","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3565","name":"Jaragua","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3566","name":"Jatai","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3567","name":"Luziania","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3568","name":"Mara Rosa","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3569","name":"Minacu","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3570","name":"Mineiros","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3571","name":"Morrinhos","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3572","name":"Mozarlandia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3573","name":"Neropolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3574","name":"Niquelandia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3575","name":"Nova Crixas","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3576","name":"Novo Gama","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3577","name":"Orizona","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3578","name":"Padre Bernardo","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3579","name":"Palmeiras de Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3580","name":"Parauna","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3581","name":"Petrolina de Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3582","name":"Piracanjuba","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3583","name":"Pirenopolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3584","name":"Pires do Rio","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3585","name":"Planaltina","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3586","name":"Pontalina","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3587","name":"Porangatu","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3588","name":"Posse","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3589","name":"Quirinopolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3590","name":"Rialma","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3591","name":"Rio Verde","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3592","name":"Rubiataba","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3593","name":"Santa Helena de Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3594","name":"Santa Terezinha de Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3595","name":"Santo Antonio do Descoberto","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3596","name":"Sao Domingos","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3597","name":"Sao Luis de Montes Belos","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3598","name":"Sao Miguel do Araguaia","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3599","name":"Sao Simao","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3600","name":"Senador Canedo","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3601","name":"Silvania","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3602","name":"Trindade","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3603","name":"Uruacu","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3604","name":"Uruana","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3605","name":"Valparaiso de Goias","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3606","name":"Vianopolis","city_id":"516","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3607","name":"Acailandia","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3608","name":"Alcantara","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3609","name":"Aldeias Altas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3610","name":"Alto Alegre do Pindare","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3611","name":"Amarante do Maranhao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3612","name":"Anajatuba","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3613","name":"Araioses","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3614","name":"Arame","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3615","name":"Arari","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3616","name":"Bacabal","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3617","name":"Balsas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3618","name":"Barra do Corda","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3619","name":"Barreirinhas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3620","name":"Bequimao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3621","name":"Bom Jardim","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3622","name":"Brejo","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3623","name":"Buriti","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3624","name":"Buriti Bravo","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3625","name":"Buriticupu","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3626","name":"Candido Mendes","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3627","name":"Cantanhede","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3628","name":"Carolina","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3629","name":"Carutapera","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3630","name":"Caxias","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3631","name":"Chapadinha","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3632","name":"Codo","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3633","name":"Coelho Neto","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3634","name":"Colinas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3635","name":"Coroata","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3636","name":"Cururupu","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3637","name":"Davinopolis","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3638","name":"Dom Pedro","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3639","name":"Esperantinopolis","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3640","name":"Estreito","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3641","name":"Fortuna","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3642","name":"Godofredo Viana","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3643","name":"Governador Eugenio Barros","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3644","name":"Governador Nunes Freire","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3645","name":"Grajau","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3646","name":"Humberto de Campos","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3647","name":"Icatu","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3648","name":"Imperatriz","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3649","name":"Itapecuru Mirim","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3650","name":"Itinga do Maranhao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3651","name":"Joao Lisboa","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3652","name":"Lago da Pedra","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3653","name":"Lago do Junco","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3654","name":"Maracacume","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3655","name":"Matinha","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3656","name":"Matoes","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3657","name":"Mirador","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3658","name":"Miranda do Norte","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3659","name":"Moncao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3660","name":"Montes Altos","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3661","name":"Morros","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3662","name":"Nova Olinda do Maranhao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3663","name":"Olho d Agua das Cunhas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3664","name":"Paco do Lumiar","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3665","name":"Paraibano","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3666","name":"Parnarama","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3667","name":"Passagem Franca","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3668","name":"Pastos Bons","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3669","name":"Paulo Ramos","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3670","name":"Pedreiras","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3671","name":"Penalva","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3672","name":"Pindare Mirim","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3673","name":"Pinheiro","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3674","name":"Pio XII","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3675","name":"Pirapemas","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3676","name":"Pocao de Pedras","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3677","name":"Porto Franco","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3678","name":"Presidente Dutra","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3679","name":"Raposa","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3680","name":"Riachao","city_id":"517","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"is_activated":"1"}, +{"id":"3681","name":"Rosario","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3682","name":"Santa Helena","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3683","name":"Santa Luzia","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3684","name":"Santa Luzia do Parua","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3685","name":"Santa Quiteria do Maranhao","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3686","name":"Santa Rita","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3687","name":"Sao Benedito do Rio Preto","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3688","name":"Sao Bento","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3689","name":"Sao Bernardo","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3690","name":"Sao Domingos do Maranhao","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3691","name":"Sao Joao Batista","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3692","name":"Sao Joao dos Patos","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3693","name":"Sao Jose de Ribamar","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3694","name":"Sao Luis","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3695","name":"Sao Luis Gonzaga do Maranhao","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3696","name":"Sao Mateus do Maranhao","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3697","name":"Sao Pedro da Agua Branca","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3698","name":"Sao Raimundo das Mangabeiras","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3699","name":"Timbiras","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3700","name":"Timon","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3701","name":"Trizidela do Vale","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3702","name":"Tuntum","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3703","name":"Turiacu","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3704","name":"Tutoia","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3705","name":"Urbano Santos","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3706","name":"Vargem Grande","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3707","name":"Viana","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3708","name":"Vitoria do Mearim","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3709","name":"Vitorino Freire","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3710","name":"Ze Doca","city_id":"517","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3711","name":"Abaetetuba","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3712","name":"Acara","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3713","name":"Afua","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3714","name":"Agua Azul do Norte","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3715","name":"Alenquer","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3716","name":"Almeirim","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3717","name":"Altamira","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3718","name":"Ananindeua","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3719","name":"Augusto Correa","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3720","name":"Baiao","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3721","name":"Barcarena","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3722","name":"Belem","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3723","name":"Benevides","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3724","name":"Braganca","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3725","name":"Breu Branco","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3726","name":"Breves","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3727","name":"Bujaru","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3728","name":"Cameta","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3729","name":"Capanema","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3730","name":"Capitao Poco","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3731","name":"Castanhal","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3732","name":"Conceicao do Araguaia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3733","name":"Concordia do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3734","name":"Curionopolis","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3735","name":"Curuca","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3736","name":"Dom Eliseu","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3737","name":"Eldorado dos Carajas","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3738","name":"Garrafao do Norte","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3739","name":"Goianesia do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3740","name":"Gurupa","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3741","name":"Igarape-Acu","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3742","name":"Igarape-Miri","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3743","name":"Irituia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3744","name":"Itaituba","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3745","name":"Itupiranga","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3746","name":"Jacareacanga","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3747","name":"Jacunda","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3748","name":"Juruti","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3749","name":"Limoeiro do Ajuru","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3750","name":"Mae do Rio","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3751","name":"Maraba","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3752","name":"Maracana","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3753","name":"Marapanim","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3754","name":"Marituba","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3755","name":"Medicilandia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3756","name":"Mocajuba","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3757","name":"Moju","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3758","name":"Monte Alegre","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3759","name":"Muana","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3760","name":"Novo Progresso","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3761","name":"Novo Repartimento","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3762","name":"Obidos","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3763","name":"Oeiras do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3764","name":"Oriximina","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3765","name":"Ourem","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3766","name":"Ourilandia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3767","name":"Pacaja","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3768","name":"Paragominas","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3769","name":"Parauapebas","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3770","name":"Portel","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3771","name":"Porto de Moz","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3772","name":"Prainha","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3773","name":"Rio Maria","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3774","name":"Rondon do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3775","name":"Ruropolis","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3776","name":"Salinopolis","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3777","name":"Santa Isabel do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3778","name":"Santa Luzia do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3779","name":"Santa Maria do Para","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3780","name":"Santana do Araguaia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3781","name":"Santarem","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3782","name":"Santo Antonio do Taua","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3783","name":"Sao Caetano de Odivelas","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3784","name":"Sao Domingos do Araguaia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3785","name":"Sao Domingos do Capim","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3786","name":"Sao Felix do Xingu","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3787","name":"Sao Geraldo do Araguaia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3788","name":"Sao Joao de Pirabas","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3789","name":"Sao Miguel do Guama","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3790","name":"Senador Jose Porfirio","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3791","name":"Soure","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3792","name":"Tailandia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3793","name":"Terra Santa","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3794","name":"Tome-Acu","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3795","name":"Tucuma","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3796","name":"Tucurui","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3797","name":"Ulianopolis","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3798","name":"Uruara","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3799","name":"Vigia","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3800","name":"Viseu","city_id":"521","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"is_activated":"1"}, +{"id":"3801","name":"Xinguara","city_id":"521","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3802","name":"Alagoa Grande","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3803","name":"Alagoa Nova","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3804","name":"Alagoinha","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3805","name":"Alhandra","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3806","name":"Aracagi","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3807","name":"Arara","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3808","name":"Araruna","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3809","name":"Areia","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3810","name":"Aroeiras","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3811","name":"Bananeiras","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3812","name":"Barra de Santa Rosa","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3813","name":"Bayeux","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3814","name":"Boqueirao","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3815","name":"Brejo do Cruz","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3816","name":"Caapora","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3817","name":"Cabedelo","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3818","name":"Cacimba de Dentro","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3819","name":"Cajazeiras","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3820","name":"Campina Grande","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3821","name":"Catole do Rocha","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3822","name":"Conceicao","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3823","name":"Coremas","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3824","name":"Cruz do Espirito Santo","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3825","name":"Cuite","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3826","name":"Desterro","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3827","name":"Dona Ines","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3828","name":"Esperanca","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3829","name":"Fagundes","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3830","name":"Guarabira","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3831","name":"Gurinhem","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3832","name":"Imaculada","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3833","name":"Inga","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3834","name":"Itabaiana","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3835","name":"Itaporanga","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3836","name":"Itapororoca","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3837","name":"Itatuba","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3838","name":"Jacarau","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3839","name":"Joao Pessoa","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3840","name":"Juazeirinho","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3841","name":"Juripiranga","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3842","name":"Juru","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3843","name":"Lagoa Seca","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3844","name":"Mamanguape","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3845","name":"Manaira","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3846","name":"Mari","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3847","name":"Massaranduba","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3848","name":"Mogeiro","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3849","name":"Monteiro","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3850","name":"Mulungu","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3851","name":"Natuba","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3852","name":"Nova Floresta","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3853","name":"Paulista","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3854","name":"Pedras de Fogo","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3855","name":"Pianco","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3856","name":"Picui","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3857","name":"Pirpirituba","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3858","name":"Pitimbu","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3859","name":"Pocinhos","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3860","name":"Pombal","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3861","name":"Princesa Isabel","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3862","name":"Puxinana","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3863","name":"Remigio","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3864","name":"Rio Tinto","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3865","name":"Salgado de Sao Felix","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3866","name":"Sao Joao do Rio do Peixe","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3867","name":"Sao Jose de Piranhas","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3868","name":"Sao Sebastiao de Lagoa de Roca","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3869","name":"Sape","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3870","name":"Serra Branca","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3871","name":"Solanea","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3872","name":"Soledade","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3873","name":"Sousa","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3874","name":"Sume","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3875","name":"Tavares","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3876","name":"Teixeira","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3877","name":"Triunfo","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3878","name":"Uirauna","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3879","name":"Umbuzeiro","city_id":"522","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3880","name":"Almirante Tamandare","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3881","name":"Alto Parana","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3882","name":"Alto Piquiri","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3883","name":"Altonia","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3884","name":"Ampere","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3885","name":"Andira","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3886","name":"Antonina","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3887","name":"Apucarana","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3888","name":"Arapongas","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3889","name":"Arapoti","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3890","name":"Araucaria","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3891","name":"Assai","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3892","name":"Assis Chateaubriand","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3893","name":"Astorga","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3894","name":"Bandeirantes","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3895","name":"Barbosa Ferraz","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3896","name":"Bela Vista do Paraiso","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3897","name":"Cambara","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3898","name":"Cambe","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3899","name":"Campina Grande do Sul","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3900","name":"Campina da Lagoa","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3901","name":"Campo Largo","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3902","name":"Campo Murao","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3903","name":"Candido de Abreu","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3904","name":"Capitao Leonidas Marques","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3905","name":"Carambei","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3906","name":"Castro","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3907","name":"Centenario do Sul","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3908","name":"Chopinzinho","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3909","name":"Cianorte","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3910","name":"Clevelandia","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3911","name":"Colombo","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3912","name":"Colorado","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3913","name":"Contenda","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3914","name":"Corbelia","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3915","name":"Cornelio Procopio","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3916","name":"Coronel Vivida","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3917","name":"Cruzeiro do Oeste","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3918","name":"Curitiba","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3919","name":"Dois Vizinhos","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3920","name":"Engenheiro Beltrao","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3921","name":"Faxinal","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3922","name":"Fazenda Rio Grande","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3923","name":"Florestopolis","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3924","name":"Foz do Iguacu","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3925","name":"Francisco Beltrao","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3926","name":"Goioere","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3927","name":"Guaira","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3928","name":"Guaraniacu","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3929","name":"Guarapuava","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3930","name":"Guaratuba","city_id":"523","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"is_activated":"1"}, +{"id":"3931","name":"Ibaiti","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3932","name":"Ibipora","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3933","name":"Imbituva","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3934","name":"Irati","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3935","name":"Itaperucu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3936","name":"Ivaipora","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3937","name":"Jacarezinho","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3938","name":"Jaguariaiva","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3939","name":"Jandaia do Sul","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3940","name":"Jataizinho","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3941","name":"Lapa","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3942","name":"Laranjeiras do Sul","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3943","name":"Loanda","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3944","name":"Londrina","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3945","name":"Mandaguacu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3946","name":"Mandaguari","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3947","name":"Marechal Candido Rondon","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3948","name":"Marialva","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3949","name":"Maringa","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3950","name":"Matelandia","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3951","name":"Matinhos","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3952","name":"Medianeira","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3953","name":"Moreira Sales","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3954","name":"Nova Aurora","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3955","name":"Nova Esperanca","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3956","name":"Nova Londrina","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3957","name":"Ortigueira","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3958","name":"Paicandu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3959","name":"Palmas","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3960","name":"Palmeira","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3961","name":"Palotina","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3962","name":"Paranagua","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3963","name":"Paranavai","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3964","name":"Pato Branco","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3965","name":"Peabiru","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3966","name":"Pinhais","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3967","name":"Pinhao","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3968","name":"Pirai do Sul","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3969","name":"Piraquara","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3970","name":"Pitanga","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3971","name":"Ponta Grossa","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3972","name":"Pontal do Parana","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3973","name":"Porecatu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3974","name":"Primero de Maio","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3975","name":"Prudentopolis","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3976","name":"Quatro Barras","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3977","name":"Quedas do Iguacu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3978","name":"Realeza","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3979","name":"Reserva","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3980","name":"Ribeirao do Pinhal","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3981","name":"Rio Branco do Sul","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3982","name":"Rio Negro","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3983","name":"Rolandia","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3984","name":"Santa Terezinha de Itaipu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3985","name":"Santo Antonio da Platina","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3986","name":"Santo Antonio do Sudoeste","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3987","name":"Sao Joao do Ivai","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3988","name":"Sao Jose dos Pinhais","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3989","name":"Sao Mateus do Sul","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3990","name":"Sao Miguel do Iguacu","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3991","name":"Sarandi","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3992","name":"Senges","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3993","name":"Sertanopolis","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3994","name":"Siquera Campos","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3995","name":"Tapejara","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3996","name":"Telemaco Borba","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3997","name":"Terra Boa","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3998","name":"Terra Rica","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"3999","name":"Terra Roxa","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4000","name":"Tibagi","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4001","name":"Toledo","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4002","name":"Ubirata","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4003","name":"Umuarama","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4004","name":"Uniao da Victoria","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4005","name":"Wenceslau Braz","city_id":"523","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4006","name":"Abreu e Lima","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4007","name":"Afogados da Ingazeira","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4008","name":"Agrestina","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4009","name":"Agua Preta","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4010","name":"Aguas Belas","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4011","name":"Alianca","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4012","name":"Altinho","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4013","name":"Amaraji","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4014","name":"Araripina","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4015","name":"Arcoverde","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4016","name":"Barra de Guabiraba","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4017","name":"Barreiros","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4018","name":"Belem de Sao Francisco","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4019","name":"Belo Jardim","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4020","name":"Bezerros","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4021","name":"Bodoco","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4022","name":"Bom Conselho","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4023","name":"Bonito","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4024","name":"Brejo da Madre de Deus","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4025","name":"Buique","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4026","name":"Cabo de Santo Agostinho","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4027","name":"Cabrobo","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4028","name":"Cachoeirinha","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4029","name":"Caetes","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4030","name":"Camaragibe","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4031","name":"Camocim de Sao Felix","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4032","name":"Canhotinho","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4033","name":"Capoeiras","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4034","name":"Carnaiba","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4035","name":"Carpina","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4036","name":"Caruaru","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4037","name":"Catende","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4038","name":"Cha Grande","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4039","name":"Condado","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4040","name":"Cumaru","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4041","name":"Cupira","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4042","name":"Custodia","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4043","name":"Escada","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4044","name":"Exu","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4045","name":"Feira Nova","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4046","name":"Fernando de Noronha","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4047","name":"Flores","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4048","name":"Floresta","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4049","name":"Gameleira","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4050","name":"Garanhuns","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4051","name":"Gloria do Goita","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4052","name":"Goiana","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4053","name":"Gravata","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4054","name":"Ibimirim","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4055","name":"Igarassu","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4056","name":"Inaja","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4057","name":"Ipojuca","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4058","name":"Ipubi","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4059","name":"Itaiba","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4060","name":"Itamaraca","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4061","name":"Itapissuma","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4062","name":"Itaquitinga","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4063","name":"Jaboatao","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4064","name":"Joao Alfredo","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4065","name":"Joaquim Nabuco","city_id":"524","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"is_activated":"1"}, +{"id":"4066","name":"Lagoa do Itaenga","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4067","name":"Lajedo","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4068","name":"Limoeiro","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4069","name":"Macaparana","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4070","name":"Maraial","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4071","name":"Moreno","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4072","name":"Nazare da Mata","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4073","name":"Orobo","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4074","name":"Ouricuri","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4075","name":"Palmares","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4076","name":"Panelas","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4077","name":"Parnamirim","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4078","name":"Passira","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4079","name":"Paudalho","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4080","name":"Pedra","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4081","name":"Pesqueira","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4082","name":"Petrolandia","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4083","name":"Petrolina","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4084","name":"Pombos","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4085","name":"Quipapa","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4086","name":"Recife","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4087","name":"Ribeirao","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4088","name":"Rio Formoso","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4089","name":"Salgueiro","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4090","name":"Santa Cruz do Capibaribe","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4091","name":"Santa Maria da Boa Vista","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4092","name":"Sao Bento do Una","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4093","name":"Sao Caitano","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4094","name":"Sao Joao","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4095","name":"Sao Joaquim do Monte","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4096","name":"Sao Jose da Coroa Grande","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4097","name":"Sao Jose do Belmonte","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4098","name":"Sao Jose do Egito","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4099","name":"Sao Lourenco da Mata","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4100","name":"Serra Talhada","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4101","name":"Sertania","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4102","name":"Sirinhaem","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4103","name":"Surubim","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4104","name":"Tabira","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4105","name":"Tamandare","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4106","name":"Taquaritinga do Norte","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4107","name":"Timbauba","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4108","name":"Toritama","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4109","name":"Tupanatinga","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4110","name":"Vicencia","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4111","name":"Vitoria de Santo Antao","city_id":"524","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4112","name":"Alto Longa","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4113","name":"Altos","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4114","name":"Amarante","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4115","name":"Avelino Lopes","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4116","name":"Barras","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4117","name":"Beneditinos","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4118","name":"Bom Jesus","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4119","name":"Buriti dos Lopes","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4120","name":"Campo Maior","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4121","name":"Canto do Buriti","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4122","name":"Castelo do Piaui","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4123","name":"Cocal","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4124","name":"Corrente","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4125","name":"Demerval Lobao","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4126","name":"Elesbao Veloso","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4127","name":"Esperantina","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4128","name":"Floriano","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4129","name":"Gilbues","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4130","name":"Guadalupe","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4131","name":"Inhuma","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4132","name":"Itainopolis","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4133","name":"Itaueira","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4134","name":"Jaicos","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4135","name":"Joaquim Pires","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4136","name":"Jose de Freitas","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4137","name":"Luis Correia","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4138","name":"Luzilandia","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4139","name":"Matias Olimpio","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4140","name":"Miguel Alves","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4141","name":"Monsenhor Gil","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4142","name":"Oeiras","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4143","name":"Palmeirais","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4144","name":"Parnaiba","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4145","name":"Pedro II","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4146","name":"Picos","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4147","name":"Pimenteiras","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4148","name":"Pio IX","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4149","name":"Piracuruca","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4150","name":"Piripiri","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4151","name":"Porto","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4152","name":"Regeneracao","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4153","name":"Sao Joao do Piaui","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4154","name":"Sao Miguel do Tapuio","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4155","name":"Sao Pedro do Piaui","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4156","name":"Sao Raimundo Nonato","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4157","name":"Simoes","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4158","name":"Simplicio Mendes","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4159","name":"Teresina","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4160","name":"Uniao","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4161","name":"Urucui","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4162","name":"Valenca do Piaui","city_id":"525","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4163","name":"Alta Floresta d Oeste","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4164","name":"Alto Alegre do Parecis","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4165","name":"Alto Paraiso","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4166","name":"Alvorada d Oeste","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4167","name":"Ariquemes","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4168","name":"Buritis","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4169","name":"Cacoal","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4170","name":"Candeias do Jamari","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4171","name":"Cerejeiras","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4172","name":"Colorado do Oeste","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4173","name":"Corumbiara","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4174","name":"Espigao d Oeste","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4175","name":"Governador Jorge Teixeira","city_id":"529","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"is_activated":"1"}, +{"id":"4176","name":"Guajara-Mirim","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4177","name":"Jaru","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4178","name":"Ji-Parana","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4179","name":"Machadinho d Oeste","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4180","name":"Ministro Andreazza","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4181","name":"Mirante da Serra","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4182","name":"Nova Brasilandia d Oeste","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4183","name":"Nova Mamore","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4184","name":"Novo Horizonte do Oeste","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4185","name":"Ouro Preto do Oeste","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4186","name":"Pimenta Bueno","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4187","name":"Porto Velho","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4188","name":"Presidente Medici","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4189","name":"Rolim de Moura","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4190","name":"Santa Luzia d Oeste","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4191","name":"Sao Miguel do Guapore","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4192","name":"Urupa","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4193","name":"Vale do Paraiso","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4194","name":"Vilhena","city_id":"529","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4195","name":"Alto Alegre","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4196","name":"Boa Vista","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4197","name":"Bonfim","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4198","name":"Caracarai","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4199","name":"Mucajai","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4200","name":"Normandia","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4201","name":"Sao Joao da Baliza","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4202","name":"Sao Luiz","city_id":"530","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4203","name":"Aquidaba","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4204","name":"Aracaju","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4205","name":"Araua","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4206","name":"Areia Branca","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4207","name":"Barra dos Coqueiros","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4208","name":"Boquim","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4209","name":"Campo do Brito","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4210","name":"Caninde de Sao Francisco","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4211","name":"Carira","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4212","name":"Cristinapolis","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4213","name":"Estancia","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4214","name":"Frei Paulo","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4215","name":"Gararu","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4216","name":"Indiaroba","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4217","name":"Itabaianinha","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4218","name":"Itaporanga d Ajuda","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4219","name":"Japaratuba","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4220","name":"Japoata","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4221","name":"Lagarto","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4222","name":"Laranjeiras","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4223","name":"Malhador","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4224","name":"Maruim","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4225","name":"Moita Bonita","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4226","name":"Monte Alegre de Sergipe","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4227","name":"Neopolis","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4228","name":"Nossa Senhora da Gloria","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4229","name":"Nossa Senhora das Dores","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4230","name":"Nossa Senhora do Socorro","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4231","name":"Poco Verde","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4232","name":"Porto da Folha","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4233","name":"Propria","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4234","name":"Riachao do Dantas","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4235","name":"Ribeiropolis","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4236","name":"Salgado","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4237","name":"Santa Luzia do Itanhy","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4238","name":"Santo Amaro das Brotas","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4239","name":"Sao Cristovao","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4240","name":"Simao Dias","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4241","name":"Tobias Barreto","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4242","name":"Tomar do Geru","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4243","name":"Umbauba","city_id":"533","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4244","name":"Alvorada","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4245","name":"Ananas","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4246","name":"Araguacu","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4247","name":"Araguaina","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4248","name":"Araguatins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4249","name":"Arraias","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4250","name":"Augustinopolis","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4251","name":"Axixa do Tocantins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4252","name":"Colinas do Tocantins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4253","name":"Dianopolis","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4254","name":"Formoso do Araguaia","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4255","name":"Goiatins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4256","name":"Guarai","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4257","name":"Gurupi","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4258","name":"Miracema do Tocantins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4259","name":"Miranorte","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4260","name":"Paraiso","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4261","name":"Parana","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4262","name":"Porto Nacional","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4263","name":"Sitio Novo do Tocantins","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4264","name":"Taguatinga","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4265","name":"Tocantinopolis","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4266","name":"Wanderlandia","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4267","name":"Xambioa","city_id":"534","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4268","name":"Kuala Belait","city_id":"536","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4269","name":"Seria","city_id":"536","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4270","name":"Bandar Seri Begawan","city_id":"537","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4271","name":"Bangar","city_id":"538","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4272","name":"Tutong","city_id":"539","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"is_activated":"1"}, +{"id":"4273","name":"Bansko","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4274","name":"Belica","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4275","name":"Blagoevgrad","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4276","name":"Goce Delchev","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4277","name":"Hadzhidimovo","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4278","name":"Jakoruda","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4279","name":"Kresna","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4280","name":"Melnik","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4281","name":"Petrich","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4282","name":"Razlog","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4283","name":"Sandanski","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4284","name":"Simitli","city_id":"540","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4285","name":"Ahtopol","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4286","name":"Ajtos","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4287","name":"Balgarovo","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4288","name":"Bourgas","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4289","name":"Burgas","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4290","name":"Carevo","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4291","name":"Kableshkovo","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4292","name":"Kameno","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4293","name":"Karnobat","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4294","name":"Malko Tarnovo","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4295","name":"Nesebar","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4296","name":"Obzor","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4297","name":"Pomorie","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4298","name":"Primorsko","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4299","name":"Sozopol","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4300","name":"Sredec","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4301","name":"Sungurlare","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4302","name":"Tvardica","city_id":"541","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4303","name":"Balchik","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4304","name":"Dobrich","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4305","name":"General-Toshevo","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4306","name":"Kavarna","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4307","name":"Loznica","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4308","name":"Shabla","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4309","name":"Tervel","city_id":"542","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4310","name":"Drjanovo","city_id":"543","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4311","name":"Gabrovo","city_id":"543","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4312","name":"Plachkovci","city_id":"543","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4313","name":"Sevlievo","city_id":"543","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4314","name":"Trjavna","city_id":"543","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4315","name":"Dimitrovgrad","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4316","name":"Harmanli","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4317","name":"Haskovo","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4318","name":"Ivajlovgrad","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4319","name":"Ljubimec","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4320","name":"Madzharovo","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4321","name":"Merichleri","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4322","name":"Simeonovgrad","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4323","name":"Svilengrad","city_id":"544","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4324","name":"Boljarovo","city_id":"545","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4325","name":"Elhovo","city_id":"545","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4326","name":"Jambol","city_id":"545","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4327","name":"Straldzha","city_id":"545","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4328","name":"Topolovgrad","city_id":"545","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4329","name":"Ardino","city_id":"546","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4330","name":"Dzhebel","city_id":"546","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4331","name":"Kardzhali","city_id":"546","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4332","name":"Krumovgrad","city_id":"546","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4333","name":"Momchilgrad","city_id":"546","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4334","name":"Boboshevo","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4335","name":"Bobovdol","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4336","name":"Dupnica","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4337","name":"Kjustendil","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4338","name":"Kocherinovo","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4339","name":"Rila","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4340","name":"Sapareva Banja","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4341","name":"Zemen","city_id":"547","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4342","name":"Aprilci","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4343","name":"Jablanica","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4344","name":"Letnica","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4345","name":"Lovech","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4346","name":"Lukovit","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4347","name":"Sopot","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4348","name":"Teteven","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4349","name":"Trojan","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4350","name":"Ugarchin","city_id":"548","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4351","name":"Berkovica","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4352","name":"Bojchinovci","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4353","name":"Brusarci","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4354","name":"Chiprovci","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4355","name":"Lom","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4356","name":"Montana","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4357","name":"Valchedram","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4358","name":"Varshec","city_id":"549","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4359","name":"Batak","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4360","name":"Belovo","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4361","name":"Bracigovo","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4362","name":"Koprivshtica","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4363","name":"Panagjurishte","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4364","name":"Pazardzhik","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4365","name":"Peshtera","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4366","name":"Rakitovo","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4367","name":"Septemvri","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4368","name":"Strelcha","city_id":"551","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"is_activated":"1"}, +{"id":"4369","name":"Velingrad","city_id":"551","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4370","name":"Bankja","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4371","name":"Batanovci","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4372","name":"Breznik","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4373","name":"Pernik","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4374","name":"Radomir","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4375","name":"Tran","city_id":"552","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4376","name":"Belene","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4377","name":"Cherven Brjag","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4378","name":"Dolna Mitropolija","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4379","name":"Dolni Dabnik","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4380","name":"Guljanci","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4381","name":"Levski","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4382","name":"Nikopol","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4383","name":"Pleven","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4384","name":"Pordim","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4385","name":"Slavjanovo","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4386","name":"Trashtenik","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4387","name":"Varbica","city_id":"553","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4388","name":"Asenovgrad","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4389","name":"Brezovo","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4390","name":"Car Kalojan","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4391","name":"Hisarja","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4392","name":"Kalofer","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4393","name":"Karlovo","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4394","name":"Klisura","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4395","name":"Krichim","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4396","name":"Parvomaj","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4397","name":"Perushtica","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4398","name":"Plovdiv","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4399","name":"Rakovski","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4400","name":"Sadovo","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4401","name":"Saedinenie","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4402","name":"Stambolijski","city_id":"554","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4403","name":"Isperih","city_id":"555","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4404","name":"Kubrat","city_id":"555","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4405","name":"Razgrad","city_id":"555","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4406","name":"Senovo","city_id":"555","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4407","name":"Zavet","city_id":"555","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4408","name":"Bjala","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4409","name":"Borovo","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4410","name":"Dve Mogili","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4411","name":"Ruse","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4412","name":"Russe","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4413","name":"Vetovo","city_id":"556","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4414","name":"Kaolinovo","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4415","name":"Kaspichan","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4416","name":"Novi Pazar","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4417","name":"Pliska","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4418","name":"Shumen","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4419","name":"Smjadovo","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4420","name":"Veliki Preslav","city_id":"557","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4421","name":"Alfatar","city_id":"558","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4422","name":"Dulovo","city_id":"558","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4423","name":"Glavinica","city_id":"558","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4424","name":"Silistra","city_id":"558","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4425","name":"Tutrakan","city_id":"558","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4426","name":"Kermen","city_id":"559","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4427","name":"Kotel","city_id":"559","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4428","name":"Nova Zagora","city_id":"559","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4429","name":"Shivachevo","city_id":"559","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4430","name":"Sliven","city_id":"559","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4431","name":"Chepelare","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4432","name":"Devin","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4433","name":"Dospat","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4434","name":"Laki","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4435","name":"Madan","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4436","name":"Nedelino","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4437","name":"Rudozem","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4438","name":"Smoljan","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4439","name":"Zlatograd","city_id":"560","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4440","name":"Antonovo","city_id":"564","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4441","name":"Omurtag","city_id":"564","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4442","name":"Opaka","city_id":"564","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4443","name":"Popovo","city_id":"564","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4444","name":"Targovishte","city_id":"564","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4445","name":"Beloslav","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4446","name":"Dalgopol","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4447","name":"Devnja","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4448","name":"Iskar","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4449","name":"Provadija","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4450","name":"Suvorovo","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4451","name":"Valchi Dol","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4452","name":"Varna","city_id":"565","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"is_activated":"1"}, +{"id":"4453","name":"Belogradchik","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4454","name":"Bregovo","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4455","name":"Dimovo","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4456","name":"Dolni Chiflik","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4457","name":"Dunavci","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4458","name":"Gramada","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4459","name":"Kula","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4460","name":"Vidin","city_id":"567","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4461","name":"Bjala Slatina","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4462","name":"Knezha","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4463","name":"Kojnare","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4464","name":"Kozloduj","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4465","name":"Krivodol","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4466","name":"Mezdra","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4467","name":"Mizija","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4468","name":"Orjahovo","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4469","name":"Roman","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4470","name":"Vraca","city_id":"568","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4471","name":"Yablaniza","city_id":"569","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4472","name":"Boromo","city_id":"570","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4473","name":"Kongoussi","city_id":"571","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4474","name":"Kombissiri","city_id":"572","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4475","name":"Diebougou","city_id":"573","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4476","name":"Pa","city_id":"573","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4477","name":"Garango","city_id":"574","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4478","name":"Tenkodogo","city_id":"574","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4479","name":"Koudougou","city_id":"575","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4480","name":"Banfora","city_id":"576","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4481","name":"Zorgo","city_id":"577","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4482","name":"Bogande","city_id":"578","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4483","name":"Fada N gourma","city_id":"579","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4484","name":"Bekuy","city_id":"580","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4485","name":"Bobo Dioulasso","city_id":"580","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4486","name":"Dano","city_id":"581","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4487","name":"Ouagadougou","city_id":"582","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4488","name":"Koalla","city_id":"583","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4489","name":"Koloko","city_id":"583","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4490","name":"Orodara","city_id":"583","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4491","name":"Gayeri","city_id":"584","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4492","name":"Pama","city_id":"585","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4493","name":"Nouna","city_id":"586","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4494","name":"Koupela","city_id":"587","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4495","name":"Bousse","city_id":"588","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"is_activated":"1"}, +{"id":"4496","name":"Sindou","city_id":"589","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4497","name":"Dedougou","city_id":"590","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4498","name":"Po","city_id":"591","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4499","name":"Boulsa","city_id":"592","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4500","name":"Batie","city_id":"593","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4501","name":"Ziniare","city_id":"594","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4502","name":"Gorom-Gorom","city_id":"595","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4503","name":"Yako","city_id":"596","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4504","name":"Gaoua","city_id":"597","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4505","name":"Kampti","city_id":"597","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4506","name":"Loropeni","city_id":"597","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4507","name":"Reo","city_id":"598","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4508","name":"Kaya","city_id":"599","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4509","name":"Dori","city_id":"600","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4510","name":"Gao","city_id":"601","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4511","name":"Leo","city_id":"601","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4512","name":"Aribinda","city_id":"602","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4513","name":"Djibo","city_id":"602","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4514","name":"Louta","city_id":"603","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4515","name":"Tougan","city_id":"603","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4516","name":"Diapaga","city_id":"604","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4517","name":"Kantchari","city_id":"604","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4518","name":"Hounde","city_id":"605","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4519","name":"Ouahigouya","city_id":"606","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4520","name":"Gourcy","city_id":"607","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4521","name":"Manga","city_id":"608","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4522","name":"Bubanza","city_id":"609","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4523","name":"Bujumbura","city_id":"610","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4524","name":"Bururi","city_id":"611","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4525","name":"Cankuzo","city_id":"612","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4526","name":"Cibitoke","city_id":"613","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4527","name":"Gitega","city_id":"614","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"is_activated":"1"}, +{"id":"4528","name":"Karuzi","city_id":"615","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4529","name":"Kayanza","city_id":"616","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4530","name":"Kirundo","city_id":"617","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4531","name":"Makamba","city_id":"618","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4532","name":"Muramvya","city_id":"619","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4533","name":"Muyinga","city_id":"620","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4534","name":"Ngozi","city_id":"621","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4535","name":"Rutana","city_id":"622","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4536","name":"Ruyigi","city_id":"623","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4537","name":"Kampot","city_id":"630","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4538","name":"Ta Khmau","city_id":"631","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4539","name":"Kracheh","city_id":"633","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4540","name":"Pousat","city_id":"640","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"is_activated":"1"}, +{"id":"4541","name":"Phumi Takaev","city_id":"647","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4542","name":"Banyo","city_id":"648","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4543","name":"Meiganga","city_id":"648","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4544","name":"Ngaoundere","city_id":"648","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4545","name":"Tibati","city_id":"648","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4546","name":"Tignere","city_id":"648","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4547","name":"Akonolinga","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4548","name":"Bafia","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4549","name":"Eseka","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4550","name":"Mbalmayo","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4551","name":"Mfou","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4552","name":"Monatele","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4553","name":"Nanga Eboko","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4554","name":"Obala","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4555","name":"Ombesa","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4556","name":"Saa","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4557","name":"Yaounde","city_id":"649","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4558","name":"Abong Mbang","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4559","name":"Batouri","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4560","name":"Bertoua","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4561","name":"Betare Oya","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4562","name":"Djoum","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4563","name":"Doume","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4564","name":"Lomie","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4565","name":"Yokadouma","city_id":"650","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4566","name":"Bonaberi","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4567","name":"Dibombari","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4568","name":"Douala","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4569","name":"Edea","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4570","name":"Loum","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4571","name":"Manjo","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4572","name":"Mbanga","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4573","name":"Nkongsamba","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4574","name":"Yabassi","city_id":"450","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4575","name":"Figuif","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4576","name":"Garoua","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4577","name":"Guider","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4578","name":"Lagdo","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4579","name":"Poli","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4580","name":"Rey Bouba","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4581","name":"Tchollire","city_id":"651","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4582","name":"Bamenda","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4583","name":"Kumbo","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4584","name":"Mbengwi","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4585","name":"Mme","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4586","name":"Njinikom","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4587","name":"Nkambe","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4588","name":"Wum","city_id":"653","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4589","name":"Bafang","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4590","name":"Bafoussam","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4591","name":"Bafut","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4592","name":"Bali","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4593","name":"Bana","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4594","name":"Bangangte","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4595","name":"Djang","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4596","name":"Fontem","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4597","name":"Foumban","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4598","name":"Foumbot","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4599","name":"Mbouda","city_id":"654","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4600","name":"Akom","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4601","name":"Ambam","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4602","name":"Ebolowa","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4603","name":"Kribi","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4604","name":"Lolodorf","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4605","name":"Moloundou","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4606","name":"Mvangue","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4607","name":"Sangmelima","city_id":"655","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4608","name":"Buea","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4609","name":"Idenao","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4610","name":"Kumba","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4611","name":"Limbe","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4612","name":"Mamfe","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4613","name":"Muyuka","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4614","name":"Tiko","city_id":"656","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4615","name":"Airdrie","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4616","name":"Athabasca","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4617","name":"Banff","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4618","name":"Barrhead","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4619","name":"Bassano","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4620","name":"Beaverlodge","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4621","name":"Black Diamond","city_id":"657","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"is_activated":"1"}, +{"id":"4622","name":"Blackfalds","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4623","name":"Blairmore","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4624","name":"Bon Accord","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4625","name":"Bonnyville","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4626","name":"Bow Island","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4627","name":"Brooks","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4628","name":"Calgary","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4629","name":"Calmar","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4630","name":"Camrose","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4631","name":"Canmore","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4632","name":"Cardston","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4633","name":"Carstairs","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4634","name":"Chateau Lake Louise","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4635","name":"Chestermere","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4636","name":"Clairmont","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4637","name":"Claresholm","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4638","name":"Coaldale","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4639","name":"Coalhurst","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4640","name":"Cochrane","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4641","name":"Crossfield","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4642","name":"Devon","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4643","name":"Didsbury","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4644","name":"Drayton Valley","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4645","name":"Drumheller","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4646","name":"Edmonton","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4647","name":"Edson","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4648","name":"Elk Point","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4649","name":"Fairview","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4650","name":"Falher","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4651","name":"Fort MacLeod","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4652","name":"Fox Creek","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4653","name":"Gibbons","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4654","name":"Grand Centre","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4655","name":"Grande Cache","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4656","name":"Grande Prairie","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4657","name":"Grimshaw","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4658","name":"Hanna","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4659","name":"High Level","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4660","name":"High Prairie","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4661","name":"High River","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4662","name":"Hinton","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4663","name":"Irricana","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4664","name":"Jasper","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4665","name":"Killam","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4666","name":"La Crete","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4667","name":"Lac la Biche","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4668","name":"Lacombe","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4669","name":"Lamont","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4670","name":"Leduc","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4671","name":"Lethbridge","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4672","name":"Lloydminster","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4673","name":"Magrath","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4674","name":"Manning","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4675","name":"Mayerthorpe","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4676","name":"McMurray","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4677","name":"Medicine Hat","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4678","name":"Millet","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4679","name":"Morinville","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4680","name":"Nanton","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4681","name":"Okotoks","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4682","name":"Olds","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4683","name":"Peace River","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4684","name":"Penhold","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4685","name":"Picture Butte","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4686","name":"Pincher Creek","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4687","name":"Ponoka","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4688","name":"Provost","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4689","name":"Raymond","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4690","name":"Red Deer","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4691","name":"Redwater","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4692","name":"Rimbey","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4693","name":"Rocky Mountain House","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4694","name":"Rocky View","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4695","name":"Saint Paul","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4696","name":"Sexsmith","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4697","name":"Sherwood Park","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4698","name":"Slave Lake","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4699","name":"Smoky Lake","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4700","name":"Spirit River","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4701","name":"Spruce Grove","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4702","name":"Stettler","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4703","name":"Stony Plain","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4704","name":"Strathmore","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4705","name":"Sundre","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4706","name":"Swan Hills","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4707","name":"Sylvan Lake","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4708","name":"Taber","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4709","name":"Three Hills","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4710","name":"Tofield","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4711","name":"Two Hills","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4712","name":"Valleyview","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4713","name":"Vegreville","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4714","name":"Vermilion","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4715","name":"Viking","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4716","name":"Vulcan","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4717","name":"Wainwright","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4718","name":"Wembley","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4719","name":"Westlock","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4720","name":"Wetaskiwin","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4721","name":"Whitecourt","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4722","name":"Wood Buffalo","city_id":"657","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4723","name":"Altona","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4724","name":"Beausejour","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4725","name":"Boissevain","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4726","name":"Brandon","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4727","name":"Carberry","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4728","name":"Carman","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4729","name":"Dauphin","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4730","name":"Deloraine","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4731","name":"Dugald","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4732","name":"Flin Flon","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4733","name":"Gimli","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4734","name":"Hamiota","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4735","name":"Killarney","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4736","name":"Lac du Bonnet","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4737","name":"Leaf Rapids","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4738","name":"Lorette","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4739","name":"Melita","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4740","name":"Minnedosa","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4741","name":"Morden","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4742","name":"Morris","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4743","name":"Neepawa","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4744","name":"Niverville","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4745","name":"Pinawa","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4746","name":"Portage la Prairie","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4747","name":"Ritchot","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4748","name":"Rivers","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4749","name":"Roblin","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4750","name":"Saint Adolphe","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4751","name":"Sainte Anne","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4752","name":"Sainte Rose du Lac","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4753","name":"Selkirk","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4754","name":"Shilo","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4755","name":"Snow Lake","city_id":"659","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"is_activated":"1"}, +{"id":"4756","name":"Souris","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4757","name":"Springfield","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4758","name":"Steinbach","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4759","name":"Stonewall","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4760","name":"Stony Mountain","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4761","name":"Swan River","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4762","name":"The Pas","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4763","name":"Thompson","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4764","name":"Virden","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4765","name":"Winkler","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4766","name":"Winnipeg","city_id":"659","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4767","name":"Clyde River","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4768","name":"Iqaluit","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4769","name":"Kangerdlinerk","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4770","name":"Oqsuqtooq","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4771","name":"Pangnirtung","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4772","name":"Tununirusiq","city_id":"664","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4773","name":"Acton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4774","name":"Ajax","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4775","name":"Alexandria","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4776","name":"Alfred","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4777","name":"Alliston","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4778","name":"Almonte","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4779","name":"Amherstburg","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4780","name":"Amigo Beach","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4781","name":"Angus-Borden","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4782","name":"Arnprior","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4783","name":"Arthur","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4784","name":"Athens","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4785","name":"Atikokan","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4786","name":"Attawapiskat","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4787","name":"Aylmer","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4788","name":"Barrie","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4789","name":"Barry s Bay","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4790","name":"Beamsville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4791","name":"Beaverton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4792","name":"Beeton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4793","name":"Belleville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4794","name":"Blenheim","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4795","name":"Blind River","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4796","name":"Bobcaygeon","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4797","name":"Bolton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4798","name":"Bourget","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4799","name":"Bowmanville-Newcastle","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4800","name":"Bracebridge","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4801","name":"Bradford","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4802","name":"Brampton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4803","name":"Brantford","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4804","name":"Bridgenorth-Chemong Park Area","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4805","name":"Brighton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4806","name":"Brockville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4807","name":"Brooklin","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4808","name":"Burford","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4809","name":"Burlington","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4810","name":"Caledon","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4811","name":"Caledon East","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4812","name":"Caledonia","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4813","name":"Cambridge","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4814","name":"Campbellford","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4815","name":"Campbellville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4816","name":"Cannington","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4817","name":"Capreol","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4818","name":"Cardinal","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4819","name":"Carleton Place","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4820","name":"Carlisle","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4821","name":"Casselman","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4822","name":"Cayuga","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4823","name":"Chalk River","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4824","name":"Chapleau","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4825","name":"Chatham","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4826","name":"Chesley","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4827","name":"Chesterville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4828","name":"Clinton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4829","name":"Cobourg","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4830","name":"Colborne","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4831","name":"Colchester","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4832","name":"Concord","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4833","name":"Constance Bay","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4834","name":"Cookstown","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4835","name":"Cornwall","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4836","name":"Creemore","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4837","name":"Crystal Beach","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4838","name":"Deep River","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4839","name":"Delhi","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4840","name":"Deseronto","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4841","name":"Downsview","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4842","name":"Drayton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4843","name":"Dresden","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4844","name":"Dryden","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4845","name":"Dundalk","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4846","name":"Dunnville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4847","name":"Durham","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4848","name":"Dutton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4849","name":"Eganville","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4850","name":"Elliot Lake","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4851","name":"Elmira","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4852","name":"Elmvale","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4853","name":"Embrun","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4854","name":"Englehart","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4855","name":"Erin","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4856","name":"Espanola","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4857","name":"Essex","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4858","name":"Etobicoke","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4859","name":"Everett","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4860","name":"Exeter","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4861","name":"Fenelon Falls","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4862","name":"Fergus","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4863","name":"Forest","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4864","name":"Fort Erie","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4865","name":"Fort Frances","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4866","name":"Frankford","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4867","name":"Gananoque","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4868","name":"Georgetown","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4869","name":"Georgina","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4870","name":"Geraldton","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4871","name":"Glencoe","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4872","name":"Goderich","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4873","name":"Golden","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4874","name":"Gormley","city_id":"431","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"is_activated":"1"}, +{"id":"4875","name":"Grand Bend","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4876","name":"Grand Valley","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4877","name":"Gravenhurst","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4878","name":"Guelph","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4879","name":"Hagersville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4880","name":"Haileybury","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4881","name":"Hanover","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4882","name":"Harriston","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4883","name":"Harrow","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4884","name":"Havelock","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4885","name":"Hawkesbury","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4886","name":"Hearst","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4887","name":"Hensall","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4888","name":"Hillsburgh","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4889","name":"Hornepayne","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4890","name":"Huntsville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4891","name":"Ingersoll","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4892","name":"Innisfil","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4893","name":"Iroquois","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4894","name":"Iroquois Falls","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4895","name":"Jarvis","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4896","name":"Kanata","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4897","name":"Kapuskasing","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4898","name":"Kars","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4899","name":"Kemptville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4900","name":"Kenora","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4901","name":"Kincardine","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4902","name":"Kingston","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4903","name":"Kirkland Lake","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4904","name":"Kitchener","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4905","name":"L Original","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4906","name":"Lakefield","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4907","name":"Lanark","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4908","name":"Leamington","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4909","name":"Lindsay","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4910","name":"Listowel","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4911","name":"Little Current","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4912","name":"Lively","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4913","name":"London","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4914","name":"Longlac","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4915","name":"Lucan","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4916","name":"Lucknow","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4917","name":"Madoc","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4918","name":"Manitouwadge","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4919","name":"Maple","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4920","name":"Marathon","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4921","name":"Markdale","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4922","name":"Markham","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4923","name":"Marmora","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4924","name":"Mattawa","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4925","name":"Meaford","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4926","name":"Metcalfe","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4927","name":"Midland","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4928","name":"Mildmay","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4929","name":"Millbrook","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4930","name":"Milverton","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4931","name":"Mississauga","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4932","name":"Mississauga Beach","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4933","name":"Mitchell","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4934","name":"Moose Factory","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4935","name":"Morrisburg","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4936","name":"Mount Albert","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4937","name":"Mount Brydges","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4938","name":"Mount Forest","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4939","name":"Munster","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4940","name":"Nanticoke","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4941","name":"Napanee","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4942","name":"Nepean","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4943","name":"New Hamburg","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4944","name":"Newmarket","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4945","name":"Newtonville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4946","name":"Nobleton","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4947","name":"North Bay","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4948","name":"North Gower","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4949","name":"North York","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4950","name":"Norwich","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4951","name":"Norwood","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4952","name":"Oakville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4953","name":"Omemee","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4954","name":"Onaping-Levack","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4955","name":"Ontario","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4956","name":"Orangeville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4957","name":"Orillia","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4958","name":"Orono","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4959","name":"Osgoode","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4960","name":"Oshawa","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4961","name":"Ottawa","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4962","name":"Owen Sound","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4963","name":"Paisley","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4964","name":"Palmerston","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4965","name":"Paris","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4966","name":"Parkhill","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4967","name":"Parry Sound","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4968","name":"Pembroke","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4969","name":"Perth","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4970","name":"Petawawa","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4971","name":"Peterborough","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4972","name":"Petrolia","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4973","name":"Pickering","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4974","name":"Picton","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4975","name":"Porcupine","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4976","name":"Port Credit","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4977","name":"Port Dover","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4978","name":"Port Elgin","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4979","name":"Port Hope","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4980","name":"Port Perry","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4981","name":"Port Stanley","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4982","name":"Powassan","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4983","name":"Prescott","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4984","name":"Queensville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4985","name":"Renfrew","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4986","name":"Richmond","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4987","name":"Richmond Hill","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4988","name":"Ridgetown","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4989","name":"Rockland","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4990","name":"Rockwood","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4991","name":"Rodney","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4992","name":"Saint Catharines","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4993","name":"Saint Catharines-Niagara","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4994","name":"Saint George","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4995","name":"Saint Jacobs","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4996","name":"Saint Marys","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4997","name":"Saint Thomas","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4998","name":"Sarnia","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"4999","name":"Sault Sainte Marie","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5000","name":"Scarborough","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5001","name":"Schomberg","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5002","name":"Seaforth","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5003","name":"Shelburne","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5004","name":"Simcoe","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5005","name":"Sioux Lookout","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5006","name":"Smiths Falls","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5007","name":"Smithville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5008","name":"South River","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5009","name":"Southampton","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5010","name":"Stayner","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5011","name":"Stirling","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5012","name":"Stoney Creek","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5013","name":"Stoney Point","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5014","name":"Stouffville","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5015","name":"Stratford","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5016","name":"Strathroy","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5017","name":"Sturgeon Falls","city_id":"431","created_at":"2024-01-21 12:04:13","updated_at":"2024-01-21 12:04:13","translations":null,"is_activated":"1"}, +{"id":"5018","name":"Sudbury","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5019","name":"Sutton","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5020","name":"Tavistock","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5021","name":"Teeswater","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5022","name":"Terrace Bay","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5023","name":"Thamesford","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5024","name":"Thessalon","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5025","name":"Thornhill","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5026","name":"Thunder Bay","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5027","name":"Tilbury","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5028","name":"Tilsonburg","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5029","name":"Timmins","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5030","name":"Toronto","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5031","name":"Tory Hill","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5032","name":"Tottenham","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5033","name":"Tweed","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5034","name":"Uxbridge","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5035","name":"Valley East","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5036","name":"Vankleek Hill","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5037","name":"Vaughan","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5038","name":"Vineland","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5039","name":"Walkerton","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5040","name":"Wallaceburg","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5041","name":"Wasaga Beach","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5042","name":"Waterdown","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5043","name":"Waterford","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5044","name":"Waterloo","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5045","name":"Watford","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5046","name":"Wawa","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5047","name":"Welland","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5048","name":"Wellesley","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5049","name":"Wellington","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5050","name":"West Lorne","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5051","name":"Wheatley","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5052","name":"Whitby","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5053","name":"Whitchurch-Stouffville","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5054","name":"Wiarton","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5055","name":"Wikwemikong","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5056","name":"Willowdale","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5057","name":"Winchester","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5058","name":"Windsor","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5059","name":"Wingham","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5060","name":"Woodbridge","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5061","name":"Woodstock","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5062","name":"Wyoming","city_id":"431","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5063","name":"Acton Vale","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5064","name":"Albanel","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5065","name":"Alencon","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5066","name":"Alma","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5067","name":"Amos","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5068","name":"Amqui","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5069","name":"Anjou","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5070","name":"Asbestos","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5071","name":"Bagotville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5072","name":"Baie-Comeau","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5073","name":"Baie-Saint-Paul","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5074","name":"Barraute","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5075","name":"Beauceville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5076","name":"Beaupre","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5077","name":"Bedford","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5078","name":"Bernierville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5079","name":"Berthierville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5080","name":"Betsiamites","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5081","name":"Boisbriand","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5082","name":"Bonaventure","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5083","name":"Boucherville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5084","name":"Bromont","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5085","name":"Brossard","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5086","name":"Brownsburg","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5087","name":"Buckingham","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5088","name":"Cabano","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5089","name":"Candiac","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5090","name":"Cap-Chat","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5091","name":"Cap-aux-Meules","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5092","name":"Carleton","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5093","name":"Causapscal","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5094","name":"Chandler","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5095","name":"Chapais","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5096","name":"Charlesbourg","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5097","name":"Chateau-Richer","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5098","name":"Chibougamou","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5099","name":"Chicoutimi-Jonquiere","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5100","name":"Chisasibi","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5101","name":"Chute-aux-Outardes","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5102","name":"Clermont","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5103","name":"Coaticook","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5104","name":"Coleraine","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5105","name":"Contrecoeur","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5106","name":"Cookshire","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5107","name":"Cowansville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5108","name":"Crabtree","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5109","name":"Danville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5110","name":"Daveluyville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5111","name":"Degelis","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5112","name":"Desbiens","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5113","name":"Disraeli","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5114","name":"Dolbeau","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5115","name":"Donnacona","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5116","name":"Dorval","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5117","name":"Drummondville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5118","name":"East Angus","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5119","name":"East Broughton","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5120","name":"Farnham","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5121","name":"Ferme-Neuve","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5122","name":"Fermont","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5123","name":"Filion","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5124","name":"Forestville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5125","name":"Fort-Coulonge","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5126","name":"Gaspe","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5127","name":"Gentilly","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5128","name":"Granby","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5129","name":"Grande-Riviere","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5130","name":"Grenville","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5131","name":"Ham Nord","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5132","name":"Hampstead","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5133","name":"Hauterive","city_id":"666","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"is_activated":"1"}, +{"id":"5134","name":"Havre-Saint-Pierre","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5135","name":"Hebertville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5136","name":"Huntingdon","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5137","name":"Joliette","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5138","name":"Kingsey Falls","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5139","name":"L Annonciation","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5140","name":"L Ascension-de-Notre-Seigneur","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5141","name":"L Epiphanie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5142","name":"La Malbaie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5143","name":"La Pocatiere","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5144","name":"La Sarre","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5145","name":"La Tuque","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5146","name":"Labelle","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5147","name":"Lac-Etchemin","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5148","name":"Lac-Lapierre","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5149","name":"Lac-Megantic","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5150","name":"Lac-au-Saumon","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5151","name":"Lachine","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5152","name":"Lachute","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5153","name":"Lacolle","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5154","name":"Lasalle","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5155","name":"Laurentides","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5156","name":"Laurier-Station","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5157","name":"Laval","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5158","name":"Lavaltrie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5159","name":"Le Bic","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5160","name":"Lebel-sur-Quevillon","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5161","name":"Les Cedres","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5162","name":"Les Coteaux","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5163","name":"Les Escoumins","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5164","name":"Liniere","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5165","name":"Longueuil","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5166","name":"Louiseville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5167","name":"Luceville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5168","name":"Macamic","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5169","name":"Magog","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5170","name":"Malartic","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5171","name":"Maniwaki","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5172","name":"Marieville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5173","name":"Maskinonge","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5174","name":"Matagami","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5175","name":"Matane","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5176","name":"Metabetchouan","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5177","name":"Mirabel","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5178","name":"Mistissini","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5179","name":"Mont-Joli","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5180","name":"Mont-Laurier","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5181","name":"Montmagny","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5182","name":"Montreal","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5183","name":"Murdochville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5184","name":"Napierville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5185","name":"New Richmond","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5186","name":"Nicolet","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5187","name":"Normandin","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5188","name":"Notre-Dame-du-Bon-Conseil","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5189","name":"Notre-Dame-du-Lac","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5190","name":"Notre-Dame-du-Mont-Carmel","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5191","name":"Oka-Kanesatake","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5192","name":"Ormstown","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5193","name":"Papineauville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5194","name":"Pierreville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5195","name":"Plessisville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5196","name":"Pointe-Claire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5197","name":"Pont-Rouge","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5198","name":"Port-Alfred-Bagotville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5199","name":"Port-Cartier","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5200","name":"Portneuf","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5201","name":"Price","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5202","name":"Princeville","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5203","name":"Quebec","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5204","name":"Rawdon","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5205","name":"Repentigny","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5206","name":"Rigaud","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5207","name":"Rimouski","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5208","name":"Riviere-au-Renard","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5209","name":"Riviere-du-Loup","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5210","name":"Roberval","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5211","name":"Rougemont","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5212","name":"Rouyn-Noranda","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5213","name":"Saint-Agapit","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5214","name":"Saint-Alexandre","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5215","name":"Saint-Alexis-des-Monts","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5216","name":"Saint-Ambroise","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5217","name":"Saint-Andre-Avellin","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5218","name":"Saint-Anselme","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5219","name":"Saint-Apollinaire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5220","name":"Saint-Augustin","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5221","name":"Saint-Basile-Sud","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5222","name":"Saint-Bruno","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5223","name":"Saint-Canut","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5224","name":"Saint-Cesaire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5225","name":"Saint-Cyrill-de-Wendover","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5226","name":"Saint-Damase","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5227","name":"Saint-Damien-de-Buckland","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5228","name":"Saint-Denis","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5229","name":"Saint-Donat-de-Montcalm","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5230","name":"Saint-Ephrem-de-Tring","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5231","name":"Saint-Fabien","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5232","name":"Saint-Felicien","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5233","name":"Saint-Felix-de-Valois","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5234","name":"Saint-Gabriel","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5235","name":"Saint-Gedeon","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5236","name":"Saint-Georges","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5237","name":"Saint-Germain-de-Grantham","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5238","name":"Saint-Gregoire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5239","name":"Saint-Henri-de-Levis","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5240","name":"Saint-Honore","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5241","name":"Saint-Hyacinthe","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5242","name":"Saint-Jacques","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5243","name":"Saint-Jean-Port-Joli","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5244","name":"Saint-Jean-de-Dieu","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5245","name":"Saint-Jean-sur-Richelieu","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5246","name":"Saint-Jerome","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5247","name":"Saint-Josephe-de-Beauce","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5248","name":"Saint-Josephe-de-Lanoraie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5249","name":"Saint-Josephe-de-la-Riviere-Bl","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5250","name":"Saint-Jovite","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5251","name":"Saint-Laurent","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5252","name":"Saint-Liboire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5253","name":"Saint-Marc-des-Carrieres","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5254","name":"Saint-Martin","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5255","name":"Saint-Michel-des-Saints","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5256","name":"Saint-Pacome","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5257","name":"Saint-Pascal","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5258","name":"Saint-Pie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5259","name":"Saint-Prosper","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5260","name":"Saint-Raphael","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5261","name":"Saint-Raymond","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5262","name":"Saint-Remi","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5263","name":"Saint-Roch-de-l Achigan","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5264","name":"Saint-Sauveur-des-Monts","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5265","name":"Saint-Tite","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5266","name":"Sainte-Adele","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5267","name":"Sainte-Agathe-des-Monts","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5268","name":"Sainte-Anne-des-Monts","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5269","name":"Sainte-Anne-des-Plaines","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5270","name":"Sainte-Catherine","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5271","name":"Sainte-Claire","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5272","name":"Sainte-Julienne","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5273","name":"Sainte-Justine","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5274","name":"Sainte-Madeleine","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5275","name":"Sainte-Marie","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5276","name":"Sainte-Martine","city_id":"666","created_at":"2024-01-21 12:04:15","updated_at":"2024-01-21 12:04:15","translations":null,"is_activated":"1"}, +{"id":"5277","name":"Sainte-Sophie","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5278","name":"Sainte-Thecle","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5279","name":"Sainte-Therese","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5280","name":"Salaberry-de-Valleyfield","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5281","name":"Sayabec","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5282","name":"Senneterre","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5283","name":"Sept-Iles","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5284","name":"Shawinigan","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5285","name":"Shawville","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5286","name":"Sherbrooke","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5287","name":"Sorel","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5288","name":"St Faustin","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5289","name":"St. Hubert","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5290","name":"St. Jean Chrysostome","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5291","name":"Temiscaming","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5292","name":"Terrebonne","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5293","name":"Thetford Mines","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5294","name":"Thurso","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5295","name":"Trois-Pistoles","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5296","name":"Trois-Rivieres","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5297","name":"Val-David","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5298","name":"Val-d Or","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5299","name":"Valcourt","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5300","name":"Vallee-Jonction","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5301","name":"Vaudreuil","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5302","name":"Vercheres","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5303","name":"Victoriaville","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5304","name":"Ville-Marie","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5305","name":"Weedon Centre","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5306","name":"Westmount","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5307","name":"Wickham","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5308","name":"Yamachiche","city_id":"666","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5309","name":"Assiniboia","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5310","name":"Biggar","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5311","name":"Canora","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5312","name":"Carlyle","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5313","name":"Carnduff","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5314","name":"Caronport","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5315","name":"Carrot","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5316","name":"Dalmeny","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5317","name":"Davidson","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5318","name":"Esterhazy","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5319","name":"Estevan","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5320","name":"Eston","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5321","name":"Foam Lake","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5322","name":"Fort Qu Appelle","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5323","name":"Gravelbourg","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5324","name":"Grenfell","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5325","name":"Gull Lake","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5326","name":"Hudson Bay","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5327","name":"Humboldt","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5328","name":"Indian Head","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5329","name":"Kamsack","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5330","name":"Kelvington","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5331","name":"Kerrobert","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5332","name":"Kindersley","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5333","name":"Kipling","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5334","name":"La Ronge","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5335","name":"Langenburg","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5336","name":"Langham","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5337","name":"Lanigan","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5338","name":"Lumsden","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5339","name":"Macklin","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5340","name":"Maple Creek","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5341","name":"Martensville","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5342","name":"Meadow Lake","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5343","name":"Melfort","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5344","name":"Melville","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5345","name":"Moose Jaw","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5346","name":"Moosomin","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5347","name":"Nipawin","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5348","name":"North Battleford","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5349","name":"Outlook","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5350","name":"Oxbow","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5351","name":"Pilot Butte","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5352","name":"Preeceville","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5353","name":"Prince Albert","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5354","name":"Regina","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5355","name":"Rosetown","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5356","name":"Rosthem","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5357","name":"Saskatoon","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5358","name":"Shaunavon","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5359","name":"Shellbrook","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5360","name":"Swift Current","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5361","name":"Tisdale","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5362","name":"Unity","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5363","name":"Wadena","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5364","name":"Warman","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5365","name":"Watrous","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5366","name":"Weyburn","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5367","name":"White City","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5368","name":"Wilkie","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5369","name":"Wynyard","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5370","name":"Yorkton","city_id":"667","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5371","name":"Haines Junction","city_id":"668","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5372","name":"Mayo","city_id":"668","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5373","name":"Whitehorse","city_id":"668","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5374","name":"Sal Rei","city_id":"669","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5375","name":"Nova Sintra","city_id":"670","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5376","name":"Mosteiros","city_id":"671","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5377","name":"Sao Filipe","city_id":"671","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5378","name":"Vila do Maio","city_id":"672","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5379","name":"Santa Maria","city_id":"673","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"is_activated":"1"}, +{"id":"5380","name":"Ndele","city_id":"679","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5381","name":"Bangui","city_id":"680","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5382","name":"Alindao","city_id":"681","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5383","name":"Kembe","city_id":"681","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5384","name":"Mobaye","city_id":"681","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5385","name":"Obo","city_id":"682","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5386","name":"Zemio","city_id":"682","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5387","name":"Bria","city_id":"683","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5388","name":"Ouadda","city_id":"683","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5389","name":"Dekoa","city_id":"684","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5390","name":"Sibut","city_id":"684","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5391","name":"Boda","city_id":"685","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5392","name":"Mbaiki","city_id":"685","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5393","name":"Mongoumba","city_id":"685","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5394","name":"Berberati","city_id":"686","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5395","name":"Carnot","city_id":"686","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5396","name":"Gamboula","city_id":"686","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5397","name":"Bangassou","city_id":"687","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5398","name":"Gambo","city_id":"687","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5399","name":"Ouango","city_id":"687","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5400","name":"Rafai","city_id":"687","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5401","name":"Kaga-Bandoro","city_id":"688","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5402","name":"Baboua","city_id":"689","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5403","name":"Baoro","city_id":"689","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5404","name":"Bouar","city_id":"689","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5405","name":"Bambari","city_id":"691","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5406","name":"Grimari","city_id":"691","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5407","name":"Ippy","city_id":"691","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5408","name":"Kouango","city_id":"691","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5409","name":"Batangafo","city_id":"692","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5410","name":"Bossangoa","city_id":"692","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5411","name":"Bouca","city_id":"692","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5412","name":"Kabo","city_id":"692","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5413","name":"Bocaranga","city_id":"693","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5414","name":"Bozoum","city_id":"693","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5415","name":"Paoua","city_id":"693","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5416","name":"Nola","city_id":"694","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5417","name":"Birao","city_id":"695","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5418","name":"Ati","city_id":"696","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5419","name":"Oum Hadjer","city_id":"696","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5420","name":"Biltine","city_id":"697","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"is_activated":"1"}, +{"id":"5421","name":"Aouzou","city_id":"698","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5422","name":"Bardai","city_id":"698","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5423","name":"Fada","city_id":"698","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5424","name":"Faya","city_id":"698","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5425","name":"Bokoro","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5426","name":"Bousso","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5427","name":"Dourbali","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5428","name":"Massaguet","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5429","name":"Massakory","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5430","name":"Massenya","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5431","name":"N Djamena","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5432","name":"Ngama","city_id":"699","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5433","name":"Bitkine","city_id":"700","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5434","name":"Melfi","city_id":"700","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5435","name":"Mongo","city_id":"700","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5436","name":"Mao","city_id":"701","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5437","name":"Moussoro","city_id":"701","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5438","name":"Rig-Rig","city_id":"701","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5439","name":"Bol","city_id":"702","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5440","name":"Bongor","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5441","name":"Fianga","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5442","name":"Gounou Gaya","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5443","name":"Guelengdeng","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5444","name":"Lere","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5445","name":"Pala","city_id":"705","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5446","name":"Goundi","city_id":"706","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5447","name":"Koumra","city_id":"706","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5448","name":"Kyabe","city_id":"706","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5449","name":"Moissala","city_id":"706","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5450","name":"Sarh","city_id":"706","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5451","name":"Abeche","city_id":"707","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5452","name":"Adre","city_id":"707","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5453","name":"Am Dam","city_id":"707","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5454","name":"Abou Deia","city_id":"708","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5455","name":"Am Timan","city_id":"708","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5456","name":"Mangueigne","city_id":"708","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5457","name":"Benoy","city_id":"709","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5458","name":"Kelo","city_id":"709","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5459","name":"Lai","city_id":"709","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5460","name":"Aisen","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5461","name":"Chile Chico","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5462","name":"Cisnes","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5463","name":"Coihaique","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5464","name":"Guaitecas","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5465","name":"Lago Verde","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5466","name":"O Higgins","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5467","name":"Rio Ibanez","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5468","name":"Tortel","city_id":"710","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5469","name":"Antofagasta","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5470","name":"Calama","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5471","name":"Maria Elena","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5472","name":"Mejilones","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5473","name":"Ollague","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5474","name":"San Pedro de Atacama","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5475","name":"Sierra Gorda","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5476","name":"Taltal","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5477","name":"Tocopilla","city_id":"711","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5478","name":"Angol","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5479","name":"Carahue","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5480","name":"Collipulli","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5481","name":"Cunco","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5482","name":"Curacautin","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5483","name":"Curarrehue","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5484","name":"Ercilla","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5485","name":"Freire","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5486","name":"Galvarino","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5487","name":"Gorbea","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5488","name":"Lautaro","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5489","name":"Loncoche","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5490","name":"Lonquimay","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5491","name":"Los Sauces","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5492","name":"Lumaco","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5493","name":"Melipeuco","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5494","name":"Nueva Imperial","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5495","name":"Padre las Casas","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5496","name":"Perquenco","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5497","name":"Pitrufquen","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5498","name":"Pucon","city_id":"712","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"is_activated":"1"}, +{"id":"5499","name":"Puren","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5500","name":"Renaico","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5501","name":"Saavedra","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5502","name":"Temuco","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5503","name":"Teodoro Schmidt","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5504","name":"Tolten","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5505","name":"Traiguen","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5506","name":"Victoria","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5507","name":"Vilcun","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5508","name":"Villarica","city_id":"712","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5509","name":"Alto del Carmen","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5510","name":"Caldera","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5511","name":"Chanaral","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5512","name":"Copiapo","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5513","name":"Diego de Almagro","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5514","name":"Freirina","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5515","name":"Huasco","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5516","name":"Tierra Amarilla","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5517","name":"Vallenar","city_id":"713","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5518","name":"Andacollo","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5519","name":"Canela","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5520","name":"Combarbala","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5521","name":"Coquimbo","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5522","name":"Illapel","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5523","name":"La Higuera","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5524","name":"La Serena","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5525","name":"Los Vilos","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5526","name":"Monte Patria","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5527","name":"Ovalle","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5528","name":"Paiguano","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5529","name":"Punitaci","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5530","name":"Rio Hurtado","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5531","name":"Salamanca","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5532","name":"Vicuna","city_id":"715","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5533","name":"Cabo de Horno","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5534","name":"Laguna Blanca","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5535","name":"Natales","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5536","name":"Porvenir","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5537","name":"Primavera","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5538","name":"Punta Arenas","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5539","name":"San Gregorio","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5540","name":"Timaukel","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5541","name":"Torres del Paine","city_id":"718","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5542","name":"Cauquenes","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5543","name":"Chanco","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5544","name":"Colbun","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5545","name":"Constitucion","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5546","name":"Curepto","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5547","name":"Curico","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5548","name":"Empedrado","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5549","name":"Hualane","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5550","name":"Licanten","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5551","name":"Linares","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5552","name":"Longavi","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5553","name":"Maule","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5554","name":"Molina","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5555","name":"Parral","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5556","name":"Pelarco","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5557","name":"Pelluhue","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5558","name":"Pencahue","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5559","name":"Rauco","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5560","name":"Retiro","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5561","name":"Rio Claro","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5562","name":"Romeral","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5563","name":"Sagrada Familia","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5564","name":"San Clemente","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5565","name":"San Javier","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5566","name":"Talca","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5567","name":"Teno","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5568","name":"Vichuquen","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5569","name":"Villa Alegre","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5570","name":"Yerbas Buenas","city_id":"719","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5571","name":"Alhue","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5572","name":"Buin","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5573","name":"Calera de Tango","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5574","name":"Colina","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5575","name":"Curacavi","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5576","name":"El Monte","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5577","name":"Isla de Maipo","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5578","name":"Lampa","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5579","name":"Maria Pinto","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5580","name":"Melipilla","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5581","name":"Padre Hurtado","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5582","name":"Paine","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5583","name":"Penaflor","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5584","name":"Pirque","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5585","name":"Puente Alto","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5586","name":"Quilicura","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5587","name":"San Bernardo","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5588","name":"San Jose de Maipo","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5589","name":"Santiago","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5590","name":"Talagante","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5591","name":"Tiltil","city_id":"720","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5592","name":"Arica","city_id":"722","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5593","name":"Camarones","city_id":"722","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5594","name":"Camina","city_id":"722","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"is_activated":"1"}, +{"id":"5595","name":"Colchane","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5596","name":"General Lagos","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5597","name":"Huara","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5598","name":"Iquique","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5599","name":"Pica","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5600","name":"Pozo Almonte","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5601","name":"Putre","city_id":"722","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5602","name":"Algarrobo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5603","name":"Cabildo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5604","name":"Calera","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5605","name":"Calle Larga","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5606","name":"Cartagena","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5607","name":"Casablanca","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5608","name":"Catemu","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5609","name":"Concon","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5610","name":"El Quisco","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5611","name":"El Tabo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5612","name":"Hijuelas","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5613","name":"La Cruz","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5614","name":"La Ligua","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5615","name":"Limache","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5616","name":"Llaillay","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5617","name":"Los Andes","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5618","name":"Nogales","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5619","name":"Olmue","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5620","name":"Panquehue","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5621","name":"Papudo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5622","name":"Petorca","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5623","name":"Puchuncavi","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5624","name":"Putaendeo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5625","name":"Quillota","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5626","name":"Quilpue","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5627","name":"Quintero","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5628","name":"Rinconada","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5629","name":"San Antonio","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5630","name":"San Esteban","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5631","name":"San Felipe","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5632","name":"Santo Domingo","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5633","name":"Valparaiso","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5634","name":"Villa Alemana","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5635","name":"Vina del Mar","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5636","name":"Zapallar","city_id":"723","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5637","name":"Fengyang","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5638","name":"Guangde","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5639","name":"Liuan","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5640","name":"Ningguo","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5641","name":"Shucheng","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5642","name":"Xinchang","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5643","name":"Xuancheng","city_id":"724","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5644","name":"Aomen","city_id":"725","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5645","name":"Beijing","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5646","name":"Changping","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5647","name":"Fangshan","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5648","name":"Huangcun","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5649","name":"Liangxiang","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5650","name":"Mentougou","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5651","name":"Shunyi","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5652","name":"Tongzhou","city_id":"726","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5653","name":"Beibei","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5654","name":"Chongqing","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5655","name":"Fuling","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5656","name":"Longhua","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5657","name":"Nantongkuang","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5658","name":"Wanxian","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5659","name":"Xiuma","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5660","name":"Yubei","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5661","name":"Yudong","city_id":"728","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5662","name":"Bantou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5663","name":"Dongshan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5664","name":"Fuan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5665","name":"Fujian","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5666","name":"Fuqing","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5667","name":"Fuzhou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5668","name":"Gantou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5669","name":"Hanyang","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5670","name":"Jiangkou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5671","name":"Jiaocheng","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5672","name":"Jinjiang","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5673","name":"Jinshang","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5674","name":"Longhai","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5675","name":"Longyan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5676","name":"Luoyang","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5677","name":"Nanan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5678","name":"Nanping","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5679","name":"Nanpu","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5680","name":"Putian","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5681","name":"Qingyang","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5682","name":"Quanzhou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5683","name":"Rongcheng","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5684","name":"Sanming","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5685","name":"Shaowu","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5686","name":"Shima","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5687","name":"Shishi","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5688","name":"Tantou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5689","name":"Tongshan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5690","name":"Xiamen","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5691","name":"Xiapu","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5692","name":"Xiapu Ningde","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5693","name":"Ximei","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5694","name":"Yongan","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5695","name":"Zhangzhou","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5696","name":"Zhicheng","city_id":"729","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5697","name":"Baiyin","city_id":"730","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5698","name":"Baoji","city_id":"730","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5699","name":"Beidao","city_id":"730","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5700","name":"Jiayuguan","city_id":"730","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"is_activated":"1"}, +{"id":"5701","name":"Jinchang","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5702","name":"Jiuquan","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5703","name":"Lanzhou","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5704","name":"Linxia","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5705","name":"Pingliang","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5706","name":"Qincheng","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5707","name":"Wuwei","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5708","name":"Yaojie","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5709","name":"Yumen","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5710","name":"Zhangye","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5711","name":"Zhuanglang","city_id":"730","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5712","name":"Anbu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5713","name":"Chaozhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5714","name":"Chenghai","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5715","name":"Chuncheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5716","name":"Daliang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5717","name":"Danshui","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5718","name":"Dongguan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5719","name":"Donghai","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5720","name":"Dongli","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5721","name":"Dongzhen","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5722","name":"Ducheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5723","name":"Encheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5724","name":"Foahn","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5725","name":"Foshan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5726","name":"Gaozhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5727","name":"Guangdong","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5728","name":"Guangzhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5729","name":"Guanjiao","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5730","name":"Haicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5731","name":"Haimen","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5732","name":"Hepo","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5733","name":"Houpu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5734","name":"Huaicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5735","name":"Huanggang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5736","name":"Huangpu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5737","name":"Huazhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5738","name":"Huicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5739","name":"Huizhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5740","name":"Humen","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5741","name":"Jiangmen","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5742","name":"Jiazi","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5743","name":"Jieshi","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5744","name":"Jieyang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5745","name":"Lecheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5746","name":"Leicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5747","name":"Liancheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5748","name":"Lianzhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5749","name":"Licheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5750","name":"Liusha","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5751","name":"Longgang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5752","name":"Lubu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5753","name":"Luocheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5754","name":"Luohu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5755","name":"Maba","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5756","name":"Maoming","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5757","name":"Mata","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5758","name":"Meilu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5759","name":"Meizhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5760","name":"Mianchang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5761","name":"Nanfeng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5762","name":"Nanhai","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5763","name":"Pingshan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5764","name":"Qingtang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5765","name":"Qingyuan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5766","name":"Sanbu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5767","name":"Shantou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5768","name":"Shanwei","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5769","name":"Shaoguan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5770","name":"Shaping","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5771","name":"Shenzhen","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5772","name":"Shilong","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5773","name":"Shiqiao","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5774","name":"Shiwan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5775","name":"Shuizhai","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5776","name":"Shunde","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5777","name":"Suicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5778","name":"Taicheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5779","name":"Tangping","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5780","name":"Xiaolan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5781","name":"Xinan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5782","name":"Xingcheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5783","name":"Xiongzhou","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5784","name":"Xucheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5785","name":"Yangjiang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5786","name":"Yingcheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5787","name":"Yuancheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5788","name":"Yuncheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5789","name":"Yunfu","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5790","name":"Zengcheng","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5791","name":"Zhanjiang","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5792","name":"Zhaoqing","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5793","name":"Zhilong","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5794","name":"Zhongshan","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5795","name":"Zhuhai","city_id":"731","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5796","name":"Babu","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5797","name":"Baihe","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5798","name":"Baise","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5799","name":"Beihai","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5800","name":"Binzhou","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5801","name":"Bose","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5802","name":"Fangchenggang","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5803","name":"Guicheng","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5804","name":"Guilin","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5805","name":"Guiping","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5806","name":"Jinchengjiang","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5807","name":"Jinji","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5808","name":"Laibin","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5809","name":"Liuzhou","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5810","name":"Luorong","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5811","name":"Matong","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5812","name":"Nandu","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5813","name":"Nanning","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5814","name":"Pingnan","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5815","name":"Pumiao","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5816","name":"Qinzhou","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5817","name":"Songhua","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5818","name":"Wuzhou","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5819","name":"Yashan","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5820","name":"Yulin","city_id":"732","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5821","name":"Anshun","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5822","name":"Bijie","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5823","name":"Caohai","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5824","name":"Duyun","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5825","name":"Guiyang","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5826","name":"Kaili","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5827","name":"Liupanshui","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5828","name":"Pingzhai","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5829","name":"Tongren","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5830","name":"Tongzi","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5831","name":"Xiaoweizhai","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5832","name":"Xingyi","city_id":"733","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"is_activated":"1"}, +{"id":"5833","name":"Zunyi","city_id":"733","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5834","name":"Chengmai","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5835","name":"Dingan","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5836","name":"Haikou","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5837","name":"Lingao","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5838","name":"Qiongshan","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5839","name":"Sansha ","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5840","name":"Sanya","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5841","name":"Wanning","city_id":"734","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5842","name":"Anping","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5843","name":"Baoding","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5844","name":"Botou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5845","name":"Cangzhou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5846","name":"Changli","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5847","name":"Chengde","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5848","name":"Dingzhou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5849","name":"Fengfeng","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5850","name":"Fengrun","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5851","name":"Guye","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5852","name":"Handan","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5853","name":"Hebei","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5854","name":"Hecun","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5855","name":"Hejian","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5856","name":"Hengshui","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5857","name":"Huanghua","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5858","name":"Jingxingkuang","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5859","name":"Jinzhou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5860","name":"Langfang","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5861","name":"Linshui","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5862","name":"Linxi","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5863","name":"Longyao County","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5864","name":"Nangong","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5865","name":"Pengcheng","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5866","name":"Qinhuangdao","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5867","name":"Renqiu","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5868","name":"Shahe","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5869","name":"Shijiazhuang","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5870","name":"Tangjiazhuang","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5871","name":"Tangshan","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5872","name":"Wuan","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5873","name":"Xian County","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5874","name":"Xingtai","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5875","name":"Xinji","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5876","name":"Xinle","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5877","name":"Xuanhua","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5878","name":"Zhangjiakou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5879","name":"Zhaogezhuang","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5880","name":"Zhuozhou","city_id":"735","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5881","name":"Acheng","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5882","name":"Anda","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5883","name":"Angangxi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5884","name":"Baiquan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5885","name":"Bamiantong","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5886","name":"Baoqing","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5887","name":"Baoshan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5888","name":"Bayan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5889","name":"Beian","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5890","name":"Boli","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5891","name":"Chaihe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5892","name":"Chengzihe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5893","name":"Cuiluan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5894","name":"Daqing","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5895","name":"Didao","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5896","name":"Dongning","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5897","name":"Fujin","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5898","name":"Fuli","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5899","name":"Fulitun","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5900","name":"Fuyu","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5901","name":"Gannan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5902","name":"Hailin","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5903","name":"Hailun","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5904","name":"Harbin","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5905","name":"Hegang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5906","name":"Heihe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5907","name":"Hengshan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5908","name":"Honggang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5909","name":"Huanan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5910","name":"Hulan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5911","name":"Hulan Ergi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5912","name":"Jiamusi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5913","name":"Jidong","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5914","name":"Jixi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5915","name":"Keshan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5916","name":"Langxiang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5917","name":"Lanxi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5918","name":"Lingdong","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5919","name":"Linkou","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5920","name":"Lishu","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5921","name":"Longfeng","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5922","name":"Longjiang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5923","name":"Mingshui","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5924","name":"Mishan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5925","name":"Mudanjiang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5926","name":"Nancha","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5927","name":"Nehe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5928","name":"Nenjiang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5929","name":"Nianzishan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5930","name":"Ningan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5931","name":"Qingan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5932","name":"Qinggang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5933","name":"Qiqihar","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5934","name":"Qitaihe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5935","name":"Ranghulu","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5936","name":"Saertu","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5937","name":"Shangzhi","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5938","name":"Shanhetun","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5939","name":"Shuangcheng","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5940","name":"Shuangyashan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5941","name":"Sifantan","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5942","name":"Suifenhe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5943","name":"Suihua","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5944","name":"Suileng","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5945","name":"Tahe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5946","name":"Taikang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5947","name":"Tailai","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5948","name":"Tieli","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5949","name":"Wangkui","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5950","name":"Weihe","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5951","name":"Wuchang","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5952","name":"Xinglongzhen","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5953","name":"Xinqing","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5954","name":"Yian","city_id":"736","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"is_activated":"1"}, +{"id":"5955","name":"Yichun","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5956","name":"Yilan","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5957","name":"Youhao","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5958","name":"Zhaodong","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5959","name":"Zhaoyuan","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5960","name":"Zhaozhou","city_id":"736","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5961","name":"Anyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5962","name":"Changying","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5963","name":"Dancheng","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5964","name":"Daokou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5965","name":"Dengzhou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5966","name":"Gongyi","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5967","name":"Gushi","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5968","name":"Hebi","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5969","name":"Huaidian","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5970","name":"Huangchuan","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5971","name":"Huangzhai","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5972","name":"Jiaozuo","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5973","name":"Jishui","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5974","name":"Kaifeng","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5975","name":"Liupen","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5976","name":"Luohe","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5977","name":"Luyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5978","name":"Mengzhou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5979","name":"Minggang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5980","name":"Nandun","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5981","name":"Nanyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5982","name":"Pingdingshan","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5983","name":"Puyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5984","name":"Sanmenxia","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5985","name":"Shangqiu","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5986","name":"Tanghe","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5987","name":"Xiaoyi","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5988","name":"Xihua","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5989","name":"Xinxiang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5990","name":"Xinyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5991","name":"Xinye","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5992","name":"Xixiang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5993","name":"Xuanwu","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5994","name":"Xuchang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5995","name":"Yigou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5996","name":"Yima","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5997","name":"Yinzhuang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5998","name":"Yunyang","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"5999","name":"Yuzhou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6000","name":"Zhecheng","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6001","name":"Zhengzhou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6002","name":"Zhenping","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6003","name":"Zhoukou","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6004","name":"Zhumadian","city_id":"737","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6005","name":"Anlu","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6006","name":"Baisha","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6007","name":"Buhe","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6008","name":"Caidian","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6009","name":"Caohe","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6010","name":"Danjiangkou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6011","name":"Daye","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6012","name":"Duobao","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6013","name":"Enshi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6014","name":"Ezhou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6015","name":"Fengkou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6016","name":"Guangshui","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6017","name":"Gucheng","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6018","name":"Hanchuan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6019","name":"Hongan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6020","name":"Honghu","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6021","name":"Huangmei","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6022","name":"Huangpi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6023","name":"Huangshi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6024","name":"Huangzhou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6025","name":"Jingmen","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6026","name":"Jingzhou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6027","name":"Laohekou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6028","name":"Lichuan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6029","name":"Macheng","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6030","name":"Nanzhang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6031","name":"Puqi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6032","name":"Qianjiang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6033","name":"Qingquan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6034","name":"Qixingtai","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6035","name":"Shashi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6036","name":"Shishou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6037","name":"Shiyan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6038","name":"Suizhou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6039","name":"Tianmen","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6040","name":"Tongcheng","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6041","name":"Wuhan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6042","name":"Wuxue","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6043","name":"Xiangfan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6044","name":"Xianning","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6045","name":"Xiantao","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6046","name":"Xiaogan","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6047","name":"Xiaoxita","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6048","name":"Xiaxindian","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6049","name":"Xihe","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6050","name":"Xinpu","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6051","name":"Xinshi","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6052","name":"Xinzhou","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6053","name":"Yichang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6054","name":"Yicheng","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6055","name":"Yingzhong","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6056","name":"Zaoyang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6057","name":"Zhengchang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6058","name":"Zhifang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6059","name":"Zhongxiang","city_id":"738","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6060","name":"Anjiang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6061","name":"Anxiang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6062","name":"Changde","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6063","name":"Changsha","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6064","name":"Chenzhou","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6065","name":"Dayong","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6066","name":"Hengyang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6067","name":"Hongjiang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6068","name":"Huaihua","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6069","name":"Jinshi","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6070","name":"Jishou","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6071","name":"Leiyang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6072","name":"Lengshuijiang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6073","name":"Lengshuitan","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6074","name":"Lianyuan","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6075","name":"Liling","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6076","name":"Liuyang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6077","name":"Loudi","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6078","name":"Matian","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6079","name":"Nanzhou","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6080","name":"Ningxiang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6081","name":"Qidong","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6082","name":"Qiyang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6083","name":"Shaoyang","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6084","name":"Xiangtan","city_id":"739","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"is_activated":"1"}, +{"id":"6085","name":"Xiangxiang","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6086","name":"Xiangyin","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6087","name":"Xinhua","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6088","name":"Yiyang","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6089","name":"Yongfeng","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6090","name":"Yongzhou","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6091","name":"Yuanjiang","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6092","name":"Yueyang","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6093","name":"Zhuzhou","city_id":"739","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6094","name":"Baoying","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6095","name":"Changzhou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6096","name":"Dachang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6097","name":"Dafeng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6098","name":"Danyang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6099","name":"Dingshu","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6100","name":"Dongkan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6101","name":"Dongtai","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6102","name":"Fengxian","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6103","name":"Gaogou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6104","name":"Gaoyou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6105","name":"Guiren","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6106","name":"Haian","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6107","name":"Haizhou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6108","name":"Hede","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6109","name":"Huaiyin","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6110","name":"Huilong","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6111","name":"Hutang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6112","name":"Jiangdu","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6113","name":"Jiangyan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6114","name":"Jiangyin","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6115","name":"Jiangyuan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6116","name":"Jianhu","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6117","name":"Jingcheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6118","name":"Jinsha","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6119","name":"Jintan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6120","name":"Juegang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6121","name":"Jurong","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6122","name":"Kunshan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6123","name":"Lianyungang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6124","name":"Liucheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6125","name":"Liyang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6126","name":"Luodu","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6127","name":"Mudu","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6128","name":"Nanjing","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6129","name":"Nantong","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6130","name":"Pecheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6131","name":"Pukou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6132","name":"Qinnan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6133","name":"Qixia","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6134","name":"Rucheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6135","name":"Songling","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6136","name":"Sucheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6137","name":"Suqian","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6138","name":"Suzhou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6139","name":"Taicang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6140","name":"Taixing","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6141","name":"Wujiang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6142","name":"Wuxi","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6143","name":"Xiaolingwei","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6144","name":"Xiaoshi","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6145","name":"Xuzhou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6146","name":"Yancheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6147","name":"Yangshe","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6148","name":"Yangzhou","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6149","name":"Yizheng","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6150","name":"Yunhe","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6151","name":"Yushan","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6152","name":"Zhangjiagang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6153","name":"Zhangjiangang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6154","name":"Zhaoyang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6155","name":"Zhenjiang","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6156","name":"Zhongxing","city_id":"740","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6157","name":"Fengxin","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6158","name":"Fenyi","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6159","name":"Ganzhou","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6160","name":"Jian","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6161","name":"Jiangguang","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6162","name":"Jingdezhen","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6163","name":"Jiujiang","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6164","name":"Leping","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6165","name":"Linchuan","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6166","name":"Nanchang","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6167","name":"Pingxiang","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6168","name":"Poyang","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6169","name":"Shangrao","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6170","name":"Xiangdong","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6171","name":"Xingan","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6172","name":"Xinjian","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6173","name":"Xinyu","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6174","name":"Xiongshi","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6175","name":"Yingtai","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6176","name":"Yingtan","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6177","name":"Zhangshui","city_id":"741","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6178","name":"Badaojiang","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6179","name":"Baicheng","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6180","name":"Baishishan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6181","name":"Changchun","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6182","name":"Changling","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6183","name":"Chaoyang","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6184","name":"Daan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6185","name":"Dashitou","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6186","name":"Dehui","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6187","name":"Dongchang","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6188","name":"Dongfeng","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6189","name":"Dunhua","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6190","name":"Erdaojiang","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6191","name":"Gongzhuling","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6192","name":"Helong","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6193","name":"Hongmei","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6194","name":"Huadian","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6195","name":"Huangnihe","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6196","name":"Huinan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6197","name":"Hunchun","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6198","name":"Jiaohe","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6199","name":"Jilin","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6200","name":"Jishu","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6201","name":"Jiutai","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6202","name":"Kaitong","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6203","name":"Kouqian","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6204","name":"Liaoyuan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6205","name":"Linjiang","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6206","name":"Liuhe","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6207","name":"Longjing","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6208","name":"Meihekou","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6209","name":"Mingyue","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6210","name":"Nongan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6211","name":"Panshi","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6212","name":"Pizhou","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6213","name":"Qianan","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6214","name":"Qianguo","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6215","name":"Sanchazi","city_id":"742","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"is_activated":"1"}, +{"id":"6216","name":"Shuangyang","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6217","name":"Shulan","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6218","name":"Siping","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6219","name":"Songjianghe","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6220","name":"Taonan","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6221","name":"Tumen","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6222","name":"Wangou","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6223","name":"Wangqing","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6224","name":"Xinglongshan","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6225","name":"Yanji","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6226","name":"Yantongshan","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6227","name":"Yushu","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6228","name":"Zhengjiatun","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6229","name":"Zhenlai","city_id":"742","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6230","name":"Anshan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6231","name":"Beipiao","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6232","name":"Benxi","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6233","name":"Changtu","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6234","name":"Dalian","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6235","name":"Dalianwan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6236","name":"Dalinghe","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6237","name":"Dandong","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6238","name":"Dashiqiao","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6239","name":"Dongling","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6240","name":"Fengcheng","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6241","name":"Fushun","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6242","name":"Fuxin","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6243","name":"Heishan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6244","name":"Huanren","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6245","name":"Huludao","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6246","name":"Hushitai","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6247","name":"Jinxi","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6248","name":"Jiupu","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6249","name":"Kaiyuan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6250","name":"Kuandian","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6251","name":"Langtou","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6252","name":"Liaoyang","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6253","name":"Liaozhong","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6254","name":"Lingyuan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6255","name":"Liuerbao","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6256","name":"Lushunkou","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6257","name":"Nantai","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6258","name":"Panjin","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6259","name":"Pulandian","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6260","name":"Shenyang","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6261","name":"Sujiatun","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6262","name":"Tieling","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6263","name":"Wafangdian","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6264","name":"Xifeng","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6265","name":"Xinchengxi","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6266","name":"Xinmin","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6267","name":"Xiongyue","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6268","name":"Xiuyan","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6269","name":"Yebaishou","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6270","name":"Yingkou","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6271","name":"Yuhong","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6272","name":"Zhuanghe","city_id":"743","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6273","name":"Qiatou","city_id":"746","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6274","name":"Xining","city_id":"746","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6275","name":"Ankang","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6276","name":"Guozhen","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6277","name":"Hancheng","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6278","name":"Hanzhong","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6279","name":"Lishan","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6280","name":"Qili","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6281","name":"Tongchuan","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6282","name":"Weinan","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6283","name":"Xian","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6284","name":"Xianyang","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6285","name":"Yanan","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6286","name":"Yanliang","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6287","name":"Yuxia","city_id":"747","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6288","name":"Anqiu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6289","name":"Bianzhuang","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6290","name":"Boshan","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6291","name":"Boxing County","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6292","name":"Caocheng","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6293","name":"Changqing","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6294","name":"Chengyang","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6295","name":"Dezhou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6296","name":"Dingtao","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6297","name":"Dongcun","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6298","name":"Dongdu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6299","name":"Donge County","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6300","name":"Dongying","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6301","name":"Feicheng","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6302","name":"Fushan","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6303","name":"Gaomi","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6304","name":"Haiyang","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6305","name":"Hanting","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6306","name":"Hekou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6307","name":"Heze","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6308","name":"Jiaonan","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6309","name":"Jiaozhou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6310","name":"Jiehu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6311","name":"Jimo","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6312","name":"Jinan","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6313","name":"Jining","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6314","name":"Juxian","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6315","name":"Juye","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6316","name":"Kunlun","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6317","name":"Laiwu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6318","name":"Laiyang","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6319","name":"Laizhou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6320","name":"Leling","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6321","name":"Liaocheng","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6322","name":"Licung","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6323","name":"Linqing","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6324","name":"Linqu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6325","name":"Linshu","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6326","name":"Linyi","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6327","name":"Longkou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6328","name":"Mengyin","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6329","name":"Nanchou","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6330","name":"Nanding","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6331","name":"Nanma","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6332","name":"Ninghai","city_id":"748","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"is_activated":"1"}, +{"id":"6333","name":"Ningyang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6334","name":"Pingdu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6335","name":"Pingyi","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6336","name":"Pingyin","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6337","name":"Qingdao","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6338","name":"Qingzhou","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6339","name":"Qufu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6340","name":"Rizhao","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6341","name":"Shancheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6342","name":"Shanting","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6343","name":"Shengzhuang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6344","name":"Shenxian","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6345","name":"Shizilu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6346","name":"Shouguang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6347","name":"Shuiji","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6348","name":"Sishui","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6349","name":"Suozhen","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6350","name":"Taian","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6351","name":"Tancheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6352","name":"Taozhuang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6353","name":"Tengzhou","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6354","name":"Weifang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6355","name":"Weihai","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6356","name":"Wencheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6357","name":"Wendeng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6358","name":"Wenshang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6359","name":"Wudi","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6360","name":"Xiazhen","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6361","name":"Xincheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6362","name":"Xindian","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6363","name":"Xintai","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6364","name":"Yanggu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6365","name":"Yangshan","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6366","name":"Yantai","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6367","name":"Yanzhou","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6368","name":"Yatou","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6369","name":"Yidu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6370","name":"Yishui","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6371","name":"Yucheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6372","name":"Zaozhuang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6373","name":"Zhangdian","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6374","name":"Zhangjiawa","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6375","name":"Zhangqiu","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6376","name":"Zhaocheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6377","name":"Zhoucheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6378","name":"Zhoucun","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6379","name":"Zhucheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6380","name":"Zhuwang","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6381","name":"Zicheng","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6382","name":"Zouping","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6383","name":"Zouxian","city_id":"748","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6384","name":"Jiading","city_id":"749","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6385","name":"Minhang","city_id":"749","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6386","name":"Shanghai","city_id":"749","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6387","name":"Songjiang","city_id":"749","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6388","name":"Trencin","city_id":"749","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6389","name":"Changzhi","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6390","name":"Datong","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6391","name":"Houma","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6392","name":"Jiexiu","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6393","name":"Jincheng","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6394","name":"Linfen","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6395","name":"Taiyuan","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6396","name":"Xinzhi","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6397","name":"Yangquan","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6398","name":"Yuanping","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6399","name":"Yuci","city_id":"750","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6400","name":"Anju","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6401","name":"Baoning","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6402","name":"Chengdu","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6403","name":"Dawan","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6404","name":"Daxian","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6405","name":"Deyang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6406","name":"Dujiangyan City","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6407","name":"Guangkou","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6408","name":"Guangyuan","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6409","name":"Guihu","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6410","name":"Heyang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6411","name":"Huayang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6412","name":"Jiancheng","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6413","name":"Jiangyou","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6414","name":"Jijiang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6415","name":"Leshan","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6416","name":"Linqiong","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6417","name":"Luzhou","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6418","name":"Mianyang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6419","name":"Nanchong","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6420","name":"Nanlong","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6421","name":"Neijiang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6422","name":"Panzhihua","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6423","name":"Shifang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6424","name":"Suining","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6425","name":"Taihe","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6426","name":"Tianpeng","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6427","name":"Xichang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6428","name":"Xunchang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6429","name":"Yaan","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6430","name":"Yibin","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6431","name":"Yongchang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6432","name":"Zhonglong","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6433","name":"Zigong","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6434","name":"Ziyang","city_id":"751","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6435","name":"Beichen","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6436","name":"Gangdong","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6437","name":"Hangu","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6438","name":"Jinghai","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6439","name":"Nankai","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6440","name":"Tanggu","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6441","name":"Tianjin","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6442","name":"Xianshuigu","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6443","name":"Yangcun","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6444","name":"Yangliuqing","city_id":"752","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6445","name":"Guiqing","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6446","name":"Jiulong","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6447","name":"Quanwan","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6448","name":"Saigong","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6449","name":"Shatin","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6450","name":"Taipo","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6451","name":"Tuanmun","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6452","name":"Xianggang","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6453","name":"Yuanlong","city_id":"753","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"is_activated":"1"}, +{"id":"6454","name":"Aksu","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6455","name":"Baijiantan","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6456","name":"Changji","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6457","name":"Hami","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6458","name":"Hetian","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6459","name":"Karamay","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6460","name":"Kashi","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6461","name":"Korla","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6462","name":"Kuche","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6463","name":"Kuytun","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6464","name":"Shache","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6465","name":"Shihezi","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6466","name":"Shuimogou","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6467","name":"Toutunhe","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6468","name":"Urumqi","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6469","name":"Yining","city_id":"754","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6470","name":"Lasa","city_id":"755","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6471","name":"Dali","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6472","name":"Gejiu","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6473","name":"Heilin","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6474","name":"Jinma","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6475","name":"Kaihua","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6476","name":"Kunming","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6477","name":"Lianran","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6478","name":"Longquan","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6479","name":"Lucheng","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6480","name":"Mabai","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6481","name":"Majie","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6482","name":"Miyang","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6483","name":"Qujing","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6484","name":"Simao","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6485","name":"Wufeng","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6486","name":"Yunjinghong","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6487","name":"Yuxi Municipal","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6488","name":"Zhaotong","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6489","name":"Zhenhai","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6490","name":"Zhongshu","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6491","name":"Zhuocheng","city_id":"756","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6492","name":"Aojiang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6493","name":"Choucheng","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6494","name":"Cixi","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6495","name":"Daqiao","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6496","name":"Deqing","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6497","name":"Dinghai","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6498","name":"Dongyang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6499","name":"Fuyang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6500","name":"Haining","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6501","name":"Haiyan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6502","name":"Hangzhou","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6503","name":"Huangyan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6504","name":"Hushan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6505","name":"Huzhou","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6506","name":"Jiaojiang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6507","name":"Jiaxing","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6508","name":"Jinhua","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6509","name":"Jinxiang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6510","name":"Kunyang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6511","name":"Linan City","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6512","name":"Linhai","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6513","name":"Linping","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6514","name":"Lishui","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6515","name":"Liushi","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6516","name":"Ningbo","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6517","name":"Pinghu","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6518","name":"Quzhou","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6519","name":"Ruian","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6520","name":"Shangyu","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6521","name":"Shaoxing","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6522","name":"Shenjiamen","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6523","name":"Taizhou City","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6524","name":"Tonglu","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6525","name":"Wenling","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6526","name":"Wenzhou","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6527","name":"Wuning","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6528","name":"Wuyi","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6529","name":"Xianju","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6530","name":"Xiaoshan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6531","name":"Xiashi","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6532","name":"Xushan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6533","name":"Yiwu","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6534","name":"Yongkang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6535","name":"Yueqing","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6536","name":"Yuhuan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6537","name":"Yuyao","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6538","name":"Zhejiang","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6539","name":"Zhuji","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6540","name":"fenghua","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6541","name":"jiashan","city_id":"757","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6542","name":"Leticia","city_id":"511","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6543","name":"Puerto Narino","city_id":"511","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6544","name":"Abejorral","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6545","name":"Abriaqui","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6546","name":"Alejandria","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6547","name":"Amaga","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6548","name":"Amalfi","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6549","name":"Andes","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6550","name":"Angelopolis","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6551","name":"Angostura","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6552","name":"Antioquia","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6553","name":"Anza","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6554","name":"Apartado","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6555","name":"Arboletes","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6556","name":"Argelia","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6557","name":"Armenia","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6558","name":"Barbosa","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6559","name":"Bello","city_id":"760","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"is_activated":"1"}, +{"id":"6560","name":"Belmira","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6561","name":"Betania","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6562","name":"Betulia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6563","name":"Bolivar","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6564","name":"Briceno","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6565","name":"Buritica","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6566","name":"Caceres","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6567","name":"Caicedo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6568","name":"Caldas","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6569","name":"Campamento","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6570","name":"Canasgordas","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6571","name":"Caracoli","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6572","name":"Caramanta","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6573","name":"Carepa","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6574","name":"Carmen de Viboral","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6575","name":"Caucasia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6576","name":"Chigorodo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6577","name":"Cisneros","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6578","name":"Cocorna","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6579","name":"Concepcion","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6580","name":"Concordia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6581","name":"Copacabana","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6582","name":"Dabeiba","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6583","name":"Don Matias","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6584","name":"Ebejico","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6585","name":"El Bagre","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6586","name":"Entrerrios","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6587","name":"Envigado","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6588","name":"Fredonia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6589","name":"Frontino","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6590","name":"Giraldo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6591","name":"Girardota","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6592","name":"Gomez Plata","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6593","name":"Granada","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6594","name":"Guarne","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6595","name":"Guatape","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6596","name":"Heliconia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6597","name":"Hispania","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6598","name":"Itagui","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6599","name":"Ituango","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6600","name":"Jardin","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6601","name":"Jerico","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6602","name":"La Ceja","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6603","name":"La Estrella","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6604","name":"La Pintada","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6605","name":"La Union","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6606","name":"Liborina","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6607","name":"Maceo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6608","name":"Marinilla","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6609","name":"Medellin","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6610","name":"Montebello","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6611","name":"Murindo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6612","name":"Mutata","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6613","name":"Narino","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6614","name":"Nechi","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6615","name":"Necocli","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6616","name":"Olaya","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6617","name":"Penol","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6618","name":"Peque","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6619","name":"Pueblorrico","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6620","name":"Puerto Berrio","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6621","name":"Puerto Nare","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6622","name":"Puerto Triunfo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6623","name":"Remedios","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6624","name":"Rionegro","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6625","name":"Sabanalarga","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6626","name":"Sabaneta","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6627","name":"Salgar","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6628","name":"San Andres","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6629","name":"San Carlos","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6630","name":"San Jeronimo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6631","name":"San Jose de la Montana","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6632","name":"San Juan de Uraba","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6633","name":"San Luis","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6634","name":"San Pedro de Uraba","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6635","name":"San Roque","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6636","name":"San Vicente","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6637","name":"Santa Rosa de Osos","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6638","name":"Santuario","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6639","name":"Segovia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6640","name":"Sonson","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6641","name":"Sopetran","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6642","name":"Tamesis","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6643","name":"Taraza","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6644","name":"Tarso","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6645","name":"Titiribi","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6646","name":"Turbo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6647","name":"Uramita","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6648","name":"Urrao","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6649","name":"Valdivia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6650","name":"Vegachi","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6651","name":"Venecia","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6652","name":"Vigia del Fuerte","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6653","name":"Yali","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6654","name":"Yarumal","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6655","name":"Yolombo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6656","name":"Yondo","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6657","name":"Zaragoza","city_id":"760","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6658","name":"Arauca","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6659","name":"Arauquita","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6660","name":"Cravo Norte","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6661","name":"Fortul","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6662","name":"Puerto Rondon","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6663","name":"Saravena","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6664","name":"Tame","city_id":"761","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6665","name":"Baranoa","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6666","name":"Barranquilla","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6667","name":"Campo de la Cruz","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6668","name":"Candelaria","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6669","name":"Galapa","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6670","name":"Juan de Acosta","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6671","name":"Luruaco","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6672","name":"Malambo","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6673","name":"Manati","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6674","name":"Palmar de Varela","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6675","name":"Piojo","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6676","name":"Polo Nuevo","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6677","name":"Ponedera","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6678","name":"Puerto Colombia","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6679","name":"Repelon","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6680","name":"Sabanagrande","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6681","name":"Santa Lucia","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6682","name":"Santo Tomas","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6683","name":"Soledad","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6684","name":"Suan","city_id":"762","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"is_activated":"1"}, +{"id":"6685","name":"Tubara","city_id":"762","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6686","name":"Usiacuri","city_id":"762","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6687","name":"Bogota","city_id":"763","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6688","name":"Achi","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6689","name":"Altos del Rosario","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6690","name":"Arenal","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6691","name":"Arjona","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6692","name":"Arroyohondo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6693","name":"Barranco de Loba","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6694","name":"Calamar","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6695","name":"Cantagallo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6696","name":"Cicuco","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6697","name":"Clemencia","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6698","name":"El Carmen de Bolivar","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6699","name":"El Guamo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6700","name":"El Penon","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6701","name":"Hatillo de Loba","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6702","name":"Magangue","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6703","name":"Mahates","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6704","name":"Margarita","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6705","name":"Maria la Baja","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6706","name":"Mompos","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6707","name":"Montecristo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6708","name":"Morales","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6709","name":"Pinillos","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6710","name":"Regidor","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6711","name":"Rio Viejo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6712","name":"San Cristobal","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6713","name":"San Estanislao","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6714","name":"San Fernando","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6715","name":"San Jacinto","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6716","name":"San Jacinto del Cauca","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6717","name":"San Juan Nepomuceno","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6718","name":"San Martin de Loba","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6719","name":"San Pablo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6720","name":"Santa Catalina","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6721","name":"Santa Rosa del Sur","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6722","name":"Simiti","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6723","name":"Soplaviento","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6724","name":"Talaigua Nuevo","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6725","name":"Tiquisio","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6726","name":"Turbaco","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6727","name":"Turbana","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6728","name":"Villanueva","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6729","name":"Zambrano","city_id":"764","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6730","name":"Almeida","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6731","name":"Aquitania","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6732","name":"Arcabuco","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6733","name":"Belen","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6734","name":"Berbeo","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6735","name":"Beteitiva","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6736","name":"Boavita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6737","name":"Boyaca","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6738","name":"Buenavista","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6739","name":"Busbanza","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6740","name":"Campohermoso","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6741","name":"Cerinza","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6742","name":"Chinavita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6743","name":"Chiquinquira","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6744","name":"Chiquiza","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6745","name":"Chiscas","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6746","name":"Chita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6747","name":"Chitaraque","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6748","name":"Chivata","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6749","name":"Chivor","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6750","name":"Cienega","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6751","name":"Combita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6752","name":"Coper","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6753","name":"Corrales","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6754","name":"Covarachia","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6755","name":"Cubara","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6756","name":"Cucaita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6757","name":"Cuitiva","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6758","name":"Duitama","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6759","name":"El Cocuy","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6760","name":"El Espino","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6761","name":"Firavitoba","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6762","name":"Gachantiva","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6763","name":"Gameza","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6764","name":"Garagoa","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6765","name":"Guacamayas","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6766","name":"Guateque","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6767","name":"Guayata","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6768","name":"Guican","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6769","name":"Iza","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6770","name":"Jenesano","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6771","name":"La Capilla","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6772","name":"La Uvita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6773","name":"La Victoria","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6774","name":"Labranzagrande","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6775","name":"Leiva","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6776","name":"Macanal","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6777","name":"Maripi","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6778","name":"Miraflores","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6779","name":"Mongua","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6780","name":"Mongui","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6781","name":"Moniquira","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6782","name":"Motavita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6783","name":"Muzo","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6784","name":"Nobsa","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6785","name":"Nuevo Colon","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6786","name":"Oicata","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6787","name":"Otanche","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6788","name":"Pachavita","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6789","name":"Paez","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6790","name":"Paipa","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6791","name":"Pajarito","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6792","name":"Panqueba","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6793","name":"Pauna","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6794","name":"Paya","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6795","name":"Paz del Rio","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6796","name":"Pesca","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6797","name":"Pisba","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6798","name":"Puerto Boyaca","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6799","name":"Quipama","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6800","name":"Ramiriqui","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6801","name":"Raquira","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6802","name":"Rondon","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6803","name":"Saboya","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6804","name":"Sachica","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6805","name":"Samaca","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6806","name":"San Eduardo","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6807","name":"San Jose de Pare","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6808","name":"San Luis de Gaceno","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6809","name":"San Mateo","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6810","name":"San Miguel de Sema","city_id":"765","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"is_activated":"1"}, +{"id":"6811","name":"San Pablo de Borbur","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6812","name":"Santa Rosa de Viterbo","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6813","name":"Santa Sofia","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6814","name":"Sativanorte","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6815","name":"Sativasur","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6816","name":"Siachoque","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6817","name":"Soata","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6818","name":"Socha","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6819","name":"Socota","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6820","name":"Sogamoso","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6821","name":"Somondoco","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6822","name":"Sora","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6823","name":"Soraca","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6824","name":"Sotaquira","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6825","name":"Susacon","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6826","name":"Sutamarchan","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6827","name":"Sutatenza","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6828","name":"Tasco","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6829","name":"Tenza","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6830","name":"Tibana","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6831","name":"Tibasosa","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6832","name":"Tinjaca","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6833","name":"Tipacoque","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6834","name":"Toca","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6835","name":"Togui","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6836","name":"Topaga","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6837","name":"Tota","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6838","name":"Tunja","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6839","name":"Tunungua","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6840","name":"Turmeque","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6841","name":"Tuta","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6842","name":"Tutasa","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6843","name":"Umbita","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6844","name":"Ventaquemada","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6845","name":"Viracacha","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6846","name":"Zetaquira","city_id":"765","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6847","name":"Aguadas","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6848","name":"Anserma","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6849","name":"Aranzazu","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6850","name":"Belalcazar","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6851","name":"Chinchina","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6852","name":"La Dorada","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6853","name":"La Merced","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6854","name":"Manizales","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6855","name":"Manzanares","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6856","name":"Marmato","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6857","name":"Marquetalia","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6858","name":"Marulanda","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6859","name":"Neira","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6860","name":"Norcasia","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6861","name":"Pacora","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6862","name":"Palestina","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6863","name":"Pensilvania","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6864","name":"Riosucio","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6865","name":"Risaralda","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6866","name":"Salamina","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6867","name":"Samana","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6868","name":"San Jose","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6869","name":"Supia","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6870","name":"Villamaria","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6871","name":"Viterbo","city_id":"766","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6872","name":"Albania","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6873","name":"Belen Andaquies","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6874","name":"Cartagena del Chaira","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6875","name":"Curillo","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6876","name":"El Doncello","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6877","name":"El Paujil","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6878","name":"Florencia","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6879","name":"La Montanita","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6880","name":"Milan","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6881","name":"Morelia","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6882","name":"Puerto Rico","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6883","name":"San Jose de Fragua","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6884","name":"San Vicente del Caguan","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6885","name":"Solano","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6886","name":"Solita","city_id":"767","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6887","name":"Aguazul","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6888","name":"Chameza","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6889","name":"Hato Corozal","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6890","name":"La Salina","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6891","name":"Mani","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6892","name":"Monterrey","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6893","name":"Nunchia","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6894","name":"Orocue","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6895","name":"Paz de Ariporo","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6896","name":"Pore","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6897","name":"Recetor","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6898","name":"Sacama","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6899","name":"San Luis de Palenque","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6900","name":"Tamara","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6901","name":"Tauramena","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6902","name":"Yopal","city_id":"768","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6903","name":"Almaguer","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6904","name":"Balboa","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6905","name":"Buenos Aires","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6906","name":"Cajibio","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6907","name":"Caldono","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6908","name":"Caloto","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6909","name":"Corinto","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6910","name":"El Bordo","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6911","name":"El Tambo","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6912","name":"Guapi","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6913","name":"Inza","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6914","name":"Jambalo","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6915","name":"La Sierra","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6916","name":"La Vega","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6917","name":"Lopez","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6918","name":"Mercaderes","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6919","name":"Miranda","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6920","name":"Piamonte","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6921","name":"Piendamo","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6922","name":"Popayan","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6923","name":"Puerto Tejada","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6924","name":"Purace","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6925","name":"Rosas","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6926","name":"San Sebastian","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6927","name":"Santander de Quilichao","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6928","name":"Silvia","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6929","name":"Sotara","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6930","name":"Suarez","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6931","name":"Timbio","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6932","name":"Timbiqui","city_id":"769","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"is_activated":"1"}, +{"id":"6933","name":"Toribio","city_id":"769","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6934","name":"Totoro","city_id":"769","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6935","name":"Villa Rica","city_id":"769","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6936","name":"Aguachica","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6937","name":"Agustin Codazzi","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6938","name":"Astrea","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6939","name":"Becerril","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6940","name":"Bosconia","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6941","name":"Chimichagua","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6942","name":"Chiriguana","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6943","name":"Curumani","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6944","name":"El Copey","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6945","name":"El Paso","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6946","name":"Gamarra","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6947","name":"Gonzalez","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6948","name":"La Gloria","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6949","name":"La Jagua Ibirico","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6950","name":"Manaure","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6951","name":"Pailitas","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6952","name":"Pelaya","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6953","name":"Pueblo Bello","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6954","name":"Rio de Oro","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6955","name":"Robles la Paz","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6956","name":"San Alberto","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6957","name":"San Diego","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6958","name":"Tamalameque","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6959","name":"Valledupar","city_id":"770","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6960","name":"Acandi","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6961","name":"Alto Baudo","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6962","name":"Atrato","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6963","name":"Bagado","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6964","name":"Bahia Solano","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6965","name":"Bajo Baudo","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6966","name":"Bojaya","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6967","name":"Canton de San Pablo","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6968","name":"Carmen del Darien","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6969","name":"Certegui","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6970","name":"Condoto","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6971","name":"El Carmen","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6972","name":"Istmina","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6973","name":"Jurado","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6974","name":"Litoral del San Juan","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6975","name":"Lloro","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6976","name":"Medio Atrato","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6977","name":"Medio Baudo","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6978","name":"Medio San Juan","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6979","name":"Novita","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6980","name":"Nuqui","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6981","name":"Quibdo","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6982","name":"Rio Iro","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6983","name":"Rio Quito","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6984","name":"San Jose del Palmar","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6985","name":"Sipi","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6986","name":"Tado","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6987","name":"Unguia","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6988","name":"Union Panamericana","city_id":"771","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6989","name":"Ayapel","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6990","name":"Canalete","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6991","name":"Cerete","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6992","name":"Chima","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6993","name":"Chinu","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6994","name":"Cienaga de Oro","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6995","name":"Cotorra","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6996","name":"La Apartada","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6997","name":"Lorica","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6998","name":"Los Cordobas","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"6999","name":"Momil","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7000","name":"Monitos","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7001","name":"Montelibano","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7002","name":"Monteria","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7003","name":"Planeta Rica","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7004","name":"Pueblo Nuevo","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7005","name":"Puerto Escondido","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7006","name":"Puerto Libertador","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7007","name":"Purisima","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7008","name":"Sahagun","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7009","name":"San Andres Sotavento","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7010","name":"San Antero","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7011","name":"San Bernardo Viento","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7012","name":"San Pelayo","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7013","name":"Tierralta","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7014","name":"Valencia","city_id":"188","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7015","name":"Agua de Dios","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7016","name":"Alban","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7017","name":"Anapoima","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7018","name":"Anolaima","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7019","name":"Arbelaez","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7020","name":"Beltran","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7021","name":"Bituima","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7022","name":"Bojaca","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7023","name":"Cabrera","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7024","name":"Cachipay","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7025","name":"Cajica","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7026","name":"Caparrapi","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7027","name":"Caqueza","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7028","name":"Carmen de Carupa","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7029","name":"Chaguani","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7030","name":"Chia","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7031","name":"Chipaque","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7032","name":"Choachi","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7033","name":"Choconta","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7034","name":"Cogua","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7035","name":"Cota","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7036","name":"Cucunuba","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7037","name":"El Colegio","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7038","name":"El Rosal","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7039","name":"Facatativa","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7040","name":"Fomeque","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7041","name":"Fosca","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7042","name":"Funza","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7043","name":"Fuquene","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7044","name":"Fusagasuga","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7045","name":"Gachala","city_id":"772","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"is_activated":"1"}, +{"id":"7046","name":"Gachancipa","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7047","name":"Gacheta","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7048","name":"Gama","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7049","name":"Girardot","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7050","name":"Guacheta","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7051","name":"Guaduas","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7052","name":"Guasca","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7053","name":"Guataqui","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7054","name":"Guatavita","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7055","name":"Guayabal de Siquima","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7056","name":"Guayabetal","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7057","name":"Gutierrez","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7058","name":"Jerusalen","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7059","name":"Junin","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7060","name":"La Calera","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7061","name":"La Mesa","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7062","name":"La Palma","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7063","name":"La Pena","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7064","name":"Lenguazaque","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7065","name":"Macheta","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7066","name":"Madrid","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7067","name":"Manta","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7068","name":"Medina","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7069","name":"Mosquera","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7070","name":"Nemocon","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7071","name":"Nilo","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7072","name":"Nimaima","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7073","name":"Nocaima","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7074","name":"Ospina Perez","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7075","name":"Pacho","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7076","name":"Paime","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7077","name":"Pandi","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7078","name":"Paratebueno","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7079","name":"Pasca","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7080","name":"Puerto Salgar","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7081","name":"Puli","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7082","name":"Quebradanegra","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7083","name":"Quetame","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7084","name":"Quipile","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7085","name":"Rafael Reyes","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7086","name":"Ricaurte","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7087","name":"San Antonio del Tequendama","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7088","name":"San Cayetano","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7089","name":"San Juan de Rioseco","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7090","name":"Sasaima","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7091","name":"Sesquile","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7092","name":"Sibate","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7093","name":"Simijaca","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7094","name":"Soacha","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7095","name":"Sopo","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7096","name":"Subachoque","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7097","name":"Suesca","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7098","name":"Supata","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7099","name":"Sutatausa","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7100","name":"Tabio","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7101","name":"Tausa","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7102","name":"Tena","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7103","name":"Tenjo","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7104","name":"Tibacuy","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7105","name":"Tibirita","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7106","name":"Tocaima","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7107","name":"Tocancipa","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7108","name":"Topaipi","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7109","name":"Ubala","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7110","name":"Ubaque","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7111","name":"Ubate","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7112","name":"Une","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7113","name":"Utica","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7114","name":"Vergara","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7115","name":"Viani","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7116","name":"Villagomez","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7117","name":"Villapinzon","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7118","name":"Villeta","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7119","name":"Viota","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7120","name":"Yacopi","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7121","name":"Zipacon","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7122","name":"Zipaquira","city_id":"772","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7123","name":"Inirida","city_id":"773","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7124","name":"El Retorno","city_id":"774","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7125","name":"San Jose del Guaviare","city_id":"774","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7126","name":"Acevedo","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7127","name":"Agrado","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7128","name":"Aipe","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7129","name":"Algeciras","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7130","name":"Baraya","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7131","name":"Campoalegre","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7132","name":"Colombia","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7133","name":"Elias","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7134","name":"Garzon","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7135","name":"Gigante","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7136","name":"Hobo","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7137","name":"Iquira","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7138","name":"Isnos","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7139","name":"La Argentina","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7140","name":"La Plata","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7141","name":"Nataga","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7142","name":"Neiva","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7143","name":"Oporapa","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7144","name":"Paicol","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7145","name":"Palermo","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7146","name":"Pital","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7147","name":"Pitalito","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7148","name":"Rivera","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7149","name":"Saladoblanco","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7150","name":"San Agustin","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7151","name":"Suaza","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7152","name":"Tarqui","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7153","name":"Tello","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7154","name":"Teruel","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7155","name":"Tesalia","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7156","name":"Timana","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7157","name":"Villavieja","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7158","name":"Yaguara","city_id":"157","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7159","name":"Aracataca","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7160","name":"Ariguani","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7161","name":"Cerro San Antonio","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7162","name":"Chivolo","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7163","name":"Cienaga","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7164","name":"El Banco","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7165","name":"El Pinon","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7166","name":"El Reten","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7167","name":"Fundacion","city_id":"776","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"is_activated":"1"}, +{"id":"7168","name":"Guamal","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7169","name":"Nueva Granada","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7170","name":"Pedraza","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7171","name":"Pijino del Carmen","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7172","name":"Pivijay","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7173","name":"Plato","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7174","name":"Puebloviejo","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7175","name":"Remolino","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7176","name":"Sabanas de San Angel","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7177","name":"San Zenon","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7178","name":"Santa Barbara de Pinto","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7179","name":"Santa Marta","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7180","name":"Sitionuevo","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7181","name":"Tenerife","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7182","name":"Zapayan","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7183","name":"Zona Bananera","city_id":"776","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7184","name":"Acacias","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7185","name":"Barranca de Upia","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7186","name":"Cabuyaro","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7187","name":"Castilla la Nueva","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7188","name":"Cubarral","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7189","name":"Cumaral","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7190","name":"El Calvario","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7191","name":"El Castillo","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7192","name":"El Dorado","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7193","name":"Fuente de Oro","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7194","name":"La Macarena","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7195","name":"La Uribe","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7196","name":"Lejanias","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7197","name":"Mapiripan","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7198","name":"Mesetas","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7199","name":"Puerto Concordia","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7200","name":"Puerto Gaitan","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7201","name":"Puerto Lleras","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7202","name":"Puerto Lopez","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7203","name":"Restrepo","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7204","name":"San Carlos Guaroa","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7205","name":"San Juan de Arama","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7206","name":"San Juanito","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7207","name":"Villavicencio","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7208","name":"Vista Hermosa","city_id":"777","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7209","name":"Aldana","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7210","name":"Ancuya","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7211","name":"Arboleda","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7212","name":"Barbacoas","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7213","name":"Buesaco","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7214","name":"Chachagui","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7215","name":"Colon","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7216","name":"Consaca","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7217","name":"Contadero","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7218","name":"Cuaspud","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7219","name":"Cumbal","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7220","name":"Cumbitara","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7221","name":"El Charco","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7222","name":"El Penol","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7223","name":"El Rosario","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7224","name":"El Tablon","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7225","name":"Funes","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7226","name":"Guachucal","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7227","name":"Guaitarilla","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7228","name":"Gualmatan","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7229","name":"Iles","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7230","name":"Imues","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7231","name":"Ipiales","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7232","name":"La Florida","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7233","name":"La Llanada","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7234","name":"La Tola","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7235","name":"Magui","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7236","name":"Mallama","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7237","name":"Olaya Herrera","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7238","name":"Ospina","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7239","name":"Pasto","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7240","name":"Pizarro","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7241","name":"Policarpa","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7242","name":"Providencia","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7243","name":"Puerres","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7244","name":"Pupiales","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7245","name":"Roberto Payan","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7246","name":"Samaniego","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7247","name":"San Pedro de Cartago","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7248","name":"Sandona","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7249","name":"Santacruz","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7250","name":"Sapuyes","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7251","name":"Taminango","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7252","name":"Tangua","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7253","name":"Tumaco","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7254","name":"Tuquerres","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7255","name":"Yacuanquer","city_id":"778","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7256","name":"Mocoa","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7257","name":"Orito","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7258","name":"Puerto Asis","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7259","name":"Puerto Caycedo","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7260","name":"Puerto Guzman","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7261","name":"Puerto Leguizamo","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7262","name":"San Miguel","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7263","name":"Sibundoy","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7264","name":"Valle del Guamuez","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7265","name":"Villagarzon","city_id":"780","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7266","name":"Calarca","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7267","name":"Circasia","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7268","name":"Filandia","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7269","name":"Genova","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7270","name":"La Tebaida","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7271","name":"Montenegro","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7272","name":"Pijao","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7273","name":"Quimbaya","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7274","name":"Salento","city_id":"781","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7275","name":"Apia","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7276","name":"Belen de Umbria","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7277","name":"Dos Quebradas","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7278","name":"Guatica","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7279","name":"La Celia","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7280","name":"La Virginia","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7281","name":"Marsella","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7282","name":"Mistrato","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7283","name":"Pereira","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7284","name":"Pueblo Rico","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7285","name":"Quinchia","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7286","name":"Santa Rosa de Cabal","city_id":"782","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"is_activated":"1"}, +{"id":"7287","name":"Aguada","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7288","name":"Aratoca","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7289","name":"Barichara","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7290","name":"Barrancabermeja","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7291","name":"Bucaramanga","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7292","name":"California","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7293","name":"Capitanejo","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7294","name":"Carcasi","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7295","name":"Cepita","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7296","name":"Cerrito","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7297","name":"Charala","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7298","name":"Charta","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7299","name":"Chipata","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7300","name":"Cimitarra","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7301","name":"Confines","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7302","name":"Contratacion","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7303","name":"Coromoro","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7304","name":"Curiti","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7305","name":"El Guacamayo","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7306","name":"El Playon","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7307","name":"Encino","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7308","name":"Enciso","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7309","name":"Florian","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7310","name":"Floridablanca","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7311","name":"Galan","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7312","name":"Gambita","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7313","name":"Giron","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7314","name":"Guaca","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7315","name":"Guapota","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7316","name":"Guavata","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7317","name":"Guepsa","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7318","name":"Hato","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7319","name":"Jesus Maria","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7320","name":"Jordan","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7321","name":"La Belleza","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7322","name":"La Paz","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7323","name":"Landazuri","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7324","name":"Lebrija","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7325","name":"Los Santos","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7326","name":"Macaravita","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7327","name":"Malaga","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7328","name":"Matanza","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7329","name":"Mogotes","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7330","name":"Molagavita","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7331","name":"Ocamonte","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7332","name":"Oiba","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7333","name":"Onzaga","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7334","name":"Palmar","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7335","name":"Palmas del Socorro","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7336","name":"Paramo","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7337","name":"Piedecuesta","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7338","name":"Pinchote","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7339","name":"Puente Nacional","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7340","name":"Puerto Parra","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7341","name":"Puerto Wilches","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7342","name":"Sabana de Torres","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7343","name":"San Benito","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7344","name":"San Gil","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7345","name":"San Joaquin","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7346","name":"San Jose de Miranda","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7347","name":"San Vicente de Chucuri","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7348","name":"Simacota","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7349","name":"Socorro","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7350","name":"Suaita","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7351","name":"Surata","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7352","name":"Tona","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7353","name":"Valle San Jose","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7354","name":"Velez","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7355","name":"Vetas","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7356","name":"Zapatoca","city_id":"784","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7357","name":"Caimito","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7358","name":"Chalan","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7359","name":"Coloso","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7360","name":"El Roble","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7361","name":"Galeras","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7362","name":"Guaranda","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7363","name":"Los Palmitos","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7364","name":"Majagual","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7365","name":"Morroa","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7366","name":"Ovejas","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7367","name":"Palmito","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7368","name":"Sampues","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7369","name":"San Benito Abad","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7370","name":"San Juan de Betulia","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7371","name":"San Marcos","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7372","name":"San Onofre","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7373","name":"Since","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7374","name":"Sincelejo","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7375","name":"Tolu","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7376","name":"Toluviejo","city_id":"785","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7377","name":"Alpujarra","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7378","name":"Alvarado","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7379","name":"Ambalema","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7380","name":"Anzoategui","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7381","name":"Ataco","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7382","name":"Cajamarca","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7383","name":"Carmen de Apicala","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7384","name":"Casabianca","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7385","name":"Chaparral","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7386","name":"Coello","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7387","name":"Coyaima","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7388","name":"Cunday","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7389","name":"Dolores","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7390","name":"Espinal","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7391","name":"Falan","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7392","name":"Flandes","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7393","name":"Fresno","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7394","name":"Guamo","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7395","name":"Guayabal","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7396","name":"Herveo","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7397","name":"Honda","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7398","name":"Ibague","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7399","name":"Icononzo","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7400","name":"Lerida","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7401","name":"Libano","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7402","name":"Mariquita","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7403","name":"Melgar","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7404","name":"Murillo","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7405","name":"Natagaima","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7406","name":"Ortega","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7407","name":"Palocabildo","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7408","name":"Piedras","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7409","name":"Planadas","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7410","name":"Purificacion","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7411","name":"Rioblanco","city_id":"786","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"is_activated":"1"}, +{"id":"7412","name":"Roncesvalles","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7413","name":"Rovira","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7414","name":"Saldana","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7415","name":"Santa Isabel","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7416","name":"Valle de San Juan","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7417","name":"Venadillo","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7418","name":"Villahermosa","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7419","name":"Villarrica","city_id":"786","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7420","name":"Alcala","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7421","name":"Andalucia","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7422","name":"Ansermanuevo","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7423","name":"Buenaventura","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7424","name":"Buga","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7425","name":"Bugalagrande","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7426","name":"Caicedonia","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7427","name":"Cali","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7428","name":"Calima - El Darien","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7429","name":"Cartago","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7430","name":"Dagua","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7431","name":"El Aguila","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7432","name":"El Cairo","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7433","name":"El Cerrito","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7434","name":"El Dovio","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7435","name":"Florida","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7436","name":"Ginebra","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7437","name":"Guacari","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7438","name":"Jamundi","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7439","name":"La Cumbre","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7440","name":"Obando","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7441","name":"Palmira","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7442","name":"Pradera","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7443","name":"Riofrio","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7444","name":"Roldanillo","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7445","name":"Sevilla","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7446","name":"Toro","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7447","name":"Trujillo","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7448","name":"Tulua","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7449","name":"Ulloa","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7450","name":"Versalles","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7451","name":"Vijes","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7452","name":"Yotoco","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7453","name":"Yumbo","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7454","name":"Zarzal","city_id":"787","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7455","name":"Acaricuara","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7456","name":"Mitu","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7457","name":"Papunaua","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7458","name":"Taraira","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7459","name":"Villa Fatima","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7460","name":"Yavarate","city_id":"788","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7461","name":"Cumaribo","city_id":"789","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7462","name":"La Primavera","city_id":"789","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7463","name":"Puerto Carreno","city_id":"789","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7464","name":"Santa Rosalia","city_id":"789","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7465","name":"Fomboni","city_id":"790","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7466","name":"Mitsamiouli","city_id":"791","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7467","name":"Moroni","city_id":"791","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7468","name":"Domoni","city_id":"792","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7469","name":"Mutsamudu","city_id":"792","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7470","name":"Loudima","city_id":"793","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7471","name":"Madingou","city_id":"793","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7472","name":"Nkayi","city_id":"793","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7473","name":"Brazzaville","city_id":"794","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7474","name":"Ewo","city_id":"795","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7475","name":"Kelle","city_id":"795","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7476","name":"Makoua","city_id":"795","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7477","name":"Mossaka","city_id":"795","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7478","name":"Owando","city_id":"795","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7479","name":"Loandjili","city_id":"796","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7480","name":"Ngamaba-Mfilou","city_id":"796","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7481","name":"Pointe Noire","city_id":"796","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7482","name":"Sibiti","city_id":"797","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7483","name":"Zanaga","city_id":"797","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7484","name":"Dongou","city_id":"798","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7485","name":"Epena","city_id":"798","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7486","name":"Impfondo","city_id":"798","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7487","name":"Kibangou","city_id":"799","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7488","name":"Loubomo","city_id":"799","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7489","name":"Matsanga","city_id":"799","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7490","name":"Mossendjo","city_id":"799","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7491","name":"Djambala","city_id":"800","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7492","name":"Gamboma","city_id":"800","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"is_activated":"1"}, +{"id":"7493","name":"Boko","city_id":"801","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7494","name":"Kinkala","city_id":"801","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7495","name":"Mindouli","city_id":"801","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7496","name":"Ikelemba","city_id":"802","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7497","name":"Ouesso","city_id":"802","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7498","name":"Sembe","city_id":"802","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7499","name":"Souanke","city_id":"802","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7500","name":"Bandundu","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7501","name":"Bolobo","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7502","name":"Bulungu","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7503","name":"Gungu","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7504","name":"Idiofa","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7505","name":"Inongo","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7506","name":"Kahemba","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7507","name":"Kasongo-Lunda","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7508","name":"Kenge","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7509","name":"Kikwit","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7510","name":"Kiri","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7511","name":"Kutu","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7512","name":"Lusanga","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7513","name":"Mangai","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7514","name":"Mushie","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7515","name":"Nioki","city_id":"803","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7516","name":"Boma","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7517","name":"Kasangulu","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7518","name":"Kimpese","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7519","name":"Madimba","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7520","name":"Matadi","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7521","name":"Mbanza-Ngungu","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7522","name":"Muanda","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7523","name":"Tshela","city_id":"804","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7524","name":"Basankusu","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7525","name":"Binga","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7526","name":"Bodalangi","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7527","name":"Boende","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7528","name":"Bongandanga","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7529","name":"Bosobolo","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7530","name":"Bumba","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7531","name":"Businga","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7532","name":"Gbadolite","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7533","name":"Gemena","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7534","name":"Ikela","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7535","name":"Libenge","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7536","name":"Lisala","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7537","name":"Makanza","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7538","name":"Mbandaka","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7539","name":"Mobayi-Mbongo","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7540","name":"Yakoma","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7541","name":"Yandongi","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7542","name":"Yumbi","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7543","name":"Zongo","city_id":"805","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7544","name":"Aba","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7545","name":"Aketi","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7546","name":"Bafwasende","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7547","name":"Banalia","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7548","name":"Basoko","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7549","name":"Bondo","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7550","name":"Bunia","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7551","name":"Buta","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7552","name":"Djugu","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7553","name":"Faradje","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7554","name":"Gwane","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7555","name":"Isiro","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7556","name":"Itoko","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7557","name":"Kisangani","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7558","name":"Mambasa","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7559","name":"Mongbwalu","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7560","name":"Niangara","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7561","name":"Poko","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7562","name":"Simba","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7563","name":"Titule","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7564","name":"Ubundu","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7565","name":"Wamba","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7566","name":"Watsa","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7567","name":"Yangambi","city_id":"806","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7568","name":"Demba","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7569","name":"Dibaya","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7570","name":"Ilebo","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7571","name":"Kananga","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7572","name":"Kazumba","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7573","name":"Luebo","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7574","name":"Mweka","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7575","name":"Tshikapa","city_id":"807","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7576","name":"Gandajika","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7577","name":"Kabinda","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7578","name":"Katako-Kombe","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7579","name":"Kole","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7580","name":"Lodja","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7581","name":"Lubao","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7582","name":"Lubefu","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7583","name":"Lusambo","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7584","name":"Mbuji-Mayi","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7585","name":"Mwene-Ditu","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7586","name":"Tshilenge","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7587","name":"Tshofa","city_id":"808","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7588","name":"Bukama","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7589","name":"Dilolo","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7590","name":"Kabalo","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7591","name":"Kalemie","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7592","name":"Kambove","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7593","name":"Kamina","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7594","name":"Kaniama","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7595","name":"Kikondjo","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7596","name":"Kipushi","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7597","name":"Kolwezi","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7598","name":"Kongolo","city_id":"809","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"is_activated":"1"}, +{"id":"7599","name":"Le Marinel","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7600","name":"Likasi","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7601","name":"Lubudi","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7602","name":"Lubumbashi","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7603","name":"Malemba-Nkulu","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7604","name":"Manono","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7605","name":"Moba","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7606","name":"Mulongo","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7607","name":"Mwanza","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7608","name":"Nyunzu","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7609","name":"Sakania","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7610","name":"Shinkolobwe","city_id":"809","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7611","name":"Kinshasa","city_id":"810","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7612","name":"Kalima","city_id":"811","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7613","name":"Kasongo","city_id":"811","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7614","name":"Kindu","city_id":"811","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7615","name":"Beni","city_id":"812","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7616","name":"Butembo","city_id":"812","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7617","name":"Goma","city_id":"812","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7618","name":"Bukavu","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7619","name":"Kabare","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7620","name":"Kama","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7621","name":"Kampene","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7622","name":"Kibombo","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7623","name":"Uvira","city_id":"813","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7624","name":"Amuri","city_id":"814","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7625","name":"Atiu","city_id":"815","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7626","name":"Mangaia","city_id":"816","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7627","name":"Tauhunu","city_id":"817","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7628","name":"Mauke","city_id":"818","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7629","name":"Mitiaro","city_id":"819","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7630","name":"Nassau","city_id":"820","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7631","name":"Roto","city_id":"821","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7632","name":"Rakahanga","city_id":"822","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7633","name":"Avarua","city_id":"823","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7634","name":"Omoka","city_id":"824","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7635","name":"Alajuela","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7636","name":"Atenas","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7637","name":"Bijagua","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7638","name":"Carrillos","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7639","name":"Desemparados","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7640","name":"Dos Rios","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7641","name":"Esquipulas","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7642","name":"Grecia","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7643","name":"Guacimo","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7644","name":"Laguna","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7645","name":"Los Chiles","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7646","name":"Mastate","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7647","name":"Naranjo","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7648","name":"Orotina","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7649","name":"Piedades Norte","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7650","name":"Pocosol","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7651","name":"Quesada","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7652","name":"Rio Segundo","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7653","name":"Sabanilla","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7654","name":"San Juan","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7655","name":"Sarchi Norte","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7656","name":"Sarchi Sur","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7657","name":"Tigra","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7658","name":"Turricares","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7659","name":"Upala","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7660","name":"Venado","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7661","name":"Zarcero","city_id":"825","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7662","name":"Aguacaliente","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7663","name":"Capellades","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7664","name":"Carmen","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7665","name":"Cot","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7666","name":"Dulce Nombre","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7667","name":"El Tejar","city_id":"826","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"is_activated":"1"}, +{"id":"7668","name":"Juan Vinas","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7669","name":"La Suiza","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7670","name":"Orosi","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7671","name":"Pacayas","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7672","name":"Pejibaye","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7673","name":"San Isidro","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7674","name":"San Nicolas","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7675","name":"Tierra Blanca","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7676","name":"Tobosi","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7677","name":"Tres Rios","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7678","name":"Tucurrique","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7679","name":"Turrialba","city_id":"826","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7680","name":"Bagaces","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7681","name":"Canas","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7682","name":"Filadeldia","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7683","name":"Hojancha","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7684","name":"Juntas","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7685","name":"Liberia","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7686","name":"Mogote","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7687","name":"Nandayure","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7688","name":"Nicoya","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7689","name":"Samara","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7690","name":"Santa Cruz","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7691","name":"Sardinal","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7692","name":"Tilaran","city_id":"827","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7693","name":"Angeles","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7694","name":"Asuncion","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7695","name":"Barrantes","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7696","name":"Barva","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7697","name":"Heredia","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7698","name":"Horquetas","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7699","name":"Llorente","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7700","name":"Puerto Viejo","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7701","name":"San Josecito","city_id":"828","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7702","name":"Batan","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7703","name":"Cahuita","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7704","name":"Cariari","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7705","name":"Guapiles","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7706","name":"Jimenez","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7707","name":"Limon","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7708","name":"Matina","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7709","name":"Pocora","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7710","name":"Rita","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7711","name":"Roxana","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7712","name":"Siquirres","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7713","name":"Sixaola","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7714","name":"Valle la Estrella","city_id":"829","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7715","name":"Canoas","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7716","name":"Chacarita","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7717","name":"Corredor","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7718","name":"Esparta","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7719","name":"Espiritu Santo","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7720","name":"Golfito","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7721","name":"Guaycara","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7722","name":"Jaco","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7723","name":"La Cuesta","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7724","name":"Macacona","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7725","name":"Manzanillo","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7726","name":"Miramar","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7727","name":"Paquera","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7728","name":"Parrita","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7729","name":"Puerto Cortes","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7730","name":"Puerto Jimenez","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7731","name":"Puntarenas","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7732","name":"Quepos","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7733","name":"San Vito","city_id":"830","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7734","name":"Marcory","city_id":"832","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7735","name":"Adzope","city_id":"833","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7736","name":"Affery","city_id":"833","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7737","name":"Agboville","city_id":"833","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7738","name":"Akoupe","city_id":"833","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7739","name":"Rubino","city_id":"833","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7740","name":"Touba","city_id":"834","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7741","name":"Bako","city_id":"835","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7742","name":"Odienne","city_id":"835","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7743","name":"Gagnoa","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7744","name":"Guiberoua","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7745","name":"Hire","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7746","name":"Ndouci","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7747","name":"Oume","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7748","name":"Ouragahio","city_id":"837","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7749","name":"Daloa","city_id":"838","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7750","name":"Issia","city_id":"838","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7751","name":"Vavoua","city_id":"838","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"is_activated":"1"}, +{"id":"7752","name":"Ndiekro","city_id":"839","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7753","name":"Tiebissou","city_id":"839","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7754","name":"Toumodi","city_id":"839","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7755","name":"Yamoussoukro","city_id":"839","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7756","name":"Abidjan","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7757","name":"Alepe","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7758","name":"Anyama","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7759","name":"Bingerville","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7760","name":"Dabou","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7761","name":"Grand-Lahou","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7762","name":"Jacqueville","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7763","name":"Tiassale","city_id":"840","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7764","name":"Bouafle","city_id":"841","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7765","name":"Sinfra","city_id":"841","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7766","name":"Zuenoula","city_id":"841","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7767","name":"Duekoue","city_id":"842","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7768","name":"Guiglo","city_id":"842","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7769","name":"Toulepleu","city_id":"842","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7770","name":"Abengourou","city_id":"843","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7771","name":"Agnibilekrou","city_id":"843","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7772","name":"Arrah","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7773","name":"Bocanda","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7774","name":"Bongouanou","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7775","name":"Daoukro","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7776","name":"Dimbokro","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7777","name":"M bahiakro","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7778","name":"Mbatto","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7779","name":"N zi-Comoe","city_id":"844","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7780","name":"San-Pedro","city_id":"845","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7781","name":"Sassandra","city_id":"845","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7782","name":"Soubre","city_id":"845","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7783","name":"Tabou","city_id":"845","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7784","name":"Boundiali","city_id":"846","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7785","name":"Dikodougou","city_id":"846","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7786","name":"Ferkessedougou","city_id":"846","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7787","name":"Korhogo","city_id":"846","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7788","name":"Tingrela","city_id":"846","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7789","name":"Divo","city_id":"847","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7790","name":"Fresco","city_id":"847","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7791","name":"Lakota","city_id":"847","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7792","name":"Aboisso","city_id":"848","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7793","name":"Adiake","city_id":"848","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7794","name":"Ayame","city_id":"848","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7795","name":"Bonoua","city_id":"848","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7796","name":"Grand Bassam","city_id":"848","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7797","name":"Kani","city_id":"850","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7798","name":"Mankono","city_id":"850","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7799","name":"Seguela","city_id":"850","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7800","name":"Bondoukou","city_id":"851","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7801","name":"Bouna","city_id":"851","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7802","name":"Tanda","city_id":"851","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7803","name":"Bjelovar","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7804","name":"Brezovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7805","name":"Chazma","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7806","name":"Daruvar","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7807","name":"Daruvarski Brestovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7808","name":"Dezhanovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7809","name":"Dhulovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7810","name":"Gareshnica","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7811","name":"Gareshnichki Brestovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7812","name":"Grubishno Polje","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7813","name":"Gudovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7814","name":"Hercegovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7815","name":"Ivanska","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7816","name":"Klokochevac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7817","name":"Konchanica","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7818","name":"Predavac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7819","name":"Rovishce","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7820","name":"Shandrovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7821","name":"Sirach","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7822","name":"Trojstveni Markovac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7823","name":"Velika Pisanica","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7824","name":"Veliki Grdhevac","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7825","name":"Veliki Zdenci","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7826","name":"Veliko Trojstvo","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7827","name":"Zhdralovi","city_id":"852","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7828","name":"Blato","city_id":"853","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7829","name":"Cavtat","city_id":"853","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"is_activated":"1"}, +{"id":"7830","name":"Chibacha","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7831","name":"Chilipi","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7832","name":"Dubrovnik","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7833","name":"Komin","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7834","name":"Korchula","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7835","name":"Lumbarda","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7836","name":"Metkovic","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7837","name":"Mlini","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7838","name":"Mokoshica","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7839","name":"Nova Mokoshica","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7840","name":"Opuzen","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7841","name":"Orebic","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7842","name":"Otrich-Seoci","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7843","name":"Ploche","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7844","name":"Smokvica","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7845","name":"Stashevica","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7846","name":"Vela Luka","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7847","name":"Zaton","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7848","name":"Zhrnovo","city_id":"853","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7849","name":"Bale","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7850","name":"Banjole","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7851","name":"Brtonigla","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7852","name":"Buje","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7853","name":"Buzet","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7854","name":"Fazhana","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7855","name":"Funtana","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7856","name":"Galizhana","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7857","name":"Labin","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7858","name":"Lizhnjan","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7859","name":"Marchana","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7860","name":"Medulin","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7861","name":"Novigrad","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7862","name":"Pazin","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7863","name":"Porech","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7864","name":"Premantura","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7865","name":"Pula","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7866","name":"Rabac","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7867","name":"Rasha","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7868","name":"Rovinj","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7869","name":"Sveti Petar u Shumi","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7870","name":"Tar","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7871","name":"Umag","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7872","name":"Vinezh","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7873","name":"Vodnjan","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7874","name":"Vrsar","city_id":"855","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7875","name":"Cerovac Vukmansichki","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7876","name":"Draganic","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7877","name":"Duga Resa","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7878","name":"Josipdol","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7879","name":"Karlovac","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7880","name":"Mrezhnichki Varosh","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7881","name":"Ogulin","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7882","name":"Oshtarije","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7883","name":"Ozalj","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7884","name":"Plashki","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7885","name":"Slunj","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7886","name":"Vojnic","city_id":"856","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7887","name":"Dhelekovec","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7888","name":"Dhurdhevac","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7889","name":"Drnje","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7890","name":"Ferdinandovac","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7891","name":"Glogovac","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7892","name":"Gola","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7893","name":"Hlebine","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7894","name":"Kalinovac","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7895","name":"Kloshtar Podravski","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7896","name":"Koprivnica","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7897","name":"Koprivnichki Bregi","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7898","name":"Koprivnichki Ivanec","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7899","name":"Krizhevci","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7900","name":"Legrad","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7901","name":"Molve","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7902","name":"Novigrad Podravski","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7903","name":"Novo Virje","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7904","name":"Peteranec","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7905","name":"Podravske Sesvete","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7906","name":"Rasinja","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7907","name":"Reka","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7908","name":"Sigetec","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7909","name":"Starigrad","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7910","name":"Sveti Ivan Zhabno","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7911","name":"Trema","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7912","name":"Virje","city_id":"857","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7913","name":"Andrashevec","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7914","name":"Bedekovchina","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7915","name":"Dhurmanec","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7916","name":"Donja Pachetina","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7917","name":"Donja Shemnica","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7918","name":"Donja Stubica","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7919","name":"Dubrovchan","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7920","name":"Gornja Stubica","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7921","name":"Hum na Sutli","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7922","name":"Klanjec","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7923","name":"Konjishchina","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7924","name":"Krapina","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7925","name":"Krapinske Toplice","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7926","name":"Laz Bistrichki","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7927","name":"Marija Bistrica","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7928","name":"Mihovljan","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7929","name":"Oroslavje","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7930","name":"Podgorje Bistrichko","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7931","name":"Poznanovec","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7932","name":"Pregrada","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7933","name":"Radoboj","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7934","name":"Shkaricevo","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7935","name":"Shpichkovina","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7936","name":"Stubichke Toplice","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7937","name":"Sveti Krizh Zachretje","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7938","name":"Veliko Trgovishce","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7939","name":"Zabok","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7940","name":"Zlatar","city_id":"858","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"is_activated":"1"}, +{"id":"7941","name":"Zlatar-Bistrica","city_id":"858","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7942","name":"Brinje","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7943","name":"Donji Lapac","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7944","name":"Gospic","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7945","name":"Korenica","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7946","name":"Lichki Osik","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7947","name":"Lichko Leshce","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7948","name":"Novalja","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7949","name":"Otochac","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7950","name":"Perushic","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7951","name":"Prozor","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7952","name":"Senj","city_id":"859","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7953","name":"Chakovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7954","name":"Cirkovljan","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7955","name":"Dekanovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7956","name":"Domashinec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7957","name":"Donja Dubrava","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7958","name":"Donji Kraljevec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7959","name":"Donji Vidovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7960","name":"Drzhimurec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7961","name":"Dunjkovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7962","name":"Gardinovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7963","name":"Gorichan","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7964","name":"Gornji Hrashcan","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7965","name":"Hodoshan","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7966","name":"Ivanovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7967","name":"Kotoriba","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7968","name":"Kurshanec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7969","name":"Lopatinec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7970","name":"Machkovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7971","name":"Mala Subotica","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7972","name":"Mursko Sredishce","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7973","name":"Nedelishce","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7974","name":"Novakovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7975","name":"Novo Selo Rok","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7976","name":"Orehovica","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7977","name":"Palovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7978","name":"Peklenica","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7979","name":"Podturen","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7980","name":"Prelog","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7981","name":"Pribislavec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7982","name":"Pushcine","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7983","name":"Savska Ves","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7984","name":"Selnica","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7985","name":"Shenkovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7986","name":"Strahoninec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7987","name":"Sveta Marija","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7988","name":"Trnovec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7989","name":"Vratishinec","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7990","name":"Zasadbreg","city_id":"860","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7991","name":"Antunovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7992","name":"Batina","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7993","name":"Beli Manastir","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7994","name":"Belishce","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7995","name":"Beljevina","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7996","name":"Bijelo Brdo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7997","name":"Bilje","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7998","name":"Bistrinci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"7999","name":"Bizovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8000","name":"Branjin Vrh","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8001","name":"Brijeshce","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8002","name":"Brijest","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8003","name":"Ceminac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8004","name":"Chepin","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8005","name":"Crnkovci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8006","name":"Dalj","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8007","name":"Darda","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8008","name":"Dhakovo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8009","name":"Dhurdhenovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8010","name":"Donja Motichina","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8011","name":"Donji Miholac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8012","name":"Erdut","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8013","name":"Ernestinovo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8014","name":"Ferichanci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8015","name":"Gashinci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8016","name":"Gorjani","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8017","name":"Grabovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8018","name":"Ivanovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8019","name":"Ivanovci Gorjanski","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8020","name":"Jagodnjak","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8021","name":"Jelisavac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8022","name":"Josipovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8023","name":"Josipovac Punitovachki","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8024","name":"Karanac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8025","name":"Keshinci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8026","name":"Knezhevi Vinogradi","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8027","name":"Knezhevo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8028","name":"Koritna","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8029","name":"Koshka","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8030","name":"Kushevac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8031","name":"Ladimirevci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8032","name":"Laslovo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8033","name":"Lug","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8034","name":"Marijanci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8035","name":"Markovac Nashichki","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8036","name":"Martin","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8037","name":"Mece","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8038","name":"Moslavina Podravska","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8039","name":"Nashice","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8040","name":"Osijek","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8041","name":"Ovchara","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8042","name":"Petlovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8043","name":"Petrijevci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8044","name":"Pishkorevci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8045","name":"Podgorach","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8046","name":"Popvac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8047","name":"Rakitovica","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8048","name":"Sarvash","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8049","name":"Satnica Dhakovachka","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8050","name":"Selci Dhakovacki","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8051","name":"Semeljci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8052","name":"Shiroko Polje","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8053","name":"Strizivojna","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8054","name":"Sveti Dhuradh","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8055","name":"Tenja","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8056","name":"Valpovo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8057","name":"Velimirovac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8058","name":"Viljevo","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8059","name":"Vishkovci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8060","name":"Vishnjevac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8061","name":"Vladislavci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8062","name":"Vuka","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8063","name":"Vukojevci","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8064","name":"Zmajevac","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8065","name":"Zoljan","city_id":"862","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"is_activated":"1"}, +{"id":"8066","name":"Badljevina","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8067","name":"Brodski Drenovac","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8068","name":"Dervishaga","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8069","name":"Gradac","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8070","name":"Jakshic","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8071","name":"Kaptol","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8072","name":"Kutjevo","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8073","name":"Lipik","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8074","name":"Pakrac","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8075","name":"Pleternica","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8076","name":"Pozhega","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8077","name":"Prekopkra","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8078","name":"Trenkovo","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8079","name":"Velika","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8080","name":"Vidovci","city_id":"864","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8081","name":"Bilice","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8082","name":"Brodarica","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8083","name":"Drnish","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8084","name":"Dubrava kod Shibenika","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8085","name":"Grebashtica","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8086","name":"Jezera","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8087","name":"Kistanje","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8088","name":"Knin","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8089","name":"Kovachic","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8090","name":"Murter","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8091","name":"Pirovac","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8092","name":"Primoshten","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8093","name":"Rogoznica","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8094","name":"Shibenik","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8095","name":"Skradin","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8096","name":"Tisno","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8097","name":"Tribunj","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8098","name":"Vodice","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8099","name":"Vrpolje","city_id":"866","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8100","name":"Brestacha","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8101","name":"Brochice","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8102","name":"Budashevo","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8103","name":"Donja Grachenica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8104","name":"Dvor","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8105","name":"Glina","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8106","name":"Gornja Grachenica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8107","name":"Gornja Jelenska","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8108","name":"Greda","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8109","name":"Gvozd","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8110","name":"Hrastelnica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8111","name":"Hrvatska Dubica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8112","name":"Hrvatska Kostajnica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8113","name":"Husain","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8114","name":"Ilova","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8115","name":"Kutina","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8116","name":"Lekenik","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8117","name":"Lipovljani","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8118","name":"Moshchenica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8119","name":"Novska","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8120","name":"Odra Sisachka","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8121","name":"Osekovo","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8122","name":"Peshcenica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8123","name":"Petrinja","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8124","name":"Popovacha","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8125","name":"Potok","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8126","name":"Rajic","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8127","name":"Repushnica","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8128","name":"Sisak","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8129","name":"Staro Prachno","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8130","name":"Sunja","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8131","name":"Topolovac","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8132","name":"Voloder","city_id":"867","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8133","name":"Bashka Voda","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8134","name":"Brela","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8135","name":"Brnaze","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8136","name":"Cista Velika","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8137","name":"Donji Prolozhac","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8138","name":"Donji Vinjani","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8139","name":"Duce","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8140","name":"Dugi Rat","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8141","name":"Dugopolje","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8142","name":"Gala","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8143","name":"Glavice","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8144","name":"Glavina Donja","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8145","name":"Gornji Vincjani","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8146","name":"Grubine","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8147","name":"Hrvace","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8148","name":"Hvar","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8149","name":"Imotski","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8150","name":"Jelsa","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8151","name":"Jesenice","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8152","name":"Kamen","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8153","name":"Kashtel Gambelovac","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8154","name":"Kashtel Gomilica","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8155","name":"Kashtel Lukshic","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8156","name":"Kashtel Novi","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8157","name":"Kashtel Shtafilic","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8158","name":"Kashtel Stari","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8159","name":"Kashtel Sucurac","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8160","name":"Katuni","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8161","name":"Klis","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8162","name":"Komizha","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8163","name":"Koshute","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8164","name":"Lovrec","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8165","name":"Makarska","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8166","name":"Marina","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8167","name":"Mastrinka","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8168","name":"Milna","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8169","name":"Mravince","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8170","name":"Neoric","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8171","name":"Obrovac Sinjski","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8172","name":"Okrug Gornji","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8173","name":"Omish","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8174","name":"Otok","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8175","name":"Podgora","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8176","name":"Podstrana","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8177","name":"Poljica","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8178","name":"Postira","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8179","name":"Postranje","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8180","name":"Potravlje","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8181","name":"Primorski Dolac","city_id":"869","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"is_activated":"1"}, +{"id":"8182","name":"Puchishca","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8183","name":"Ruda","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8184","name":"Runovic","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8185","name":"Seget Donji","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8186","name":"Seget Vranjica","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8187","name":"Selca","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8188","name":"Sinj","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8189","name":"Slatine","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8190","name":"Solin","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8191","name":"Split","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8192","name":"Srinjine","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8193","name":"Stari Grad","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8194","name":"Stobrech","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8195","name":"Supetar","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8196","name":"Trilj","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8197","name":"Trogir","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8198","name":"Tuchepi","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8199","name":"Turjaci","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8200","name":"Vinishce","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8201","name":"Vis","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8202","name":"Vranjic","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8203","name":"Vrgorac","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8204","name":"Vrlika","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8205","name":"Zagvozd","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8206","name":"Zhrnovnica","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8207","name":"Zmijavci","city_id":"869","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8208","name":"Bedenec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8209","name":"Beletinec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8210","name":"Beretinec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8211","name":"Breznica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8212","name":"Chreshnjevo","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8213","name":"Donja Voca","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8214","name":"Donje Ladanje","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8215","name":"Gornje Ladanje","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8216","name":"Gornje Vratno","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8217","name":"Gornji Kneginec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8218","name":"Gornji Kucan","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8219","name":"Hrashcica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8220","name":"Hrastovsko","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8221","name":"Hrzhenica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8222","name":"Ivanec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8223","name":"Jalkovec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8224","name":"Jalzhabet","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8225","name":"Jerovec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8226","name":"Klenovnik","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8227","name":"Kljuch","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8228","name":"Kucan Marof","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8229","name":"Lepoglava","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8230","name":"Ljubeshcica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8231","name":"Ludbreg","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8232","name":"Madzharevo","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8233","name":"Mali Bukovec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8234","name":"Nedeljanec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8235","name":"Nova Ves Petrijanec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8236","name":"Novi Marof","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8237","name":"Petrijanec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8238","name":"Podevchevo","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8239","name":"Presechno","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8240","name":"Remetinec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8241","name":"Selnik","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8242","name":"Shemovec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8243","name":"Srachinec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8244","name":"Sveti Petar","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8245","name":"Svibovec Podravski","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8246","name":"Turchin","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8247","name":"Tuzhno","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8248","name":"Varazhdin","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8249","name":"Varazhdin Breg","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8250","name":"Varazhdinske Toplice","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8251","name":"Vidovec","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8252","name":"Vinica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8253","name":"Zavrshje Podbelsko","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8254","name":"Zharovnica","city_id":"870","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8255","name":"Borova","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8256","name":"Busetina","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8257","name":"Cabuna","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8258","name":"Chachinci","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8259","name":"Gradina","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8260","name":"Korija","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8261","name":"Mikleush","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8262","name":"Milanovac","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8263","name":"Nova Bukovica","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8264","name":"Orahovica","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8265","name":"Pitomacha","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8266","name":"Podgorje","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8267","name":"Rezovac","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8268","name":"Shpishic Bukovica","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8269","name":"Slatina","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8270","name":"Suhopolje","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8271","name":"Turanovac","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8272","name":"Virovitica","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8273","name":"Vocin","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8274","name":"Zdenci","city_id":"871","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8275","name":"Andrijashevci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8276","name":"Antin","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8277","name":"Babina Greda","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8278","name":"Bapska","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8279","name":"Bobota","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8280","name":"Bogdanovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8281","name":"Boshnjaci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8282","name":"Brshadin","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8283","name":"Ceric","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8284","name":"Cerna","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8285","name":"Drenovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8286","name":"Gradishte","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8287","name":"Gunja","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8288","name":"Ilacha","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8289","name":"Ilok","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8290","name":"Ivankovo","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8291","name":"Jarmina","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8292","name":"Komletinci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8293","name":"Lipovac","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8294","name":"Lovas","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8295","name":"Markushica","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8296","name":"Mirkovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8297","name":"Negoslavci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8298","name":"Nijemci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8299","name":"Novi Jankovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8300","name":"Nushtar","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8301","name":"Petrovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8302","name":"Posavski Podgajci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8303","name":"Privlaka","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8304","name":"Rachinovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8305","name":"Rajevo Selo","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8306","name":"Retkovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8307","name":"Rokovci","city_id":"872","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"is_activated":"1"}, +{"id":"8308","name":"Sharengrad","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8309","name":"Shishkovci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8310","name":"Shtitar","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8311","name":"Slakovci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8312","name":"Soljani","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8313","name":"Sotin","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8314","name":"Stari Jankovci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8315","name":"Stari Mikanovci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8316","name":"Tordinci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8317","name":"Tovarnik","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8318","name":"Trpinja","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8319","name":"Vinkovci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8320","name":"Vodhinci","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8321","name":"Vrbanja","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8322","name":"Vukovar","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8323","name":"Zhupanja","city_id":"872","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8324","name":"Benkovac","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8325","name":"Bibinje","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8326","name":"Biograd na Moru","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8327","name":"Debeljak","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8328","name":"Galovac","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8329","name":"Gorica","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8330","name":"Gornji Karin","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8331","name":"Grachac","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8332","name":"Jasenice","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8333","name":"Kali","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8334","name":"Krushevo","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8335","name":"Nin","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8336","name":"Obrovac","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8337","name":"Pag","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8338","name":"Pakoshtane","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8339","name":"Polacha","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8340","name":"Polichnik","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8341","name":"Posedarje","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8342","name":"Preko","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8343","name":"Pridraga","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8344","name":"Razhanac","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8345","name":"Shkabrnja","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8346","name":"Slivnica","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8347","name":"Sukoshan","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8348","name":"Sveti Filip i Jakov","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8349","name":"Turanj","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8350","name":"Ugljan","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8351","name":"Vir","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8352","name":"Vrsi","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8353","name":"Zadar","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8354","name":"Zemunik Donji","city_id":"873","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8355","name":"Bestovje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8356","name":"Bishkupec Zelinski","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8357","name":"Brckovljani","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8358","name":"Brdovec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8359","name":"Bregana","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8360","name":"Brezje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8361","name":"Bushevec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8362","name":"Celine","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8363","name":"Domaslovec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8364","name":"Donja Bistra","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8365","name":"Donja Kupchina","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8366","name":"Donja Lomnica","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8367","name":"Donja Zdenchina","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8368","name":"Donji Desinec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8369","name":"Donji Stupnik","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8370","name":"Dubrava","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8371","name":"Dugo Selo","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8372","name":"Gornja Bistra","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8373","name":"Gornji Laduch","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8374","name":"Gornji Stupnik","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8375","name":"Grachec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8376","name":"Gradici","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8377","name":"Ivan Bistranski","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8378","name":"Ivanic-Grad","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8379","name":"Jablanovec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8380","name":"Jakovlje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8381","name":"Jastrebarsko","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8382","name":"Kerestinec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8383","name":"Klincha Sela","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8384","name":"Kloshtar Ivanic","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8385","name":"Kozinshchak","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8386","name":"Krizh","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8387","name":"Kupinec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8388","name":"Lonjica","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8389","name":"Luka","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8390","name":"Lukarishce","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8391","name":"Lukavec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8392","name":"Lupoglav","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8393","name":"Michevec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8394","name":"Mraclin","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8395","name":"Novaki","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8396","name":"Novo Chiche","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8397","name":"Novoselec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8398","name":"Oborovo Bistranski","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8399","name":"Oreshje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8400","name":"Pojatno","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8401","name":"Poljanica Bistranska","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8402","name":"Prigorje Brdovechko","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8403","name":"Rakitje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8404","name":"Rakov Potok","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8405","name":"Rude","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8406","name":"Samobor","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8407","name":"Strmec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8408","name":"Sveta Nedelja","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8409","name":"Sveti Ivan Zelina","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8410","name":"Turopolje","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8411","name":"Velika Gorica","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8412","name":"Velika Mlaka","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8413","name":"Velika Ostrna","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8414","name":"Vrbovec","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8415","name":"Vukovina","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8416","name":"Zapreshic","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8417","name":"Zdenci Brdovechki","city_id":"874","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8418","name":"Camaguey","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8419","name":"Caney","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8420","name":"Carlos Manuel de Cespedes","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8421","name":"Esmeralda","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8422","name":"Guaimaro","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8423","name":"Minas","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8424","name":"Nuevitas","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8425","name":"Santa Cruz del Sur","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8426","name":"Sibanicu","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8427","name":"Vertientes","city_id":"875","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"is_activated":"1"}, +{"id":"8428","name":"Cienfuegos","city_id":"877","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8429","name":"Cruces","city_id":"877","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8430","name":"Cumanayagua","city_id":"877","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8431","name":"Rodas","city_id":"877","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8432","name":"Bayamo","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8433","name":"Campechuela","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8434","name":"Guisa","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8435","name":"Jiguani","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8436","name":"Media Luna","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8437","name":"Niquero","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8438","name":"Pilon","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8439","name":"Rio Cauto","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8440","name":"Yara","city_id":"879","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8441","name":"Baracoa","city_id":"880","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8442","name":"Guantanamo","city_id":"880","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8443","name":"Yateras","city_id":"880","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8444","name":"Havana","city_id":"881","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8445","name":"Antilla","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8446","name":"Baguanos","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8447","name":"Banes","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8448","name":"Cacocum","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8449","name":"Cauto Cristo","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8450","name":"Cueto","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8451","name":"Gibara","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8452","name":"Holguin","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8453","name":"Jobabo","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8454","name":"Moa","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8455","name":"Sagua de Tanamo","city_id":"882","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8456","name":"Abreus","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8457","name":"Agramonte","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8458","name":"Aguacate","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8459","name":"Aguada de Pasajeros","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8460","name":"Alacranes","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8461","name":"Bolondron","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8462","name":"Calimete","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8463","name":"Cardenas","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8464","name":"Carlos Rojas","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8465","name":"Corralillo","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8466","name":"Jaguey Grande","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8467","name":"Jovellanos","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8468","name":"Juan Gualberto Gomez","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8469","name":"Los Arabos","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8470","name":"Manguito","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8471","name":"Marti","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8472","name":"Matanzas","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8473","name":"Maximo Gomez","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8474","name":"Pedro Betancourt","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8475","name":"Perico","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8476","name":"Union de Reyes","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8477","name":"Varadero","city_id":"886","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8478","name":"Limassol","city_id":"892","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8479","name":"Paphos","city_id":"894","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"is_activated":"1"}, +{"id":"8480","name":"Frycovice","city_id":"897","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8481","name":"Bechyne","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8482","name":"Blatna","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8483","name":"Cheske Budejovice","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8484","name":"Chesky Krumlov","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8485","name":"Dachice","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8486","name":"Jindrichuv Hradec","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8487","name":"Kaplice","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8488","name":"Milevsko","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8489","name":"Pisek","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8490","name":"Prachatice","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8491","name":"Protivin","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8492","name":"Sezimovo Usti","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8493","name":"Sobeslav","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8494","name":"Strakonice","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8495","name":"Tabor","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8496","name":"Trebon","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8497","name":"Tyn nad Vltavou","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8498","name":"Veseli nad Luzhnici","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8499","name":"Vimperk","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8500","name":"Vodnany","city_id":"899","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8501","name":"Adamov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8502","name":"Blansko","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8503","name":"Boskovice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8504","name":"Breclav","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8505","name":"Brno","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8506","name":"Buchovice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8507","name":"Dubnany","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8508","name":"Hodonin","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8509","name":"Hrusky","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8510","name":"Hustopeche","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8511","name":"Ivanchice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8512","name":"Kurim","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8513","name":"Kyjov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8514","name":"Letovice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8515","name":"Mikulov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8516","name":"Moravsky Krumlov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8517","name":"Namesht nad Oslavou","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8518","name":"Rosice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8519","name":"Shlapanice","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8520","name":"Slavkov u Brna","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8521","name":"Tishnov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8522","name":"Vyshkov","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8523","name":"Znojmo","city_id":"900","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8524","name":"Ash","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8525","name":"Bozicany","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8526","name":"Cheb","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8527","name":"Chodov","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8528","name":"Frantishkovy Lazne","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8529","name":"Horni Slavkov","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8530","name":"Karlovy Vary","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8531","name":"Kraslice","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8532","name":"Kynshperk nad Ohri","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8533","name":"Marianske Lazne","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8534","name":"Nejdek","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8535","name":"Ostrov","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8536","name":"Sokolov","city_id":"901","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8537","name":"Klecany","city_id":"902","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8538","name":"Broumov","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8539","name":"Cherveny Kostelec","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8540","name":"Cheska Skalice","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8541","name":"Chlumec nad Cidlinou","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8542","name":"Dobrushka","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8543","name":"Dvur Kralove","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8544","name":"Habartov","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8545","name":"Holice","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8546","name":"Horice","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8547","name":"Hostinne","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8548","name":"Hradec Kralove","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8549","name":"Hronov","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8550","name":"Jaromer","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8551","name":"Jichin","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8552","name":"Kostelec nad Orlici","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8553","name":"Nachod","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8554","name":"Nova Paka","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8555","name":"Nove Mesto nad Metuji","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8556","name":"Novy Bydzhov","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8557","name":"Rychnov nad Knezhnou","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8558","name":"Trebechovice pod Orebem","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8559","name":"Trutnov","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8560","name":"Tynishte nad Orlici","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8561","name":"Upice","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8562","name":"Vrchlabi","city_id":"903","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8563","name":"Ceska Lipa","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8564","name":"Cheska Kamenice","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8565","name":"Cheska Lipa","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8566","name":"Chrastava","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8567","name":"Doksy","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8568","name":"Frydlant","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8569","name":"Hradek","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8570","name":"Jablonec","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8571","name":"Jilemnice","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8572","name":"Liberec","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8573","name":"Lomnice nad Popelkou","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8574","name":"Mimon","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8575","name":"Novy Bor","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8576","name":"Semily","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8577","name":"Tanvald","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8578","name":"Turnov","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8579","name":"Zhelezny Brod","city_id":"904","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8580","name":"Lipov","city_id":"905","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"is_activated":"1"}, +{"id":"8581","name":"Bilovec","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8582","name":"Bohumin","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8583","name":"Bruntal","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8584","name":"Chesky Teshin","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8585","name":"Frenshtat","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8586","name":"Frydek-Mistek","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8587","name":"Frydlant nad Ostravici","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8588","name":"Fulnek","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8589","name":"Havirov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8590","name":"Hluchin","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8591","name":"Hradec nad Moravice","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8592","name":"Jablunkov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8593","name":"Karvina","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8594","name":"Koprivnice","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8595","name":"Kravare","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8596","name":"Krnov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8597","name":"Novy Jichin","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8598","name":"Odry","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8599","name":"Opava","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8600","name":"Orlova","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8601","name":"Ostrava","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8602","name":"Petrvald","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8603","name":"Pribor","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8604","name":"Rychvald","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8605","name":"Rymarov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8606","name":"Shenov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8607","name":"Studenka","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8608","name":"Trinec","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8609","name":"Vitkov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8610","name":"Vratimov","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8611","name":"Vrbno pod Pradedem","city_id":"906","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8612","name":"Hranice","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8613","name":"Jesenik","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8614","name":"Kojetin","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8615","name":"Lipnik nad Becvou","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8616","name":"Litovel","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8617","name":"Mohelnice","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8618","name":"Olomouc","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8619","name":"Prerov","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8620","name":"Prostejov","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8621","name":"Shternberk","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8622","name":"Shumperk","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8623","name":"Unichov","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8624","name":"Zabreh","city_id":"907","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8625","name":"Cheska Trebova","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8626","name":"Chocen","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8627","name":"Chrudim","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8628","name":"Chvaletice","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8629","name":"Hermanuv Mestec","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8630","name":"Hlinsko","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8631","name":"Lanshkroun","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8632","name":"Letohrad","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8633","name":"Litomyshl","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8634","name":"Moravska Trebova","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8635","name":"Pardubice","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8636","name":"Polichka","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8637","name":"Policka","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8638","name":"Prelouch","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8639","name":"Skutech","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8640","name":"Svitavy","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8641","name":"Usti nad Orlici","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8642","name":"Vysoke Myto","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8643","name":"Zhamberk","city_id":"909","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8644","name":"Dobrany","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8645","name":"Domazhlice","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8646","name":"Horazhd ovice","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8647","name":"Horshovky Tyn","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8648","name":"Kdyne","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8649","name":"Klatovy","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8650","name":"Nyrany","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8651","name":"Nyrsko","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8652","name":"Plana","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8653","name":"Plzen","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8654","name":"Preshtice","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8655","name":"Radnice","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8656","name":"Rokycany","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8657","name":"Stribro","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8658","name":"Sushice","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8659","name":"Tachov","city_id":"910","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8660","name":"Prague","city_id":"911","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8661","name":"Praha","city_id":"911","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8662","name":"Rajhrad","city_id":"912","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8663","name":"Smirice","city_id":"913","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8664","name":"Benatky nad Jizerou","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8665","name":"Beneshov","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8666","name":"Beroun","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8667","name":"Brandys nad Labem-Stara Bolesl","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8668","name":"Chaslav","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8669","name":"Chavaletice","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8670","name":"Chelakovice","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8671","name":"Chesky Brod","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8672","name":"Dobrish","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8673","name":"Horovice","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8674","name":"Kladno","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8675","name":"Kolin","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8676","name":"Kralupy nad Vltavou","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8677","name":"Kutna Hora","city_id":"916","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"is_activated":"1"}, +{"id":"8678","name":"Lysa nad Labem","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8679","name":"Mlada Boleslav","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8680","name":"Mnichovo Hradishte","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8681","name":"Neratovice","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8682","name":"Nove Strasheci","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8683","name":"Nymburk","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8684","name":"Podebrady","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8685","name":"Pribram","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8686","name":"Rakovnik","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8687","name":"Richany","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8688","name":"Rousinov","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8689","name":"Roztoky","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8690","name":"Sedlcany","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8691","name":"Slany","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8692","name":"Stochov","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8693","name":"Vlashim","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8694","name":"Zruch nad Sazavou","city_id":"916","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8695","name":"Unicov","city_id":"917","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8696","name":"Bilina","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8697","name":"Chomutov","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8698","name":"Dechin","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8699","name":"Dubi","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8700","name":"Duchcov","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8701","name":"Jilove","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8702","name":"Jirkov","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8703","name":"Kadan","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8704","name":"Klasterec nad Ohri","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8705","name":"Krupka","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8706","name":"Litomerice","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8707","name":"Litvinov","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8708","name":"Louny","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8709","name":"Lovosice","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8710","name":"Mezibori","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8711","name":"Most","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8712","name":"Osek","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8713","name":"Podborany","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8714","name":"Roudnice","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8715","name":"Rumburk","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8716","name":"Shluknov","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8717","name":"Shteti","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8718","name":"Teplice","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8719","name":"Usti","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8720","name":"Varnsdorf","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8721","name":"Zatec","city_id":"918","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8722","name":"Valletta","city_id":"919","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8723","name":"Velesin","city_id":"920","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8724","name":"Bystrice nad Pernshtejnem","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8725","name":"Chotebor","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8726","name":"Havlichkuv Brod","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8727","name":"Humpolec","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8728","name":"Jihlava","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8729","name":"Ledech","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8730","name":"Moravske Budejovice","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8731","name":"Nove Mesto na Morave","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8732","name":"Okrisky","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8733","name":"Pacov","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8734","name":"Pelhrimov","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8735","name":"Polna","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8736","name":"Svetla nad Sazavou","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8737","name":"Telch","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8738","name":"Trebich","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8739","name":"Tresht ","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8740","name":"Velke Mezirichi","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8741","name":"Zhd ar","city_id":"921","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8742","name":"Brumov","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8743","name":"Bystrice pod Hostynem","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8744","name":"Chropyne","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8745","name":"Holeshov","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8746","name":"Hulin","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8747","name":"Kromerizh","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8748","name":"Kunovice","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8749","name":"Napajedla","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8750","name":"Otrokovice","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8751","name":"Rozhnov","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8752","name":"Roznov pod Radhostem","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8753","name":"Slavicin","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8754","name":"Slusovice","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8755","name":"Stare Mesto","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8756","name":"Strazhnice","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8757","name":"Uherske Hradishte","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8758","name":"Uhersky Brod","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8759","name":"Valashske Klobouky","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8760","name":"Valashske Mezirichi","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8761","name":"Veseli nad Moravou","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8762","name":"Vsetin","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8763","name":"Zborovice","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8764","name":"Zlin","city_id":"922","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8765","name":"Aarhus","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8766","name":"Allingabro","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8767","name":"Arhus","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8768","name":"Assentoft","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8769","name":"Auning","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8770","name":"Beder","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8771","name":"Brabrand","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8772","name":"Ebeltoft","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8773","name":"Framlev","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8774","name":"Galten","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8775","name":"Grenaa","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8776","name":"Hadsten","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8777","name":"Hammel","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8778","name":"Hinnerup","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8779","name":"Hjortshoj","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8780","name":"Horning","city_id":"923","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"is_activated":"1"}, +{"id":"8781","name":"Hornslet","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8782","name":"Kolt","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8783","name":"Langa","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8784","name":"Logten","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8785","name":"Lystrup","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8786","name":"Malling","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8787","name":"Mariager","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8788","name":"Marslet","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8789","name":"Odder","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8790","name":"Randers","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8791","name":"Risskov","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8792","name":"Ronde","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8793","name":"Ry","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8794","name":"Ryomgard","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8795","name":"Sabro","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8796","name":"Silkeborg","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8797","name":"Skanderborg","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8798","name":"Skovby","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8799","name":"Soften","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8800","name":"Solbjerg","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8801","name":"Spentrup","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8802","name":"Stavtrup","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8803","name":"Stilling","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8804","name":"Svejbak","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8805","name":"Tranbjerg","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8806","name":"Trige","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8807","name":"Virklund","city_id":"923","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8808","name":"Aakirkeby","city_id":"924","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8809","name":"Allinge-Sandvig","city_id":"924","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8810","name":"Nexo","city_id":"924","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8811","name":"Ronne","city_id":"924","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8812","name":"Allerod","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8813","name":"Birkerod","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8814","name":"Blovstrod","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8815","name":"Espergarde","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8816","name":"Farum","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8817","name":"Fredensborg","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8818","name":"Frederikssund","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8819","name":"Frederiksvark","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8820","name":"Ganlose","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8821","name":"Gilleleje","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8822","name":"Grasted","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8823","name":"Hellebak","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8824","name":"Helsinge","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8825","name":"Helsingor","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8826","name":"Hillerod","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8827","name":"Hornbak","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8828","name":"Horsholm","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8829","name":"Humlebak","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8830","name":"Hundested","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8831","name":"Jagerspris","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8832","name":"Kvistgaard","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8833","name":"Lillerod","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8834","name":"Liseleje","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8835","name":"Lynge","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8836","name":"Niva","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8837","name":"Nodebo","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8838","name":"Olstykke","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8839","name":"Skibby","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8840","name":"Slangerup","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8841","name":"Stavnsholt","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8842","name":"Stenlose","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8843","name":"Valby","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8844","name":"Vekso","city_id":"925","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8845","name":"Aarup","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8846","name":"Arslev","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8847","name":"Assens","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8848","name":"Bellinge","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8849","name":"Blommenslyst","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8850","name":"Bogense","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8851","name":"Brenderup","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8852","name":"Broby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8853","name":"Bullerup","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8854","name":"Ejby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8855","name":"Faaborg","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8856","name":"Glamsbjerg","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8857","name":"Haarby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8858","name":"Hojby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8859","name":"Kerteminde","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8860","name":"Langeskov","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8861","name":"Marstal","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8862","name":"Middelfart","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8863","name":"Munkebo","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8864","name":"Neder Holluf","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8865","name":"Norre Aaby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8866","name":"Nyborg","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8867","name":"Odense","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8868","name":"Otterup","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8869","name":"Ringe","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8870","name":"Rudkobing","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8871","name":"Sankt Klemens","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8872","name":"Seden","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8873","name":"Sonderso","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8874","name":"Stige","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8875","name":"Strib","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8876","name":"Svendborg","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8877","name":"Thuro","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8878","name":"Tommerup","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8879","name":"Ullerslev","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8880","name":"Vindeby","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8881","name":"Vissenbjerg","city_id":"926","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8882","name":"Ballerup","city_id":"927","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8883","name":"Brondby","city_id":"927","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8884","name":"Vallensbaek","city_id":"927","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8885","name":"Dragor","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8886","name":"Flong","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8887","name":"Gentofte","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8888","name":"Glostrup","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8889","name":"Herlev","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8890","name":"Hvidovre","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8891","name":"Ishoj","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8892","name":"Kastrup","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8893","name":"Lyngby","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8894","name":"Malov","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8895","name":"Smorumnedre","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8896","name":"Taastrup","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8897","name":"Trorod","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8898","name":"Vanlose","city_id":"928","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"is_activated":"1"}, +{"id":"8899","name":"Varlose","city_id":"928","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8900","name":"Aabybro","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8901","name":"Aalborg","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8902","name":"Aars","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8903","name":"Arden","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8904","name":"Bindslev","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8905","name":"Bronderslev","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8906","name":"Brovst","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8907","name":"Dronninglund","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8908","name":"Farso","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8909","name":"Fjerritslev","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8910","name":"Frederikshavn","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8911","name":"Frejlev","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8912","name":"Gistrup","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8913","name":"Gorlose","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8914","name":"Hadsund","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8915","name":"Hals","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8916","name":"Hirtshals","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8917","name":"Hjallerup","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8918","name":"Hjorring","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8919","name":"Hobro","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8920","name":"Kas","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8921","name":"Klarup","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8922","name":"Logstor","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8923","name":"Nibe","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8924","name":"Norresundby","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8925","name":"Nørresundby","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8926","name":"Pandrup","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8927","name":"Saby","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8928","name":"Sindal","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8929","name":"Skagen","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8930","name":"Skorping","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8931","name":"Storvorde","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8932","name":"Stovring","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8933","name":"Strandby","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8934","name":"Sulsted","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8935","name":"Svenstrup","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8936","name":"Tars","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8937","name":"Tranekaer","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8938","name":"Vadum","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8939","name":"Vestbjerg","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8940","name":"Vester Hassing","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8941","name":"Vodskov","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8942","name":"Vra","city_id":"931","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8943","name":"Ansager","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8944","name":"Billund","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8945","name":"Bramming","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8946","name":"Brorup","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8947","name":"Esbjerg","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8948","name":"Grindsted","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8949","name":"Holsted","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8950","name":"Nordby","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8951","name":"Oksbol","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8952","name":"Olgod","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8953","name":"Ribe","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8954","name":"Tjareborg","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8955","name":"Varde","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8956","name":"Vejen","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8957","name":"Vorbasse","city_id":"932","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8958","name":"Aulum","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8959","name":"Bording","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8960","name":"Brande","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8961","name":"Gjellerup Kirkeby","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8962","name":"Hammerum","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8963","name":"Harboore","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8964","name":"Herning","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8965","name":"Holstebro","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8966","name":"Hvide Sande","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8967","name":"Ikast","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8968","name":"Kibak","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8969","name":"Lemvig","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8970","name":"Lind","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8971","name":"Ringkobing","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8972","name":"Skaerbaek","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8973","name":"Skjern","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8974","name":"Snejbjerg","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8975","name":"Struer","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8976","name":"Sunds","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8977","name":"Tarm","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8978","name":"Thyboron","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8979","name":"Ulfborg","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8980","name":"Videbak","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8981","name":"Vildbjerg","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8982","name":"Vinderup","city_id":"933","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8983","name":"Roervig","city_id":"934","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8984","name":"Bjaverskov","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8985","name":"Borup","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8986","name":"Greve Strand","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8987","name":"Gundsomagle","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8988","name":"Harlev","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8989","name":"Havdrup","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8990","name":"Hvalso","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8991","name":"Jyllinge","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8992","name":"Koge","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8993","name":"Lejre","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8994","name":"Osted","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8995","name":"Roskilde","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8996","name":"Solrod","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8997","name":"Stroby Egede","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8998","name":"Svogerslev","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"8999","name":"Tune","city_id":"935","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"is_activated":"1"}, +{"id":"9000","name":"Viby","city_id":"935","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9001","name":"Vindinge","city_id":"935","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9002","name":"Glyngore","city_id":"936","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9003","name":"Karise","city_id":"937","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9004","name":"Naestved","city_id":"937","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9005","name":"Soeborg","city_id":"938","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9006","name":"Aabenraa","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9007","name":"Aarsleve","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9008","name":"Augustenborg","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9009","name":"Broager","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9010","name":"Christiansfeld","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9011","name":"Dybbol","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9012","name":"Gram","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9013","name":"Grasten","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9014","name":"Guderup","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9015","name":"Haderslev","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9016","name":"Horuphav","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9017","name":"Krusa","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9018","name":"Logumkloster","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9019","name":"Lojt Kirkeby","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9020","name":"Nordborg","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9021","name":"Padborg","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9022","name":"Rodding","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9023","name":"Rodekro","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9024","name":"Skarbak","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9025","name":"Sonderborg","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9026","name":"Starup","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9027","name":"Tinglev","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9028","name":"Toftlund","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9029","name":"Tonder","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9030","name":"Vojens","city_id":"939","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9031","name":"Fakse","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9032","name":"Fakse Ladeplads","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9033","name":"Fensmark","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9034","name":"Holeby","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9035","name":"Maribo","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9036","name":"Nakskov","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9037","name":"Nastved","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9038","name":"Neder Vindinge","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9039","name":"Norre Alslev","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9040","name":"Nykobing","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9041","name":"Nyrad","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9042","name":"Orslev","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9043","name":"Prasto","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9044","name":"Rodby","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9045","name":"Rodbyhavn","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9046","name":"Ronnede","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9047","name":"Sakskobing","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9048","name":"Stege","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9049","name":"Store Heddinge","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9050","name":"Stubbekobing","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9051","name":"Sundby","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9052","name":"Vordingborg","city_id":"940","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9053","name":"Bylderup-Bov","city_id":"941","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9054","name":"Fovling","city_id":"941","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9055","name":"Toelloese","city_id":"942","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9056","name":"Borkop","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9057","name":"Bradstrup","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9058","name":"Brejning","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9059","name":"Egtved","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9060","name":"Fredericia","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9061","name":"Give","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9062","name":"Hedensted","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9063","name":"Horsens","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9064","name":"Jelling","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9065","name":"Juelsminde","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9066","name":"Kolding","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9067","name":"Lunderskov","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9068","name":"Snoghoj","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9069","name":"Sonder Bjert","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9070","name":"Taulov","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9071","name":"Torring","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9072","name":"Vamdrup","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9073","name":"Vejle","city_id":"943","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9074","name":"Asnas","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9075","name":"Dianalund","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9076","name":"Forlev","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9077","name":"Frederiksberg","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9078","name":"Fuglebjerg","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9079","name":"Gorlev","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9080","name":"Haslev","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9081","name":"Holbaek","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9082","name":"Hong","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9083","name":"Horve","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9084","name":"Jyderup","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9085","name":"Kalundborg","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9086","name":"Korsor","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9087","name":"Ringsted","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9088","name":"Skalskor","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9089","name":"Slagelse","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9090","name":"Soro","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9091","name":"Svebolle","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9092","name":"Svinninge","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9093","name":"Tollose","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9094","name":"Vipperod","city_id":"944","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9095","name":"Aalestrup","city_id":"945","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9096","name":"Bjerringbro","city_id":"945","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9097","name":"Hanstholm","city_id":"945","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9098","name":"Hojslev","city_id":"945","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"is_activated":"1"}, +{"id":"9099","name":"Hurup","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9100","name":"Karup","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9101","name":"Kjellerup","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9102","name":"Skive","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9103","name":"Stoholm","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9104","name":"Thisted","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9105","name":"Ulstrup","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9106","name":"Viborg","city_id":"945","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9107","name":"Dikhil","city_id":"947","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9108","name":"Jibuti","city_id":"948","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9109","name":"Tajurah","city_id":"949","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9110","name":"Ubuk","city_id":"950","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9111","name":"Azua","city_id":"955","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9112","name":"Sabana Yegua","city_id":"955","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9113","name":"Neyba","city_id":"956","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9114","name":"Tamayo","city_id":"956","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9115","name":"Barahona","city_id":"957","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9116","name":"Cabral","city_id":"957","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9117","name":"Dajabon","city_id":"958","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9118","name":"Las Guaranas","city_id":"960","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9119","name":"Pimentel","city_id":"960","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9120","name":"San Francisco de Macoris","city_id":"960","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9121","name":"Moca","city_id":"963","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9122","name":"Duverge","city_id":"965","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9123","name":"Jimani","city_id":"965","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"is_activated":"1"}, +{"id":"9124","name":"Pedernales","city_id":"973","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9125","name":"Bani","city_id":"974","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9126","name":"Ocoa","city_id":"974","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9127","name":"Salcedo","city_id":"976","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9128","name":"Sanchez","city_id":"977","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9129","name":"Villa Bisono","city_id":"981","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9130","name":"Esperanza","city_id":"983","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9131","name":"Cuenca","city_id":"984","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9132","name":"Gualaceo","city_id":"984","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9133","name":"Azogues","city_id":"985","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9134","name":"Canar","city_id":"985","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9135","name":"La Troncal","city_id":"985","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9136","name":"El Angel","city_id":"986","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9137","name":"San Gabriel","city_id":"986","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9138","name":"Tulcan","city_id":"986","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9139","name":"Alausi","city_id":"987","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9140","name":"Guano","city_id":"987","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9141","name":"Riobamba","city_id":"987","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9142","name":"La Mana","city_id":"988","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9143","name":"Latacunga","city_id":"988","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9144","name":"Pujili","city_id":"988","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9145","name":"Saquisili","city_id":"988","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9146","name":"Esmeraldas","city_id":"990","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9147","name":"Muisne","city_id":"990","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9148","name":"Rosa Zarate","city_id":"990","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9149","name":"Valdez","city_id":"990","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"is_activated":"1"}, +{"id":"9150","name":"Puerto Ayora","city_id":"991","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9151","name":"Puerto Baquerizo Moreno","city_id":"991","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9152","name":"Alfredo Baquerizo Moreno","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9153","name":"Balao","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9154","name":"Balzar","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9155","name":"Colimes","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9156","name":"Coronel Mariduena","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9157","name":"Daule","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9158","name":"El Salitre","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9159","name":"El Triunfo","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9160","name":"Eloy Alfaro","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9161","name":"Guayaquil","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9162","name":"La Libertad","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9163","name":"Lomas de Sargentillo","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9164","name":"Mapasingue","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9165","name":"Milagro","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9166","name":"Naranjal","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9167","name":"Naranjito","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9168","name":"Pedro Carbo","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9169","name":"Playas","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9170","name":"Salinas","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9171","name":"Samborondon","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9172","name":"Santa Elena","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9173","name":"Velasco Ibarra","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9174","name":"Yaguachi","city_id":"992","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9175","name":"Atuntaqui","city_id":"993","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9176","name":"Cotacachi","city_id":"993","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9177","name":"Ibarra","city_id":"993","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9178","name":"Otavalo","city_id":"993","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9179","name":"Pimampiro","city_id":"993","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9180","name":"Alamor","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9181","name":"Cariamanga","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9182","name":"Catacocha","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9183","name":"Catamayo","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9184","name":"Celica","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9185","name":"Loja","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9186","name":"Macara","city_id":"994","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9187","name":"Bahia de Caraquez","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9188","name":"Calceta","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9189","name":"Chone","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9190","name":"Jipijapa","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9191","name":"Montecristi","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9192","name":"Pajan","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9193","name":"Portoviejo","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9194","name":"Rocafuerte","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9195","name":"Tosagua","city_id":"996","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9196","name":"Archidona","city_id":"998","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9197","name":"Orellana","city_id":"999","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9198","name":"Puyo","city_id":"1000","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9199","name":"Cayambe","city_id":"1001","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9200","name":"Machachi","city_id":"1001","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9201","name":"Quito","city_id":"1001","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9202","name":"Sangolqui","city_id":"1001","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9203","name":"Nueva Loja","city_id":"1002","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9204","name":"Shushufindi","city_id":"1002","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9205","name":"Ambato","city_id":"1003","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9206","name":"Banos","city_id":"1003","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9207","name":"Pelileo","city_id":"1003","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9208","name":"Pillaro","city_id":"1003","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9209","name":"Aswan","city_id":"1005","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9210","name":"Daraw","city_id":"1005","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9211","name":"Kawm Umbu","city_id":"1005","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9212","name":"an-Nasir","city_id":"1005","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9213","name":"Abnub","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9214","name":"Abu Tij","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9215","name":"Asyut","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9216","name":"Bani Muhammadiyat","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9217","name":"Dayrut","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9218","name":"Dayrut-ash-Sharif","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9219","name":"Manfalut","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9220","name":"Musha","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9221","name":"Sahil Salim","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9222","name":"Sanabu","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9223","name":"Umm-al-Qusur","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9224","name":"al-Badari","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9225","name":"al-Qusiyah","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9226","name":"an-Nukhaylah","city_id":"1006","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"is_activated":"1"}, +{"id":"9227","name":"6th of October City","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9228","name":"Ataba","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9229","name":"Cairo","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9230","name":"Nasr","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9231","name":"Nasr City","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9232","name":"Obour City","city_id":"1009","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9233","name":" Izbat-al-Burj","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9234","name":"Damietta","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9235","name":"Dumyat","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9236","name":"El-Zarka","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9237","name":"Faraskur","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9238","name":"Kafr Sa d","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9239","name":"Kafr-al-Battikh","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9240","name":"az-Zarqa","city_id":"1010","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9241","name":"Biyala","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9242","name":"Disuq","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9243","name":"Fuwah","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9244","name":"Kafr-al-Jara idah","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9245","name":"Kafr-ash-Shaykh","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9246","name":"Mutubis","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9247","name":"Qallin","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9248","name":"Sidi Salim","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9249","name":"al-Burj","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9250","name":"al-Burullus","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9251","name":"al-Haddadi","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9252","name":"al-Hamul","city_id":"1011","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9253","name":"Marsa Matruh","city_id":"1012","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9254","name":"Sidi Barrani","city_id":"1012","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9255","name":"Zawiyat Shammas","city_id":"1012","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9256","name":"ad-Da ba","city_id":"1012","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9257","name":"Armant","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9258","name":"Asfun-al-Mata inah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9259","name":"Dandarah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9260","name":"Dishna","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9261","name":"Farshut","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9262","name":"Hijazah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9263","name":"Hiw","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9264","name":"Idfu","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9265","name":"Isna","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9266","name":"Kiman-al-Mata inah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9267","name":"Naj Hammadi","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9268","name":"Naqadah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9269","name":"Qift","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9270","name":"Qina","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9271","name":"Qus","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9272","name":"ad-Dabbiyah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9273","name":"ad-Dayr","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9274","name":"al-Ballas","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9275","name":"al-Karnak","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9276","name":"al-Waqf","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9277","name":"ar-Radisiyat-al-Bahriyah","city_id":"1018","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9278","name":"Akhmim","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9279","name":"Awlad Tawq Sharq","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9280","name":"Dar-as-Salam","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9281","name":"Jirja","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9282","name":"Juhaynah","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9283","name":"Sawhaj","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9284","name":"Tahta","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9285","name":"Tima","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9286","name":"al-Balyana","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9287","name":"al-Manshah","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9288","name":"al-Maragah","city_id":"1019","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9289","name":"Aja","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9290","name":"Bahut","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9291","name":"Bilqas","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9292","name":"Dikirnis","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9293","name":"Minyat-an-Nasr","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9294","name":"Mit Gamr","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9295","name":"Shirbin","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9296","name":"Talkha","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9297","name":"al-Jamaliyah","city_id":"1022","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"is_activated":"1"}, +{"id":"9298","name":"al-Ma sarah","city_id":"1022","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9299","name":"al-Manzilah","city_id":"1022","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9300","name":"al-Matariyah","city_id":"1022","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9301","name":"as-Sinbillawayn","city_id":"1022","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9302","name":"Ras Gharib","city_id":"1023","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9303","name":"Safaja","city_id":"1023","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9304","name":"al-Ghardaqah","city_id":"1023","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9305","name":"al-Qusayr","city_id":"1023","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9306","name":"Abu Hummus","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9307","name":"Abu al-Matamir","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9308","name":"Buturis","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9309","name":"Damanhur","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9310","name":"Edfina","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9311","name":"Hawsh Isa","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9312","name":"Idku","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9313","name":"Ityay-al-Barud","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9314","name":"Kafr Salim","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9315","name":"Kafr-ad-Dawwar","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9316","name":"Kawm Hamada","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9317","name":"Nubaria","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9318","name":"Rashid","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9319","name":"Shubra Khit","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9320","name":"Zawiyat Sidi Gazi","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9321","name":"ad-Dilinjat","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9322","name":"al-Kawm-al-Akhdar","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9323","name":"al-Mahmudiyah","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9324","name":"ar-Rahmaniyah","city_id":"1024","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9325","name":"Fidimin","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9326","name":"Ibshaway","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9327","name":"Itsa","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9328","name":"Qasr Qarun","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9329","name":"Sanhur","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9330","name":"Sinnuris","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9331","name":"Tamiyah","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9332","name":"al-Fayyum","city_id":"1025","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9333","name":"Abyar","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9334","name":"Basyun","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9335","name":"Kafr-az-Zayyat","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9336","name":"Mahallat Marhum","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9337","name":"Nisf Thani Bashbish","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9338","name":"Qutur","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9339","name":"Samannud","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9340","name":"Tanta","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9341","name":"Zifta","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9342","name":"ad-Daljamun","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9343","name":"al-Mahallah al-Kubra","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9344","name":"as-Santah","city_id":"1026","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9345","name":"Agamy","city_id":"1027","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9346","name":"al-Iskandariyah","city_id":"1027","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9347","name":"al-Maks","city_id":"1027","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9348","name":"Fa id","city_id":"1028","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9349","name":"Sarabiyum","city_id":"1028","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9350","name":"al-Ismailiyah","city_id":"1028","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9351","name":"Atfih","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9352","name":"Awsim","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9353","name":"Giza","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9354","name":"Madinat Sittah Uktubar","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9355","name":"Nahya","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9356","name":"Saqqarah","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9357","name":"al- Ayyat","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9358","name":"al-Badrashayn","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9359","name":"al-Hawamidiyah","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9360","name":"al-Jizah","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9361","name":"al-Mansuriyah","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9362","name":"al-Wahat-al-Bahriyah","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9363","name":"as-Saff","city_id":"1029","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9364","name":"Ashmun","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9365","name":"Birkat-as-Sab ","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9366","name":"Milij","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9367","name":"Minuf","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9368","name":"Quwaysina","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9369","name":"Shibin-al-Kawm","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9370","name":"Sirs-al-Layyanah","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9371","name":"Tala","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9372","name":"al-Bajur","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9373","name":"al-Batanun","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9374","name":"ash-Shuhada","city_id":"1030","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9375","name":"Abu Qurqas","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9376","name":"Bani Mazar","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9377","name":"Dayr Mawas","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9378","name":"Magagah","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9379","name":"Mallawi","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9380","name":"Matay","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9381","name":"Samalut","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9382","name":"Tallah","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9383","name":"Tandah","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9384","name":"al-Anayim","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9385","name":"al-Fikriyah","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9386","name":"al-Minya","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9387","name":"ar-Rawdah","city_id":"1031","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9388","name":"Badr City","city_id":"1032","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9389","name":"Heliopolis","city_id":"1032","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9390","name":"al-Qahira","city_id":"1032","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9391","name":"Abu Za bal","city_id":"1033","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9392","name":"Banha","city_id":"1033","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9393","name":"Qalyub","city_id":"1033","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"is_activated":"1"}, +{"id":"9394","name":"Shubra al-Khaymah","city_id":"1033","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9395","name":"Sibin-al-Qanatir","city_id":"1033","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9396","name":"Tukh","city_id":"1033","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9397","name":"al-Khankah","city_id":"1033","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9398","name":"al-Qanatir-al-Khayriyah","city_id":"1033","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9399","name":"al-Uqsur","city_id":"1034","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9400","name":"as-Suways","city_id":"1036","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9401","name":"Abu Hammad","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9402","name":"Abu Kabir","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9403","name":"Bilbays","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9404","name":"Diyarb Najm","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9405","name":"Faqus","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9406","name":"Hihya","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9407","name":"Kafr Saqr","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9408","name":"Mashtul-as-Suq","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9409","name":"Minyat-al-Qamh","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9410","name":"al-Ashir mir-Ramadan","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9411","name":"al-Husayniyah","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9412","name":"al-Ibrahimiyah","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9413","name":"al-Qanayat","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9414","name":"al-Qassasin","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9415","name":"al-Qurayn","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9416","name":"as-Salihiyah","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9417","name":"at-Tall-al-Kabir","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9418","name":"az-Zaqaziq","city_id":"1037","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9419","name":"Ahuachapan","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9420","name":"Atiquizaya","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9421","name":"Concepcion de Ataco","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9422","name":"Guaymango","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9423","name":"Jujutla","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9424","name":"San Francisco Menendez","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9425","name":"Tacuba","city_id":"1038","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9426","name":"Ilobasco","city_id":"1039","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9427","name":"Sensuntepeque","city_id":"1039","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9428","name":"Chalatenango","city_id":"1040","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9429","name":"Nueva Concepcion","city_id":"1040","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9430","name":"San Francisco Morazan","city_id":"1040","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9431","name":"Cojutepeque","city_id":"1041","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9432","name":"San Pedro Perulapan","city_id":"1041","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9433","name":"Suchitoto","city_id":"1041","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9434","name":"Tecoluca","city_id":"1041","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9435","name":"Tenancingo","city_id":"1041","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9436","name":"Cacaopera","city_id":"1044","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9437","name":"Gotera","city_id":"1044","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9438","name":"Guatajiagua","city_id":"1044","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9439","name":"Jocoro","city_id":"1044","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9440","name":"Sociedad","city_id":"1044","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9441","name":"Acajutla","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9442","name":"Izalco","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9443","name":"Juayua","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9444","name":"Nahuizalco","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9445","name":"San Antonio del Monte","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9446","name":"San Julian","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9447","name":"Sonsonate","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9448","name":"Sonzacate","city_id":"1048","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9449","name":"Berlin","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9450","name":"Concepcion Batres","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9451","name":"Estanzuelas","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9452","name":"Jiquilisco","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9453","name":"Jucuapa","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9454","name":"Jucuaran","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9455","name":"Ozatlan","city_id":"1049","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"is_activated":"1"}, +{"id":"9456","name":"Puerto El Triunfo","city_id":"1049","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9457","name":"Santiago de Maria","city_id":"1049","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9458","name":"Usulutan","city_id":"1049","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9459","name":"Pale","city_id":"1050","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9460","name":"Ebebiyin","city_id":"1054","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9461","name":"Mikomeseng","city_id":"1054","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9462","name":"Bata","city_id":"1055","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9463","name":"Mbini","city_id":"1055","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9464","name":"Aconibe","city_id":"1056","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9465","name":"Anisoc","city_id":"1056","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9466","name":"Mongomo","city_id":"1056","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9467","name":"Nsok","city_id":"1056","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9468","name":"Keren","city_id":"1057","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9469","name":"Addi Kwala","city_id":"1058","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9470","name":"Addi Ugri","city_id":"1058","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9471","name":"Asseb","city_id":"1059","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9472","name":"Beylul","city_id":"1059","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9473","name":"Edd","city_id":"1059","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9474","name":"Mersa Fatma","city_id":"1059","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9475","name":"Ak ordat","city_id":"1060","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9476","name":"Barentu","city_id":"1060","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9477","name":"Teseney","city_id":"1060","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9478","name":"Asmara","city_id":"1061","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9479","name":"Ginda","city_id":"1061","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9480","name":"Himbirti","city_id":"1061","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9481","name":"Nefasit","city_id":"1061","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9482","name":"Addi K eyih","city_id":"1062","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9483","name":"Dek emhare","city_id":"1062","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9484","name":"Mitsiwa","city_id":"1062","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9485","name":"Sen afe","city_id":"1062","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9486","name":"Aasmae","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9487","name":"Aaviku","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9488","name":"Aegviidu","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9489","name":"Aigrumae","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9490","name":"Aila","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9491","name":"Alavere","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9492","name":"Alliku","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9493","name":"Amari","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9494","name":"Anija","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9495","name":"Ardu","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9496","name":"Arukula","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9497","name":"Aruvalla","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9498","name":"Assaku","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9499","name":"Ellamaa","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9500","name":"Haabneeme","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9501","name":"Habaja","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9502","name":"Haiba","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9503","name":"Haljava","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9504","name":"Hara","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9505","name":"Harju-Risti","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9506","name":"Harku","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9507","name":"Harkujarve","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9508","name":"Harma","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9509","name":"Huuru","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9510","name":"Ilmandu","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9511","name":"Iru","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9512","name":"Jagala","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9513","name":"Jalgimae","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9514","name":"Jarsi","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9515","name":"Jarvekula","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9516","name":"Jogisoo","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9517","name":"Juri","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9518","name":"Kaasiku","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9519","name":"Kaberneeme","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9520","name":"Kahala","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9521","name":"Kalesi","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9522","name":"Kallavere","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9523","name":"Karjakula","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9524","name":"Karla","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9525","name":"Kasepere","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9526","name":"Kasispea","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9527","name":"Kehra","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9528","name":"Keila","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9529","name":"Keila-Joa","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9530","name":"Kelvingi","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9531","name":"Kiia","city_id":"1063","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"is_activated":"1"}, +{"id":"9532","name":"Kiili","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9533","name":"Kiisa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9534","name":"Kiiu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9535","name":"Klooga","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9536","name":"Kloogaranna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9537","name":"Kohatu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9538","name":"Kolga","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9539","name":"Kolga-Aabla","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9540","name":"Kolgakula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9541","name":"Konnu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9542","name":"Kose","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9543","name":"Kose-Uuemoisa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9544","name":"Kostivere","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9545","name":"Krei","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9546","name":"Kuivajoe","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9547","name":"Kumna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9548","name":"Kurtna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9549","name":"Kuusalu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9550","name":"Laabi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9551","name":"Laagri","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9552","name":"Lagedi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9553","name":"Laitse","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9554","name":"Laulasmaa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9555","name":"Lehetu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9556","name":"Lehola","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9557","name":"Lehtmetsa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9558","name":"Leppneeme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9559","name":"Liikva","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9560","name":"Lilli","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9561","name":"Lohusalu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9562","name":"Loksa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9563","name":"Lokuti","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9564","name":"Loo","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9565","name":"Lubja","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9566","name":"Luige","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9567","name":"Maardu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9568","name":"Maidla","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9569","name":"Manniku","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9570","name":"Metsakasti","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9571","name":"Metsanurme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9572","name":"Miiduranna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9573","name":"Munalaskme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9574","name":"Muraste","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9575","name":"Muuga","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9576","name":"Nabala","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9577","name":"Neeme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9578","name":"Ohtu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9579","name":"Ojasoo","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9580","name":"Oru","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9581","name":"Padise","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9582","name":"Pae","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9583","name":"Paekna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9584","name":"Pajupea","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9585","name":"Paldiski","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9586","name":"Palvere","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9587","name":"Parispea","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9588","name":"Patika","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9589","name":"Paunkula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9590","name":"Peetri","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9591","name":"Peningi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9592","name":"Perila","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9593","name":"Pikva","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9594","name":"Pillapalu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9595","name":"Pringi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9596","name":"Puunsi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9597","name":"Raasiku","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9598","name":"Rae","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9599","name":"Randvere","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9600","name":"Rannamoisa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9601","name":"Ravila","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9602","name":"Riisipere","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9603","name":"Rohuneeme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9604","name":"Roobuka","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9605","name":"Ruila","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9606","name":"Rummu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9607","name":"Saha","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9608","name":"Saku","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9609","name":"Saue","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9610","name":"Saula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9611","name":"Saunja","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9612","name":"Suurpea","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9613","name":"Suurupi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9614","name":"Tabasalu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9615","name":"Tagadi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9616","name":"Tagametsa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9617","name":"Tallinn","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9618","name":"Tammneeme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9619","name":"Tiskre","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9620","name":"Todva","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9621","name":"Turba","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9622","name":"Turisalu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9623","name":"Tutermaa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9624","name":"Tuula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9625","name":"Tuulna","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9626","name":"Uksnurme","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9627","name":"Ulejoe","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9628","name":"Uuri","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9629","name":"Uuskula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9630","name":"Vaana","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9631","name":"Vaana-Joesuu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9632","name":"Vaida","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9633","name":"Vaidasoo","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9634","name":"Valingu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9635","name":"Valkla","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9636","name":"Vanamoisa","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9637","name":"Vardja","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9638","name":"Vasalemma","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9639","name":"Vaskjala","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9640","name":"Vatsla","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9641","name":"Veskikula","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9642","name":"Vihasoo","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9643","name":"Viimsi","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9644","name":"Viinistu","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9645","name":"Viti","city_id":"1063","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9646","name":"Emmaste","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9647","name":"Jausa","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9648","name":"Kaina","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9649","name":"Kardla","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9650","name":"Korgessaare","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9651","name":"Lauka","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9652","name":"Lope","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9653","name":"Mannamaa","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9654","name":"Putkaste","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9655","name":"Suuremoisa","city_id":"1064","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9656","name":"Aa","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9657","name":"Alajoe","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9658","name":"Aseri","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9659","name":"Avinurme","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9660","name":"Edise","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9661","name":"Erra","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9662","name":"Iisaku","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9663","name":"Jarve","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9664","name":"Johvi","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9665","name":"Kahula","city_id":"1065","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"is_activated":"1"}, +{"id":"9666","name":"Kiikla","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9667","name":"Kivioli","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9668","name":"Kohtla-Jarve","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9669","name":"Kohtla-Nomme","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9670","name":"Konju","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9671","name":"Kuremae","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9672","name":"Lohusuu","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9673","name":"Luganuse","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9674","name":"Maetaguse","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9675","name":"Narva","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9676","name":"Narva-Joesuu","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9677","name":"Olgina","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9678","name":"Pagari","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9679","name":"Puhajoe","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9680","name":"Purtse","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9681","name":"Pussi","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9682","name":"Rannu","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9683","name":"Saka","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9684","name":"Savala","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9685","name":"Sillamae","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9686","name":"Sinimae","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9687","name":"Soldina","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9688","name":"Sompa","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9689","name":"Sonda","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9690","name":"Tammiku","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9691","name":"Toila","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9692","name":"Tudulinna","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9693","name":"Ulvi","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9694","name":"Vaivara","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9695","name":"Varja","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9696","name":"Vasavere","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9697","name":"Voka","city_id":"1065","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9698","name":"Ahula","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9699","name":"Aiamaa","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9700","name":"Albu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9701","name":"Ambla","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9702","name":"Anari","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9703","name":"Anna","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9704","name":"Aravete","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9705","name":"Ervita","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9706","name":"Imavere","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9707","name":"Janeda","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9708","name":"Jarva-Jaani","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9709","name":"Jootme","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9710","name":"Kaalepi","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9711","name":"Kabala","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9712","name":"Karavete","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9713","name":"Karevere","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9714","name":"Karinu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9715","name":"Kasukonna","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9716","name":"Kirna","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9717","name":"Koeru","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9718","name":"Koigi","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9719","name":"Kolu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9720","name":"Kuksema","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9721","name":"Laupa","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9722","name":"Lehtse","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9723","name":"Lokuta","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9724","name":"Loola","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9725","name":"Muusleri","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9726","name":"Oisu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9727","name":"Paide","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9728","name":"Painurme","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9729","name":"Poikva","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9730","name":"Reopalu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9731","name":"Retla","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9732","name":"Roa","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9733","name":"Roosna","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9734","name":"Roosna-Alliku","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9735","name":"Sarevere","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9736","name":"Sargvere","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9737","name":"Taikse","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9738","name":"Tarbja","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9739","name":"Turi","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9740","name":"Turi-Alliku","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9741","name":"Vaatsa","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9742","name":"Vahukula","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9743","name":"Vao","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9744","name":"Viisu","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9745","name":"Villevere","city_id":"1066","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9746","name":"Adavere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9747","name":"Esku","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9748","name":"Harjanurme","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9749","name":"Jogeva","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9750","name":"Kaarepere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9751","name":"Kalana","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9752","name":"Kalme","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9753","name":"Kamari","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9754","name":"Karde","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9755","name":"Kasepaa","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9756","name":"Kassinurme","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9757","name":"Kudina","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9758","name":"Kukita","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9759","name":"Kuremaa","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9760","name":"Kurista","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9761","name":"Lahavere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9762","name":"Laiuse","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9763","name":"Laiusevalja","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9764","name":"Leedi","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9765","name":"Lustivere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9766","name":"Luua","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9767","name":"Maarja","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9768","name":"Mallikvere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9769","name":"Metsakula","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9770","name":"Mohkula","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9771","name":"Mustvee","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9772","name":"Neanurme","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9773","name":"Nova","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9774","name":"Omedu","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9775","name":"Ouna","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9776","name":"Painkula","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9777","name":"Pajusi","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9778","name":"Palamuse","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9779","name":"Pataste","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9780","name":"Pauastvere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9781","name":"Pikkjarve","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9782","name":"Pikknurme","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9783","name":"Pisisaare","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9784","name":"Poltsamaa","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9785","name":"Poora","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9786","name":"Puurmani","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9787","name":"Raabise","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9788","name":"Raja","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9789","name":"Saare","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9790","name":"Sadala","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9791","name":"Sadukula","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9792","name":"Siimusti","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9793","name":"Tabivere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9794","name":"Tahkvere","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9795","name":"Tiheda","city_id":"1067","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"is_activated":"1"}, +{"id":"9796","name":"Toikvere","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9797","name":"Torma","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9798","name":"Umbusi","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9799","name":"Vagari","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9800","name":"Vaiatu","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9801","name":"Vaike-Kamari","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9802","name":"Vaimastvere","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9803","name":"Valgma","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9804","name":"Visusti","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9805","name":"Voduvere","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9806","name":"Vohmanomme","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9807","name":"Voisiku","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9808","name":"Voldi","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9809","name":"Voore","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9810","name":"Votikvere","city_id":"1067","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9811","name":"Haapsalu","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9812","name":"Hullo","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9813","name":"Joodre","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9814","name":"Kirbla","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9815","name":"Kirimae","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9816","name":"Koluvere","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9817","name":"Komsi","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9818","name":"Kullamaa","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9819","name":"Lihula","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9820","name":"Liivi","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9821","name":"Linnamae","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9822","name":"Martna","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9823","name":"Nigula","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9824","name":"Palivere","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9825","name":"Palli","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9826","name":"Panga","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9827","name":"Paralepa","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9828","name":"Piirsalu","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9829","name":"Purksi","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9830","name":"Rannakula","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9831","name":"Risti","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9832","name":"Roude","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9833","name":"Sutlepa","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9834","name":"Taebla","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9835","name":"Tuudi","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9836","name":"Uuemoisa","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9837","name":"Variku","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9838","name":"Vatla","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9839","name":"Virtsu","city_id":"1068","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9840","name":"Aaspere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9841","name":"Ama","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9842","name":"Arkna","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9843","name":"Assamalla","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9844","name":"Avanduse","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9845","name":"Avispea","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9846","name":"Ebavere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9847","name":"Eipri","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9848","name":"Essu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9849","name":"Haljala","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9850","name":"Hulja","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9851","name":"Imastu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9852","name":"Inju","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9853","name":"Kadapiku","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9854","name":"Kadila","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9855","name":"Kadrina","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9856","name":"Kakumae","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9857","name":"Karitsa","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9858","name":"Karu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9859","name":"Kasmu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9860","name":"Kihlevere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9861","name":"Kiku","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9862","name":"Kiltsi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9863","name":"Kohala","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9864","name":"Kunda","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9865","name":"Kuti","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9866","name":"Laekvere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9867","name":"Lasila","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9868","name":"Lepna","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9869","name":"Levala","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9870","name":"Liigvalla","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9871","name":"Modriku","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9872","name":"Moe","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9873","name":"Moora","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9874","name":"Napi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9875","name":"Paasvere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9876","name":"Pajusti","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9877","name":"Pandivere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9878","name":"Piira","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9879","name":"Pikevere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9880","name":"Podrangu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9881","name":"Podruse","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9882","name":"Porkuni","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9883","name":"Rahkla","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9884","name":"Rakke","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9885","name":"Rakvere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9886","name":"Ridakula","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9887","name":"Roela","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9888","name":"Roodevalja","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9889","name":"Saase","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9890","name":"Salda","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9891","name":"Salla","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9892","name":"Simuna","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9893","name":"Someru","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9894","name":"Taaravainu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9895","name":"Tamsalu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9896","name":"Tapa","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9897","name":"Torremae","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9898","name":"Triigi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9899","name":"Tudu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9900","name":"Ubja","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9901","name":"Udriku","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9902","name":"Uhtna","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9903","name":"Undla","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9904","name":"Ussimae","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9905","name":"Uudekula","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9906","name":"Vaekula","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9907","name":"Vahakulmu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9908","name":"Vaike-Maarja","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9909","name":"Vajangu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9910","name":"Veltsi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9911","name":"Venevere","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9912","name":"Vergi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9913","name":"Vetiku","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9914","name":"Vihula","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9915","name":"Viitna","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9916","name":"Vinni","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9917","name":"Viru-Jaagupi","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9918","name":"Viru-Kabala","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9919","name":"Viru-Nigula","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9920","name":"Vohnja","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9921","name":"Vosu","city_id":"1069","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"is_activated":"1"}, +{"id":"9922","name":"Vosupere","city_id":"1069","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9923","name":"Ahaste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9924","name":"Aluste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9925","name":"Are","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9926","name":"Arumetsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9927","name":"Audru","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9928","name":"Eametsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9929","name":"Haademeeste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9930","name":"Halinga","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9931","name":"Ikla","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9932","name":"Ilvese","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9933","name":"Jaamakula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9934","name":"Jaarja","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9935","name":"Joesuu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9936","name":"Joopre","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9937","name":"Kaansoo","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9938","name":"Kabli","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9939","name":"Kadjaste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9940","name":"Kaisma","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9941","name":"Kalita","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9942","name":"Kanakula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9943","name":"Kergu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9944","name":"Kihlepa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9945","name":"Kilingi-Nomme","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9946","name":"Kilksama","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9947","name":"Koima","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9948","name":"Koonga","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9949","name":"Krundikula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9950","name":"Laadi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9951","name":"Langerma","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9952","name":"Lavassaare","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9953","name":"Leipste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9954","name":"Lemmetsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9955","name":"Lemsi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9956","name":"Libatse","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9957","name":"Linakula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9958","name":"Lindi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9959","name":"Liu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9960","name":"Malda","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9961","name":"Mannikuste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9962","name":"Massiaru","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9963","name":"Metsaaare","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9964","name":"Metsapoole","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9965","name":"Moisakula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9966","name":"Muraka","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9967","name":"Niidu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9968","name":"Nurme","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9969","name":"Oara","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9970","name":"Oidrema","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9971","name":"Paikuse","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9972","name":"Papsaare","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9973","name":"Parnjoe","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9974","name":"Parnu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9975","name":"Parnu-Jaagupi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9976","name":"Penu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9977","name":"Piistaoja","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9978","name":"Pohara","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9979","name":"Poldeotsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9980","name":"Pootsi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9981","name":"Pulli","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9982","name":"Rannametsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9983","name":"Ratsepa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9984","name":"Reiu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9985","name":"Ridalepa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9986","name":"Rootsikula","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9987","name":"Saarde","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9988","name":"Sauga","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9989","name":"Seliste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9990","name":"Selja","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9991","name":"Seljametsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9992","name":"Silla","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9993","name":"Sindi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9994","name":"Soeva","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9995","name":"Soometsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9996","name":"Suigu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9997","name":"Surju","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9998","name":"Suurejoe","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"9999","name":"Taali","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10000","name":"Tahkuranna","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10001","name":"Tali","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10002","name":"Tammiste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10003","name":"Tammuru","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10004","name":"Tihemetsa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10005","name":"Tolla","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10006","name":"Tootsi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10007","name":"Tori","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10008","name":"Tostamaa","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10009","name":"Tousi","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10010","name":"Treimani","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10011","name":"Urge","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10012","name":"Uulu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10013","name":"Vahenurme","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10014","name":"Vaki","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10015","name":"Vandra","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10016","name":"Varbla","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10017","name":"Veelikse","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10018","name":"Vihtra","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10019","name":"Voidu","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10020","name":"Voiste","city_id":"1070","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10021","name":"Aarna","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10022","name":"Ahja","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10023","name":"Erastvere","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10024","name":"Himma","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10025","name":"Himmaste","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10026","name":"Holvandi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10027","name":"Ihamaru","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10028","name":"Jaanimoisa","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10029","name":"Kanepi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10030","name":"Karilatsi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10031","name":"Karsa","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10032","name":"Karste","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10033","name":"Kauksi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10034","name":"Kiidjarve","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10035","name":"Kostrimae","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10036","name":"Krootuse","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10037","name":"Leevaku","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10038","name":"Leevi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10039","name":"Leevijoe","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10040","name":"Linte","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10041","name":"Lootvina","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10042","name":"Maaritsa","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10043","name":"Mammaste","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10044","name":"Metste","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10045","name":"Mikitamae","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10046","name":"Mooste","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10047","name":"Naha","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10048","name":"Orava","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10049","name":"Pahtpaa","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10050","name":"Partsi","city_id":"1071","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"is_activated":"1"}, +{"id":"10051","name":"Peri","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10052","name":"Piigandi","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10053","name":"Polgaste","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10054","name":"Polva","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10055","name":"Prangli","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10056","name":"Puuri","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10057","name":"Raadama","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10058","name":"Rahumae","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10059","name":"Raigla","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10060","name":"Rapina","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10061","name":"Rasina","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10062","name":"Ristipalo","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10063","name":"Rosma","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10064","name":"Ruusa","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10065","name":"Saverna","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10066","name":"Sillapaa","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10067","name":"Soodoma","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10068","name":"Suurkula","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10069","name":"Taevaskoja","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10070","name":"Tannassilma","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10071","name":"Tilsi","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10072","name":"Treski","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10073","name":"Vaike-Rosna","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10074","name":"Valgjarve","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10075","name":"Vana-Koiola","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10076","name":"Varska","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10077","name":"Vastse-Kuuste","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10078","name":"Veriora","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10079","name":"Viluste","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10080","name":"Voopsu","city_id":"1071","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10081","name":"Aespa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10082","name":"Alu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10083","name":"Eidapere","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10084","name":"Hageri","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10085","name":"Hagudi","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10086","name":"Haimre","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10087","name":"Hertu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10088","name":"Iira","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10089","name":"Ingliste","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10090","name":"Jarlepa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10091","name":"Jarvakandi","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10092","name":"Juuru","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10093","name":"Kaerepere","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10094","name":"Kaiu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10095","name":"Kalbu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10096","name":"Kasti","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10097","name":"Keava","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10098","name":"Kehtna","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10099","name":"Kivi-Vigala","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10100","name":"Kodila","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10101","name":"Kohila","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10102","name":"Kuimetsa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10103","name":"Kuusiku","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10104","name":"Laukna","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10105","name":"Lelle","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10106","name":"Lipa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10107","name":"Lohu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10108","name":"Marjamaa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10109","name":"Masti","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10110","name":"Moisamaa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10111","name":"Naravere","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10112","name":"Orgita","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10113","name":"Paardu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10114","name":"Pahkla","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10115","name":"Pihali","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10116","name":"Pirgu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10117","name":"Prillimae","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10118","name":"Purila","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10119","name":"Purku","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10120","name":"Rabivere","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10121","name":"Raikkula","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10122","name":"Rangu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10123","name":"Rapla","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10124","name":"Salutaguse","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10125","name":"Sipa","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10126","name":"Sotke","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10127","name":"Sutlema","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10128","name":"Tamme","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10129","name":"Teenuse","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10130","name":"Vahastu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10131","name":"Valgu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10132","name":"Valtu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10133","name":"Vana-Kaiu","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10134","name":"Vana-Vigala","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10135","name":"Varbola","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10136","name":"Vilivere","city_id":"1072","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10137","name":"Arandi","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10138","name":"Aste","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10139","name":"Eikla","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10140","name":"Hellamaa","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10141","name":"Kao","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10142","name":"Karja","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10143","name":"Kihelkonna","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10144","name":"Koimla","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10145","name":"Koljala","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10146","name":"Korkkula","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10147","name":"Korkvere","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10148","name":"Kudjape","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10149","name":"Kuressaare","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10150","name":"Laatsa","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10151","name":"Lahekula","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10152","name":"Laimjala","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10153","name":"Leisi","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10154","name":"Liiva","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10155","name":"Lumanda","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10156","name":"Metskula","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10157","name":"Mustjala","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10158","name":"Nasva","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10159","name":"Nommkula","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10160","name":"Orissaare","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10161","name":"Parsama","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10162","name":"Pihtla","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10163","name":"Sakla","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10164","name":"Salme","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10165","name":"Sandla","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10166","name":"Tagavere","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10167","name":"Tornimae","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10168","name":"Valjala","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10169","name":"Vohma","city_id":"1073","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10170","name":"Aardla","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10171","name":"Aksi","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10172","name":"Alasoo","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10173","name":"Alatskivi","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10174","name":"Annikoru","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10175","name":"Aravu","city_id":"1074","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"is_activated":"1"}, +{"id":"10176","name":"Elva","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10177","name":"Erala","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10178","name":"Ervu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10179","name":"Haage","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10180","name":"Haaslava","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10181","name":"Ignase","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10182","name":"Illi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10183","name":"Ilmatsalu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10184","name":"Kaagvere","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10185","name":"Kaardi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10186","name":"Kaarlijarve","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10187","name":"Kallaste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10188","name":"Kambja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10189","name":"Kandikula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10190","name":"Karkna","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10191","name":"Kavastu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10192","name":"Kirepi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10193","name":"Kodukula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10194","name":"Kokora","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10195","name":"Kolkja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10196","name":"Konguta","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10197","name":"Koosa","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10198","name":"Koruste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10199","name":"Korvekula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10200","name":"Kulitse","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10201","name":"Kurekula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10202","name":"Laaniste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10203","name":"Laeva","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10204","name":"Lahte","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10205","name":"Lalli","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10206","name":"Lapetukme","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10207","name":"Lemmatsi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10208","name":"Lohkva","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10209","name":"Lossimae","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10210","name":"Luke","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10211","name":"Luunja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10212","name":"Maksa","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10213","name":"Maramaa","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10214","name":"Marja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10215","name":"Meeksi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10216","name":"Meeri","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10217","name":"Mehikoorma","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10218","name":"Melliste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10219","name":"Metsakivi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10220","name":"Metsalaane","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10221","name":"Moisanurme","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10222","name":"Nina","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10223","name":"Nogiaru","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10224","name":"Noo","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10225","name":"Pilka","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10226","name":"Poka","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10227","name":"Pooritsa","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10228","name":"Puhja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10229","name":"Rahinge","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10230","name":"Raigaste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10231","name":"Ramsi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10232","name":"Rani","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10233","name":"Rebase","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10234","name":"Reola","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10235","name":"Rohu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10236","name":"Roiu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10237","name":"Rongu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10238","name":"Saadjarve","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10239","name":"Sinikula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10240","name":"Sirgu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10241","name":"Soinaste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10242","name":"Sojamaa","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10243","name":"Tahtvere","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10244","name":"Tammistu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10245","name":"Tartu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10246","name":"Teedla","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10247","name":"Tilga","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10248","name":"Toravere","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10249","name":"Torvandi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10250","name":"Tuki","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10251","name":"Uderna","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10252","name":"Uhti","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10253","name":"Ulenurme","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10254","name":"Ulila","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10255","name":"Unikula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10256","name":"Vahi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10257","name":"Vaike-Rakke","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10258","name":"Valguta","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10259","name":"Vana-Kuuste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10260","name":"Vara","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10261","name":"Varnja","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10262","name":"Vasula","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10263","name":"Vedu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10264","name":"Vesneri","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10265","name":"Vissi","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10266","name":"Voibla","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10267","name":"Voika","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10268","name":"Vonnu","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10269","name":"Voopste","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10270","name":"Vorbuse","city_id":"1074","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10271","name":"Aakre","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10272","name":"Ala","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10273","name":"Hargla","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10274","name":"Hellenurme","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10275","name":"Helme","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10276","name":"Hummuli","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10277","name":"Jeti","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10278","name":"Jogeveste","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10279","name":"Kaagjarve","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10280","name":"Karjatnurme","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10281","name":"Karula","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10282","name":"Keeni","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10283","name":"Koikkula","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10284","name":"Laanemetsa","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10285","name":"Laatre","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10286","name":"Laukula","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10287","name":"Leebiku","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10288","name":"Linna","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10289","name":"Lossikula","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10290","name":"Lullemae","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10291","name":"Moldre","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10292","name":"Nouni","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10293","name":"Nupli","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10294","name":"Oruste","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10295","name":"Otepaa","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10296","name":"Paidla","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10297","name":"Paju","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10298","name":"Palupera","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10299","name":"Patkula","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10300","name":"Piiri","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10301","name":"Pikasilla","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10302","name":"Pilkuse","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10303","name":"Puhajarve","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10304","name":"Puka","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10305","name":"Restu","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10306","name":"Riidaja","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10307","name":"Sangaste","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10308","name":"Sihva","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10309","name":"Sooru","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10310","name":"Taagepera","city_id":"1075","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"is_activated":"1"}, +{"id":"10311","name":"Tagula","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10312","name":"Taheva","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10313","name":"Tiidu","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10314","name":"Tolliste","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10315","name":"Torva","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10316","name":"Tsirguliina","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10317","name":"Valga","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10318","name":"Vana-Otepaa","city_id":"1075","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10319","name":"Abja-Paluoja","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10320","name":"Abja-Vanamoisa","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10321","name":"Aidu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10322","name":"Angi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10323","name":"Anikatsi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10324","name":"Arikula","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10325","name":"Halliste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10326","name":"Heimtali","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10327","name":"Holstre","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10328","name":"Intsu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10329","name":"Jamejala","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10330","name":"Jaska","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10331","name":"Kaavere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10332","name":"Kamara","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10333","name":"Karksi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10334","name":"Karksi-Nuia","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10335","name":"Karstna","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10336","name":"Kobruvere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10337","name":"Koidama","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10338","name":"Koksvere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10339","name":"Kolga-Jaani","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10340","name":"Koo","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10341","name":"Kopu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10342","name":"Kulla","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10343","name":"Lalsi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10344","name":"Leie","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10345","name":"Lohavere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10346","name":"Loodi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10347","name":"Maeltkula","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10348","name":"Matapera","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10349","name":"Meleski","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10350","name":"Monnaste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10351","name":"Mustivere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10352","name":"Mustla","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10353","name":"Navesti","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10354","name":"Odiste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10355","name":"Olustvere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10356","name":"Pahuvere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10357","name":"Paistu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10358","name":"Parakula","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10359","name":"Pari","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10360","name":"Parsti","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10361","name":"Peetrimoisa","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10362","name":"Pilistvere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10363","name":"Pinska","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10364","name":"Polde","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10365","name":"Polli","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10366","name":"Puiatu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10367","name":"Reegoldi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10368","name":"Saarepeedi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10369","name":"Savikoti","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10370","name":"Sinialliku","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10371","name":"Soe","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10372","name":"Soomevere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10373","name":"Sudiste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10374","name":"Suislepa","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10375","name":"Sultsi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10376","name":"Supsi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10377","name":"Surgavere","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10378","name":"Suure-Jaani","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10379","name":"Taaksi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10380","name":"Tanassilma","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10381","name":"Tinnikuru","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10382","name":"Tohvri","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10383","name":"Tuhalaane","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10384","name":"Tusti","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10385","name":"Ulde","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10386","name":"Ulensi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10387","name":"Uusna","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10388","name":"Valgita","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10389","name":"Valma","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10390","name":"Valuste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10391","name":"Vana-Kariste","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10392","name":"Vana-Voidu","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10393","name":"Vardi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10394","name":"Vastemoisa","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10395","name":"Verilaske","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10396","name":"Veskimae","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10397","name":"Viiratsi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10398","name":"Viljandi","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10399","name":"Villa","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10400","name":"Voivaku","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10401","name":"Vooru","city_id":"1076","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10402","name":"Antsla","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10403","name":"Haanja","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10404","name":"Jarvere","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10405","name":"Kaapa","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10406","name":"Kirumpaa","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10407","name":"Kobela","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10408","name":"Kollino","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10409","name":"Kraavi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10410","name":"Krabi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10411","name":"Kulaoru","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10412","name":"Kuldre","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10413","name":"Kuutsi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10414","name":"Lasva","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10415","name":"Loosu","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10416","name":"Lusti","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10417","name":"Meegomae","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10418","name":"Meremae","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10419","name":"Misso","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10420","name":"Moniste","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10421","name":"Navi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10422","name":"Nursi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10423","name":"Obinitsa","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10424","name":"Osula","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10425","name":"Otsa","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10426","name":"Parksepa","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10427","name":"Puiga","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10428","name":"Raiste","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10429","name":"Rimmi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10430","name":"Rouge","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10431","name":"Ruusmae","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10432","name":"Saru","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10433","name":"Somerpalu","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10434","name":"Sulbi","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10435","name":"Taberlaane","city_id":"1077","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"is_activated":"1"}, +{"id":"10436","name":"Tagakula","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10437","name":"Tsolgo","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10438","name":"Tsooru","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10439","name":"Urvaste","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10440","name":"Uue-Antsla","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10441","name":"Vaabina","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10442","name":"Vagula","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10443","name":"Vaimela","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10444","name":"Vana-Antsla","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10445","name":"Vana-Roosa","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10446","name":"Vana-Vastseliina","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10447","name":"Varstu","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10448","name":"Vastseliina","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10449","name":"Verijarve","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10450","name":"Viitina","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10451","name":"Viitka","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10452","name":"Visela","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10453","name":"Voru","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10454","name":"Vorumoisa","city_id":"1077","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10455","name":"Asayita","city_id":"1079","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10456","name":"Awash","city_id":"1079","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10457","name":"Dubti","city_id":"1079","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10458","name":"Gewane","city_id":"1079","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10459","name":"Addi Ark ay","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10460","name":"Addis Alem","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10461","name":"Addis Zemen","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10462","name":"Adet","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10463","name":"Bahir Dar","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10464","name":"Bati","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10465","name":"Bichena","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10466","name":"Bure","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10467","name":"Chagni","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10468","name":"Dabat","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10469","name":"Dangla","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10470","name":"Debark","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10471","name":"Debre Birhan","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10472","name":"Debre Mark os","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10473","name":"Debre Sina","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10474","name":"Debre Tabor","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10475","name":"Debre Werk","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10476","name":"Dejen","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10477","name":"Dese","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10478","name":"Finote Selam","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10479","name":"Gondar","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10480","name":"K obo","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10481","name":"Kembolcha","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10482","name":"Kemise","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10483","name":"Lalibela","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10484","name":"Mott a","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10485","name":"Nefas Mewcha","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10486","name":"Sek ot a","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10487","name":"Shewa Robit","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10488","name":"Weldiya","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10489","name":"Were Ilu","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10490","name":"Werota","city_id":"1080","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10491","name":"Asosa","city_id":"1081","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10492","name":"Dire Dawa","city_id":"1082","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10493","name":"Gambela","city_id":"1083","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10494","name":"Harer","city_id":"1084","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10495","name":"Jigjiga","city_id":"1085","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10496","name":" Alem Maya","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10497","name":"Abomsa","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10498","name":"Agaro","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10499","name":"Asasa","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10500","name":"Asbe Teferi","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10501","name":"Assela","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10502","name":"Bedele","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10503","name":"Bedesa","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10504","name":"Burayu","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10505","name":"Debre Zeyit","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10506","name":"Deder","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10507","name":"Dembi Dolo","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10508","name":"Dodola","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10509","name":"Fiche","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10510","name":"Gebre Guracha","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10511","name":"Gedo","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10512","name":"Gelemso","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10513","name":"Gimbi","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10514","name":"Ginch i","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10515","name":"Ginir","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10516","name":"Giyon","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10517","name":"Goba","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10518","name":"Gore","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10519","name":"Guder","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10520","name":"Hagere Hiywet","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10521","name":"Hagere Maryam","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10522","name":"Hirna","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10523","name":"Holeta Genet","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10524","name":"Huruta","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10525","name":"Jimma","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10526","name":"Kibre Mengist","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10527","name":"Kofele","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10528","name":"Mega","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10529","name":"Mek i","city_id":"1087","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"is_activated":"1"}, +{"id":"10530","name":"Mendi","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10531","name":"Metehara","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10532","name":"Metu","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10533","name":"Mojo","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10534","name":"Moyale","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10535","name":"Nazret","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10536","name":"Nedjo","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10537","name":"Negele","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10538","name":"Nek emte","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10539","name":"Robe","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10540","name":"Sebeta","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10541","name":"Sendafa","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10542","name":"Shakiso","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10543","name":"Shambu","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10544","name":"Shashemenne","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10545","name":"Sheh Hussen","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10546","name":"Sire","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10547","name":"Tulu Bolo","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10548","name":"Welench iti","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10549","name":"Welk it e","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10550","name":"Wonji","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10551","name":"Yabelo","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10552","name":"Ziway","city_id":"1087","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10553","name":"Bircot","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10554","name":"Degeh Bur","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10555","name":"Dollo Odo","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10556","name":"Imi","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10557","name":"Jijiga","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10558","name":"Werder","city_id":"1088","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10559","name":"Alaba Kulito","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10560","name":"Arba Minch","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10561","name":"Areka","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10562","name":"Awassa","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10563","name":"Boditi","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10564","name":"Bonga","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10565","name":"Butajira","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10566","name":"Ch ench a","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10567","name":"Dilla","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10568","name":"Gidole","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10569","name":"Hossa ina","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10570","name":"Jinka","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10571","name":"Leku","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10572","name":"Mizan Teferi","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10573","name":"Sawla","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10574","name":"Soddo","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10575","name":"Teppi","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10576","name":"Wendo","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10577","name":"Yirga Alem","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10578","name":"Yirga Ch efe","city_id":"1089","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10579","name":"Abiy Adi","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10580","name":"Addigrat","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10581","name":"Adwa","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10582","name":"Aksum","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10583","name":"Alamat a","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10584","name":"Endasilasie","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10585","name":"Hagere Selam","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10586","name":"Himora","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10587","name":"Korem","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10588","name":"Maych ew","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10589","name":"Mek ele","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10590","name":"Mekele","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10591","name":"Wik ro","city_id":"1090","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10592","name":"Hvannasund","city_id":"1093","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10593","name":"Klaksvik","city_id":"1093","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10594","name":"Husavik","city_id":"1096","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10595","name":"Sands","city_id":"1096","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10596","name":"Skalavik","city_id":"1096","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10597","name":"Skopun","city_id":"1096","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10598","name":"Skuvoy","city_id":"1096","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10599","name":"Haldarsvik","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10600","name":"Hests","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10601","name":"Hosvik","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10602","name":"Hvalvik","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10603","name":"Kirkjubo","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10604","name":"Kollafjar ","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10605","name":"Kvivik","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10606","name":"Nolsoy","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10607","name":"Saksun","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10608","name":"Torshavn","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10609","name":"Vestmanna","city_id":"1097","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"is_activated":"1"}, +{"id":"10610","name":"Biggjar","city_id":"1101","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10611","name":"Midvags","city_id":"1101","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10612","name":"Mykines","city_id":"1101","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10613","name":"Sandavags","city_id":"1101","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10614","name":"Sorvags","city_id":"1101","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10615","name":"Deuba","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10616","name":"Korovou","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10617","name":"Lami","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10618","name":"Namosi","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10619","name":"Nausori","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10620","name":"Navua","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10621","name":"Suva","city_id":"1102","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10622","name":"Levuka","city_id":"140","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10623","name":"Malhaha","city_id":"140","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10624","name":"Tubou","city_id":"140","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10625","name":"Vunisea","city_id":"140","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10626","name":"Korokade","city_id":"1103","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10627","name":"Labasa","city_id":"1103","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10628","name":"Savusavu","city_id":"1103","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10629","name":"Ba","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10630","name":"Lautoka","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10631","name":"Nadi","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10632","name":"Rakiraki","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10633","name":"Sigatoka","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10634","name":"Tavua","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10635","name":"Vatukoula","city_id":"143","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10636","name":"Maarianhamina","city_id":"1105","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10637","name":"Imatra","city_id":"1106","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10638","name":"Joutseno","city_id":"1106","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10639","name":"Lappeenranta","city_id":"1106","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10640","name":"Hyllykallio","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10641","name":"Ilmajoki","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10642","name":"Kauhajoki","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10643","name":"Kurikka","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10644","name":"Lapua","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10645","name":"Seinajoki","city_id":"1107","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10646","name":"Mikkeli","city_id":"1108","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10647","name":"Savonlinna","city_id":"1108","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10648","name":"Loviisa","city_id":"1111","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10649","name":"Orimattila","city_id":"1111","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10650","name":"Porvoo","city_id":"1111","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10651","name":"Kajaani","city_id":"1112","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10652","name":"Forssa","city_id":"1113","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10653","name":"Hameenlinna","city_id":"1113","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10654","name":"Janakkala","city_id":"1113","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10655","name":"Riihimaki","city_id":"1113","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10656","name":"Kokkola","city_id":"1114","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10657","name":"Aanekoski","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10658","name":"Jamsa","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10659","name":"Jyvaskyla","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10660","name":"Keuruu","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10661","name":"Laukaa","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10662","name":"Lieto","city_id":"1115","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10663","name":"Anjalankoski","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10664","name":"Hamina","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10665","name":"Kotka","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10666","name":"Kouvola","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10667","name":"Kuusankoski","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10668","name":"Valkeala","city_id":"1116","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"is_activated":"1"}, +{"id":"10669","name":"Vehkalahti","city_id":"1116","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10670","name":"Kemi","city_id":"1118","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10671","name":"Kemijarvi","city_id":"1118","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10672","name":"Rovaniemi","city_id":"1118","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10673","name":"Sonka","city_id":"1118","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10674","name":"Tornio","city_id":"1118","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10675","name":"Jakobstad","city_id":"1120","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10676","name":"Oulunsalo","city_id":"1120","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10677","name":"Heinola","city_id":"1122","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10678","name":"Hollola","city_id":"1122","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10679","name":"Lahti","city_id":"1122","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10680","name":"Nastola","city_id":"1122","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10681","name":"Kangasala","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10682","name":"Lempaala","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10683","name":"Nokia","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10684","name":"Pirkkala","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10685","name":"Sastamala","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10686","name":"Tampere","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10687","name":"Valkeakoski","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10688","name":"Ylojarvi","city_id":"1123","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10689","name":"Kristiinankaupunki","city_id":"1124","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10690","name":"Mustasaari","city_id":"1124","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10691","name":"Pietarsaari","city_id":"1124","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10692","name":"Uusikarlepyy","city_id":"1124","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10693","name":"Vaasa","city_id":"1124","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10694","name":"Joensuu","city_id":"1125","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10695","name":"Lieksa","city_id":"1125","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10696","name":"Haukipudas","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10697","name":"Kempele","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10698","name":"Kuusamo","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10699","name":"Muhos","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10700","name":"Nivala","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10701","name":"Oulainen","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10702","name":"Oulu","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10703","name":"Raahe","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10704","name":"Ylivieska","city_id":"1126","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10705","name":"Iisalmi","city_id":"1127","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10706","name":"Kuopio","city_id":"1127","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10707","name":"Sillinjarvi","city_id":"1127","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10708","name":"Varkaus","city_id":"1127","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10709","name":"Saarijarvi","city_id":"1128","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10710","name":"Eura","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10711","name":"Eurajoki","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10712","name":"Harjavalta","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10713","name":"Huittinen","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10714","name":"Kankaanpaa","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10715","name":"Kokemaki","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10716","name":"Lappi","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10717","name":"Nakkila","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10718","name":"Noormarkku","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10719","name":"Pori","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10720","name":"Rauma","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10721","name":"Sakyla","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10722","name":"Ulvila","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10723","name":"Vammala","city_id":"1129","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10724","name":"Espoo","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10725","name":"Hanko","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10726","name":"Helsinki","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10727","name":"Hyvinkaa","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10728","name":"Jarvenpaa","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10729","name":"Kauniainen","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10730","name":"Kerava","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10731","name":"Kirkkonummi","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10732","name":"Lohja","city_id":"1133","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"is_activated":"1"}, +{"id":"10733","name":"Mantsala","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10734","name":"Nurmijarvi","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10735","name":"Sipoo","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10736","name":"Tammisaari","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10737","name":"Tuusula","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10738","name":"Vantaa","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10739","name":"Vihti","city_id":"1133","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10740","name":"Kaarina","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10741","name":"Naantali","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10742","name":"Parainen","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10743","name":"Raisio","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10744","name":"Salo","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10745","name":"Turku","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10746","name":"Uusikaupunki","city_id":"1134","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10747","name":"Amberieu-en-Bugey","city_id":"1135","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10748","name":"Bellegarde-sur-Valserine","city_id":"1135","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10749","name":"Bourg-en-Bresse","city_id":"1135","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10750","name":"Oyonnax","city_id":"1135","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10751","name":"Chateau-Thierry","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10752","name":"Chauny","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10753","name":"Hirson","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10754","name":"Laon","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10755","name":"Saint-Quentin","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10756","name":"Soissons","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10757","name":"Strassbourg","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10758","name":"Tergnier","city_id":"1136","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10759","name":"Cusset","city_id":"1138","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10760","name":"Montlucon","city_id":"1138","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10761","name":"Moulins","city_id":"1138","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10762","name":"Vichy","city_id":"1138","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10763","name":"Yzeure","city_id":"1138","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10764","name":"Antibes","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10765","name":"Beausoleil","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10766","name":"Cagnes-sur-Mer","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10767","name":"Cannes","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10768","name":"Carros","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10769","name":"Grasse","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10770","name":"La Trinite","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10771","name":"Le Cannet","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10772","name":"Mandelieu-la-Napoule","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10773","name":"Menton","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10774","name":"Mougins","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10775","name":"Nice","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10776","name":"Roquebrune-Cap-Martin","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10777","name":"Saint-Laurent-du-Var","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10778","name":"Valbonne","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10779","name":"Vallauris","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10780","name":"Vence","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10781","name":"Villeneuve-Loubet","city_id":"1140","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10782","name":"Digne-les-Bains","city_id":"1141","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10783","name":"Manosque","city_id":"1141","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10784","name":"Adainville","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10785","name":"Alby-sur-Cheran","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10786","name":"Aubervilliers","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10787","name":"Auterive","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10788","name":"Baillet","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10789","name":"Beaune","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10790","name":"Beauzelle","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10791","name":"Bonnet De Mure","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10792","name":"Bormes-les-Mimosas","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10793","name":"Brindas","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10794","name":"Burlats","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10795","name":"Buzancais","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10796","name":"Candillargues","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10797","name":"Carry-le-Rouet","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10798","name":"Cassis","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10799","name":"Cessenon-Sur-Orb","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10800","name":"Chanac","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10801","name":"Chevigny","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10802","name":"Cogolin","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10803","name":"Collioure","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10804","name":"Cremieu","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10805","name":"Drulingen","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10806","name":"Ecouen","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10807","name":"Eschau","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10808","name":"Feignies","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10809","name":"Ferus","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10810","name":"Fourqueux","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10811","name":"Franqueville","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10812","name":"Gignac","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10813","name":"Gravigny","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10814","name":"Hangenbieten","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10815","name":"Hunspach","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10816","name":"Kilstett","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10817","name":"La Chevroliere","city_id":"1142","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"is_activated":"1"}, +{"id":"10818","name":"La-Fare-Les-Oliviers","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10819","name":"Lanvellec","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10820","name":"Le Faget","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10821","name":"Lesigny","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10822","name":"Lesquin","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10823","name":"Limonest","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10824","name":"Messein","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10825","name":"Morgat","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10826","name":"Mundolsheim","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10827","name":"Nantiat","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10828","name":"Niederbronn-les-Bain","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10829","name":"Nimes","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10830","name":"Opoul","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10831","name":"Pance","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10832","name":"Peronne","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10833","name":"Ploneour Lanvern","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10834","name":"Realmont","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10835","name":"Reichstett","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10836","name":"Saint Aubin","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10837","name":"Saint Christophe","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10838","name":"Saint Martin d’Here","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10839","name":"Saint-Berthevin","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10840","name":"Saint-Cergues","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10841","name":"Sancerre","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10842","name":"Sarzeau","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10843","name":"Seltz","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10844","name":"Seyssins","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10845","name":"Souffelweyersheim","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10846","name":"Vireux-Molhain","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10847","name":"Voves","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10848","name":"Wambrechies","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10849","name":"Wervocq Sud","city_id":"1142","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10850","name":"Abzac","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10851","name":"Bidart","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10852","name":"Biganos","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10853","name":"Buzet-sur-Baise","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10854","name":"Coursac","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10855","name":"Hasparren","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10856","name":"Landiras","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10857","name":"Le Haillan","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10858","name":"Ledat","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10859","name":"Martillac","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10860","name":"Puyoo","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10861","name":"Saint-Jean-dIllac","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10862","name":"Seignosse","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10863","name":"Tresses","city_id":"1143","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10864","name":"Annonay","city_id":"1144","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10865","name":"Aubenas","city_id":"1144","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10866","name":"Guilherand-Granges","city_id":"1144","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10867","name":"Privas","city_id":"1144","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10868","name":"Tournon-sur-Rhone","city_id":"1144","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10869","name":"Charleville-Mezieres","city_id":"1145","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10870","name":"Les Hautes-Rivieres","city_id":"1145","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10871","name":"Revin","city_id":"1145","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10872","name":"Sedan","city_id":"1145","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10873","name":"Foix","city_id":"1146","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10874","name":"Pamier","city_id":"1146","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10875","name":"Bar-sur-Seine","city_id":"1147","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10876","name":"Romilly-sur-Seine","city_id":"1147","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10877","name":"Saint-Andre-les-Vergers","city_id":"1147","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10878","name":"Sainte-Savine","city_id":"1147","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10879","name":"Troyes","city_id":"1147","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10880","name":"Carcassonne","city_id":"1148","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10881","name":"Castelnaudary","city_id":"1148","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10882","name":"Limoux","city_id":"1148","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10883","name":"Narbonne","city_id":"1148","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10884","name":"Ambert","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10885","name":"Creuzier-le-Vieux","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10886","name":"Peschadoires","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10887","name":"Riotord","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10888","name":"Saint-Pal-de-Chalencon","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10889","name":"Saint-Romain-Lachalm","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10890","name":"Saint-Vidal","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10891","name":"Sainte-Sigolene","city_id":"1149","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10892","name":"Millau","city_id":"1150","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10893","name":"Onet-le-Chataeu","city_id":"1150","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10894","name":"Rodez","city_id":"1150","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10895","name":"Villefranche-de-Rouergue","city_id":"1150","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10896","name":"Bischheim","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10897","name":"Bischwiller","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10898","name":"Haguenau","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10899","name":"Hoenheim","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10900","name":"Illkirch-Graffenstaden","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10901","name":"Lingolsheim","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10902","name":"Obernai","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10903","name":"Ostwald","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10904","name":"Saverne","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10905","name":"Schiltigheim","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10906","name":"Selestat","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10907","name":"Strasbourg","city_id":"1151","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10908","name":"Deauville","city_id":"1152","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10909","name":"Aix-en-Provence","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10910","name":"Allauch","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10911","name":"Arles","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10912","name":"Aubagne","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10913","name":"Berre-l Etang","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10914","name":"Bouc-Bel-Air","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10915","name":"Chateauneuf-les-Martigues","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10916","name":"Chateaurenard","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10917","name":"Fos-sur-Mer","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10918","name":"Gardanne","city_id":"1153","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"is_activated":"1"}, +{"id":"10919","name":"Istres","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10920","name":"La Ciotat","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10921","name":"Les Pennes-Mirabeau","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10922","name":"Maillane","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10923","name":"Marignane","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10924","name":"Marseille","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10925","name":"Martigues","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10926","name":"Miramas","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10927","name":"Plan-de-Cuques","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10928","name":"Port-de-Bouc","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10929","name":"Rognac","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10930","name":"Saint-Martin-de-Crau","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10931","name":"Saint-Remy-de-Provence","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10932","name":"Salon-de-Provence","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10933","name":"Septemes-les-Vallons","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10934","name":"Tarascon","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10935","name":"Vitrolles","city_id":"1153","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10936","name":"Migennes","city_id":"1154","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10937","name":"Javene","city_id":"1155","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10938","name":"Plouha","city_id":"1155","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10939","name":"Brehan","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10940","name":"Broons","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10941","name":"Guipry","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10942","name":"Miniac-Morvan","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10943","name":"Ploudaniel","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10944","name":"Vern-sur-Seiche","city_id":"1156","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10945","name":"Aillant-sur-Tholon","city_id":"1157","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10946","name":"Caen","city_id":"1158","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10947","name":"Herouville-Saint-Clair","city_id":"1158","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10948","name":"Lisieux","city_id":"1158","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10949","name":"Mondeville","city_id":"1158","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10950","name":"Vire","city_id":"1158","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10951","name":"Aurillac","city_id":"1159","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10952","name":"Brumath","city_id":"1160","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10953","name":"Courtaboeuf","city_id":"1160","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10954","name":"Iregny","city_id":"1160","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10955","name":"cedex","city_id":"1160","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10956","name":"Azay-le-Rideau","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10957","name":"Chevillon-sur-Huillard","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10958","name":"Cloyes-sur-le-Loir","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10959","name":"Gellainville","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10960","name":"La Chaussse-Saint-Victor","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10961","name":"La Ville-aux-Clercs","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10962","name":"Ladon","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10963","name":"Le Chatelet","city_id":"649","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10964","name":"Angouleme","city_id":"1161","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10965","name":"Cognac","city_id":"1161","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10966","name":"Lencloitre","city_id":"1161","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10967","name":"Soyaux","city_id":"1161","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10968","name":"La Rochelle","city_id":"1162","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10969","name":"Royan","city_id":"1162","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10970","name":"Saintes","city_id":"1162","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10971","name":"Bourges","city_id":"1163","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10972","name":"Saint-Amand-Montrond","city_id":"1163","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10973","name":"Saint-Doulchard","city_id":"1163","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10974","name":"Vierzon","city_id":"1163","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10975","name":"Brive-la-Gaillarde","city_id":"1164","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10976","name":"Tulle","city_id":"1164","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10977","name":"Ussel","city_id":"1164","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10978","name":"Ajaccio","city_id":"1165","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10979","name":"Porto-Vecchio","city_id":"1165","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10980","name":"Chenove","city_id":"1166","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10981","name":"Dijon","city_id":"1166","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10982","name":"Quetigny","city_id":"1166","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10983","name":"Talant","city_id":"1166","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10984","name":"Dinan","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10985","name":"Lamballe","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10986","name":"Lannion","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10987","name":"Loudeac","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10988","name":"Plerin","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10989","name":"Ploufragan","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10990","name":"Saint-Brieuc","city_id":"1167","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10991","name":"Gueret","city_id":"1168","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"is_activated":"1"}, +{"id":"10992","name":"Crolles","city_id":"1169","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10993","name":"Bressuire","city_id":"1170","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10994","name":"Niort","city_id":"1170","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10995","name":"Parthenay","city_id":"1170","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10996","name":"Thouars","city_id":"1170","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10997","name":"Bergerac","city_id":"1171","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10998","name":"Perigueux","city_id":"1171","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"10999","name":"Sarlat-la-Caneda","city_id":"1171","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11000","name":"Audincourt","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11001","name":"Besancon","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11002","name":"Beure","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11003","name":"Montbeliard","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11004","name":"Pontarlier","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11005","name":"Valentigney","city_id":"1172","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11006","name":"Bourg-les-Valence","city_id":"1173","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11007","name":"Montelimar","city_id":"1173","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11008","name":"Pierrelatte","city_id":"1173","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11009","name":"Romans-sur-Isere","city_id":"1173","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11010","name":"Valence","city_id":"1173","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11011","name":"Athis-Mons","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11012","name":"Bretigny-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11013","name":"Brunoy","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11014","name":"Bures-sur-Yvette","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11015","name":"Chilly-Mazarin","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11016","name":"Corbeil-Essonnes","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11017","name":"Courcouronnes","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11018","name":"Dourdan","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11019","name":"Draveil","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11020","name":"Epinay-sous-Senart","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11021","name":"Epinay-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11022","name":"Etampes","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11023","name":"Evry","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11024","name":"Fleury-Merogis","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11025","name":"Gif-sur-Yvette","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11026","name":"Grigny","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11027","name":"Igny","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11028","name":"Juvisy-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11029","name":"Les Ulis","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11030","name":"Longjumeau","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11031","name":"Massy","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11032","name":"Mennecy","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11033","name":"Montgeron","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11034","name":"Morangis","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11035","name":"Morsang-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11036","name":"Orsay","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11037","name":"Palaiseau","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11038","name":"Ris-Orangis","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11039","name":"Saint-Michel-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11040","name":"Sainte-Genevieve-des-Bois","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11041","name":"Savigny-sur-Orge","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11042","name":"Verrieres-le-Buisson","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11043","name":"Vigneux-sur-Seine","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11044","name":"Villebon-sur-Yvette","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11045","name":"Viry-Chatillon","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11046","name":"Yerres","city_id":"1174","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11047","name":"Bernay","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11048","name":"Evreux","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11049","name":"Gisors","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11050","name":"Louviers","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11051","name":"Pont-Audemer","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11052","name":"Val-de-Reuil","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11053","name":"Vernon","city_id":"1175","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11054","name":"Chartres","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11055","name":"Chateaudun","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11056","name":"Dreux","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11057","name":"Luce","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11058","name":"Mainvillier","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11059","name":"Nogent-le-Rotrou","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11060","name":"Vernouillet","city_id":"1176","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11061","name":"Feucherolles","city_id":"1177","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11062","name":"Concarneau","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11063","name":"Douarnenez","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11064","name":"Guipavas","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11065","name":"Landerneau","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11066","name":"Le Relecq-Kerhoun","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11067","name":"Morlaix","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11068","name":"Plougastel-Daoulas","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11069","name":"Plouzane","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11070","name":"Quimper","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11071","name":"Quimperle","city_id":"1178","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11072","name":"Charquemont","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11073","name":"Chemaudin","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11074","name":"Pelousey","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11075","name":"Perrigny","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11076","name":"Pirey","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11077","name":"Villers-le-Lac","city_id":"1179","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11078","name":"Ales","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11079","name":"Bagnols-sur-Ceze","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11080","name":"Beaucaire","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11081","name":"Pont-Saint-Esprit","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11082","name":"Saint-Gilles","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11083","name":"Vauvert","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11084","name":"Villeneuve-les-Avignon","city_id":"1180","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"is_activated":"1"}, +{"id":"11085","name":"Auch","city_id":"1181","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11086","name":"Beraut","city_id":"1181","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11087","name":"Ambares-et-Lagrave","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11088","name":"Arcachon","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11089","name":"Begles","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11090","name":"Blanquefort","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11091","name":"Bordeaux","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11092","name":"Bruges","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11093","name":"Cenon","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11094","name":"Cestas","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11095","name":"Eysines","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11096","name":"Floirac","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11097","name":"Gradignan","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11098","name":"Gujan-Mestras","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11099","name":"La Teste-de-Buch","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11100","name":"Le Bouscat","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11101","name":"Libourne","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11102","name":"Lormont","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11103","name":"Merignac","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11104","name":"Pessac","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11105","name":"Saint-Medard-en-Jalles","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11106","name":"Talence","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11107","name":"Villenave-d Ornon","city_id":"1182","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11108","name":"Cernay","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11109","name":"Colmar","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11110","name":"Guebwiller","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11111","name":"Illzach","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11112","name":"Kingersheim","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11113","name":"Mulhouse","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11114","name":"Riediesheim","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11115","name":"Rixheim","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11116","name":"Saint-Louis","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11117","name":"Wittelsheim","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11118","name":"Wittenheim","city_id":"1183","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11119","name":"Bastia","city_id":"1184","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11120","name":"Balma","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11121","name":"Blagnac","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11122","name":"Colomiers","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11123","name":"Cugnaux","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11124","name":"L Union","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11125","name":"Muret","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11126","name":"Plaisance-du-Touch","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11127","name":"Ramonville-Saint-Agne","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11128","name":"Saint-Gaudens","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11129","name":"Saint-Orens-de-Gameville","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11130","name":"Toulouse","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11131","name":"Tournefeuille","city_id":"1185","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11132","name":"Blanzac","city_id":"1186","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11133","name":"Le Puy-en-Velay","city_id":"1186","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11134","name":"Chaumont","city_id":"1187","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11135","name":"Langres","city_id":"1187","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11136","name":"Saint-Dizier","city_id":"1187","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11137","name":"Hericourt","city_id":"1188","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11138","name":"Lure","city_id":"1188","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11139","name":"Luxeuil-les-Bains","city_id":"1188","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11140","name":"Vesoul","city_id":"1188","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11141","name":"Annecy","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11142","name":"Annecy-le-Vieux","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11143","name":"Annemasse","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11144","name":"Archamps","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11145","name":"Bonneville","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11146","name":"Chamonix-Mont-Blanc","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11147","name":"Cluses","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11148","name":"Contamine sur Arve","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11149","name":"Cran-Gevrier","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11150","name":"Passy","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11151","name":"Rumilly","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11152","name":"Sallanches","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11153","name":"Seynod","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11154","name":"Thonon-les-Bains","city_id":"1189","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11155","name":"Gaillard","city_id":"1190","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11156","name":"Limoges","city_id":"1190","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11157","name":"Saint-Junien","city_id":"1190","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11158","name":"Briancon","city_id":"1191","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11159","name":"Gap","city_id":"1191","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11160","name":"Lourdes","city_id":"1192","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11161","name":"Tarbes","city_id":"1192","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11162","name":"Antony","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11163","name":"Asnieres-sur-Seine","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11164","name":"Bagneux","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11165","name":"Bois-Colombes","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11166","name":"Boulogne-Billancourt","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11167","name":"Bourg-la-Reine","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11168","name":"Chatenay-Malabry","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11169","name":"Chatillon","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11170","name":"Chaville","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11171","name":"Clamart","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11172","name":"Clichy","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11173","name":"Colombes","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11174","name":"Courbevoie","city_id":"1193","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"is_activated":"1"}, +{"id":"11175","name":"Fontenay-aux-Roses","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11176","name":"Garches","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11177","name":"Gennevillers","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11178","name":"Issy-les-Moulineaux","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11179","name":"La Garenne-Colombes","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11180","name":"Le Plessis-Robinson","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11181","name":"Levallois-Perret","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11182","name":"Malakoff","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11183","name":"Meudon","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11184","name":"Montrouge","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11185","name":"Nanterre","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11186","name":"Neuilly-sur-Seine","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11187","name":"Puteaux","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11188","name":"Rueil-Malmaison","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11189","name":"Saint-Cloud","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11190","name":"Sceaux","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11191","name":"Sevres","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11192","name":"Suresnes","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11193","name":"Vanves","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11194","name":"Ville-d Avray","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11195","name":"Villeneuve-la-Garenne","city_id":"1193","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11196","name":"Agde","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11197","name":"Beziers","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11198","name":"Castelnau-le-Lez","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11199","name":"Frontignan","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11200","name":"Lattes","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11201","name":"Lunel","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11202","name":"Mauguio","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11203","name":"Montpellier","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11204","name":"Sete","city_id":"1194","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11205","name":"Champagne-sur-Oise","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11206","name":"Croissy-Beaubourg","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11207","name":"Gennevilliers","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11208","name":"Le Mesnil-le-Roi","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11209","name":"Le Plessis-Bouchard","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11210","name":"Rebais","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11211","name":"Saint-Thibault-des-Vignes","city_id":"1195","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11212","name":"Cesson-Sevigne","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11213","name":"Dinard","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11214","name":"Fougeres","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11215","name":"Rennes","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11216","name":"Saint-Malo","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11217","name":"Vitre","city_id":"1196","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11218","name":"Chateauroux","city_id":"1197","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11219","name":"Issoudun","city_id":"1197","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11220","name":"Amboise","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11221","name":"Joue-les-Tours","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11222","name":"Saint-Avertin","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11223","name":"Saint-Cyr-sur-Loire","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11224","name":"Saint-Pierre-des-Corps","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11225","name":"Tours","city_id":"1198","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11226","name":"Bourgoin-Jallieu","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11227","name":"Echirolles","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11228","name":"Fontaine","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11229","name":"Grenoble","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11230","name":"Le Pont-de-Claix","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11231","name":"Meylan","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11232","name":"Saint-Egreve","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11233","name":"Saint-Martin-d Heres","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11234","name":"Seyssinet-Pariset","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11235","name":"Vienne","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11236","name":"Villefontaine","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11237","name":"Voiron","city_id":"1199","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11238","name":"Champagnole","city_id":"1200","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11239","name":"Dole","city_id":"1200","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11240","name":"Lons-le-Saunier","city_id":"1200","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11241","name":"Saint-Claude","city_id":"1200","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11242","name":"Sebastiangasse","city_id":"1201","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11243","name":"Biscarrosse","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11244","name":"Dax","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11245","name":"Hagetmau","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11246","name":"Landes","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11247","name":"Mont-de-Marsan","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11248","name":"Saint-Paul-les-Dax","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11249","name":"Tarnos","city_id":"1202","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11250","name":"Codolet","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11251","name":"Cuxac-d Aude","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11252","name":"Gigean","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11253","name":"Grabels","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11254","name":"Lamalou-les-Bains","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11255","name":"Perols","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11256","name":"Peyrens","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11257","name":"Tuchan","city_id":"1203","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11258","name":"Larcay","city_id":"1204","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"is_activated":"1"}, +{"id":"11259","name":"Voutezac","city_id":"1207","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11260","name":"Blois","city_id":"1208","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11261","name":"Romorantin-Lanthenay","city_id":"1208","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11262","name":"Vendome","city_id":"1208","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11263","name":"Andrezieux-Boutheon","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11264","name":"Firminy","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11265","name":"La Ricamarie","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11266","name":"Le Chambon-Feugerolles","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11267","name":"Montbrison","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11268","name":"Riorges","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11269","name":"Rive-de-Gier","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11270","name":"Roanne","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11271","name":"Roche-la-Moliere","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11272","name":"Saint-Chamond","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11273","name":"Saint-Etienne","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11274","name":"Saint-Just-Saint-Rambert","city_id":"1209","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11275","name":"Bouguenais","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11276","name":"Carquefou","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11277","name":"Chateaubriant","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11278","name":"Coueron","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11279","name":"Guerande","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11280","name":"La Baule-Escoublac","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11281","name":"La Chapelle-sur-Erdre","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11282","name":"Nantes","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11283","name":"Orvault","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11284","name":"Reze","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11285","name":"Saint Etienne de Mer Morte","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11286","name":"Saint-Herblain","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11287","name":"Saint-Nazaire","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11288","name":"Saint-Sebastien-sur-Loire","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11289","name":"Sainte-Luce-sur-Loire","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11290","name":"Vertou","city_id":"1210","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11291","name":"Amilly","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11292","name":"Chalette-sur-Loing","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11293","name":"Fleury-les-Aubrais","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11294","name":"Gien","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11295","name":"Montargis","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11296","name":"Olivet","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11297","name":"Orleans","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11298","name":"Pithiviers","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11299","name":"Saint-Jean-de-Braye","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11300","name":"Saint-Jean-de-la-Ruelle","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11301","name":"Saran","city_id":"1211","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11302","name":"Montbronn","city_id":"1212","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11303","name":"Cahors","city_id":"1213","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11304","name":"Figeac","city_id":"1213","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11305","name":"Agen","city_id":"1214","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11306","name":"Le Passage","city_id":"1214","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11307","name":"Marmande","city_id":"1214","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11308","name":"Tonneins","city_id":"1214","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11309","name":"Villeneuve-sur-Lot","city_id":"1214","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11310","name":"Mende","city_id":"1216","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11311","name":"Angers","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11312","name":"Avrille","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11313","name":"Cholet","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11314","name":"Les Ponts-de-Ce","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11315","name":"Saint-Barthelemy-d Anjou","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11316","name":"Saumur","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11317","name":"Torfou","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11318","name":"Trelaze","city_id":"1217","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11319","name":"Cherbourg","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11320","name":"Coutances","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11321","name":"Equeurdreville-Hainneville","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11322","name":"Granville","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11323","name":"Octeville","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11324","name":"Saint-Lo","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11325","name":"Tourlaville","city_id":"1218","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11326","name":"Chalons-en-Champagne","city_id":"1219","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11327","name":"Epernay","city_id":"1219","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11328","name":"Reims","city_id":"1219","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11329","name":"Tinqueux","city_id":"1219","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11330","name":"Vitry-le-Francois","city_id":"1219","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11331","name":"Chateau-Gontier","city_id":"1220","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11332","name":"Mayenne","city_id":"1220","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11333","name":"Montsurs","city_id":"1220","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"is_activated":"1"}, +{"id":"11334","name":"Dombasle-sur-Meurthe","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11335","name":"Jarville-la-Malgrange","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11336","name":"Laxou","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11337","name":"Longwy","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11338","name":"Luneville","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11339","name":"Nancy","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11340","name":"Pont-a-Mousson","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11341","name":"Saint-Max","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11342","name":"Toul","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11343","name":"Vandoeuvre-les-Nancy","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11344","name":"Villers-les-Nancy","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11345","name":"Villerupt","city_id":"1221","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11346","name":"Bar-le-Duc","city_id":"1222","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11347","name":"Verdun","city_id":"1222","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11348","name":"Boissezon","city_id":"1223","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11349","name":"Launaguet","city_id":"1223","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11350","name":"Mauleon","city_id":"1223","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11351","name":"Maurens-Scopont","city_id":"1223","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11352","name":"Auray","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11353","name":"Guidel","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11354","name":"Hennebont","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11355","name":"Lanester","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11356","name":"Lorient","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11357","name":"Ploemeur","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11358","name":"Pontivy","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11359","name":"Vannes","city_id":"1224","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11360","name":"Amneville","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11361","name":"Behren-les-Forbach","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11362","name":"Creutzwald","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11363","name":"Fameck","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11364","name":"Florange","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11365","name":"Forbach","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11366","name":"Freyming-Merlebach","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11367","name":"Hagondange","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11368","name":"Hayange","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11369","name":"Hombourg-Haut","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11370","name":"Maizieres-les-Metz","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11371","name":"Marly","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11372","name":"Metz","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11373","name":"Montigny-les-Metz","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11374","name":"Moyeuvre-Grande","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11375","name":"Rombas","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11376","name":"Saint-Avold","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11377","name":"Sarrebourg","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11378","name":"Sarreguemines","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11379","name":"Stiring-Wendel","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11380","name":"Thionville","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11381","name":"Uckange","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11382","name":"Woippy","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11383","name":"Yutz","city_id":"1225","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11384","name":"Cosne-Cours-sur-Loire","city_id":"1226","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11385","name":"Nevers","city_id":"1226","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11386","name":"Varennes-Vauzelles","city_id":"1226","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11387","name":"Aniche","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11388","name":"Annoeullin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11389","name":"Anzin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11390","name":"Armentieres","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11391","name":"Aulnoye-Aymeries","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11392","name":"Bailleul","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11393","name":"Bondues","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11394","name":"Bruay-sur-l Escaut","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11395","name":"Cambrai","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11396","name":"Cappelle-la-Grande","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11397","name":"Caudry","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11398","name":"Comines","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11399","name":"Conde-sur-l Escaut","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11400","name":"Coudekerque-Branche","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11401","name":"Croix","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11402","name":"Denain","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11403","name":"Douai","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11404","name":"Douchy-les-Mines","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11405","name":"Dunkerque","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11406","name":"Escaudain","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11407","name":"Fache-Thumesnil","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11408","name":"Fourmies","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11409","name":"Grande-Synthe","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11410","name":"Graveline","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11411","name":"Halluin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11412","name":"Haubourdin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11413","name":"Hautmont","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11414","name":"Hazebrouck","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11415","name":"Hem","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11416","name":"Hulluch","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11417","name":"Jeumont","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11418","name":"La Madeleine","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11419","name":"Lambersart","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11420","name":"Leers","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11421","name":"Lomme","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11422","name":"Loos","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11423","name":"Lys-lez-Lannoy","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11424","name":"Marcq-en-Baroeul","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11425","name":"Marennes","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11426","name":"Marquette-lez-Lille","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11427","name":"Maubeuge","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11428","name":"Merville","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11429","name":"Mons-en-Baroeul","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11430","name":"Mouvaux","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11431","name":"Neuville-en-Ferrain","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11432","name":"Onnaing","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11433","name":"Raismes","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11434","name":"Ronchin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11435","name":"Roncq","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11436","name":"Roubaix","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11437","name":"Saint-Amand-les-Eaux","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11438","name":"Saint-Andre-lez-Lille","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11439","name":"Saint-Pol-sur-Mer","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11440","name":"Saint-Saulve","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11441","name":"Seclin","city_id":"651","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"is_activated":"1"}, +{"id":"11442","name":"Sin-le-Noble","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11443","name":"Somain","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11444","name":"Tourcoing","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11445","name":"Valenciennes","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11446","name":"Vieux-Conde","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11447","name":"Villeneuve-d Ascq","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11448","name":"Wasquehal","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11449","name":"Wattignies","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11450","name":"Wattrelos","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11451","name":"Waziers","city_id":"651","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11452","name":"Esquelbecq","city_id":"1227","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11453","name":"Beauvais","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11454","name":"Chantilly","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11455","name":"Compiegne","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11456","name":"Creil","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11457","name":"Crepy-en-Valois","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11458","name":"Gouvieux","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11459","name":"Meru","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11460","name":"Montataire","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11461","name":"Nogent-sur-Oise","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11462","name":"Noyon","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11463","name":"Pont-Sainte-Maxence","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11464","name":"Senlis","city_id":"1228","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11465","name":"Argentan","city_id":"1229","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11466","name":"Flers","city_id":"1229","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11467","name":"L Aigle","city_id":"1229","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11468","name":"Aire-sur-la-Lys","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11469","name":"Arras","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11470","name":"Auchel","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11471","name":"Avion","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11472","name":"Berck","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11473","name":"Bethune","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11474","name":"Boulogne-sur-Mer","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11475","name":"Bruay-la-Brussiere","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11476","name":"Bully-les-Mines","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11477","name":"Calais","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11478","name":"Carvin","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11479","name":"Courrieres","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11480","name":"Etaples","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11481","name":"Harnes","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11482","name":"Henin-Beaumont","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11483","name":"Le Portel","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11484","name":"Libercourt","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11485","name":"Lievin","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11486","name":"Lillers","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11487","name":"Longuenesse","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11488","name":"Marck","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11489","name":"Mericourt","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11490","name":"Montigny-en-Gohelle","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11491","name":"Noeux-les-Mines","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11492","name":"Oignies","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11493","name":"Outreau","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11494","name":"Saint-Martin-Boulogne","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11495","name":"Saint-Omer","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11496","name":"Sallaumines","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11497","name":"Vendin-le-Vieil","city_id":"1231","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11498","name":"Loiron","city_id":"1233","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11499","name":"Marolles-les-Braults","city_id":"1233","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11500","name":"Mortagne-sur-Sevre","city_id":"1233","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11501","name":"Mouzillon","city_id":"1233","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11502","name":"Noirmoutier-en-l Île","city_id":"1233","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11503","name":"Friville","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11504","name":"Liancourt","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11505","name":"Maizy","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11506","name":"Oust-Marest","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11507","name":"Puiseux-le-Hauberger","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11508","name":"Saint-Crepin-Ibouvillers","city_id":"1234","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11509","name":"Aubiere","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11510","name":"Chamalieres","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11511","name":"Clermont-Ferrand","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11512","name":"Cournon-d Auvergne","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11513","name":"Gerzat","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11514","name":"Issoire","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11515","name":"Riom","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11516","name":"Thiers","city_id":"1235","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11517","name":"Anglet","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11518","name":"Bayonne","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11519","name":"Biarritz","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11520","name":"Billere","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11521","name":"Hendaye","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11522","name":"Lons","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11523","name":"Oloron-Sainte-Marie","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11524","name":"Orthez","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11525","name":"Pau","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11526","name":"Saint-Jean-de-Luz","city_id":"1236","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11527","name":"Perpignan","city_id":"1237","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11528","name":"Saint-Esteve","city_id":"1237","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"is_activated":"1"}, +{"id":"11529","name":"Quelmes","city_id":"1238","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11530","name":"Brignais","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11531","name":"Bron","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11532","name":"Caluire-et-Cuire","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11533","name":"Decines-Charpieu","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11534","name":"Ecully","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11535","name":"Francheville","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11536","name":"Genas","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11537","name":"Genay","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11538","name":"Givors","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11539","name":"Lyon","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11540","name":"Meyzieu","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11541","name":"Mions","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11542","name":"Oullins","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11543","name":"Pierre-Benite","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11544","name":"Rillieux-la-Pape","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11545","name":"Saint-Fons","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11546","name":"Saint-Genis-Laval","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11547","name":"Saint-Priest","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11548","name":"Sainte-Foy-les-Lyon","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11549","name":"Tarare","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11550","name":"Tassin-la-Demi-Lune","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11551","name":"Vaulx-en-Velin","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11552","name":"Venissieux","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11553","name":"Villefranche-sur-Saone","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11554","name":"Villeurbanne","city_id":"1239","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11555","name":"Beauvoir-en-Royans","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11556","name":"Belley","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11557","name":"Bons-en-Chablais","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11558","name":"Chalain-d Uzore","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11559","name":"Chavanod","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11560","name":"Chazay-d-Azergues","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11561","name":"Chimilin","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11562","name":"Civrieux-d Azergues","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11563","name":"Corbas","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11564","name":"Courzieu","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11565","name":"Dardilly","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11566","name":"Guereins","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11567","name":"Izernore","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11568","name":"La Talaudiere","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11569","name":"La Tronche","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11570","name":"La Verpilliere","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11571","name":"Le Cheylard","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11572","name":"Le Cheylas","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11573","name":"Mery","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11574","name":"Moirans","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11575","name":"Montalieu-Vercieu","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11576","name":"Montmiral","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11577","name":"Peronnas","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11578","name":"Poncin","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11579","name":"Quincie-en-Beaujolais","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11580","name":"Saint-Quentin-sur-Isere","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11581","name":"Sainte Agathe la Bouteresse","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11582","name":"Sainte-Consorce","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11583","name":"Sisteron","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11584","name":"Trevoux","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11585","name":"Villard-Bonnot","city_id":"1240","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11586","name":"Autun","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11587","name":"Chalon-sur-Saone","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11588","name":"Digoin","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11589","name":"Gueugnon","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11590","name":"Le Creusot","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11591","name":"Macon","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11592","name":"Montceau-les-Mines","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11593","name":"Paray-le-Monial","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11594","name":"Saint-Vallier","city_id":"1243","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11595","name":"Allonnes","city_id":"1244","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11596","name":"La Ferte-Bernard","city_id":"1244","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11597","name":"La Fleche","city_id":"1244","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11598","name":"Le Mans","city_id":"1244","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11599","name":"Sable-sur-Sarthe","city_id":"1244","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11600","name":"Aix-les-Bains","city_id":"1245","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11601","name":"Albertville","city_id":"1245","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11602","name":"Chambery","city_id":"1245","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11603","name":"La Motte-Servolex","city_id":"1245","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11604","name":"Saint-Jean-de-Maurienne","city_id":"1245","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11605","name":"Barentin","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11606","name":"Bihorel","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11607","name":"Bois-Guillaume","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11608","name":"Bolbec","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11609","name":"Canteleu","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11610","name":"Caudebec-les-Elbeuf","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11611","name":"Darnetal","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11612","name":"Deville-les-Rouen","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11613","name":"Dieppe","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11614","name":"Elbeuf","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11615","name":"Fecamp","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11616","name":"Gonfreville-l Orcher","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11617","name":"Grand-Couronne","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11618","name":"Harfleur","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11619","name":"Le Grand-Quevilly","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11620","name":"Le Havre","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11621","name":"Le Petit-Quevilly","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11622","name":"Lillebonne","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11623","name":"Maromme","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11624","name":"Mont-Saint-Aignan","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11625","name":"Montivilliers","city_id":"1246","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"is_activated":"1"}, +{"id":"11626","name":"Notre-Dame-de-Gravenchon","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11627","name":"Oissel","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11628","name":"Rouen","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11629","name":"Saint-Etienne-du-Rouvray","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11630","name":"Sotteville-les-Rouen","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11631","name":"Yvetot","city_id":"1246","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11632","name":"Aubervillers","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11633","name":"Aulnay-sous-Bois","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11634","name":"Bagnolet","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11635","name":"Bobigny","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11636","name":"Bondy","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11637","name":"Clichy-sous-Bois","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11638","name":"Drancy","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11639","name":"Epinay-sur-Seine","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11640","name":"Gagny","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11641","name":"La Courneuve","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11642","name":"Le Blanc-Mesnil","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11643","name":"Le Bourget","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11644","name":"Le Pre-Saint-Gervais","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11645","name":"Le Raincy","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11646","name":"Les Lilas","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11647","name":"Les Pavillons-sous-Bois","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11648","name":"Livry-Gargan","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11649","name":"Montfermeil","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11650","name":"Montreuil","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11651","name":"Neuilly-Plaisance","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11652","name":"Neuilly-sur-Marne","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11653","name":"Noisy-le-Grand","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11654","name":"Noisy-le-Sec","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11655","name":"Pantin","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11656","name":"Pierrefitte-sur-Seine","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11657","name":"Romainville","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11658","name":"Rosny-sous-Bois","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11659","name":"Saint-Ouen","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11660","name":"Sevran","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11661","name":"Stains","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11662","name":"Tremblay-en-France","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11663","name":"Villemomble","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11664","name":"Villepinte","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11665","name":"Villetaneuse","city_id":"1247","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11666","name":"Avon","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11667","name":"Brie-Comte-Robert","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11668","name":"Champs-sur-Marne","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11669","name":"Chelles","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11670","name":"Claye-Souilly","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11671","name":"Combs-la-Ville","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11672","name":"Coulommiers","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11673","name":"Dammarie-les-Lys","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11674","name":"Fontainebleau","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11675","name":"Lagny-sur-Marne","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11676","name":"Le Mee-sur-Seine","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11677","name":"Lognes","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11678","name":"Meaux","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11679","name":"Melun","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11680","name":"Mitry-Mory","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11681","name":"Moissy-Cramayel","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11682","name":"Montereau-Fault-Yonne","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11683","name":"Nemours","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11684","name":"Noisiel","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11685","name":"Ozoir-la-Ferriere","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11686","name":"Pontault-Combault","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11687","name":"Provins","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11688","name":"Roissy-en-Brie","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11689","name":"Saint-Fargeau-Ponthierry","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11690","name":"Savigny-le-Temple","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11691","name":"Torcy","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11692","name":"Vaires-sur-Marne","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11693","name":"Veneux","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11694","name":"Villeparisis","city_id":"1248","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11695","name":"Abbeville","city_id":"1249","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11696","name":"Albert","city_id":"1249","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11697","name":"Amiens","city_id":"1249","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11698","name":"Souvans","city_id":"1251","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11699","name":"Albi","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11700","name":"Carmaux","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11701","name":"Castres","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11702","name":"Gaillac","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11703","name":"Graulhet","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11704","name":"Mazamet","city_id":"1252","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11705","name":"Castelsarassin","city_id":"1253","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11706","name":"Moissac","city_id":"1253","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11707","name":"Montauban","city_id":"1253","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11708","name":"Chamberet","city_id":"1255","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11709","name":"Argenteuil","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11710","name":"Arnouville-les-Gonesse","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11711","name":"Beauchamps","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11712","name":"Bezons","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11713","name":"Cergy","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11714","name":"Cormeilles-en-Parisis","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11715","name":"Deuil-la-Barre","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11716","name":"Domont","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11717","name":"Eaubonne","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11718","name":"Enghien-les-Bains","city_id":"1257","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"is_activated":"1"}, +{"id":"11719","name":"Eragny","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11720","name":"Ermont","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11721","name":"Ezanville","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11722","name":"Fosses","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11723","name":"Franconville","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11724","name":"Garges-les-Gonesse","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11725","name":"Gonesse","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11726","name":"Goussainville","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11727","name":"Herblay","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11728","name":"Jouy-le-Moutier","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11729","name":"L Isle-Adam","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11730","name":"Montigny-les-Cormeilles","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11731","name":"Montmorency","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11732","name":"Osny","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11733","name":"Persan","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11734","name":"Pontoise","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11735","name":"Saint-Brice-sous-Foret","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11736","name":"Saint-Gratien","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11737","name":"Saint-Leu-la-Foret","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11738","name":"Saint-Ouen-l Aumone","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11739","name":"Sannois","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11740","name":"Sarcelles","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11741","name":"Soisy-sous-Montmorency","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11742","name":"Taverny","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11743","name":"Vaureal","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11744","name":"Villiers-le-Bel","city_id":"1257","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11745","name":"Alfortville","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11746","name":"Arcueil","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11747","name":"Boissy-Saint-Leger","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11748","name":"Bonneuil","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11749","name":"Bry-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11750","name":"Cachan","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11751","name":"Champigny-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11752","name":"Charenton-le-Pont","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11753","name":"Chennevieres-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11754","name":"Chevilly-Larue","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11755","name":"Choisy-le-Roi","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11756","name":"Creteil","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11757","name":"Fontenay-sous-Bois","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11758","name":"Fresnes","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11759","name":"Ivry-sur-Seine","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11760","name":"Joinville-le-Pont","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11761","name":"L Hay-les-Roses","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11762","name":"La Queue-en-Brie","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11763","name":"Le Kremlin-Bicetre","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11764","name":"Le Perreux-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11765","name":"Le Plessis-Trevise","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11766","name":"Limeil-Brevannes","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11767","name":"Maisons-Alfort","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11768","name":"Nogent-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11769","name":"Orly","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11770","name":"Ormesson-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11771","name":"Saint-Mande","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11772","name":"Saint-Maur-des-Fosses","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11773","name":"Saint-Maurice","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11774","name":"Sucy-en-Brie","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11775","name":"Thiais","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11776","name":"Valenton","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11777","name":"Villejuif","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11778","name":"Villeneuve-Saint-Georges","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11779","name":"Villeneuve-le-Roi","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11780","name":"Villiers-sur-Marne","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11781","name":"Vincennes","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11782","name":"Vitry-sur-Seine","city_id":"1258","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11783","name":"Brignoles","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11784","name":"Draguignan","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11785","name":"Frejus","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11786","name":"Hyeres","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11787","name":"La Crau","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11788","name":"La Garde","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11789","name":"La Seyne-sur-Mer","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11790","name":"La Valette-du-Var","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11791","name":"Le Pradet","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11792","name":"Ollioules","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11793","name":"Roquebrune-sur-Argens","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11794","name":"Saint-Maximin-la-Sainte-Baume","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11795","name":"Sainte-Maxime","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11796","name":"Sanary-sur-Mer","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11797","name":"Six-Fours-les-Plages","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11798","name":"Sollies-Pont","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11799","name":"Toulon","city_id":"1259","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11800","name":"Apt","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11801","name":"Avignon","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11802","name":"Bollene","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11803","name":"Carpentras","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11804","name":"Cavaillon","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11805","name":"L Isle-sur-la-Sorgue","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11806","name":"Le Pontet","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11807","name":"Orange","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11808","name":"Pertuis","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11809","name":"Sorgues","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11810","name":"Valreas","city_id":"1260","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11811","name":"Vellise","city_id":"1261","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11812","name":"Challans","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11813","name":"Chateau-d Olonne","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11814","name":"Fontenay-le-Comte","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11815","name":"La Chasnis","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11816","name":"La Roche-sur-Yon","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11817","name":"Les Herbiers","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11818","name":"Les Sables-d Olonne","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11819","name":"Longeville-sur-Mer","city_id":"1262","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11820","name":"Chatellerault","city_id":"1263","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11821","name":"Poitiers","city_id":"1263","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"is_activated":"1"}, +{"id":"11822","name":"Epinal","city_id":"1264","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11823","name":"Gerardmer","city_id":"1264","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11824","name":"Remiremont","city_id":"1264","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11825","name":"Saint-Die","city_id":"1264","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11826","name":"Auxerre","city_id":"1265","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11827","name":"Avallon","city_id":"1265","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11828","name":"Joigny","city_id":"1265","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11829","name":"Sens","city_id":"1265","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11830","name":"Acheres","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11831","name":"Andresy","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11832","name":"Aubergenville","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11833","name":"Bois-d Arcy","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11834","name":"Carrieres-sous-Poissy","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11835","name":"Carrieres-sur-Seine","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11836","name":"Chanteloup-les-Vignes","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11837","name":"Chatou","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11838","name":"Conflans-Sainte-Honorine","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11839","name":"Croissy-sur-Seine","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11840","name":"Elancourt","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11841","name":"Fontenay-le-Fleury","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11842","name":"Guyancourt","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11843","name":"Houilles","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11844","name":"La Celle-Saint-Cloud","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11845","name":"Le Chesnay","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11846","name":"Le Pecq","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11847","name":"Le Vesinet","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11848","name":"Les Clayes-sous-Bois","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11849","name":"Les Mureaux","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11850","name":"Limay","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11851","name":"Maisons-Laffitte","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11852","name":"Mantes-la-Jolie","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11853","name":"Mantes-la-Ville","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11854","name":"Marly-le-Roi","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11855","name":"Maurepas","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11856","name":"Montesson","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11857","name":"Montigny-le-Bretonneux","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11858","name":"Plaisir","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11859","name":"Poissy","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11860","name":"Rambouillet","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11861","name":"Saint-Cyr-l Ecole","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11862","name":"Saint-Germain-en-Laye","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11863","name":"Sartrouville","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11864","name":"Trappes","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11865","name":"Triel-sur-Seine","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11866","name":"Velizy-Villacoublay","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11867","name":"Verneuil-sur-Seine","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11868","name":"Versailles","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11869","name":"Viroflay","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11870","name":"Voisins-le-Bretonneux","city_id":"1266","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11871","name":"Camopi","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11872","name":"Cayenne","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11873","name":"Iracoubo","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11874","name":"Kourou","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11875","name":"Macouria","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11876","name":"Matoury","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11877","name":"Remire-Montjoly","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11878","name":"Roura","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11879","name":"Sinnamary","city_id":"1267","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11880","name":"Apatou","city_id":"1268","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11881","name":"Grand-Santi","city_id":"1268","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11882","name":"Mana","city_id":"1268","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11883","name":"Maripasoula","city_id":"1268","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11884","name":"Saint-Laurent-du-Maroni","city_id":"1268","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11885","name":"Atuona","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11886","name":"Fatu-Hiva","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11887","name":"Hakahao","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11888","name":"Hakamaii","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11889","name":"Hatiheu","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11890","name":"Tahuata","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11891","name":"Taiohae","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11892","name":"Taipivai","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11893","name":"Ua-Huka","city_id":"1271","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11894","name":"Ahe","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11895","name":"Amanu","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11896","name":"Anaa","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11897","name":"Apataki","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11898","name":"Arutua","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11899","name":"Faaite","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11900","name":"Fakahima","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11901","name":"Fakarava","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11902","name":"Fangatau","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11903","name":"Hao","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11904","name":"Hereheretue","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11905","name":"Hikueru","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11906","name":"Katiu","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11907","name":"Kauehi","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11908","name":"Kaukura","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11909","name":"Makatea","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11910","name":"Makemo","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11911","name":"Manihi","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11912","name":"Marokau","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11913","name":"Napuka","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11914","name":"Niau","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11915","name":"Nukutavake","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11916","name":"Puamau","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11917","name":"Pukapuka","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11918","name":"Pukarua","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11919","name":"Rangiroa","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11920","name":"Raroia","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11921","name":"Reao","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11922","name":"Rikitea","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11923","name":"Taenga","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11924","name":"Takapoto","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11925","name":"Takaroa","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11926","name":"Tatakoto","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11927","name":"Tepoto","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11928","name":"Tikehau","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11929","name":"Tureia","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11930","name":"Vahitahi","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11931","name":"Vairaatea","city_id":"1272","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"is_activated":"1"}, +{"id":"11932","name":"Amaru","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11933","name":"Anapoto","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11934","name":"Anatonu","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11935","name":"Auti","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11936","name":"Avera","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11937","name":"Mahu","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11938","name":"Mataura","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11939","name":"Moerai","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11940","name":"Mutuaura","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11941","name":"Rairua","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11942","name":"Rapa","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11943","name":"Taahuaia","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11944","name":"Vaiuru","city_id":"1273","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11945","name":"Martin-de-Vivies","city_id":"1274","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11946","name":"Port-aux-Francais","city_id":"1276","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11947","name":"Cocobeach","city_id":"1277","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11948","name":"Kango","city_id":"1277","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11949","name":"Libreville","city_id":"1277","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11950","name":"Nkan","city_id":"1277","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11951","name":"Ntoum","city_id":"1277","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11952","name":"Lekoni","city_id":"1278","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11953","name":"Masuku","city_id":"1278","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11954","name":"Moanda","city_id":"1278","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11955","name":"Mounana","city_id":"1278","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11956","name":"Okandja","city_id":"1278","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11957","name":"Lambarene","city_id":"1279","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11958","name":"Ndjole","city_id":"1279","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11959","name":"Fougamou","city_id":"1280","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11960","name":"Mbigou","city_id":"1280","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11961","name":"Mimongo","city_id":"1280","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11962","name":"Mouila","city_id":"1280","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11963","name":"Ndende","city_id":"1280","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11964","name":"Mayumba","city_id":"1281","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11965","name":"Tchibanga","city_id":"1281","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11966","name":"Tsogni","city_id":"1281","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11967","name":"Booue","city_id":"1282","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11968","name":"Makokou","city_id":"1282","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11969","name":"Mekambo","city_id":"1282","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11970","name":"Koulamoutou","city_id":"1283","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11971","name":"Lastoursville","city_id":"1283","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11972","name":"Gamba","city_id":"1284","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11973","name":"Omboue","city_id":"1284","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11974","name":"Port-Gentil","city_id":"1284","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11975","name":"Sette Cama","city_id":"1284","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11976","name":"Bitam","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11977","name":"Lalara","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11978","name":"Medouneu","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11979","name":"Minvoul","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11980","name":"Mitzic","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11981","name":"Oyem","city_id":"1285","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11982","name":"Banjul","city_id":"1286","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11983","name":"Basse","city_id":"1287","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11984","name":"Gambissara","city_id":"1287","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11985","name":"Sabi","city_id":"1287","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11986","name":"Salikeni","city_id":"1287","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11987","name":"Brikama","city_id":"1288","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11988","name":"Brufut","city_id":"1288","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11989","name":"Gunjur","city_id":"1288","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11990","name":"Sukuta","city_id":"1288","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11991","name":"Bansang","city_id":"1289","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11992","name":"Janjanbureh","city_id":"1289","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11993","name":"Bakau","city_id":"1290","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11994","name":"Serekunda","city_id":"1290","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"is_activated":"1"}, +{"id":"11995","name":"Essau","city_id":"1291","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"11996","name":"Farafenni","city_id":"1291","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"11997","name":"Kerewan","city_id":"1291","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"11998","name":"Lamin","city_id":"1291","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"11999","name":"Kuntaur","city_id":"1292","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12000","name":"Mansakonko","city_id":"1293","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12001","name":"Ahali Atoni","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12002","name":"Bihvinta","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12003","name":"Gagra","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12004","name":"Gali","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12005","name":"Gudauta","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12006","name":"Gulripshi","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12007","name":"Ochamchira","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12008","name":"Suhumi","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12009","name":"Tkvarcheli","city_id":"1294","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12010","name":"Batumi","city_id":"1295","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12011","name":"Dioknisi","city_id":"1295","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12012","name":"Kobuleti","city_id":"1295","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12013","name":"Mahindzhauri","city_id":"1295","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12014","name":"Lanchhuti","city_id":"1296","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12015","name":"Ozurgeti","city_id":"1296","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12016","name":"Bagdadi","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12017","name":"Chaltubo","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12018","name":"Chiatura","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12019","name":"Honi","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12020","name":"Kutaisi","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12021","name":"Sachhere","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12022","name":"Samtredia","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12023","name":"Terzhola","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12024","name":"Tkibuli","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12025","name":"Vani","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12026","name":"Zestaponi","city_id":"1297","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12027","name":"Ahmeta","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12028","name":"Cnori","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12029","name":"Dedoplisckaro","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12030","name":"Gurdzhaani","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12031","name":"Kvareli","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12032","name":"Lagodehi","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12033","name":"Sagaredzho","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12034","name":"Signahi","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12035","name":"Telavi","city_id":"1298","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12036","name":"Dusheti","city_id":"1300","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12037","name":"Mcheta","city_id":"1300","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12038","name":"Ambrolauri","city_id":"1301","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12039","name":"Cageri","city_id":"1301","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12040","name":"Oni","city_id":"1301","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12041","name":"Ahalcihe","city_id":"1303","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12042","name":"Ahalkalaki","city_id":"1303","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12043","name":"Borzhomi","city_id":"1303","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12044","name":"Ninocminda","city_id":"1303","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12045","name":"Vale","city_id":"1303","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12046","name":"Tbilisi","city_id":"1305","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12047","name":"Aalen","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12048","name":"Achern","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12049","name":"Aichtal","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12050","name":"Albstadt","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12051","name":"Aldingen","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12052","name":"Allmersbach","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12053","name":"Alpirsbach","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12054","name":"Altensteig","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12055","name":"Altlussheim","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12056","name":"Ammerbuch","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12057","name":"Appenweier","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12058","name":"Asperg","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12059","name":"Backnang","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12060","name":"Bad Durrheim","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12061","name":"Bad Friedrichshall","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12062","name":"Bad Krozingen","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12063","name":"Bad Liebenzell","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12064","name":"Bad Mergentheim","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12065","name":"Bad Rappenau","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12066","name":"Bad Sackingen","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12067","name":"Bad Schonborn","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12068","name":"Bad Urach","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12069","name":"Bad Waldsee","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12070","name":"Bad Wurzach","city_id":"1306","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"is_activated":"1"}, +{"id":"12071","name":"Baden-Baden","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12072","name":"Bahlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12073","name":"Baiersbronn","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12074","name":"Balgheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12075","name":"Balingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12076","name":"Ballrechten-Dottingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12077","name":"Besigheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12078","name":"Biberach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12079","name":"Bietigheim-Bissingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12080","name":"Binzen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12081","name":"Birkenfeld","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12082","name":"Bisingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12083","name":"Bitz","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12084","name":"Blaubeuren","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12085","name":"Blaustein","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12086","name":"Blumberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12087","name":"Boblingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12088","name":"Bodelshausen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12089","name":"Bonndorf","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12090","name":"Bonnigheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12091","name":"Bopfingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12092","name":"Bottingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12093","name":"Brackenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12094","name":"Breisach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12095","name":"Bretten","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12096","name":"Bretzfeld","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12097","name":"Bruchsal","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12098","name":"Bruhl","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12099","name":"Buchen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12100","name":"Buchenbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12101","name":"Buhl","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12102","name":"Burgstetten","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12103","name":"Burladingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12104","name":"Calw","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12105","name":"Crailsheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12106","name":"Denkendorf","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12107","name":"Denzlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12108","name":"Dettingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12109","name":"Dietenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12110","name":"Ditzingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12111","name":"Donaueschingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12112","name":"Donzdorf","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12113","name":"Dornhan","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12114","name":"Dornstadt","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12115","name":"Dornstetten","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12116","name":"Dossenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12117","name":"Durbheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12118","name":"Durmersheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12119","name":"Eberbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12120","name":"Ebersbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12121","name":"Edingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12122","name":"Edingen-Neckarhausen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12123","name":"Eggenstein-Leopoldshafen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12124","name":"Ehingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12125","name":"Eislingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12126","name":"Ellhofen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12127","name":"Ellwangen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12128","name":"Emmendingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12129","name":"Emmingen-Liptingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12130","name":"Engen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12131","name":"Eningen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12132","name":"Eppelheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12133","name":"Eppingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12134","name":"Erbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12135","name":"Eriskirch","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12136","name":"Eschach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12137","name":"Esslingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12138","name":"Ettenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12139","name":"Ettlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12140","name":"Fellbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12141","name":"Filderstadt","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12142","name":"Freiberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12143","name":"Freiburg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12144","name":"Freudenstadt","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12145","name":"Frickenhausen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12146","name":"Fridingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12147","name":"Friedrichshafen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12148","name":"Friesenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12149","name":"Frittlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12150","name":"Furtwangen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12151","name":"Gaggenau","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12152","name":"Gaildorf","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12153","name":"Gartringen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12154","name":"Gaufelden","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12155","name":"Geislingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12156","name":"Gengenbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12157","name":"Gerlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12158","name":"Gernsbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12159","name":"Gerstetten","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12160","name":"Giengen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12161","name":"Goppingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12162","name":"Gottmadingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12163","name":"Graben-Neudorf","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12164","name":"Grafenberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12165","name":"Grafenhausen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12166","name":"Grenzach-Wyhlen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12167","name":"GroBbettlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12168","name":"Grunkraut","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12169","name":"Gschwend","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12170","name":"Guglingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12171","name":"Gundelfingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12172","name":"Gutach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12173","name":"Haigerloch","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12174","name":"Haiterbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12175","name":"Harmersabch","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12176","name":"Hausach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12177","name":"Hechingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12178","name":"Heddesheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12179","name":"Heidelberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12180","name":"Heidenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12181","name":"Heilbronn","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12182","name":"Hemsbach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12183","name":"Herbrechtingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12184","name":"Herrenberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12185","name":"Heubach","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12186","name":"Hirschberg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12187","name":"Hockenheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12188","name":"Holzgerlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12189","name":"Horb","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12190","name":"Huttlingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12191","name":"Isny","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12192","name":"Ispringen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12193","name":"Jungingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12194","name":"Karlsbad","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12195","name":"Karlsruhe","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12196","name":"Kehl","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12197","name":"Kernen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12198","name":"Ketsch","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12199","name":"Kieselbronn","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12200","name":"Kirchberg an der Jagst","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12201","name":"Kirchheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12202","name":"Kirchzarten","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12203","name":"Kisslegg","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12204","name":"Klettgau","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12205","name":"Kongen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12206","name":"Konigsbach-Stein","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12207","name":"Konigsbronn","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12208","name":"Konstanz","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12209","name":"Korb","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12210","name":"Korntal-Munchingen","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12211","name":"Kornwestheim","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12212","name":"Kraichtal","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12213","name":"Kressbronn an Bodensee","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12214","name":"Kronau","city_id":"1306","created_at":"2024-01-21 12:05:25","updated_at":"2024-01-21 12:05:25","translations":null,"is_activated":"1"}, +{"id":"12215","name":"Kuessaberg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12216","name":"Kunzelsau","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12217","name":"Ladenburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12218","name":"Lahr","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12219","name":"Laichingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12220","name":"Langenau","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12221","name":"Lauda-Konigshofen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12222","name":"Lauffen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12223","name":"Laupheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12224","name":"Leimen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12225","name":"Leinfelden-Echterdingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12226","name":"Leingarten","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12227","name":"Lenningen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12228","name":"Lenzkirch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12229","name":"Leonberg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12230","name":"Leutenbach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12231","name":"Leutkirch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12232","name":"Lichtenstein","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12233","name":"Linkenheim-Hochstetten","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12234","name":"Lorch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12235","name":"Lorrach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12236","name":"Ludwigsburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12237","name":"Malsch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12238","name":"Mannheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12239","name":"Marbach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12240","name":"Markdorf","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12241","name":"Markgroningen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12242","name":"Maulburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12243","name":"MeBstetten","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12244","name":"Meckenbeuren","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12245","name":"Meckesheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12246","name":"Meersburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12247","name":"Mengen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12248","name":"Metzingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12249","name":"Mockmuhl","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12250","name":"Moglingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12251","name":"Monsheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12252","name":"Mosbach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12253","name":"Mossingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12254","name":"Muhlacker","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12255","name":"Mullheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12256","name":"Munsingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12257","name":"Murrhardt","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12258","name":"Nagold","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12259","name":"Neckargemund","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12260","name":"Neckarsulm","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12261","name":"Neresheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12262","name":"Neuenburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12263","name":"Neuhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12264","name":"Niederstetten","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12265","name":"Niefern-Oschelbronn","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12266","name":"NuBloch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12267","name":"Nurtingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12268","name":"Oberhausen-Rheinhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12269","name":"Oberkirch","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12270","name":"Oberstenfeld","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12271","name":"Obersulm","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12272","name":"Ochsenhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12273","name":"Offenburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12274","name":"Ofterdingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12275","name":"Oftersheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12276","name":"Oggelshausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12277","name":"Ohringen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12278","name":"Olbronn-Durrn","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12279","name":"Oppenweiler","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12280","name":"Ostfildern","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12281","name":"Ostringen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12282","name":"Otisheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12283","name":"Pfalzgrafenweiler","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12284","name":"Pfinztal","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12285","name":"Pforzheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12286","name":"Pfullendorf","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12287","name":"Pfullingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12288","name":"Philippsburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12289","name":"Plankstadt","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12290","name":"Pleidelsheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12291","name":"Pliezhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12292","name":"Plochingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12293","name":"Pluderhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12294","name":"Radolfzell","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12295","name":"Rastatt","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12296","name":"Ravensburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12297","name":"Reilingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12298","name":"Remchingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12299","name":"Remseck","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12300","name":"Remshalden","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12301","name":"Renchen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12302","name":"Renningen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12303","name":"Reutlingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12304","name":"Rheinau","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12305","name":"Rheinfelden","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12306","name":"Rheinmunster","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12307","name":"Rheinstetten","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12308","name":"Riederich","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12309","name":"Riedlingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12310","name":"Rielasingen-Worblingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12311","name":"Rosenfeld","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12312","name":"Rottenburg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12313","name":"Rottweil","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12314","name":"Rudersberg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12315","name":"Rutesheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12316","name":"Sachsenheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12317","name":"Salem","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12318","name":"Sandhausen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12319","name":"Sankt Leon-Rot","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12320","name":"Saulgau","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12321","name":"Scheer","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12322","name":"Schlierbach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12323","name":"Schonaich","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12324","name":"Schopfheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12325","name":"Schorndorf","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12326","name":"Schramberg","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12327","name":"Schriesheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12328","name":"Schwabisch Gmund","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12329","name":"Schwabisch Hall","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12330","name":"Schwaigern","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12331","name":"Schwetzingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12332","name":"Schwieberdingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12333","name":"Seitingen-Oberflacht","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12334","name":"Sexau","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12335","name":"Sigmaringen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12336","name":"Sindelfingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12337","name":"Singen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12338","name":"Sinsheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12339","name":"Sinzheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12340","name":"Sonnenbuhl","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12341","name":"Sontheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12342","name":"Spaichingen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12343","name":"Stegen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12344","name":"Steinen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12345","name":"Steinheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12346","name":"Steinmauern","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12347","name":"Stockach","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12348","name":"Straubenhardt","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12349","name":"Stutensee","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12350","name":"Stuttgart","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12351","name":"SuBen","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12352","name":"Sulz","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12353","name":"Sulzfeld","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12354","name":"Tamm","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12355","name":"Tauberbischofsheim","city_id":"1306","created_at":"2024-01-21 12:05:26","updated_at":"2024-01-21 12:05:26","translations":null,"is_activated":"1"}, +{"id":"12356","name":"Teningen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12357","name":"Tettnang","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12358","name":"Titisee-Neustadt","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12359","name":"Trossingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12360","name":"Tubingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12361","name":"Tuningen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12362","name":"Tuttlingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12363","name":"Uberlingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12364","name":"Ubstadt-Weiher","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12365","name":"Uhingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12366","name":"Ulm","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12367","name":"Umkirch","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12368","name":"Vaihingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12369","name":"Villingen-Schwenningen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12370","name":"Villingendorf","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12371","name":"Waghausel","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12372","name":"Waiblingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12373","name":"Waldbronn","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12374","name":"Waldkirch","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12375","name":"Waldlaubersheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12376","name":"Waldshut-Tiengen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12377","name":"Walldorf","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12378","name":"Walldurn","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12379","name":"Walzbachtal","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12380","name":"Wangen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12381","name":"Wehr","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12382","name":"Weikersheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12383","name":"Weil","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12384","name":"Weil am Rhein","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12385","name":"Weil der Stadt","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12386","name":"Weil im Schonbuch","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12387","name":"Weilheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12388","name":"Weingarten","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12389","name":"Weinheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12390","name":"Weinsberg","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12391","name":"Weinstadt","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12392","name":"Wellendingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12393","name":"Welzheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12394","name":"Wendlingen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12395","name":"Wernau","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12396","name":"Wertheim","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12397","name":"Wiesloch","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12398","name":"Wildbad","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12399","name":"Wildberg","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12400","name":"Winnenden","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12401","name":"Wolpertshausen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12402","name":"Zuzenhausen","city_id":"1306","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12403","name":"Ahorn","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12404","name":"Allershausen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12405","name":"Attenhofen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12406","name":"Bad Birnbach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12407","name":"Bad Endorf","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12408","name":"Bad Gronenbach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12409","name":"Barbing","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12410","name":"Benediktbeuern","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12411","name":"Breitenberg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12412","name":"Bruckberg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12413","name":"Brunnthal","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12414","name":"Burgheim","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12415","name":"Chiemsee","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12416","name":"Emersacker","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12417","name":"Eresing","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12418","name":"Fahrenzhausen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12419","name":"Faulbach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12420","name":"Finning","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12421","name":"Forstinning","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12422","name":"Georgensgmund","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12423","name":"Haldenwang","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12424","name":"Heideck","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12425","name":"Heimenkirch","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12426","name":"Hergensweiler","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12427","name":"Hirschau","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12428","name":"Iffeldorf","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12429","name":"Karlstein","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12430","name":"Kleinheubach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12431","name":"Kleinwallstadt","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12432","name":"Kotz","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12433","name":"Krailling","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12434","name":"Langenbach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12435","name":"Laudenbach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12436","name":"Leutershausen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12437","name":"Mammendorf","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12438","name":"Mombris","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12439","name":"Munnerstadt","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12440","name":"Neu-Ulm","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12441","name":"Niederlauer","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12442","name":"Obernburg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12443","name":"Oberpfaffenhofen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12444","name":"Ostallgau","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12445","name":"Prittriching","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12446","name":"Prutting","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12447","name":"Pullach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12448","name":"Putzbrunn","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12449","name":"Randersacker","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12450","name":"Rednitzhembach","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12451","name":"Ronsberg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12452","name":"Ruckersdorf","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12453","name":"Schaufling","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12454","name":"Schonberg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12455","name":"Seefeld","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12456","name":"Sengenthal","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12457","name":"Sondheim v.d.Rhon","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12458","name":"Steinwiesen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12459","name":"Stockheim","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12460","name":"Tagmersheim","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12461","name":"Uettingen","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12462","name":"Unterfohring","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12463","name":"Weibensberg","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12464","name":"Wiesthal","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12465","name":"Wildflecken","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12466","name":"Wolfertschwenden","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12467","name":"Zorneding","city_id":"1307","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12468","name":"Abensberg","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12469","name":"Aichach","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12470","name":"Ainring","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12471","name":"Altdorf","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12472","name":"Altotting","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12473","name":"Altusried","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12474","name":"Alzenau","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12475","name":"Amberg","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12476","name":"Amerang","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12477","name":"Ansbach","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12478","name":"Aschaffenburg","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12479","name":"Augsburg","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12480","name":"Bad Aibling","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12481","name":"Bad Kissingen","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12482","name":"Bad Neustadt","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12483","name":"Bad Reichenhall","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12484","name":"Bad Tolz","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12485","name":"Bad Windsheim","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12486","name":"Bad Worishofen","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12487","name":"Bamberg","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12488","name":"Bayreuth","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12489","name":"Bobingen","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12490","name":"Bogen","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12491","name":"Bruckmuhl","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12492","name":"Buchloe","city_id":"1308","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"is_activated":"1"}, +{"id":"12493","name":"Burghausen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12494","name":"Burgkirchen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12495","name":"Burglengenfeld","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12496","name":"Burgthann","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12497","name":"Buttenheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12498","name":"Cadolzburg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12499","name":"Castell","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12500","name":"Cham","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12501","name":"Dachau","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12502","name":"Deggendorf","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12503","name":"DieBen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12504","name":"Diedorf","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12505","name":"Dietramszell","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12506","name":"Dillingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12507","name":"Dingolfing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12508","name":"Dinkelsbuhl","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12509","name":"Dombuhl","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12510","name":"Donauworth","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12511","name":"Dorfen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12512","name":"Ebersberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12513","name":"Eching","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12514","name":"Eckental","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12515","name":"Eggenfelden","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12516","name":"Eichenau","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12517","name":"Eichstatt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12518","name":"Elchingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12519","name":"Erding","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12520","name":"Ergolding","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12521","name":"Erlangen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12522","name":"Erlenbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12523","name":"Essenbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12524","name":"Feldafing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12525","name":"Feldkirchen-Westerham","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12526","name":"Feucht","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12527","name":"Feuchtwangen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12528","name":"Forchheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12529","name":"Freilassing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12530","name":"Freising","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12531","name":"Fridolfing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12532","name":"Friedberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12533","name":"Furstenfeldbruck","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12534","name":"Furth","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12535","name":"Furth im Wald","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12536","name":"Fussen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12537","name":"Gachenbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12538","name":"Gaimersheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12539","name":"Garching","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12540","name":"Garmisch-Partenkirchen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12541","name":"Gauting","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12542","name":"Gemunden","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12543","name":"Geretsried","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12544","name":"Germering","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12545","name":"Gersthofen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12546","name":"Gilching","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12547","name":"Goldbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12548","name":"Grafelfing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12549","name":"Grafenau","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12550","name":"Grafing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12551","name":"GroBostheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12552","name":"Grobenstadt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12553","name":"Grobenzell","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12554","name":"Grunwald","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12555","name":"Gunzburg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12556","name":"Gunzenhausen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12557","name":"HaBfurt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12558","name":"Haar","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12559","name":"Hammelburg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12560","name":"Hasloch","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12561","name":"Hauzenberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12562","name":"Helmbrechts","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12563","name":"Henfenfeld","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12564","name":"Hersbruck","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12565","name":"Herzogenaurach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12566","name":"Hilpoltstein","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12567","name":"Hirschaid","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12568","name":"Hochstadt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12569","name":"Hof","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12570","name":"Holzkirchen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12571","name":"Hosbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12572","name":"Illertissen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12573","name":"Immenstadt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12574","name":"Ingolstadt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12575","name":"Inning","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12576","name":"Ismaning","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12577","name":"Karlsfeld","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12578","name":"Karlstadt","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12579","name":"Kaufbeuren","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12580","name":"Kelheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12581","name":"Kempten","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12582","name":"Kiefersfelden","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12583","name":"Kissing","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12584","name":"Kitzingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12585","name":"Kleinostheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12586","name":"Klingenberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12587","name":"Kolbermoor","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12588","name":"Konigsbrunn","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12589","name":"Kreuzwertheim","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12590","name":"Kronach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12591","name":"Krumbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12592","name":"Kulmbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12593","name":"Kummersbruck","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12594","name":"Landau","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12595","name":"Landsberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12596","name":"Landshut","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12597","name":"Langenzenn","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12598","name":"Lappersdorf","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12599","name":"Lauf","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12600","name":"Lauingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12601","name":"Leinburg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12602","name":"Lenggries","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12603","name":"Lichtenfels","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12604","name":"Lindach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12605","name":"Lindau","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12606","name":"Lindenberg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12607","name":"Lohr","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12608","name":"Mainburg","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12609","name":"Maisach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12610","name":"Manching","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12611","name":"Markt Schwaben","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12612","name":"Marktheidenfeld","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12613","name":"Marktoberdorf","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12614","name":"Marktredwitz","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12615","name":"Maxhutte-Haidhof","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12616","name":"Meitingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12617","name":"Memmingen","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12618","name":"Mering","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12619","name":"Miesbach","city_id":"1308","created_at":"2024-01-21 12:05:28","updated_at":"2024-01-21 12:05:28","translations":null,"is_activated":"1"}, +{"id":"12620","name":"Miltenberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12621","name":"Mindelheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12622","name":"Muhldorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12623","name":"Munchberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12624","name":"Munchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12625","name":"Munningen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12626","name":"Murnau","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12627","name":"Naila","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12628","name":"Neubiberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12629","name":"Neuburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12630","name":"Neufahrn","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12631","name":"Neuried","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12632","name":"NeusaB","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12633","name":"Neustadt","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12634","name":"Neutraubling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12635","name":"Nordlingen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12636","name":"Nuremberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12637","name":"Nurnberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12638","name":"Oberasbach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12639","name":"Oberhaching","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12640","name":"OberschleiBheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12641","name":"Oberstdorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12642","name":"Ochsenfurt","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12643","name":"Olching","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12644","name":"Osterhofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12645","name":"Ostheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12646","name":"Ottobrunn","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12647","name":"Parsberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12648","name":"Passau","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12649","name":"Pegnitz","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12650","name":"PeiBenberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12651","name":"Peiting","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12652","name":"Pentling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12653","name":"Penzberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12654","name":"Pfaffenhofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12655","name":"Pfarrkirchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12656","name":"Planegg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12657","name":"Plattling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12658","name":"Pocking","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12659","name":"Poing","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12660","name":"Polling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12661","name":"Pommelsbrunn","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12662","name":"Prien","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12663","name":"Puchheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12664","name":"Rannersdorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12665","name":"Raubling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12666","name":"Regen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12667","name":"Regensburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12668","name":"Regenstauf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12669","name":"Rehau","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12670","name":"Rodental","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12671","name":"Roding","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12672","name":"Rosenheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12673","name":"Roth","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12674","name":"Rothenbach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12675","name":"Rothenburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12676","name":"Ruhstorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12677","name":"Schnelldorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12678","name":"Schongau","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12679","name":"Schrobenhausen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12680","name":"Schwabach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12681","name":"Schwabmunchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12682","name":"Schwandorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12683","name":"Schwarzenbach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12684","name":"Schweinfurt","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12685","name":"Selb","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12686","name":"Selbitz","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12687","name":"Senden","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12688","name":"Simbach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12689","name":"Sonthofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12690","name":"Spalt","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12691","name":"Stadtbergen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12692","name":"Staffelstein","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12693","name":"Starnberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12694","name":"Stein","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12695","name":"Stephanskirchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12696","name":"Straubing","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12697","name":"Sulzbach-Rosenberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12698","name":"Taufkirchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12699","name":"Thansau","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12700","name":"Tirschenreuth","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12701","name":"Toging","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12702","name":"Traunreut","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12703","name":"Traunstein","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12704","name":"Treuchtlingen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12705","name":"Trostberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12706","name":"Tutzing","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12707","name":"Unterbergen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12708","name":"Unterhaching","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12709","name":"UnterschleiBheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12710","name":"Valley","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12711","name":"Vaterstetten","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12712","name":"Veitshochheim","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12713","name":"Viechtach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12714","name":"Vilgertshofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12715","name":"Vilsbiburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12716","name":"Vilshofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12717","name":"Vohringen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12718","name":"Volkach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12719","name":"Waldkirchen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12720","name":"Waldkraiburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12721","name":"Walkertshofen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12722","name":"Wasserburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12723","name":"WeiBenburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12724","name":"WeiBenhorn","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12725","name":"Weiden","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12726","name":"Weidenberg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12727","name":"Wendelstein","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12728","name":"Werneck","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12729","name":"Wessling","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12730","name":"Wolfratshausen","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12731","name":"Wolnzach","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12732","name":"Wunsiedel","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12733","name":"Wurzburg","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12734","name":"Zirndorf","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12735","name":"Zwiesel","city_id":"1308","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12736","name":"Panketal","city_id":"1310","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12737","name":"Steinfeld","city_id":"1310","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12738","name":"Angermunde","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12739","name":"Bad Freienwalde","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12740","name":"Bad Liebenwerda","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12741","name":"Barnim","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12742","name":"Beeskow","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12743","name":"Bernau","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12744","name":"Blankenfelde","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12745","name":"Brandenburg","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12746","name":"Brieselang","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12747","name":"Cottbus","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12748","name":"Dahlewitz","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12749","name":"Dahme","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12750","name":"Eberswalde","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12751","name":"Eisenhuttenstadt","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12752","name":"Elsterwerda","city_id":"1311","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"is_activated":"1"}, +{"id":"12753","name":"Erkner","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12754","name":"Falkensee","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12755","name":"Finsterwalde","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12756","name":"Forst","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12757","name":"Frankfurt","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12758","name":"Fredersdorf-Vogelsdorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12759","name":"Furstenwalde","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12760","name":"Glienicke","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12761","name":"Gransee","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12762","name":"GroBraschen","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12763","name":"Guben","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12764","name":"Heidesee","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12765","name":"Hennigsdorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12766","name":"Herzberg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12767","name":"Hohen Neuendorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12768","name":"Jacobsdorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12769","name":"Juterbog","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12770","name":"Kleinmachnow","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12771","name":"Kolkwitz","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12772","name":"Konigs Wusterhausen","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12773","name":"Kyritz","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12774","name":"Lauchhammer","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12775","name":"Lubben","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12776","name":"Lubbenau","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12777","name":"Luckenwalde","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12778","name":"Ludwigsfelde","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12779","name":"Nauen","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12780","name":"Neuenhagen","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12781","name":"Neuruppin","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12782","name":"Oranienburg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12783","name":"Perleberg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12784","name":"Petershagen-Eggersdorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12785","name":"Potsdam","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12786","name":"Premnitz","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12787","name":"Prenzlau","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12788","name":"Pritzwalk","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12789","name":"Rathenow","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12790","name":"Rudersdorf","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12791","name":"Schonefeld","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12792","name":"Schoneiche","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12793","name":"Schwedt","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12794","name":"Schwielowsee","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12795","name":"Senftenberg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12796","name":"Spremberg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12797","name":"Strausberg","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12798","name":"Teltow","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12799","name":"Templin","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12800","name":"Velten","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12801","name":"Wildau","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12802","name":"Wittenberge","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12803","name":"Wittstock","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12804","name":"Zehdenick","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12805","name":"Zepernick","city_id":"1311","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12806","name":"Bremen","city_id":"1312","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12807","name":"Bremerhaven","city_id":"1312","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12808","name":"Berne","city_id":"1315","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12809","name":"Hamburg","city_id":"1315","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12810","name":"Diekholzen","city_id":"1316","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12811","name":"Heroldstatt","city_id":"1317","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12812","name":"ABlar","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12813","name":"Alsbach-Hähnlein","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12814","name":"Alsfeld","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12815","name":"Altenstadt","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12816","name":"Angelburg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12817","name":"Arolsen","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12818","name":"Asslar","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12819","name":"Babenhausen","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12820","name":"Bad Camberg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12821","name":"Bad Hersfeld","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12822","name":"Bad Homburg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12823","name":"Bad Nauheim","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12824","name":"Bad Orb","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12825","name":"Bad Schwalbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12826","name":"Bad Soden","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12827","name":"Bad Soden-Salmunster","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12828","name":"Bad Sooden-Allendorf","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12829","name":"Bad Vilbel","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12830","name":"Bad Wildungen","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12831","name":"Baunatal","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12832","name":"Bebra","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12833","name":"Beerfelden","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12834","name":"Bensheim","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12835","name":"Berkatal","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12836","name":"Biblis","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12837","name":"Bickenbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12838","name":"Biebertal","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12839","name":"Biedenkopf","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12840","name":"Birkenau","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12841","name":"Bischofsheim","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12842","name":"Borken","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12843","name":"Braunfels","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12844","name":"Breidenbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12845","name":"Bruchkobel","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12846","name":"Budingen","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12847","name":"Burstadt","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12848","name":"Buseck","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12849","name":"Buttelborn","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12850","name":"Butzbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12851","name":"Darmstadt","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12852","name":"Dautphetal","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12853","name":"Dieburg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12854","name":"Dietzenbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12855","name":"Dillenburg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12856","name":"Dreieich","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12857","name":"Egelsbach","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12858","name":"Eichenzell","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12859","name":"Eltville","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12860","name":"Eppstein","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12861","name":"Erlensee","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12862","name":"Erzhausen","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12863","name":"Eschborn","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12864","name":"Eschenburg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12865","name":"Eschwege","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12866","name":"Felsberg","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12867","name":"Fernwald","city_id":"1318","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"is_activated":"1"}, +{"id":"12868","name":"Florsheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12869","name":"Frankenberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12870","name":"Freigericht","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12871","name":"Friedrichsdorf","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12872","name":"Fritzlar","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12873","name":"Fulda","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12874","name":"Fuldabruck","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12875","name":"Fuldatal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12876","name":"Geisenheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12877","name":"Gelnhausen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12878","name":"Gernsheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12879","name":"GieBen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12880","name":"Giessen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12881","name":"Ginsheim-Gustavsburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12882","name":"Gladenbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12883","name":"Griesheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12884","name":"GroB-Gerau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12885","name":"GroB-Umstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12886","name":"GroB-Zimmern","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12887","name":"Grossenluder","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12888","name":"Gruenberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12889","name":"Grunberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12890","name":"Grundau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12891","name":"Hadamar","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12892","name":"Haiger","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12893","name":"Hanau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12894","name":"Hattersheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12895","name":"Heppenheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12896","name":"Herborn","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12897","name":"Hessisch Lichtenau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12898","name":"Heuchelheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12899","name":"Heusenstamm","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12900","name":"Hochheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12901","name":"Hofbieber","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12902","name":"Hofgeismar","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12903","name":"Hofheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12904","name":"Homberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12905","name":"Hunfeld","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12906","name":"Hunfelden","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12907","name":"Hungen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12908","name":"Huttenberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12909","name":"Idstein","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12910","name":"Karben","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12911","name":"Kassel","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12912","name":"Kaufungen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12913","name":"Kelkheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12914","name":"Kelsterbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12915","name":"Kirchhain","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12916","name":"Konigstein","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12917","name":"Korbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12918","name":"Kriftel","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12919","name":"Kronberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12920","name":"Kunzell","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12921","name":"Lahnau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12922","name":"Lahntal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12923","name":"Lampertheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12924","name":"Langen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12925","name":"Langenselbold","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12926","name":"Langgons","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12927","name":"Laubach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12928","name":"Lauterbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12929","name":"Lich","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12930","name":"Limburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12931","name":"Linden","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12932","name":"Lindenholzhausen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12933","name":"Linsengericht","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12934","name":"Lohfelden","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12935","name":"Lollar","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12936","name":"Lorsch","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12937","name":"Maintal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12938","name":"Marburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12939","name":"Melsungen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12940","name":"Mengerskirchen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12941","name":"Michelstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12942","name":"Morfelden-Walldorf","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12943","name":"Morlenbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12944","name":"Mucke","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12945","name":"Muhlheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12946","name":"Muhltal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12947","name":"Nauheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12948","name":"Neu-Anspach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12949","name":"Neu-Isenburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12950","name":"Neuhof","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12951","name":"Nidda","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12952","name":"Niddatal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12953","name":"Nidderau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12954","name":"Niederdorfelden","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12955","name":"Niedernhausen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12956","name":"Niestetal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12957","name":"Ober-Ramstedt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12958","name":"Obertshausen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12959","name":"Oberursel","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12960","name":"Oestrich-Winkel","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12961","name":"Offenbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12962","name":"Petersberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12963","name":"Pfungstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12964","name":"Pohlheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12965","name":"Raunheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12966","name":"Reichelsheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12967","name":"Reinheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12968","name":"Reiskirchen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12969","name":"Riedstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12970","name":"Rimbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12971","name":"RoBdorf","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12972","name":"Rodenbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12973","name":"Rodermark","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12974","name":"Rodgau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12975","name":"Rosbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12976","name":"Rotenburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12977","name":"Rudesheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12978","name":"Runkel","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12979","name":"Russelsheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12980","name":"Schauenburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12981","name":"Schlangenbad","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12982","name":"Schlitz","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12983","name":"Schluchtern","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12984","name":"Schoneck","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12985","name":"Schotten","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12986","name":"Schwalbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12987","name":"Schwalbach am Taunus","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12988","name":"Schwalmstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12989","name":"Seeheim-Jugenheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12990","name":"Seligenstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12991","name":"Selters","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12992","name":"Sinntal","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12993","name":"Solms","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12994","name":"Sontra","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12995","name":"Spangenberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12996","name":"Stadtallendorf","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12997","name":"Steinau","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12998","name":"Taunusstein","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"12999","name":"Trebur","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13000","name":"Ulrichstein","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13001","name":"Usingen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13002","name":"Vellmar","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13003","name":"Viernheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13004","name":"Volkmarsen","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13005","name":"Wachtersbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13006","name":"Wald-Michelbach","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13007","name":"Waldbrunn","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13008","name":"Waldems","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13009","name":"Wehrheim","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13010","name":"Weilburg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13011","name":"Weilmunster","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13012","name":"Weiterstadt","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13013","name":"Wettenberg","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13014","name":"Wetter","city_id":"1318","created_at":"2024-01-21 12:05:31","updated_at":"2024-01-21 12:05:31","translations":null,"is_activated":"1"}, +{"id":"13015","name":"Wetzlar","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13016","name":"Wiesbaden","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13017","name":"Witzenhausen","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13018","name":"Wolfersheim","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13019","name":"Wolfhagen","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13020","name":"Zwingenberg","city_id":"1318","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13021","name":"Laasdorf","city_id":"1320","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13022","name":"Anklam","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13023","name":"Bad Doberan","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13024","name":"Barth","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13025","name":"Bergen","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13026","name":"Boizenburg","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13027","name":"Butzow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13028","name":"Demmin","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13029","name":"Gagelow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13030","name":"Gallin","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13031","name":"Grabow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13032","name":"Greifswald","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13033","name":"Grevesmuhlen","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13034","name":"Grimmen","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13035","name":"Gustrow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13036","name":"Hagenow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13037","name":"Konigsee","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13038","name":"Lubtheen","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13039","name":"Ludersdorf","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13040","name":"Ludwigslust","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13041","name":"Malchin","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13042","name":"Neubrandenburg","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13043","name":"Neustrelitz","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13044","name":"Parchim","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13045","name":"Pasewalk","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13046","name":"Ribnitz-Damgarten","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13047","name":"Rostock","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13048","name":"SaBnitz","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13049","name":"Schweina","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13050","name":"Schwerin","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13051","name":"Selmsdorf","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13052","name":"Stralsund","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13053","name":"Teterow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13054","name":"Torgelow","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13055","name":"Ueckermunde","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13056","name":"Waren","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13057","name":"Wismar","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13058","name":"Wolgast","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13059","name":"Zarrentin","city_id":"1332","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13060","name":"Mulfingen","city_id":"1333","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13061","name":"Grafing bei Munchen","city_id":"1334","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13062","name":"Neubeuern","city_id":"1335","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13063","name":"Achim","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13064","name":"Adendorf","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13065","name":"Aerzen","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13066","name":"Alfeld","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13067","name":"Ankum","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13068","name":"Apen","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13069","name":"Aurich","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13070","name":"Bad Bentheim","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13071","name":"Bad Bevensen","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13072","name":"Bad Essen","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13073","name":"Bad Gandersheim","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13074","name":"Bad Harzburg","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13075","name":"Bad Iburg","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13076","name":"Bad Laer","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13077","name":"Bad Lauterberg","city_id":"1336","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"is_activated":"1"}, +{"id":"13078","name":"Bad Munder","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13079","name":"Bad Nenndorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13080","name":"Bad Pyrmont","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13081","name":"Bad Sachsa","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13082","name":"Bad Salzdetfurth","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13083","name":"Bad Zwischenahn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13084","name":"BarBel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13085","name":"Barsinghausen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13086","name":"Bassum","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13087","name":"Beesten","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13088","name":"Belm","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13089","name":"Bissendorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13090","name":"Bleckede","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13091","name":"Bockenem","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13092","name":"Bohmte","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13093","name":"Bovenden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13094","name":"Brake","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13095","name":"Bramsche","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13096","name":"Braunschweig","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13097","name":"Bremervorde","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13098","name":"Brockel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13099","name":"Brunswick","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13100","name":"Buchholz","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13101","name":"Buckeburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13102","name":"Burgdorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13103","name":"Burgwedel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13104","name":"Buxtehude","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13105","name":"Celle","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13106","name":"Clausthal-Zellerfeld","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13107","name":"Clenze","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13108","name":"Cloppenburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13109","name":"Cremlingen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13110","name":"Cuxhaven","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13111","name":"Dahlenburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13112","name":"Dannenberg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13113","name":"Dassel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13114","name":"Deinste","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13115","name":"Delmenhorst","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13116","name":"Diepholz","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13117","name":"Dinklage","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13118","name":"Dorverden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13119","name":"Dransfeld","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13120","name":"Drochtersen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13121","name":"Duderstadt","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13122","name":"Edemissen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13123","name":"Edewecht","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13124","name":"Einbeck","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13125","name":"Elsfleth","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13126","name":"Elze","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13127","name":"Emden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13128","name":"Emlichheim","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13129","name":"Emmerthal","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13130","name":"Emsburen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13131","name":"Eppendorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13132","name":"Fallingbostel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13133","name":"Frellstedt","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13134","name":"Friedeburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13135","name":"Friedland","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13136","name":"Friesoythe","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13137","name":"Ganderkesee","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13138","name":"Garbsen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13139","name":"Garrel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13140","name":"Geeste","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13141","name":"Gehrden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13142","name":"Georgsmarienhutte","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13143","name":"Gifhorn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13144","name":"Gleichen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13145","name":"Goslar","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13146","name":"Gottingen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13147","name":"GroBefehn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13148","name":"GroBenkneten","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13149","name":"Hagen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13150","name":"Hambergen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13151","name":"Hameln","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13152","name":"Hannover","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13153","name":"Hannoversch Munden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13154","name":"Haren","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13155","name":"Harsum","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13156","name":"Hasbergen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13157","name":"Haselunne","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13158","name":"Hatten","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13159","name":"Hauslingen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13160","name":"Helmstedt","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13161","name":"Hemmingen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13162","name":"Hessisch Oldendorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13163","name":"Hildesheim","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13164","name":"Hilter","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13165","name":"Hittfeld","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13166","name":"Holzminden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13167","name":"Hoya","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13168","name":"Hude","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13169","name":"Ihlow","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13170","name":"Ilsede","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13171","name":"Isernhagen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13172","name":"Jade","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13173","name":"Jever","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13174","name":"Jork","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13175","name":"Kalefeld","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13176","name":"Kirchlinteln","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13177","name":"Knesebeck","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13178","name":"Konigslutter","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13179","name":"Krummhorn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13180","name":"Laatzen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13181","name":"Lahstedt","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13182","name":"Langelsheim","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13183","name":"Langenhagen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13184","name":"Langwedel","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13185","name":"Lastrup","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13186","name":"Leer","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13187","name":"Lehre","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13188","name":"Lehrte","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13189","name":"Lemforde","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13190","name":"Lengede","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13191","name":"Liebenburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13192","name":"Lilienthal","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13193","name":"Lingen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13194","name":"Lohne","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13195","name":"Loningen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13196","name":"Lorup","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13197","name":"Loxstedt","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13198","name":"Luchow","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13199","name":"Luneburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13200","name":"Meppen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13201","name":"Moormerland","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13202","name":"Neu Wulmstorf","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13203","name":"Nienburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13204","name":"Norden","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13205","name":"Nordenham","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13206","name":"Nordhorn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13207","name":"Nordstemmen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13208","name":"Norten-Hardenberg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13209","name":"Northeim","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13210","name":"Obernkirchen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13211","name":"Oldenburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13212","name":"Osnabruck","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13213","name":"Ostercappeln","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13214","name":"Osterholz-Scharmbeck","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13215","name":"Osterode","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13216","name":"Ostrhauderfehn","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13217","name":"Ottersberg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13218","name":"Oyten","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13219","name":"Papenburg","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13220","name":"Pattensen","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13221","name":"Peine","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13222","name":"Quakenbruck","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13223","name":"Rastede","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13224","name":"Rehburg-Loccum","city_id":"1336","created_at":"2024-01-21 12:05:33","updated_at":"2024-01-21 12:05:33","translations":null,"is_activated":"1"}, +{"id":"13225","name":"Rhauderfehn","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13226","name":"Rinteln","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13227","name":"Ritterhude","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13228","name":"Ronnenberg","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13229","name":"Rosdorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13230","name":"Rosengarten","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13231","name":"Salzgitter","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13232","name":"Salzhemmendorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13233","name":"Sarstedt","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13234","name":"Saterland","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13235","name":"ScheeBel","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13236","name":"Schiffdorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13237","name":"Schneverdingen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13238","name":"Schoningen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13239","name":"Schortens","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13240","name":"Schuttorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13241","name":"Schwanewede","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13242","name":"Seelze","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13243","name":"Seesen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13244","name":"Seevetal","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13245","name":"Sehnde","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13246","name":"Soltau","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13247","name":"Springe","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13248","name":"Stade","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13249","name":"Stadthagen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13250","name":"Stadtoldendorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13251","name":"Stelle","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13252","name":"Stuhr","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13253","name":"Sudbrookmerland","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13254","name":"Sulingen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13255","name":"Syke","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13256","name":"Tarmstedt","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13257","name":"Tostedt","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13258","name":"Twistringen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13259","name":"Uchte","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13260","name":"Uelzen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13261","name":"Uetze","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13262","name":"Uplengen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13263","name":"Uslar","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13264","name":"Varel","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13265","name":"Vechelde","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13266","name":"Vechta","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13267","name":"Verden","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13268","name":"Vienenburg","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13269","name":"Visselhovede","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13270","name":"Walkenried","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13271","name":"Wallenhorst","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13272","name":"Walsrode","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13273","name":"Wangerland","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13274","name":"Wardenburg","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13275","name":"Wedemark","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13276","name":"Weener","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13277","name":"Wendeburg","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13278","name":"Wennigsen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13279","name":"Westerstede","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13280","name":"Westoverledingen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13281","name":"Weyhe","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13282","name":"Wiefelstede","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13283","name":"Wiesmoor","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13284","name":"Wildeshausen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13285","name":"Wilhelmshaven","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13286","name":"Winsen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13287","name":"Wittingen","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13288","name":"Wittmund","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13289","name":"Wolfenbuttel","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13290","name":"Wolfsburg","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13291","name":"Worpswede","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13292","name":"Wunstorf","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13293","name":"Zetel","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13294","name":"Zeven","city_id":"1336","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13295","name":"Middenbeemster","city_id":"1337","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13296","name":"Aachen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13297","name":"Ahaus","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13298","name":"Ahlen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13299","name":"Aldenhoven","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13300","name":"Alfter","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13301","name":"Alpen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13302","name":"Alsdorf","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13303","name":"Altena","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13304","name":"Altendorf","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13305","name":"Anrochte","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13306","name":"Arnsberg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13307","name":"Ascheberg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13308","name":"Attendorn","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13309","name":"Augustdorf","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13310","name":"Bad Berleburg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13311","name":"Bad Driburg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13312","name":"Bad Honnef","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13313","name":"Bad Laasphe","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13314","name":"Bad Lippspringe","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13315","name":"Bad Munstereifel","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13316","name":"Bad Oeynhausen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13317","name":"Bad Salzuflen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13318","name":"Bad Sassendorf","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13319","name":"Baesweiler","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13320","name":"Balve","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13321","name":"Barntrup","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13322","name":"Beckum","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13323","name":"Bedburg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13324","name":"Bedburg-Hau","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13325","name":"Bergisch Gladbach","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13326","name":"Bergkamen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13327","name":"Bergneustadt","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13328","name":"Bestwig","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13329","name":"Beverungen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13330","name":"Bielefeld","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13331","name":"Billerbeck","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13332","name":"Blomberg","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13333","name":"Bochum","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13334","name":"Bocket","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13335","name":"Bonen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13336","name":"Bonn","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13337","name":"Borchen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13338","name":"Borgentreich","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13339","name":"Borgholzhausen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13340","name":"Bornheim","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13341","name":"Bottrop","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13342","name":"Brilon","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13343","name":"Bruggen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13344","name":"Bunde","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13345","name":"Burbach","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13346","name":"Buren","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13347","name":"Burscheid","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13348","name":"Castrop-Rauxel","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13349","name":"Coesfeld","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13350","name":"Cologne","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13351","name":"Datteln","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13352","name":"Delbruck","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13353","name":"Denklingen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13354","name":"Detmold","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13355","name":"Dingden","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13356","name":"Dinslaken","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13357","name":"Dormagen","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13358","name":"Dorsten","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13359","name":"Dortmund","city_id":"1338","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"is_activated":"1"}, +{"id":"13360","name":"Drensteinfurt","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13361","name":"Drolshagen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13362","name":"Duisburg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13363","name":"Dulmen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13364","name":"Duren","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13365","name":"Dusseldorf","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13366","name":"Eitorf","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13367","name":"Elsdorf","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13368","name":"Emmerich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13369","name":"Emsdetten","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13370","name":"Engelskirchen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13371","name":"Enger","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13372","name":"Ennepetal","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13373","name":"Ennigerloh","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13374","name":"Ense","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13375","name":"Erftstadt","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13376","name":"Erkelenz","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13377","name":"Erkrath","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13378","name":"Erwitte","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13379","name":"Espelkamp","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13380","name":"Euskirchen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13381","name":"Extertal","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13382","name":"Finnentrop","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13383","name":"Frechen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13384","name":"Freudenberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13385","name":"Frondenberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13386","name":"Gangelt","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13387","name":"Geilenkirchen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13388","name":"Geldern","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13389","name":"Gelsenkirchen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13390","name":"Gescher","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13391","name":"Geseke","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13392","name":"Gevelsberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13393","name":"Gladbeck","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13394","name":"Goch","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13395","name":"Grefrath","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13396","name":"Greven","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13397","name":"Grevenbroich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13398","name":"Gronau","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13399","name":"Gummersbach","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13400","name":"Gutersloh","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13401","name":"Haan","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13402","name":"Haltern","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13403","name":"Halver","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13404","name":"Hamm","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13405","name":"Hamminkeln","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13406","name":"Harsewinkel","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13407","name":"Hattingen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13408","name":"Havixbeck","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13409","name":"Heiligenhaus","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13410","name":"Heinsberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13411","name":"Hemer","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13412","name":"Hennef","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13413","name":"Herdecke","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13414","name":"Herford","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13415","name":"Herten","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13416","name":"Herzebrock-Clarholz","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13417","name":"Herzogenrath","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13418","name":"Hiddenhausen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13419","name":"Hilchenbach","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13420","name":"Hilden","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13421","name":"Hille","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13422","name":"Holzwickede","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13423","name":"Horn-Bad Meinberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13424","name":"Horstel","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13425","name":"Hovelhof","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13426","name":"Hoxter","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13427","name":"Huckelhoven","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13428","name":"Huckeswagen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13429","name":"Hullhorst","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13430","name":"Hunxe","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13431","name":"Hurth","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13432","name":"Ibbenburen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13433","name":"Iserlohn","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13434","name":"Isselburg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13435","name":"Issum","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13436","name":"Juchen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13437","name":"Julich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13438","name":"Kaarst","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13439","name":"Kalkar","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13440","name":"Kall","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13441","name":"Kalletal","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13442","name":"Kamp-Lintfort","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13443","name":"Kempen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13444","name":"Kerken","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13445","name":"Kerpen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13446","name":"Kevelaer","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13447","name":"Kierspe","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13448","name":"Kirchhundem","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13449","name":"Kirchlengern","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13450","name":"Kleve","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13451","name":"Koln","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13452","name":"Konigswinter","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13453","name":"Korschenbroich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13454","name":"Krefeld","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13455","name":"Kreuzau","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13456","name":"Kreuztal","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13457","name":"Kurten","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13458","name":"Lage","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13459","name":"Langenfeld","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13460","name":"Langerwehe","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13461","name":"Leichlingen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13462","name":"Lemgo","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13463","name":"Lengerich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13464","name":"Lennestadt","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13465","name":"Leopoldshohe","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13466","name":"Leverkusen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13467","name":"Lichtenau","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13468","name":"Lindlar","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13469","name":"Linnich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13470","name":"Lippetal","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13471","name":"Lippstadt","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13472","name":"Lohmar","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13473","name":"Lotte","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13474","name":"Lubbecke","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13475","name":"Ludenscheid","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13476","name":"Ludinghausen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13477","name":"Lugde","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13478","name":"Lunen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13479","name":"Marienheide","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13480","name":"Marl","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13481","name":"Marsberg","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13482","name":"Mechernich","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13483","name":"Meckenheim","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13484","name":"Meerbusch","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13485","name":"Meinerzhagen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13486","name":"Menden","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13487","name":"Meschede","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13488","name":"Mettingen","city_id":"1338","created_at":"2024-01-21 12:05:35","updated_at":"2024-01-21 12:05:35","translations":null,"is_activated":"1"}, +{"id":"13489","name":"Mettmann","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13490","name":"Minden","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13491","name":"Moers","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13492","name":"Mohnesee","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13493","name":"Monchengladbach","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13494","name":"Monheim","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13495","name":"Monschau","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13496","name":"Morsbach","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13497","name":"Much","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13498","name":"Mulheim","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13499","name":"Netphen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13500","name":"Nettetal","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13501","name":"Neuenkirchen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13502","name":"Neuenrade","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13503","name":"Neukirchen-Vluyn","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13504","name":"Neunkirchen-Seelscheid","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13505","name":"Neuss","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13506","name":"Nideggen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13507","name":"Niederkassel","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13508","name":"Niederkruchten","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13509","name":"Niederzier","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13510","name":"Nordkirchen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13511","name":"Norvenich","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13512","name":"Nottuln","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13513","name":"Numbrecht","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13514","name":"Oberhausen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13515","name":"Ochtrup","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13516","name":"Odenthal","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13517","name":"Oelde","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13518","name":"Oer-Erkenschwick","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13519","name":"Oerlinghausen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13520","name":"Olfen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13521","name":"Olpe","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13522","name":"Olsberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13523","name":"Overath","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13524","name":"Paderborn","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13525","name":"Petershagen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13526","name":"Plettenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13527","name":"Porta Westfalica","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13528","name":"PreuBisch Oldendorf","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13529","name":"Pulheim","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13530","name":"Radevormwald","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13531","name":"Raesfeld","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13532","name":"Rahden","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13533","name":"Ratingen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13534","name":"Recke","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13535","name":"Recklinghausen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13536","name":"Rees","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13537","name":"Reichshof","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13538","name":"Reken","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13539","name":"Remscheid","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13540","name":"Rheda-Wiedenbruck","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13541","name":"Rhede","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13542","name":"Rheinbach","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13543","name":"Rheinberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13544","name":"Rheine","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13545","name":"Rietberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13546","name":"Rommerskirchen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13547","name":"Rosendahl","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13548","name":"Rosrath","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13549","name":"Ruthen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13550","name":"Salzkotten","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13551","name":"Sassenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13552","name":"Schalksmuhle","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13553","name":"Schermbeck","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13554","name":"Schieder-Schwalenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13555","name":"Schleiden","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13556","name":"SchloB Holte-Stukenbrock","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13557","name":"Schmallenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13558","name":"Schwalmtal","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13559","name":"Schwelm","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13560","name":"Schwerte","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13561","name":"Selm","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13562","name":"Sendenhorst","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13563","name":"Siegburg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13564","name":"Siegen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13565","name":"Simmerath","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13566","name":"Soest","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13567","name":"Solingen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13568","name":"Sonsbeck","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13569","name":"Spenge","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13570","name":"Sprockhovel","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13571","name":"Stadtlohn","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13572","name":"Steinfurt","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13573","name":"Steinhagen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13574","name":"Stemwede","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13575","name":"Stolberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13576","name":"Straelen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13577","name":"Sundern","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13578","name":"Swisttal","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13579","name":"Tecklenburg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13580","name":"Telgte","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13581","name":"Tonisvorst","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13582","name":"Troisdorf","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13583","name":"Ubach-Palenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13584","name":"Unna","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13585","name":"Velbert","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13586","name":"Velen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13587","name":"Verl","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13588","name":"Versmold","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13589","name":"Viersen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13590","name":"Vlotho","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13591","name":"Voerde","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13592","name":"Vreden","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13593","name":"Wachtberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13594","name":"Wachtendonk","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13595","name":"Wadersloh","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13596","name":"Waldbrol","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13597","name":"Waltrop","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13598","name":"Warburg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13599","name":"Warendorf","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13600","name":"Warstein","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13601","name":"Wassenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13602","name":"Weeze","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13603","name":"Wegberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13604","name":"Weilerswist","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13605","name":"Welver","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13606","name":"Wenden","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13607","name":"Werdohl","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13608","name":"Werl","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13609","name":"Wermelskirchen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13610","name":"Werne","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13611","name":"Werther","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13612","name":"Wesel","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13613","name":"Wesseling","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13614","name":"Westerkappeln","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13615","name":"Wickede","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13616","name":"Wiehl","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13617","name":"Willich","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13618","name":"Wilnsdorf","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13619","name":"Windeck","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13620","name":"Winterberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13621","name":"Wipperfurth","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13622","name":"Witten","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13623","name":"Wulfrath","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13624","name":"Wunnenberg","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13625","name":"Wuppertal","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13626","name":"Wurselen","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13627","name":"Xanten","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13628","name":"Zulpich","city_id":"1338","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"is_activated":"1"}, +{"id":"13629","name":"Herzberg am Harz","city_id":"1340","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13630","name":"Alzey","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13631","name":"Andernach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13632","name":"Bad Durkheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13633","name":"Bad Ems","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13634","name":"Bad Kreuznach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13635","name":"Bad Neuenahr-Ahrweiler","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13636","name":"Bendorf","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13637","name":"Betzdorf","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13638","name":"Bingen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13639","name":"Bitburg","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13640","name":"Bobenheim-Roxheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13641","name":"Bohl-Iggelheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13642","name":"Boppard","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13643","name":"Daun","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13644","name":"Diez","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13645","name":"Eisenberg","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13646","name":"Essingen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13647","name":"Frankenthal","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13648","name":"Gau-Odernheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13649","name":"Germersheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13650","name":"Grunstadt","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13651","name":"HaBloch","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13652","name":"Hahnstatten","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13653","name":"Hallschlag","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13654","name":"Herschbach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13655","name":"Herxheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13656","name":"Hirschhorn","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13657","name":"Hohr-Grenzhausen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13658","name":"Holzheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13659","name":"Idar-Oberstein","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13660","name":"Ingelheim","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13661","name":"Kaisersesch","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13662","name":"Kaiserslautern","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13663","name":"Kastellaun","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13664","name":"Kindsbach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13665","name":"Kirchen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13666","name":"Kirn","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13667","name":"Koblenz","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13668","name":"Lahnstein","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13669","name":"Limburgerhof","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13670","name":"Luckenburg","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13671","name":"Ludwigshafen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13672","name":"Mainz","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13673","name":"Mayen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13674","name":"Montabaur","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13675","name":"Morbach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13676","name":"Mulheim-Karlich","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13677","name":"Mundersbach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13678","name":"Mutterstadt","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13679","name":"Neitersen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13680","name":"Neuwied","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13681","name":"Niederzissen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13682","name":"Pirmasens","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13683","name":"Plaidt","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13684","name":"Remagen","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13685","name":"Schifferstadt","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13686","name":"Schoenenberg Kuebelberg","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13687","name":"Sinzig","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13688","name":"Speyer","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13689","name":"St. Goar","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13690","name":"Trier","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13691","name":"Vallendar","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13692","name":"Winterbach","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13693","name":"Wittlich","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13694","name":"Worms","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13695","name":"Worth","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13696","name":"Zweibrucken","city_id":"1341","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13697","name":"Adenau","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13698","name":"Anhausen","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13699","name":"Barbelroth","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13700","name":"Berndroth","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13701","name":"Bernkastel-Kues","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13702","name":"Burgbrohl","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13703","name":"Dieblich","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13704","name":"Dierdorf","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13705","name":"Dreisbach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13706","name":"Elsoff","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13707","name":"Enkenbach-Alsenborn","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13708","name":"Etzbach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13709","name":"Flonheim","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13710","name":"Fohren","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13711","name":"Grafschaft","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13712","name":"Hochspeyer","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13713","name":"Leiningen","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13714","name":"Moschheim","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13715","name":"Murlenbach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13716","name":"Neuhofen","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13717","name":"Nievern","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13718","name":"Norken","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13719","name":"Oberlahr","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13720","name":"Otterstadt","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13721","name":"Rennerod","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13722","name":"Rheinbreitbach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13723","name":"Rieschweiler-Muhlbach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13724","name":"Saarburg","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13725","name":"Stahlhofen","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13726","name":"Steinebach","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13727","name":"Weinsheim","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13728","name":"Winnweiler","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13729","name":"Wissen","city_id":"1342","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13730","name":"Beckingen","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13731","name":"Bexbach","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13732","name":"Blieskastel","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13733","name":"Duppenweiler","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13734","name":"Eppelborn","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13735","name":"Friedrichsthal","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13736","name":"GroBrosseln","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13737","name":"Heusweiler","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13738","name":"Homburg","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13739","name":"Illingen","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13740","name":"Kirkel","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13741","name":"Kleinblittersdorf","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13742","name":"Lebach","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13743","name":"Losheim","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13744","name":"Mandelbachtal","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13745","name":"Marpingen","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13746","name":"Merchweiler","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13747","name":"Merzig","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13748","name":"Mettlach","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13749","name":"Nalbach","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13750","name":"Nohfelden","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13751","name":"Nonnweiler","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13752","name":"Oberthal","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13753","name":"Ottweiler","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13754","name":"Puttlingen","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13755","name":"Quierschied","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13756","name":"Rehlingen-Siersburg","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13757","name":"Riegelsberg","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13758","name":"Saarbrucken","city_id":"1343","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"is_activated":"1"}, +{"id":"13759","name":"Saarlouis","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13760","name":"Saarwellingen","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13761","name":"Sankt Ingbert","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13762","name":"Sankt Wendel","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13763","name":"Schiffweiler","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13764","name":"Schmelz","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13765","name":"Spiesen-Elversberg","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13766","name":"Sulzbach","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13767","name":"Tholey","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13768","name":"Uberherrn","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13769","name":"Volklingen","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13770","name":"Wadern","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13771","name":"Wadgassen","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13772","name":"Wallerfangen","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13773","name":"Weiskirchen","city_id":"1343","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13774","name":"Annaberg-Buchholz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13775","name":"Aue","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13776","name":"Auerbach","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13777","name":"Bautzen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13778","name":"Bischofswerda","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13779","name":"Borna","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13780","name":"Brand-Erbisdorf","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13781","name":"Burgstadt","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13782","name":"Chemnitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13783","name":"Coswig","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13784","name":"Crimmitschau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13785","name":"Delitzsch","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13786","name":"Dobeln","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13787","name":"Eilenburg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13788","name":"Falkenstein","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13789","name":"Floha","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13790","name":"Freital","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13791","name":"Friedewald","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13792","name":"Glauchau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13793","name":"Gorlitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13794","name":"Grimma","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13795","name":"GroBenhain","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13796","name":"Groditz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13797","name":"Hainichen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13798","name":"Heidenau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13799","name":"Hirschstein","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13800","name":"Hohenstein-Ernstthal","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13801","name":"Hoyerswerda","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13802","name":"Kamenz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13803","name":"Klingenthal","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13804","name":"Leipzig","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13805","name":"Limbach-Oberfrohna","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13806","name":"LoBnitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13807","name":"Lobau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13808","name":"Lugau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13809","name":"Marienberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13810","name":"Markkleeberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13811","name":"Meerane","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13812","name":"MeiBen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13813","name":"Mittweida","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13814","name":"Muldenhammer","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13815","name":"Niesky","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13816","name":"Oelsnitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13817","name":"Olbernhau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13818","name":"Olbersdorf","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13819","name":"Oschatz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13820","name":"Pirna","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13821","name":"Plauen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13822","name":"Radeberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13823","name":"Radebeul","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13824","name":"Reichenbach","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13825","name":"Riesa","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13826","name":"Rietschen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13827","name":"Schkeuditz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13828","name":"Schneeberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13829","name":"Schwarzenberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13830","name":"Sebnitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13831","name":"Stollberg","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13832","name":"Taubenheim","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13833","name":"Taucha","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13834","name":"Torgau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13835","name":"Waldheim","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13836","name":"WeiBwasser","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13837","name":"Werdau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13838","name":"Wilkau-HaBlau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13839","name":"Wurzen","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13840","name":"Zittau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13841","name":"Zschopau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13842","name":"Zwickau","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13843","name":"Zwonitz","city_id":"1344","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13844","name":"Aken","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13845","name":"Aschersleben","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13846","name":"Bad Durrenberg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13847","name":"Bebitz","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13848","name":"Bernburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13849","name":"Bitterfeld","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13850","name":"Blankenburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13851","name":"Braunsbedra","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13852","name":"Burg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13853","name":"Calbe","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13854","name":"Dessau","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13855","name":"Eisleben","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13856","name":"Gardelegen","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13857","name":"Genthin","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13858","name":"Gommern","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13859","name":"Grafenhainichen","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13860","name":"Halberstadt","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13861","name":"Haldensleben","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13862","name":"Hettstedt","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13863","name":"Heyrothsberge","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13864","name":"Hotensleben","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13865","name":"Kothen","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13866","name":"Leuna","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13867","name":"Magdeburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13868","name":"Merseburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13869","name":"Naumburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13870","name":"Oschersleben","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13871","name":"Osterburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13872","name":"Osterwieck","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13873","name":"Quedlinburg","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13874","name":"Querfurt","city_id":"1345","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"is_activated":"1"}, +{"id":"13875","name":"Raguhn","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13876","name":"RoBlau","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13877","name":"Salzwedel","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13878","name":"Sangerhausen","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13879","name":"Schonebeck","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13880","name":"StaBfurt","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13881","name":"Stendal","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13882","name":"Tangermunde","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13883","name":"Thale","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13884","name":"WeiBenfels","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13885","name":"Wittenberg","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13886","name":"Wolfen","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13887","name":"Wolmirstedt","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13888","name":"Zeitz","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13889","name":"Zerbst","city_id":"1345","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13890","name":"Bad Lausick","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13891","name":"Bernsdorf","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13892","name":"Borde-Hakel","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13893","name":"Gelenau","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13894","name":"Groberkmannsdorf ","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13895","name":"Hartha","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13896","name":"Kreischa","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13897","name":"Malschwitz","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13898","name":"Naunhof","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13899","name":"Pausa","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13900","name":"Seiffen","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13901","name":"Stutzengrun","city_id":"1346","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13902","name":"Ahrensbok","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13903","name":"Ahrensburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13904","name":"Altenholz","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13905","name":"Alveslohe","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13906","name":"Ammersbek","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13907","name":"Bad Bramstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13908","name":"Bad Oldesloe","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13909","name":"Bad Schwartau","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13910","name":"Bad Segeberg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13911","name":"Bargteheide","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13912","name":"Barmstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13913","name":"Barsbuttel","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13914","name":"Bredstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13915","name":"Brunsbuttel","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13916","name":"Budelsdorf","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13917","name":"Eckernforde","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13918","name":"Eddelak","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13919","name":"Elmshorn","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13920","name":"Eutin","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13921","name":"Flensburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13922","name":"Friedrichstadt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13923","name":"Geesthacht","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13924","name":"Glinde","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13925","name":"Gluckstadt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13926","name":"Grob Pampau","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13927","name":"Halstenbek","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13928","name":"Hamfelde","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13929","name":"Harrislee","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13930","name":"Hartenholm","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13931","name":"Heide","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13932","name":"Heiligenhafen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13933","name":"Henstedt-Ulzburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13934","name":"Honenwestedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13935","name":"Husum","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13936","name":"Itzehoe","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13937","name":"Kaltenkirchen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13938","name":"Kappeln","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13939","name":"Kiel","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13940","name":"Kronshagen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13941","name":"Lauenburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13942","name":"Lensahn","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13943","name":"Lubeck","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13944","name":"Malente","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13945","name":"Mielkendorf","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13946","name":"Molfsee","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13947","name":"Molln","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13948","name":"Neuenbrook","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13949","name":"Neumunster","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13950","name":"Norderstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13951","name":"Oststeinbek","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13952","name":"Pinneberg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13953","name":"Plon","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13954","name":"Preetz","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13955","name":"Quickborn","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13956","name":"Ratekau","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13957","name":"Ratzeburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13958","name":"Reinbek","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13959","name":"Reinfeld","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13960","name":"Rellingen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13961","name":"Rendsburg","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13962","name":"Rethwisch","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13963","name":"Satrup","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13964","name":"Scharbeutz","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13965","name":"Schenefeld","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13966","name":"Schleswig","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13967","name":"Schmalfeld","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13968","name":"Schoenkirchen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13969","name":"Schwarzenbek","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13970","name":"Sievershutten","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13971","name":"Stockelsdorf","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13972","name":"Tangstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13973","name":"Timmendorfer Strand","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13974","name":"Tornesch","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13975","name":"Travemunde","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13976","name":"Uetersen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13977","name":"Wahlstedt","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13978","name":"Wedel","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13979","name":"Wentorf","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13980","name":"Westerland","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13981","name":"Westerronfeld","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13982","name":"Wohltorf","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13983","name":"Wotersen","city_id":"290","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13984","name":"Altenburg","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13985","name":"Apolda","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13986","name":"Arnstadt","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13987","name":"Bad Frankenhausen","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13988","name":"Bad Langensalza","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13989","name":"Bad Salzungen","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13990","name":"Cursdorf","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13991","name":"Dornburg","city_id":"1347","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"is_activated":"1"}, +{"id":"13992","name":"Eisenach","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13993","name":"Erfurt","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13994","name":"Gera","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13995","name":"Geschwenda","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13996","name":"Gotha","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13997","name":"Greiz","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13998","name":"Heiligenstadt","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"13999","name":"Hermsdorf","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14000","name":"Hildburghausen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14001","name":"Ilmenau","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14002","name":"Immelborn","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14003","name":"Jena","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14004","name":"Leinefelde","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14005","name":"Leutenberg","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14006","name":"Meiningen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14007","name":"Meuselwitz","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14008","name":"Muhlhausen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14009","name":"Nordhausen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14010","name":"PoBneck","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14011","name":"Rosenthal","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14012","name":"Rositz","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14013","name":"Rudolstadt","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14014","name":"Ruhla","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14015","name":"Saalfeld","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14016","name":"Schmalkalden","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14017","name":"Schmolln","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14018","name":"Sommerda","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14019","name":"Sondershausen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14020","name":"Sonneberg","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14021","name":"Suhl","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14022","name":"Triptis","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14023","name":"Uhlstadt","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14024","name":"Waltershausen","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14025","name":"Weida","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14026","name":"Weimar","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14027","name":"Wernigerode","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14028","name":"Wormstedt","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14029","name":"Zella-Mehlis","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14030","name":"Zeulenroda","city_id":"1347","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14031","name":"Webling","city_id":"1348","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14032","name":"Schlobborn","city_id":"1350","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14033","name":"Agogo","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14034","name":"Bekwai","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14035","name":"Konongo","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14036","name":"Kumasi","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14037","name":"Mampong","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14038","name":"Mankranso","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14039","name":"Obuasi","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14040","name":"Ofinso","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14041","name":"Tafo","city_id":"1351","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14042","name":"Bechem","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14043","name":"Berekum","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14044","name":"Duayaw Nkwanta","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14045","name":"Kintampo","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14046","name":"Sunyani","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14047","name":"Techiman","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14048","name":"Wenchi","city_id":"1352","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14049","name":"Apam","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14050","name":"Cape Coast","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14051","name":"Dunkwa","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14052","name":"Elmina","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14053","name":"Foso","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14054","name":"Komenda","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14055","name":"Mauri","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14056","name":"Mumford","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14057","name":"Nyakrom","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14058","name":"Okitsiu","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14059","name":"Saltpond","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14060","name":"Swedru","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14061","name":"Winneba","city_id":"1102","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14062","name":"Aburi","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14063","name":"Ada","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14064","name":"Akim Swedru","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14065","name":"Akropong","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14066","name":"Asamankese","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14067","name":"Begoro","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14068","name":"Kade","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14069","name":"Kibi","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14070","name":"Koforidua","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14071","name":"Mpraeso","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14072","name":"Nkawkaw","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14073","name":"Nsawam","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14074","name":"Oda","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14075","name":"Somanya","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14076","name":"Suhum","city_id":"140","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14077","name":"Kpandae","city_id":"1103","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14078","name":"Salaga","city_id":"1103","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14079","name":"Savelugu","city_id":"1103","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14080","name":"Tamale","city_id":"1103","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14081","name":"Yendi","city_id":"1103","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"is_activated":"1"}, +{"id":"14082","name":"Aflao","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14083","name":"Anloga","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14084","name":"Ho","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14085","name":"Hohoe","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14086","name":"Keta","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14087","name":"Kete-Krachi","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14088","name":"Kpandu","city_id":"1356","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14089","name":"Aboso","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14090","name":"Anomabu","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14091","name":"Axim","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14092","name":"Bibiani","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14093","name":"Prestea","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14094","name":"Sekondi","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14095","name":"Shama","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14096","name":"Takoradi","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14097","name":"Tarkwa","city_id":"143","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14098","name":"Gibraltar","city_id":"1357","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14099","name":"Elassonos","city_id":"1358","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14100","name":"Aiyion","city_id":"1359","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14101","name":"Patra","city_id":"1359","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14102","name":"Argos","city_id":"1361","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14103","name":"Navplion","city_id":"1361","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14104","name":"Tripoli","city_id":"1362","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14105","name":"Arta","city_id":"1363","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14106","name":"Acharnes","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14107","name":"Agios Ioannis Rentis","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14108","name":"Drapetsona","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14109","name":"Koropi","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14110","name":"Lavrion","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14111","name":"Mandra","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14112","name":"Spata","city_id":"1364","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14113","name":"Aharna","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14114","name":"Aiyaleo","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14115","name":"Alimos","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14116","name":"Amarousion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14117","name":"Ano Liosia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14118","name":"Aryiroupoli","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14119","name":"Aspropirgos","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14120","name":"Athina","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14121","name":"Athinai","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14122","name":"Ayia Barbara","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14123","name":"Ayia Paraskevi","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14124","name":"Ayios Anaryiros","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14125","name":"Ayios Dimitrios","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14126","name":"Dafne","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14127","name":"Elevsis","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14128","name":"Ellenikon","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14129","name":"Galatsion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14130","name":"Glifada","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14131","name":"Haidarion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14132","name":"Halandrion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14133","name":"Holargos","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14134","name":"Ilioupoli","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14135","name":"Iraklion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14136","name":"Kaisariani","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14137","name":"Kallithea","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14138","name":"Kamateron","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14139","name":"Keratea","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14140","name":"Keratsinion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14141","name":"Kifisia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14142","name":"Koridallos","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14143","name":"Kropion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14144","name":"Markopoulos Mesogaia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14145","name":"Maroussi","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14146","name":"Megara","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14147","name":"Melission","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14148","name":"Metamorfosios","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14149","name":"Moshatos","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14150","name":"Nea Filedelfia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14151","name":"Nea Ionia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14152","name":"Nea Liosia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14153","name":"Nea Smirni","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14154","name":"Nikaia","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14155","name":"Palaion Faliron","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14156","name":"Perama","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14157","name":"Peristerion","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14158","name":"Petroupoli","city_id":"1365","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"is_activated":"1"}, +{"id":"14159","name":"Pevka","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14160","name":"Piraeus","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14161","name":"Salamis","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14162","name":"Tavros","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14163","name":"Viron","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14164","name":"Voula","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14165","name":"Vrilission","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14166","name":"Zografos","city_id":"1365","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14167","name":"Heraklion","city_id":"1367","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14168","name":"Arhangelos","city_id":"1368","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14169","name":"Ialysos","city_id":"1368","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14170","name":"Kos","city_id":"1368","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14171","name":"Rodos","city_id":"1368","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14172","name":"Drama","city_id":"1369","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14173","name":"Chalkis","city_id":"1370","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14174","name":"Karpenisi","city_id":"1371","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14175","name":"Alexandroupoli","city_id":"1372","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14176","name":"Orestias","city_id":"1372","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14177","name":"Halkida","city_id":"1373","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14178","name":"Florina","city_id":"1374","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14179","name":"Amfissa","city_id":"1375","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14180","name":"Lamia","city_id":"1376","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14181","name":"Grevena","city_id":"1377","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14182","name":"Halandri","city_id":"1378","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14183","name":"Lakkoma","city_id":"1379","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14184","name":"N. Kallikrateia","city_id":"1379","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14185","name":"Poliyiros","city_id":"1379","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14186","name":"Hania","city_id":"1380","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14187","name":"Crete","city_id":"1381","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14188","name":"Hios","city_id":"1382","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14189","name":"Pirgos","city_id":"1383","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14190","name":"Veroia","city_id":"1384","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14191","name":"Ioannina","city_id":"1385","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"is_activated":"1"}, +{"id":"14192","name":"Karditsa","city_id":"1387","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14193","name":"Kastoria","city_id":"1388","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14194","name":"Kavala","city_id":"1389","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14195","name":"Agioi Theodoroi","city_id":"1390","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14196","name":"Argostolion","city_id":"1390","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14197","name":"Kerkira","city_id":"1391","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14198","name":"Ermoupoli","city_id":"1392","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14199","name":"Fira","city_id":"1392","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14200","name":"Mikonos","city_id":"1392","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14201","name":"Kilkis","city_id":"1393","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14202","name":"Korinthos","city_id":"1394","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14203","name":"Kozani","city_id":"1395","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14204","name":"Ptolemais","city_id":"1395","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14205","name":"Sparti","city_id":"1396","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14206","name":"Larisa","city_id":"1397","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14207","name":"Larissa","city_id":"1397","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14208","name":"Ayios Nikolaos","city_id":"1398","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14209","name":"Ierapetra","city_id":"1398","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14210","name":"Sitia","city_id":"1398","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14211","name":"Mitilini","city_id":"1399","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14212","name":"Levkas","city_id":"1400","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14213","name":"Volos","city_id":"1401","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14214","name":"Kalamata","city_id":"1402","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14215","name":"Edessa","city_id":"1405","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14216","name":"Yiannitsa","city_id":"1405","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14217","name":"Katerini","city_id":"1406","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14218","name":"Acharne","city_id":"1407","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14219","name":"Pallini","city_id":"1407","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14220","name":"Preveza","city_id":"1408","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14221","name":"Rethimnon","city_id":"1409","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"is_activated":"1"}, +{"id":"14222","name":"Komotini","city_id":"1410","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14223","name":"Samos","city_id":"1411","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14224","name":"Serrai","city_id":"1412","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14225","name":"Igoumenitsa","city_id":"1413","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14226","name":"Ampelokipa","city_id":"1414","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14227","name":"Kalamaria","city_id":"1414","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14228","name":"Neapoli","city_id":"1414","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14229","name":"Oristiada","city_id":"1414","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14230","name":"Thessaloniki","city_id":"1414","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14231","name":"Trikala","city_id":"1415","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14232","name":"Levadia","city_id":"1416","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14233","name":"Thivai","city_id":"1416","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14234","name":"Xanthi","city_id":"1418","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14235","name":"Zakinthos","city_id":"1419","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14236","name":"Aasiaat","city_id":"1420","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14237","name":"Akunnaaq","city_id":"1420","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14238","name":"Kitsissuarsuit","city_id":"1420","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14239","name":"Ikkatteq","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14240","name":"Isortoq","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14241","name":"Kulusuk","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14242","name":"Kuumiut","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14243","name":"Qernertuarssuit","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14244","name":"Sermiligaaq","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14245","name":"Tasiilaq","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14246","name":"Tiniteqilaaq","city_id":"1421","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14247","name":"Illoqqortoormiut","city_id":"1422","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14248","name":"Itterajivit","city_id":"1422","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14249","name":"Uunarteq","city_id":"1422","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14250","name":"Ilimanaq","city_id":"1423","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14251","name":"Ilulissat","city_id":"1423","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14252","name":"Oqaatsut","city_id":"1423","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14253","name":"Qeqertaq","city_id":"1423","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14254","name":"Saqqaq","city_id":"1423","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14255","name":"Ivittuut","city_id":"1424","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14256","name":"Kangilinnguit","city_id":"1424","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14257","name":"Attu","city_id":"1425","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14258","name":"Iginniarfik","city_id":"1425","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14259","name":"Ikerasaarsuk","city_id":"1425","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14260","name":"Kangaatsiaq","city_id":"1425","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14261","name":"Niaqornaarsuk","city_id":"1425","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14262","name":"Atammik","city_id":"1426","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14263","name":"Kangaamiut","city_id":"1426","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14264","name":"Maniitsoq","city_id":"1426","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14265","name":"Napasoq","city_id":"1426","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14266","name":"Aappilattoq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14267","name":"Akuliaruseq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14268","name":"Alluitsoq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14269","name":"Alluitsup Paa","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14270","name":"Ammassivik","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14271","name":"Ikerasassuaq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14272","name":"Nanortalik","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14273","name":"Narsarmijit","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14274","name":"Nuugaarsuk","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14275","name":"Qallimiut","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14276","name":"Qortortorsuaq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14277","name":"Tasiusaq","city_id":"1427","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"is_activated":"1"}, +{"id":"14278","name":"Amannguit","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14279","name":"Atarnaatsoq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14280","name":"Eqaluit Ilua","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14281","name":"Igaliku","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14282","name":"Igaliku Kujalleq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14283","name":"Inneruulalik","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14284","name":"Issormiut","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14285","name":"Iterlak","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14286","name":"Kangerlua","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14287","name":"Narsaq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14288","name":"Narsarsuaq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14289","name":"Nunataaq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14290","name":"Qassiarsuk","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14291","name":"Qinngua","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14292","name":"Qinngua Kangilleq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14293","name":"Qolortup Itinnera","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14294","name":"Sillisit","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14295","name":"Timerliit","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14296","name":"Uummannartuuaraq","city_id":"1428","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14297","name":"Kangerluarsoruseq","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14298","name":"Kapisillit","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14299","name":"Neriunaq","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14300","name":"Nuuk","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14301","name":"Qeqertarsuatsiaat","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14302","name":"Qooqqut","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14303","name":"Qoornoq","city_id":"1429","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14304","name":"Arsuk","city_id":"1430","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14305","name":"Paamiut","city_id":"1430","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14306","name":"Moriusaq","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14307","name":"Qaanaaq","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14308","name":"Qeqertarsuaq","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14309","name":"Qeqertat","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14310","name":"Savissivik","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14311","name":"Siorapaluk","city_id":"1431","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14312","name":"Eqalugaarsuit","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14313","name":"Illorsuit","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14314","name":"Kangerluarsorujuk","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14315","name":"Kangerluarsorujuup Qinngua","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14316","name":"Qanisartuut","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14317","name":"Qaqortokolook","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14318","name":"Qaqortoq","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14319","name":"Qassimiut","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14320","name":"Saarloq","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14321","name":"Saqqamiut","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14322","name":"Tasiluk","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14323","name":"Upernaviarsuk","city_id":"1432","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14324","name":"Ikamiut","city_id":"1433","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14325","name":"Qasigiannguit","city_id":"1433","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14326","name":"Kangerluk","city_id":"1434","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14327","name":"Itilleq","city_id":"1435","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14328","name":"Kangerlussuaq","city_id":"1435","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14329","name":"Sarfannguit","city_id":"1435","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14330","name":"Sisimiut","city_id":"1435","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14331","name":"Ikerakuuk","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14332","name":"Innarsuit","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14333","name":"Kangersuatsiaq","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14334","name":"Kullorsuaq","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14335","name":"Naajaat","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14336","name":"Nutaarmiut","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14337","name":"Nuusuaq","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14338","name":"Upernavik","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14339","name":"Upernavik Kujalleq","city_id":"1437","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14340","name":"Ikerasak","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14341","name":"Niaqornat","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14342","name":"Nuugaatsiaq","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14343","name":"Qaarsut","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14344","name":"Saattut","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14345","name":"Ukkusissat","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14346","name":"Uummannaq","city_id":"1438","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"is_activated":"1"}, +{"id":"14347","name":"Baie-Mahault","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14348","name":"Baillif","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14349","name":"Basse-Terre","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14350","name":"Bouillante","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14351","name":"Capesterre-Belle-Eau","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14352","name":"Gourbeyre","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14353","name":"Lamentin","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14354","name":"Petit-Bourg","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14355","name":"Pointe-Noire","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14356","name":"Sainte-Rose","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14357","name":"Vieux-Habitants","city_id":"1442","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14358","name":"Anse-Bertrand","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14359","name":"Le Gosier","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14360","name":"Le Moule","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14361","name":"Les Abymes","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14362","name":"Morne-a-l Eau","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14363","name":"Petit-Canal","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14364","name":"Point-a-Pitre","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14365","name":"Port-Louis","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14366","name":"Saint-Francois","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14367","name":"Sainte-Anne","city_id":"1443","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14368","name":"Grand-Bourg","city_id":"1446","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14369","name":"Agat","city_id":"1450","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14370","name":"Barrigada","city_id":"1451","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14371","name":"Barrigada Heights","city_id":"1451","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14372","name":"Chalan Pago","city_id":"1452","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14373","name":"Ordot","city_id":"1452","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14374","name":"Astumbo","city_id":"1453","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14375","name":"Dededo","city_id":"1453","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14376","name":"Finegayan Station","city_id":"1453","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14377","name":"Agana","city_id":"1454","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14378","name":"Agana Station","city_id":"1454","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14379","name":"Inarajan","city_id":"1455","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14380","name":"Mangilao","city_id":"1456","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14381","name":"Merizo","city_id":"1457","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14382","name":"Mongmong","city_id":"1458","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14383","name":"Toto","city_id":"1458","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"is_activated":"1"}, +{"id":"14384","name":"Sinajana","city_id":"1460","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14385","name":"Talofofo","city_id":"1461","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14386","name":"Tamuning","city_id":"1462","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14387","name":"Anderson Air Force Base","city_id":"1463","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14388","name":"Yigo","city_id":"1463","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14389","name":"Yona","city_id":"1464","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14390","name":"Chimaltenango","city_id":"1467","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14391","name":"Comalapa","city_id":"1467","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14392","name":"Itzapa","city_id":"1467","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14393","name":"Patzun","city_id":"1467","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14394","name":"Chiquimula","city_id":"1468","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14395","name":"Cotzumalguapa","city_id":"1470","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14396","name":"Escuintla","city_id":"1470","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14397","name":"Palin","city_id":"1470","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14398","name":"Tiquisate","city_id":"1470","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14399","name":"Amatitlan","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14400","name":"Chinautla","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14401","name":"Guatemala","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14402","name":"Mixco","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14403","name":"Petapa","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14404","name":"Villa Nueva","city_id":"1471","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14405","name":"Huehuetenango","city_id":"1472","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14406","name":"Puerto Barrios","city_id":"1473","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14407","name":"Jalapa","city_id":"1474","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14408","name":"Asuncion Mita","city_id":"1475","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14409","name":"Jutiapa","city_id":"1475","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14410","name":"Quezaltenango","city_id":"1477","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14411","name":"Quiche","city_id":"1478","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14412","name":"Retalhuleu","city_id":"1479","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14413","name":"Antigua","city_id":"1480","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14414","name":"Ciudad Vieja","city_id":"1480","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14415","name":"Jocotenango","city_id":"1480","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14416","name":"Santa Maria de Jesus","city_id":"1480","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14417","name":"Sumpango","city_id":"1480","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"is_activated":"1"}, +{"id":"14418","name":"Atitlan","city_id":"1483","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14419","name":"Solola","city_id":"1483","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14420","name":"Mazatenango","city_id":"1484","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14421","name":"Totonicapan","city_id":"1485","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14422","name":"Zacapa","city_id":"1486","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14423","name":"Beyla","city_id":"1487","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14424","name":"Boffa","city_id":"1488","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14425","name":"Boke","city_id":"1489","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14426","name":"Conakry","city_id":"1490","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14427","name":"Coyah","city_id":"1491","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14428","name":"Dabola","city_id":"1492","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14429","name":"Dalaba","city_id":"1493","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14430","name":"Dinguiraye","city_id":"1494","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14431","name":"Faranah","city_id":"1495","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14432","name":"Forecariah","city_id":"1496","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14433","name":"Fria","city_id":"1497","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14434","name":"Gaoual","city_id":"1498","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14435","name":"Guekedou","city_id":"1499","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14436","name":"Kankan","city_id":"1500","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14437","name":"Kerouane","city_id":"1501","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14438","name":"Kindia","city_id":"1502","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14439","name":"Kissidougou","city_id":"1503","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14440","name":"Koubia","city_id":"1504","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"is_activated":"1"}, +{"id":"14441","name":"Koundara","city_id":"1505","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14442","name":"Kouroussa","city_id":"1506","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14443","name":"Labe","city_id":"1507","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14444","name":"Lola","city_id":"1508","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14445","name":"Macenta","city_id":"1509","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14446","name":"Mali","city_id":"1510","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14447","name":"Mamou","city_id":"1511","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14448","name":"Mandiana","city_id":"1512","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14449","name":"Nzerekore","city_id":"1513","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14450","name":"Pita","city_id":"1514","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14451","name":"Siguiri","city_id":"1515","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14452","name":"Telimele","city_id":"1516","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14453","name":"Tougue","city_id":"1517","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14454","name":"Yomou","city_id":"1518","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14455","name":"Bafata","city_id":"1519","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14456","name":"Bissau","city_id":"1520","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14457","name":"Bolama","city_id":"1521","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14458","name":"Bubaque","city_id":"1521","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14459","name":"Cacheu","city_id":"1522","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14460","name":"Canchungo","city_id":"1522","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14461","name":"Gabu","city_id":"1523","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14462","name":"Bissora","city_id":"1524","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14463","name":"Farim","city_id":"1524","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14464","name":"Mansoa","city_id":"1524","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14465","name":"Buba","city_id":"1525","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14466","name":"Fulacunda","city_id":"1525","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14467","name":"Quebo","city_id":"1525","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14468","name":"Catio","city_id":"1526","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14469","name":"Mabaruma","city_id":"1527","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14470","name":"Morawhanna","city_id":"1527","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14471","name":"Bartica","city_id":"1528","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14472","name":"Issano","city_id":"1528","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14473","name":"Kamarang","city_id":"1528","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"is_activated":"1"}, +{"id":"14474","name":"Mahaica","city_id":"1529","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14475","name":"Paradise","city_id":"1529","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14476","name":"Queenstown","city_id":"1529","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14477","name":"Fort Wellington","city_id":"1532","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14478","name":"Mahaicony","city_id":"1532","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14479","name":"Rosignol","city_id":"1532","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14480","name":"Anna Regina","city_id":"1533","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14481","name":"Charity","city_id":"1533","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14482","name":"Suddie","city_id":"1533","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14483","name":"Mahdia","city_id":"1534","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14484","name":"Tumatumari","city_id":"1534","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14485","name":"Desdunes","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14486","name":"Dessalines","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14487","name":"Gonaives","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14488","name":"Gros-Morne","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14489","name":"L Artibonite","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14490","name":"Saint-Marc","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14491","name":"Saint-Michel-de-l Atalaye","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14492","name":"Verrettes","city_id":"1537","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14493","name":"Hinche","city_id":"649","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14494","name":"Mirebalais","city_id":"649","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14495","name":"Anse-d Hainault","city_id":"1538","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14496","name":"Dame Marie","city_id":"1538","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14497","name":"Jeremie","city_id":"1538","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14498","name":"Miragoane","city_id":"1538","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14499","name":"Cap-Haitien","city_id":"651","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14500","name":"Croix-des-Bouquets","city_id":"651","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14501","name":"Grande Riviere du Nord","city_id":"651","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14502","name":"Pignon","city_id":"651","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14503","name":"Derac","city_id":"1539","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14504","name":"Fort-Liberte","city_id":"1539","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14505","name":"Ouanaminthe","city_id":"1539","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14506","name":"Trou-du-Nord","city_id":"1539","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14507","name":"Port-de-Paix","city_id":"1540","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14508","name":"Saint-Louis-du-Nord","city_id":"1540","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14509","name":"Anse-a-Galets","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14510","name":"Carrefour","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14511","name":"Delmas","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14512","name":"Kenscoff","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14513","name":"Lascahobas","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14514","name":"Leogane","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14515","name":"Petionville","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14516","name":"Petit Goave","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14517","name":"Port-au-Prince","city_id":"654","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14518","name":"Aquin","city_id":"655","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14519","name":"Les Cayes","city_id":"655","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14520","name":"Jacmel","city_id":"1541","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14521","name":"La Ceiba","city_id":"1544","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14522","name":"Olanchito","city_id":"1544","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14523","name":"Tela","city_id":"1544","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14524","name":"Choluteca","city_id":"1545","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14525","name":"Pespire","city_id":"1545","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"is_activated":"1"}, +{"id":"14526","name":"Sonaguera","city_id":"1546","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14527","name":"Tocoa","city_id":"1546","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14528","name":"Comayagua","city_id":"1547","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14529","name":"Siguatepeque","city_id":"1547","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14530","name":"Copan","city_id":"1548","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14531","name":"Corquin","city_id":"1548","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14532","name":"El Paraiso","city_id":"1548","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14533","name":"Santa Rosa de Copan","city_id":"1548","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14534","name":"Choloma","city_id":"1549","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14535","name":"La Lima","city_id":"1549","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14536","name":"Omoa","city_id":"1549","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14537","name":"San Pedro Sula","city_id":"1549","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14538","name":"Intibuca","city_id":"1554","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14539","name":"La Esperanza","city_id":"1554","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14540","name":"Utila","city_id":"1554","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14541","name":"Gracias","city_id":"1556","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14542","name":"Ocotepeque","city_id":"1557","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14543","name":"Sinuapa","city_id":"1557","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14544","name":"Catacamas","city_id":"1558","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14545","name":"Juticalpa","city_id":"1558","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14546","name":"Amapala","city_id":"1560","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14547","name":"Langue","city_id":"1560","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14548","name":"Nacaome","city_id":"1560","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14549","name":"El Progreso","city_id":"1561","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14550","name":"Morazan","city_id":"1561","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14551","name":"Yoro","city_id":"1561","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14552","name":"Akaszto","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14553","name":"Bacsalmas","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14554","name":"Bacsbokod","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14555","name":"Baja","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14556","name":"Bugac","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14557","name":"Davod","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14558","name":"Dunapataj","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14559","name":"Dunavecse","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14560","name":"Fulopszallas","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14561","name":"Hajos","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14562","name":"Harta","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14563","name":"Izsak","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14564","name":"Jakabszallas","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14565","name":"Janoshalma","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14566","name":"Kalocsa","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14567","name":"Kecel","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14568","name":"Kecskemet","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14569","name":"Kiskoros","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14570","name":"Kiskunfelegyhaza","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14571","name":"Kiskunhalas","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14572","name":"Kiskunmajsa","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14573","name":"Kunfeherto","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14574","name":"Kunszentmiklos","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14575","name":"Lajosmizse","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14576","name":"Lakitelek","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14577","name":"Madaras","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14578","name":"Melykut","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14579","name":"Nagybaracska","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14580","name":"Orgovany","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14581","name":"Palmonostora","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14582","name":"Solt","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14583","name":"Soltvadkert","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14584","name":"Sukosd","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14585","name":"Szabadszallas","city_id":"1563","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"is_activated":"1"}, +{"id":"14586","name":"Szalkszentmarton","city_id":"1563","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14587","name":"Tass","city_id":"1563","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14588","name":"Tiszakecske","city_id":"1563","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14589","name":"Tompa","city_id":"1563","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14590","name":"Beremend","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14591","name":"Boly","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14592","name":"Dunaszekcso","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14593","name":"Harkany","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14594","name":"Hosszuheteny","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14595","name":"Komlo","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14596","name":"Magocs","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14597","name":"Mohacs","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14598","name":"Pecs","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14599","name":"Pecsvarad","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14600","name":"Sasd","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14601","name":"Sellye","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14602","name":"Siklos","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14603","name":"Szentlorinc","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14604","name":"Szigetvar","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14605","name":"Vajszlo","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14606","name":"Villany","city_id":"1564","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14607","name":"Battonya","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14608","name":"Bekes","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14609","name":"Bekescsaba","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14610","name":"Bekessamson","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14611","name":"Bekesszentandras","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14612","name":"Csorvas","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14613","name":"Devavanya","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14614","name":"Doboz","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14615","name":"Elek","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14616","name":"Endrod","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14617","name":"Fuzesgyarmat","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14618","name":"Gyula","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14619","name":"Ketegyhaza","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14620","name":"Kondoros","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14621","name":"Korosladany","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14622","name":"Kunagota","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14623","name":"Lokoshaza","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14624","name":"Mezobereny","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14625","name":"Mezohegyes","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14626","name":"Mezokovacshaza","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14627","name":"Nagyszenas","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14628","name":"Oroshaza","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14629","name":"Sarkad","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14630","name":"Szabadkigyos","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14631","name":"Szarvas","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14632","name":"Szeghalom","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14633","name":"Totkomlos","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14634","name":"Veszto","city_id":"1565","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14635","name":"Abaujszanto","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14636","name":"Arlo","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14637","name":"Bogacs","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14638","name":"Cigand","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14639","name":"Edeleny","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14640","name":"Emod","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14641","name":"Encs","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14642","name":"Gonc","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14643","name":"Karcsa","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14644","name":"Kazincbarcika","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14645","name":"Mad","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14646","name":"Megyaszo","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14647","name":"Mezokeresztes","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14648","name":"Mezokovesd","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14649","name":"Miskolc","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14650","name":"Monok","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14651","name":"Nyekladhaza","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14652","name":"Olaszliszka","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14653","name":"Onod","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14654","name":"Ozd","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14655","name":"Putnok","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14656","name":"Rudabanya","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14657","name":"Sajokaza","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14658","name":"Sajolad","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14659","name":"Sajoszentpeter","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14660","name":"Saly","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14661","name":"Sarospatak","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14662","name":"Satoraljaujhely","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14663","name":"Szendro","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14664","name":"Szentistvan","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14665","name":"Szerencs","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14666","name":"Szihalom","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14667","name":"Szikszo","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14668","name":"Taktaharkany","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14669","name":"Taktaszada","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14670","name":"Tallya","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14671","name":"Tarcal","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14672","name":"Tiszaluc","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14673","name":"Tiszaujvaros","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14674","name":"Tokaj","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14675","name":"Tolcsva","city_id":"1566","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14676","name":"Budapest","city_id":"1567","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14677","name":"Csongrad","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14678","name":"Fabiansebestyen","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14679","name":"Foldeak","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14680","name":"Hodmezovasarhely","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14681","name":"Kiskundorozsma","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14682","name":"Kistelek","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14683","name":"Kiszombor","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14684","name":"Mako","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14685","name":"Mindszent","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14686","name":"Morahalom","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14687","name":"Pusztaszer","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14688","name":"Roszke","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14689","name":"Sandorfalva","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14690","name":"Szatymaz","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14691","name":"Szeged","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14692","name":"Szegvar","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14693","name":"Szekkutas","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14694","name":"Szentes","city_id":"1568","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14695","name":"Adony","city_id":"1569","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14696","name":"Alap","city_id":"1569","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14697","name":"Apostag","city_id":"1569","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14698","name":"Bakonycsernye","city_id":"1569","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14699","name":"Bicske","city_id":"1569","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"is_activated":"1"}, +{"id":"14700","name":"Bodajk","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14701","name":"Cece","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14702","name":"Csakvar","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14703","name":"Deg","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14704","name":"Dios","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14705","name":"Dunaujvaros","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14706","name":"Enying","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14707","name":"Ercsi","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14708","name":"Etyek","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14709","name":"Fehervarcsurgo","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14710","name":"Lovasbereny","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14711","name":"Martonvasar","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14712","name":"Mezofalva","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14713","name":"Mezoszilas","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14714","name":"Mor","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14715","name":"Pazmand","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14716","name":"Polgardi","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14717","name":"Pusztavam","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14718","name":"Rackeresztur","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14719","name":"Sarbogard","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14720","name":"Seregelyes","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14721","name":"Soponya","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14722","name":"Szabadbattyan","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14723","name":"Szekesfehervar","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14724","name":"Val","city_id":"1569","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14725","name":"Asvanyraro","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14726","name":"Beled","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14727","name":"Bosarkany","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14728","name":"Csorna","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14729","name":"Fertod","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14730","name":"Fertorakos","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14731","name":"Fertoszentmiklos","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14732","name":"Gyor","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14733","name":"Gyorujbarat","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14734","name":"Hunyadi u.","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14735","name":"Kapuvar","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14736","name":"Lebeny","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14737","name":"Mihalyi","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14738","name":"Mosonmagyarovar","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14739","name":"Nyul","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14740","name":"Pannonhalma","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14741","name":"Rajka","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14742","name":"Sopron","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14743","name":"Szany","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14744","name":"Tet","city_id":"1570","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14745","name":"Balmazujvaros","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14746","name":"Barand","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14747","name":"Berettyoujfalu","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14748","name":"Biharkeresztes","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14749","name":"Biharnagybajom","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14750","name":"Debrecen","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14751","name":"Derecske","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14752","name":"Egyek","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14753","name":"Foldes","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14754","name":"Hajduboszormeny","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14755","name":"Hajdudorog","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14756","name":"Hajduhadhaz","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14757","name":"Hajdusamson","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14758","name":"Hajduszoboszlo","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14759","name":"Hajduszovat","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14760","name":"Hortobagy","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14761","name":"Hosszupalyi","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14762","name":"Kaba","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14763","name":"Komadi","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14764","name":"Mikepercs","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14765","name":"Monostorpalyi","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14766","name":"Nadudvar","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14767","name":"Nagyleta","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14768","name":"Nyirabrany","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14769","name":"Nyiracsad","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14770","name":"Nyiradony","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14771","name":"Polgar","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14772","name":"Puspokladany","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14773","name":"Sarretudvari","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14774","name":"Tiszacsege","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14775","name":"Ujfeherto","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14776","name":"Vamospercs","city_id":"1571","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14777","name":"Abasar","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14778","name":"Andornaktalya","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14779","name":"Belapatfalva","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14780","name":"Domoszlo","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14781","name":"Eger","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14782","name":"Erdotelek","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14783","name":"Felsotarkany","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14784","name":"Fuzesabony","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14785","name":"Gyongyos","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14786","name":"Gyongyospata","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14787","name":"Gyongyossolymos","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14788","name":"Gyongyostarjan","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14789","name":"Hatvan","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14790","name":"Heves","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14791","name":"Kal","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14792","name":"Lorinci","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14793","name":"Matraderecske","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14794","name":"Parad","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14795","name":"Petervasara","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14796","name":"Recsk","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14797","name":"Sirok","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14798","name":"Tarnalelesz","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14799","name":"Verpelet","city_id":"1572","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14800","name":"Abadszalok","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14801","name":"Besenyszog","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14802","name":"Cserkeszolo","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14803","name":"Fegyvernek","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14804","name":"Hegyeshalom","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14805","name":"Jaszalsoszentgyorgy","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14806","name":"Jaszapati","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14807","name":"Jaszarokszallas","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14808","name":"Jaszbereny","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14809","name":"Jaszfenyzaru","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14810","name":"Jaszjakohalma","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14811","name":"Jaszkiser","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14812","name":"Jaszladany","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14813","name":"Jaszszentandras","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14814","name":"Karcag","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14815","name":"Kenderes","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14816","name":"Kisujszallas","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14817","name":"Kunhegyes","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14818","name":"Kunmadaras","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14819","name":"Kunszentmarton","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14820","name":"Martfu","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14821","name":"Mezotur","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14822","name":"Ocsod","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14823","name":"Szolnok","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14824","name":"Tiszabura","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14825","name":"Tiszafoldvar","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14826","name":"Tiszafured","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14827","name":"Tiszapuspoki","city_id":"1573","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"is_activated":"1"}, +{"id":"14828","name":"Tiszaroff","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14829","name":"Tiszasuly","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14830","name":"Torokszentmiklos","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14831","name":"Toszeg","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14832","name":"Turkeve","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14833","name":"Ujszasz","city_id":"1573","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14834","name":"Acs","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14835","name":"Almasfuzito","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14836","name":"Babolna","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14837","name":"Bajna","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14838","name":"Dorog","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14839","name":"Esztergom","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14840","name":"Kesztolc","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14841","name":"Kisber","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14842","name":"Komarom","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14843","name":"Kornye","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14844","name":"Labatlan","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14845","name":"Mocsa","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14846","name":"Nagyigmand","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14847","name":"Nyergesujfalu","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14848","name":"Oroszlany","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14849","name":"Sarisap","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14850","name":"Tardos","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14851","name":"Tarjan","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14852","name":"Tata","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14853","name":"Tatabanya","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14854","name":"Tokod","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14855","name":"Vertesszolos","city_id":"1574","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14856","name":"Balassagyarmat","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14857","name":"Batonyterenye","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14858","name":"Bercel","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14859","name":"Bujak","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14860","name":"Diosjeno","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14861","name":"Karancskeszi","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14862","name":"Matraverebely","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14863","name":"Nagyoroszi","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14864","name":"Paszto","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14865","name":"Retsag","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14866","name":"Romhany","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14867","name":"Salgotarjan","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14868","name":"Szecseny","city_id":"1575","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14869","name":"Abony","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14870","name":"Albertirsa","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14871","name":"Aszod","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14872","name":"Biatorbagy","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14873","name":"Budakalasz","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14874","name":"Budakeszi","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14875","name":"Budaors","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14876","name":"Bugyi","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14877","name":"Cegled","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14878","name":"Csobanka","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14879","name":"Dabas","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14880","name":"Domsod","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14881","name":"Dunabogdany","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14882","name":"Dunaharaszti","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14883","name":"Dunakeszi","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14884","name":"Erd","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14885","name":"Forro","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14886","name":"Fot","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14887","name":"Galgaheviz","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14888","name":"God","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14889","name":"Godollo","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14890","name":"Gyomro","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14891","name":"Hevizgyork","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14892","name":"Isaszeg","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14893","name":"Jaszkarajeno","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14894","name":"Kiskunlachaza","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14895","name":"Kocser","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14896","name":"Koka","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14897","name":"Kosd","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14898","name":"Maglod","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14899","name":"Monor","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14900","name":"Nagykata","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14901","name":"Nagykoros","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14902","name":"Nagykovacsi","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14903","name":"Nagymaros","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14904","name":"Nagytarcsa","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14905","name":"Nyaregyhaza","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14906","name":"Ocsa","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14907","name":"Orbottyan","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14908","name":"Orkeny","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14909","name":"Paty","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14910","name":"Pecel","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14911","name":"Perbal","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14912","name":"Pilis","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14913","name":"Pilisborosjeno","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14914","name":"Piliscsaba","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14915","name":"Pilisszanto","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14916","name":"Pilisszentivan","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14917","name":"Pilisszentkereszt","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14918","name":"Pilisvorosvar","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14919","name":"Pomaz","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14920","name":"Racalmas","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14921","name":"Rackeve","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14922","name":"Solymar","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14923","name":"Soskut","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14924","name":"Szada","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14925","name":"Szazhalombatta","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14926","name":"Szentendre","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14927","name":"Szentmartonkata","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14928","name":"Szigetcsep","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14929","name":"Szigetszentmiklos","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14930","name":"Szigetujfalu","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14931","name":"Szob","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14932","name":"Tahitofalu","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14933","name":"Tapiobicske","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14934","name":"Tapioszecso","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14935","name":"Tapioszele","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14936","name":"Toalmas","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14937","name":"Torokbalint","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14938","name":"Tura","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14939","name":"Ullo","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14940","name":"Uri","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14941","name":"Urom","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14942","name":"Vac","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14943","name":"Vecses","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14944","name":"Veresegyhaz","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14945","name":"Verocemaros","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14946","name":"Visegrad","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14947","name":"Zsambek","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14948","name":"Zsambok","city_id":"1576","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14949","name":"Adand","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14950","name":"Balatonfoldvar","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14951","name":"Balatonoszod","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14952","name":"Balatonszabadi","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14953","name":"Balatonszarszo","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14954","name":"Barcs","city_id":"1577","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"is_activated":"1"}, +{"id":"14955","name":"Berzence","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14956","name":"Boglarlelle","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14957","name":"Bohonye","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14958","name":"Csurgo","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14959","name":"Fonyod","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14960","name":"Kaposvar","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14961","name":"Karad","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14962","name":"Kethely","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14963","name":"Lengyeltoti","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14964","name":"Marcali","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14965","name":"Nagyatad","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14966","name":"Nagybajom","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14967","name":"Siofok","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14968","name":"Somogyvar","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14969","name":"Tab","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14970","name":"Zamardi","city_id":"1577","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14971","name":"Ajak","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14972","name":"Baktaloranthaza","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14973","name":"Balkany","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14974","name":"Buj","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14975","name":"Demecser","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14976","name":"Dombrad","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14977","name":"Fehergyarmat","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14978","name":"Ibrany","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14979","name":"Kemecse","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14980","name":"Kisvarda","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14981","name":"Kotaj","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14982","name":"Mandok","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14983","name":"Mariapocs","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14984","name":"Mateszalka","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14985","name":"Nagyecsed","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14986","name":"Nagyhalasz","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14987","name":"Nagykallo","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14988","name":"Nyirbator","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14989","name":"Nyirbeltek","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14990","name":"Nyiregyhaza","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14991","name":"Nyirmada","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14992","name":"Nyirpazony","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14993","name":"Nyirtelek","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14994","name":"Ofeherto","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14995","name":"Rakamaz","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14996","name":"Tarpa","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14997","name":"Tiszabercel","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14998","name":"Tiszalok","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"14999","name":"Tiszavasvari","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15000","name":"Tuzser","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15001","name":"Vaja","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15002","name":"Vasarosnameny","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15003","name":"Zahony","city_id":"1578","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15004","name":"Bataszek","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15005","name":"Bonyhad","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15006","name":"Decs","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15007","name":"Dombovar","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15008","name":"Dunafoldvar","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15009","name":"Fadd","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15010","name":"Gyonk","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15011","name":"Hogyesz","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15012","name":"Iregszemcse","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15013","name":"Madocsa","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15014","name":"Nagymagocs","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15015","name":"Nagymanyok","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15016","name":"Ozora","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15017","name":"Paks","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15018","name":"Pincehely","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15019","name":"Simontornya","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15020","name":"Szekszard","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15021","name":"Szentgal","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15022","name":"Tamasi","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15023","name":"Tengelic","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15024","name":"Tolna","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15025","name":"Zomba","city_id":"1579","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15026","name":"Buk","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15027","name":"Celldomolk","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15028","name":"Csepreg","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15029","name":"Gencsapati","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15030","name":"Jak","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15031","name":"Janoshaza","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15032","name":"Kormend","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15033","name":"Koszeg","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15034","name":"Sarvar","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15035","name":"Szentgotthard","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15036","name":"Szombathely","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15037","name":"Vasvar","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15038","name":"Vep","city_id":"1580","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15039","name":"Ajka","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15040","name":"Badacsonytomaj","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15041","name":"Balatonalmadi","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15042","name":"Balatonfured","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15043","name":"Balatonfuzfo","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15044","name":"Balatonkenese","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15045","name":"Band","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15046","name":"Berhida","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15047","name":"Csabrendek","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15048","name":"Devecser","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15049","name":"Herend","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15050","name":"Papa","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15051","name":"Sumeg","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15052","name":"Tapolca","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15053","name":"Urkut","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15054","name":"Varpalota","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15055","name":"Veszprem","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15056","name":"Zirc","city_id":"1581","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15057","name":"Becsehely","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15058","name":"Heviz","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15059","name":"Keszthely","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15060","name":"Lenti","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15061","name":"Letenye","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15062","name":"Nagykanizsa","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15063","name":"Sarmellek","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15064","name":"Turje","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15065","name":"Zalaegerszeg","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15066","name":"Zalakomar","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15067","name":"Zalalovo","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15068","name":"Zalaszentgrot","city_id":"1582","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15069","name":"Bakkafjor ur","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15070","name":"Borgarfjor ur","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15071","name":"Brei dalsvik","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15072","name":"Djupivogur","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15073","name":"Egilssta ir","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15074","name":"Eskifjor ur","city_id":"1583","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"is_activated":"1"}, +{"id":"15075","name":"Faskru sfjor ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15076","name":"Fellabar","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15077","name":"Hallormssta ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15078","name":"Hofn","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15079","name":"Nesjakauptun","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15080","name":"Neskaupsta ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15081","name":"Rey arfjor ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15082","name":"Sey isfjor ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15083","name":"Sto varfjor ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15084","name":"Vopnafjor ur","city_id":"1583","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15085","name":"Akranes","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15086","name":"Borgarnes","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15087","name":"Bu ardalur","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15088","name":"Grundarfjor ur","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15089","name":"Hellissandur","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15090","name":"Hvanneyri","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15091","name":"Olafsvik","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15092","name":"Rif","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15093","name":"Stykkisholmur","city_id":"1591","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15094","name":"Sed ea dolore offici","city_id":"1592","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15095","name":"Garacharma","city_id":"1592","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15096","name":"Port Blair","city_id":"1592","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15097","name":"Rangat","city_id":"1592","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15098","name":"Addanki","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15099","name":"Adivivaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15100","name":"Adoni","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15101","name":"Aganampudi","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15102","name":"Ajjaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15103","name":"Akividu","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15104","name":"Akkarampalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15105","name":"Akkayapalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15106","name":"Akkireddipalem","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15107","name":"Alampur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15108","name":"Amalapuram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15109","name":"Amudalavalasa","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15110","name":"Amur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15111","name":"Anakapalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15112","name":"Anantapur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15113","name":"Andole","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15114","name":"Atmakur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15115","name":"Attili","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15116","name":"Avanigadda","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15117","name":"Badepalli","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15118","name":"Badvel","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15119","name":"Balapur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15120","name":"Bandarulanka","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15121","name":"Banganapalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15122","name":"Bapatla","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15123","name":"Bapulapadu","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15124","name":"Belampalli","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15125","name":"Bestavaripeta","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15126","name":"Betamcherla","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15127","name":"Bhattiprolu","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15128","name":"Bhimavaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15129","name":"Bhimunipatnam","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15130","name":"Bobbili","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15131","name":"Bombuflat","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15132","name":"Bommuru","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15133","name":"Bugganipalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15134","name":"Challapalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15135","name":"Chandur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15136","name":"Chatakonda","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15137","name":"Chemmumiahpet","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15138","name":"Chidiga","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15139","name":"Chilakaluripet","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15140","name":"Chimakurthy","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15141","name":"Chinagadila","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15142","name":"Chinagantyada","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15143","name":"Chinnachawk","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15144","name":"Chintalavalasa","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15145","name":"Chipurupalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15146","name":"Chirala","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15147","name":"Chittoor","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15148","name":"Chodavaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15149","name":"Choutuppal","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15150","name":"Chunchupalle","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15151","name":"Cuddapah","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15152","name":"Cumbum","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15153","name":"Darnakal","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15154","name":"Dasnapur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15155","name":"Dauleshwaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15156","name":"Dharmavaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15157","name":"Dhone","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15158","name":"Dommara Nandyal","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15159","name":"Dowlaiswaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15160","name":"East Godavari Dist.","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15161","name":"Eddumailaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15162","name":"Edulapuram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15163","name":"Ekambara kuppam","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15164","name":"Eluru","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15165","name":"Enikapadu","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15166","name":"Fakirtakya","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15167","name":"Farrukhnagar","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15168","name":"Gaddiannaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15169","name":"Gajapathinagaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15170","name":"Gajularega","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15171","name":"Gajuvaka","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15172","name":"Gannavaram","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15173","name":"Garimellapadu","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15174","name":"Giddalur","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15175","name":"Godavarikhani","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15176","name":"Gopalapatnam","city_id":"1593","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"is_activated":"1"}, +{"id":"15177","name":"Gopalur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15178","name":"Gorrekunta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15179","name":"Gudivada","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15180","name":"Gudur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15181","name":"Guntakal","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15182","name":"Guntur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15183","name":"Guti","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15184","name":"Hindupur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15185","name":"Hukumpeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15186","name":"Ichchapuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15187","name":"Isnapur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15188","name":"Jaggayyapeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15189","name":"Jallaram Kamanpur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15190","name":"Jammalamadugu","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15191","name":"Jangampalli","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15192","name":"Jarjapupeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15193","name":"Kadiri","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15194","name":"Kaikalur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15195","name":"Kakinada","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15196","name":"Kallur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15197","name":"Kalyandurg","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15198","name":"Kamalapuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15199","name":"Kamareddi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15200","name":"Kanapaka","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15201","name":"Kanigiri","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15202","name":"Kanithi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15203","name":"Kankipadu","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15204","name":"Kantabamsuguda","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15205","name":"Kanuru","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15206","name":"Karnul","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15207","name":"Katheru","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15208","name":"Kavali","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15209","name":"Kazipet","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15210","name":"Khanapuram Haveli","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15211","name":"Kodar","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15212","name":"Kollapur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15213","name":"Kondapalem","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15214","name":"Kondapalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15215","name":"Kondukur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15216","name":"Kosgi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15217","name":"Kothavalasa","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15218","name":"Kottapalli","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15219","name":"Kovur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15220","name":"Kovurpalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15221","name":"Kovvur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15222","name":"Krishna","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15223","name":"Kuppam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15224","name":"Kurmannapalem","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15225","name":"Kurnool","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15226","name":"Lakshettipet","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15227","name":"Lalbahadur Nagar","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15228","name":"Machavaram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15229","name":"Macherla","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15230","name":"Machilipatnam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15231","name":"Madanapalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15232","name":"Madaram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15233","name":"Madhuravada","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15234","name":"Madikonda","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15235","name":"Madugule","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15236","name":"Mahabubnagar","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15237","name":"Mahbubabad","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15238","name":"Malkajgiri","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15239","name":"Mamilapalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15240","name":"Mancheral","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15241","name":"Mandapeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15242","name":"Mandasa","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15243","name":"Mangalagiri","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15244","name":"Manthani","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15245","name":"Markapur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15246","name":"Marturu","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15247","name":"Metpalli","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15248","name":"Mindi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15249","name":"Mirpet","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15250","name":"Moragudi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15251","name":"Mothugudam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15252","name":"Nagari","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15253","name":"Nagireddipalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15254","name":"Nandigama","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15255","name":"Nandikotkur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15256","name":"Nandyal","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15257","name":"Narasannapeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15258","name":"Narasapur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15259","name":"Narasaraopet","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15260","name":"Narayanavanam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15261","name":"Narsapur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15262","name":"Narsingi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15263","name":"Narsipatnam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15264","name":"Naspur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15265","name":"Nathayyapalem","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15266","name":"Nayudupeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15267","name":"Nelimaria","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15268","name":"Nellore","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15269","name":"Nidadavole","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15270","name":"Nuzvid","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15271","name":"Omerkhan daira","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15272","name":"Ongole","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15273","name":"Osmania University","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15274","name":"Pakala","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15275","name":"Palakole","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15276","name":"Palakurthi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15277","name":"Palasa","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15278","name":"Palempalle","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15279","name":"Palkonda","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15280","name":"Palmaner","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15281","name":"Pamur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15282","name":"Panjim","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15283","name":"Papampeta","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15284","name":"Parasamba","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15285","name":"Parvatipuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15286","name":"Patancheru","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15287","name":"Payakaraopet","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15288","name":"Pedagantyada","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15289","name":"Pedana","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15290","name":"Peddapuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15291","name":"Pendurthi","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15292","name":"Penugonda","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15293","name":"Penukonda","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15294","name":"Phirangipuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15295","name":"Pithapuram","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15296","name":"Ponnur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15297","name":"Pothinamallayyapalem","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15298","name":"Prakasam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15299","name":"Prasadampadu","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15300","name":"Prasantinilayam","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15301","name":"Proddatur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15302","name":"Pulivendla","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15303","name":"Punganuru","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15304","name":"Puttur","city_id":"1593","created_at":"2024-01-21 12:05:57","updated_at":"2024-01-21 12:05:57","translations":null,"is_activated":"1"}, +{"id":"15305","name":"Qutubullapur","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15306","name":"Rajahmundry","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15307","name":"Rajamahendri","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15308","name":"Rajampet","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15309","name":"Rajendranagar","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15310","name":"Rajoli","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15311","name":"Ramachandrapuram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15312","name":"Ramanayyapeta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15313","name":"Ramapuram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15314","name":"Ramarajupalli","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15315","name":"Ramavarappadu","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15316","name":"Rameswaram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15317","name":"Rampachodavaram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15318","name":"Ravulapalam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15319","name":"Rayachoti","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15320","name":"Rayadrug","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15321","name":"Razam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15322","name":"Razole","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15323","name":"Renigunta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15324","name":"Repalle","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15325","name":"Rishikonda","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15326","name":"Salur","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15327","name":"Samalkot","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15328","name":"Sattenapalle","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15329","name":"Seetharampuram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15330","name":"Serilungampalle","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15331","name":"Shankarampet","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15332","name":"Shar","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15333","name":"Singarayakonda","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15334","name":"Sirpur","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15335","name":"Sirsilla","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15336","name":"Sompeta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15337","name":"Sriharikota","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15338","name":"Srikakulam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15339","name":"Srikalahasti","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15340","name":"Sriramnagar","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15341","name":"Sriramsagar","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15342","name":"Srisailam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15343","name":"Srisailamgudem Devasthanam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15344","name":"Sulurpeta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15345","name":"Suriapet","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15346","name":"Suryaraopet","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15347","name":"Tadepalle","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15348","name":"Tadepalligudem","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15349","name":"Tadpatri","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15350","name":"Tallapalle","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15351","name":"Tanuku","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15352","name":"Tekkali","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15353","name":"Tenali","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15354","name":"Tigalapahad","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15355","name":"Tiruchanur","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15356","name":"Tirumala","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15357","name":"Tirupati","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15358","name":"Tirvuru","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15359","name":"Trimulgherry","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15360","name":"Tuni","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15361","name":"Turangi","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15362","name":"Ukkayapalli","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15363","name":"Ukkunagaram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15364","name":"Uppal Kalan","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15365","name":"Upper Sileru","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15366","name":"Uravakonda","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15367","name":"Vadlapudi","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15368","name":"Vaparala","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15369","name":"Vemalwada","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15370","name":"Venkatagiri","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15371","name":"Venkatapuram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15372","name":"Vepagunta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15373","name":"Vetapalem","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15374","name":"Vijayapuri","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15375","name":"Vijayapuri South","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15376","name":"Vijayawada","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15377","name":"Vinukonda","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15378","name":"Visakhapatnam","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15379","name":"Vizianagaram","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15380","name":"Vuyyuru","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15381","name":"Wanparti","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15382","name":"West Godavari Dist.","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15383","name":"Yadagirigutta","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15384","name":"Yarada","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15385","name":"Yellamanchili","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15386","name":"Yemmiganur","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15387","name":"Yenamalakudru","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15388","name":"Yendada","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15389","name":"Yerraguntla","city_id":"1593","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15390","name":"Along","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15391","name":"Basar","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15392","name":"Bondila","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15393","name":"Changlang","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15394","name":"Daporijo","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15395","name":"Deomali","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15396","name":"Itanagar","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15397","name":"Jairampur","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15398","name":"Khonsa","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15399","name":"Naharlagun","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15400","name":"Namsai","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15401","name":"Pasighat","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15402","name":"Roing","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15403","name":"Seppa","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15404","name":"Tawang","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15405","name":"Tezu","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15406","name":"Ziro","city_id":"1594","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15407","name":"Abhayapuri","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15408","name":"Ambikapur","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15409","name":"Amguri","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15410","name":"Anand Nagar","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15411","name":"Badarpur","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15412","name":"Badarpur Railway Town","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15413","name":"Bahbari Gaon","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15414","name":"Bamun Sualkuchi","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15415","name":"Barbari","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15416","name":"Barpathar","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15417","name":"Barpeta","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15418","name":"Barpeta Road","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15419","name":"Basugaon","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15420","name":"Bihpuria","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15421","name":"Bijni","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15422","name":"Bilasipara","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15423","name":"Biswanath Chariali","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15424","name":"Bohori","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15425","name":"Bokajan","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15426","name":"Bokokhat","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15427","name":"Bongaigaon","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15428","name":"Bongaigaon Petro-chemical Town","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15429","name":"Borgolai","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15430","name":"Chabua","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15431","name":"Chandrapur Bagicha","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15432","name":"Chapar","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15433","name":"Chekonidhara","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15434","name":"Choto Haibor","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15435","name":"Dergaon","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15436","name":"Dharapur","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15437","name":"Dhekiajuli","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15438","name":"Dhemaji","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15439","name":"Dhing","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15440","name":"Dhubri","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15441","name":"Dhuburi","city_id":"1595","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"is_activated":"1"}, +{"id":"15442","name":"Dibrugarh","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15443","name":"Digboi","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15444","name":"Digboi Oil Town","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15445","name":"Dimaruguri","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15446","name":"Diphu","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15447","name":"Dispur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15448","name":"Doboka","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15449","name":"Dokmoka","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15450","name":"Donkamokan","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15451","name":"Duliagaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15452","name":"Duliajan","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15453","name":"Duliajan No.1","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15454","name":"Dum Duma","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15455","name":"Durga Nagar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15456","name":"Gauripur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15457","name":"Goalpara","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15458","name":"Gohpur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15459","name":"Golaghat","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15460","name":"Golakganj","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15461","name":"Gossaigaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15462","name":"Guwahati","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15463","name":"Haflong","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15464","name":"Hailakandi","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15465","name":"Hamren","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15466","name":"Hauli","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15467","name":"Hauraghat","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15468","name":"Hojai","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15469","name":"Jagiroad","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15470","name":"Jagiroad Paper Mill","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15471","name":"Jogighopa","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15472","name":"Jonai Bazar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15473","name":"Jorhat","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15474","name":"Kampur Town","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15475","name":"Kamrup","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15476","name":"Kanakpur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15477","name":"Karimganj","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15478","name":"Kharijapikon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15479","name":"Kharupetia","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15480","name":"Kochpara","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15481","name":"Kokrajhar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15482","name":"Kumar Kaibarta Gaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15483","name":"Lakhimpur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15484","name":"Lakhipur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15485","name":"Lala","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15486","name":"Lanka","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15487","name":"Lido Tikok","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15488","name":"Lido Town","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15489","name":"Lumding","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15490","name":"Lumding Railway Colony","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15491","name":"Mahur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15492","name":"Maibong","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15493","name":"Majgaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15494","name":"Makum","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15495","name":"Mangaldai","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15496","name":"Mankachar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15497","name":"Margherita","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15498","name":"Mariani","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15499","name":"Marigaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15500","name":"Moran","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15501","name":"Moranhat","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15502","name":"Nagaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15503","name":"Naharkatia","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15504","name":"Nalbari","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15505","name":"Namrup","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15506","name":"Naubaisa Gaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15507","name":"Nazira","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15508","name":"New Bongaigaon Railway Colony","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15509","name":"Niz-Hajo","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15510","name":"North Guwahati","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15511","name":"Numaligarh","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15512","name":"Palasbari","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15513","name":"Panchgram","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15514","name":"Pathsala","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15515","name":"Raha","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15516","name":"Rangapara","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15517","name":"Rangia","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15518","name":"Salakati","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15519","name":"Sapatgram","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15520","name":"Sarthebari","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15521","name":"Sarupathar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15522","name":"Sarupathar Bengali","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15523","name":"Senchoagaon","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15524","name":"Sibsagar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15525","name":"Silapathar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15526","name":"Silchar","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15527","name":"Silchar Part-X","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15528","name":"Sonari","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15529","name":"Sorbhog","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15530","name":"Sualkuchi","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15531","name":"Tangla","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15532","name":"Tezpur","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15533","name":"Tihu","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15534","name":"Tinsukia","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15535","name":"Titabor","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15536","name":"Udalguri","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15537","name":"Umrangso","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15538","name":"Uttar Krishnapur Part-I","city_id":"1595","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15539","name":"Amarpur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15540","name":"Ara","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15541","name":"Araria","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15542","name":"Areraj","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15543","name":"Asarganj","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15544","name":"Aurangabad","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15545","name":"Bagaha","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15546","name":"Bahadurganj","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15547","name":"Bairgania","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15548","name":"Bakhtiyarpur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15549","name":"Banka","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15550","name":"Banmankhi","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15551","name":"Bar Bigha","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15552","name":"Barauli","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15553","name":"Barauni Oil Township","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15554","name":"Barh","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15555","name":"Barhiya","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15556","name":"Bariapur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15557","name":"Baruni","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15558","name":"Begusarai","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15559","name":"Behea","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15560","name":"Belsand","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15561","name":"Bettiah","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15562","name":"Bhabua","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15563","name":"Bhagalpur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15564","name":"Bhimnagar","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15565","name":"Bhojpur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15566","name":"Bihar","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15567","name":"Bihar Sharif","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15568","name":"Bihariganj","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15569","name":"Bikramganj","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15570","name":"Birpur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15571","name":"Bodh Gaya","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15572","name":"Buxar","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15573","name":"Chakia","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15574","name":"Chanpatia","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15575","name":"Chhapra","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15576","name":"Chhatapur","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15577","name":"Colgong","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15578","name":"Dalsingh Sarai","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15579","name":"Darbhanga","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15580","name":"Daudnagar","city_id":"1596","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"is_activated":"1"}, +{"id":"15581","name":"Dehri","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15582","name":"Dighwara","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15583","name":"Dinapur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15584","name":"Dinapur Cantonment","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15585","name":"Dumra","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15586","name":"Dumraon","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15587","name":"Fatwa","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15588","name":"Forbesganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15589","name":"Gaya","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15590","name":"Ghoghardiha","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15591","name":"Gogri Jamalpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15592","name":"Habibpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15593","name":"Hajipur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15594","name":"Hasanpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15595","name":"Hazaribagh","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15596","name":"Hilsa","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15597","name":"Hisua","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15598","name":"Islampur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15599","name":"Jagdispur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15600","name":"Jahanabad","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15601","name":"Jamhaur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15602","name":"Jamui","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15603","name":"Janakpur Road","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15604","name":"Janpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15605","name":"Jaynagar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15606","name":"Jha Jha","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15607","name":"Jhanjharpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15608","name":"Jogbani","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15609","name":"Kanti","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15610","name":"Kasba","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15611","name":"Kataiya","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15612","name":"Katihar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15613","name":"Khagaria","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15614","name":"Khagaul","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15615","name":"Kharagpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15616","name":"Khusrupur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15617","name":"Kishanganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15618","name":"Koath","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15619","name":"Koilwar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15620","name":"Lakhisarai","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15621","name":"Lalganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15622","name":"Lauthaha","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15623","name":"Madhepura","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15624","name":"Madhubani","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15625","name":"Maharajganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15626","name":"Mahnar Bazar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15627","name":"Mairwa","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15628","name":"Makhdumpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15629","name":"Maner","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15630","name":"Manihari","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15631","name":"Marhaura","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15632","name":"Masaurhi","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15633","name":"Mirganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15634","name":"Mohiuddinagar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15635","name":"Mokama","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15636","name":"Motihari","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15637","name":"Motipur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15638","name":"Munger","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15639","name":"Murliganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15640","name":"Muzaffarpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15641","name":"Nabinagar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15642","name":"Narkatiaganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15643","name":"Nasriganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15644","name":"Natwar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15645","name":"Naugachhia","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15646","name":"Nawada","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15647","name":"Nirmali","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15648","name":"Nokha","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15649","name":"Paharpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15650","name":"Patna","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15651","name":"Phulwari","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15652","name":"Piro","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15653","name":"Purnia","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15654","name":"Pusa","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15655","name":"Rafiganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15656","name":"Raghunathpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15657","name":"Rajgir","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15658","name":"Ramnagar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15659","name":"Raxaul","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15660","name":"Revelganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15661","name":"Rusera","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15662","name":"Sagauli","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15663","name":"Saharsa","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15664","name":"Samastipur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15665","name":"Sasaram","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15666","name":"Shahpur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15667","name":"Shaikhpura","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15668","name":"Sherghati","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15669","name":"Shivhar","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15670","name":"Silao","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15671","name":"Sitamarhi","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15672","name":"Siwan","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15673","name":"Sonepur","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15674","name":"Sultanganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15675","name":"Supaul","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15676","name":"Teghra","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15677","name":"Tekari","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15678","name":"Thakurganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15679","name":"Vaishali","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15680","name":"Waris Aliganj","city_id":"1596","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15681","name":"Chandigarh","city_id":"1597","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15682","name":"Ahiwara","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15683","name":"Akaltara","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15684","name":"Ambagarh Chauki","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15685","name":"Arang","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15686","name":"Bade Bacheli","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15687","name":"Bagbahara","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15688","name":"Baikunthpur","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15689","name":"Balod","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15690","name":"Baloda","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15691","name":"Baloda Bazar","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15692","name":"Banarsi","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15693","name":"Basna","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15694","name":"Bemetra","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15695","name":"Bhanpuri","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15696","name":"Bhatapara","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15697","name":"Bhatgaon","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15698","name":"Bhilai","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15699","name":"Bilaspur","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15700","name":"Bilha","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15701","name":"Birgaon","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15702","name":"Bodri","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15703","name":"Champa","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15704","name":"Charcha","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15705","name":"Charoda","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15706","name":"Chhuikhadan","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15707","name":"Chirmiri","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15708","name":"Dantewada","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15709","name":"Deori","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15710","name":"Dhamdha","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15711","name":"Dhamtari","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15712","name":"Dharamjaigarh","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15713","name":"Dipka","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15714","name":"Doman Hill Colliery","city_id":"1598","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"is_activated":"1"}, +{"id":"15715","name":"Dongargaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15716","name":"Dongragarh","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15717","name":"Durg","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15718","name":"Frezarpur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15719","name":"Gandai","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15720","name":"Gariaband","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15721","name":"Gaurela","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15722","name":"Gelhapani","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15723","name":"Gharghoda","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15724","name":"Gidam","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15725","name":"Gobra Nawapara","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15726","name":"Gogaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15727","name":"Hatkachora","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15728","name":"Jagdalpur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15729","name":"Jashpurnagar","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15730","name":"Jhagrakhand","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15731","name":"Kanker","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15732","name":"Katghora","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15733","name":"Kawardha","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15734","name":"Khairagarh","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15735","name":"Khamhria","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15736","name":"Kharod","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15737","name":"Kharsia","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15738","name":"Khonga Pani","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15739","name":"Kirandu","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15740","name":"Kirandul","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15741","name":"Kohka","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15742","name":"Kondagaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15743","name":"Korba","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15744","name":"Korea","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15745","name":"Koria Block","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15746","name":"Kota","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15747","name":"Kumhari","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15748","name":"Kumud Katta","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15749","name":"Kurasia","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15750","name":"Kurud","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15751","name":"Lingiyadih","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15752","name":"Lormi","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15753","name":"Mahasamund","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15754","name":"Mahendragarh","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15755","name":"Mehmand","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15756","name":"Mongra","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15757","name":"Mowa","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15758","name":"Mungeli","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15759","name":"Nailajanjgir","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15760","name":"Namna Kalan","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15761","name":"Naya Baradwar","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15762","name":"Pandariya","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15763","name":"Patan","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15764","name":"Pathalgaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15765","name":"Pendra","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15766","name":"Phunderdihari","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15767","name":"Pithora","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15768","name":"Raigarh","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15769","name":"Raipur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15770","name":"Rajgamar","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15771","name":"Rajhara","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15772","name":"Rajnandgaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15773","name":"Ramanuj Ganj","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15774","name":"Ratanpur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15775","name":"Sakti","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15776","name":"Saraipali","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15777","name":"Sarajpur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15778","name":"Sarangarh","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15779","name":"Shivrinarayan","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15780","name":"Simga","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15781","name":"Sirgiti","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15782","name":"Takhatpur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15783","name":"Telgaon","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15784","name":"Tildanewra","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15785","name":"Urla","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15786","name":"Vishrampur","city_id":"1598","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15787","name":"Amli","city_id":"1599","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15788","name":"Silvassa","city_id":"1599","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15789","name":"Daman","city_id":"1600","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15790","name":"Diu","city_id":"1600","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15791","name":"New Delhi","city_id":"1601","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15792","name":"Aldona","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15793","name":"Aquem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15794","name":"Arpora","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15795","name":"Bambolim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15796","name":"Bandora","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15797","name":"Bardez","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15798","name":"Benaulim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15799","name":"Betora","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15800","name":"Bicholim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15801","name":"Calapor","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15802","name":"Candolim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15803","name":"Caranzalem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15804","name":"Carapur","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15805","name":"Chicalim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15806","name":"Chimbel","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15807","name":"Chinchinim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15808","name":"Colvale","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15809","name":"Corlim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15810","name":"Cortalim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15811","name":"Cuncolim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15812","name":"Curchorem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15813","name":"Curti","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15814","name":"Davorlim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15815","name":"Dona Paula","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15816","name":"Goa","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15817","name":"Guirim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15818","name":"Jua","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15819","name":"Kalangat","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15820","name":"Kankon","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15821","name":"Kundaim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15822","name":"Loutulim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15823","name":"Madgaon","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15824","name":"Mapusa","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15825","name":"Margao","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15826","name":"Margaon","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15827","name":"Morjim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15828","name":"Mormugao","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15829","name":"Navelim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15830","name":"Panaji","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15831","name":"Parcem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15832","name":"Parra","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15833","name":"Penha de Franca","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15834","name":"Pernem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15835","name":"Pilerne","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15836","name":"Pissurlem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15837","name":"Ponda","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15838","name":"Porvorim","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15839","name":"Quepem","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15840","name":"Queula","city_id":"1602","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"is_activated":"1"}, +{"id":"15841","name":"Raia","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15842","name":"Reis Magos","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15843","name":"Salcette","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15844","name":"Saligao","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15845","name":"Sancoale","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15846","name":"Sanguem","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15847","name":"Sanquelim","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15848","name":"Sanvordem","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15849","name":"Sao Jose-de-Areal","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15850","name":"Sattari","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15851","name":"Serula","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15852","name":"Sinquerim","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15853","name":"Siolim","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15854","name":"Taleigao","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15855","name":"Tivim","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15856","name":"Valpoi","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15857","name":"Varca","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15858","name":"Vasco","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15859","name":"Verna","city_id":"1602","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15860","name":"Abrama","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15861","name":"Adalaj","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15862","name":"Adityana","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15863","name":"Advana","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15864","name":"Ahmedabad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15865","name":"Ahwa","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15866","name":"Alang","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15867","name":"Ambaji","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15868","name":"Ambaliyasan","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15869","name":"Amod","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15870","name":"Amreli","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15871","name":"Amroli","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15872","name":"Anand","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15873","name":"Andada","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15874","name":"Anjar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15875","name":"Anklav","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15876","name":"Ankleshwar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15877","name":"Anklesvar INA","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15878","name":"Antaliya","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15879","name":"Arambhada","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15880","name":"Asarma","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15881","name":"Atul","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15882","name":"Babra","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15883","name":"Bag-e-Firdosh","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15884","name":"Bagasara","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15885","name":"Bahadarpar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15886","name":"Bajipura","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15887","name":"Bajva","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15888","name":"Balasinor","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15889","name":"Banaskantha","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15890","name":"Bansda","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15891","name":"Bantva","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15892","name":"Bardoli","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15893","name":"Barwala","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15894","name":"Bayad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15895","name":"Bechar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15896","name":"Bedi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15897","name":"Beyt","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15898","name":"Bhachau","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15899","name":"Bhanvad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15900","name":"Bharuch","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15901","name":"Bharuch INA","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15902","name":"Bhavnagar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15903","name":"Bhayavadar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15904","name":"Bhestan","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15905","name":"Bhuj","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15906","name":"Bilimora","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15907","name":"Bilkha","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15908","name":"Billimora","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15909","name":"Bodakdev","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15910","name":"Bodeli","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15911","name":"Bopal","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15912","name":"Boria","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15913","name":"Boriavi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15914","name":"Borsad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15915","name":"Botad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15916","name":"Cambay","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15917","name":"Chaklasi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15918","name":"Chala","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15919","name":"Chalala","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15920","name":"Chalthan","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15921","name":"Chanasma","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15922","name":"Chandisar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15923","name":"Chandkheda","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15924","name":"Chanod","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15925","name":"Chaya","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15926","name":"Chenpur","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15927","name":"Chhapi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15928","name":"Chhaprabhatha","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15929","name":"Chhatral","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15930","name":"Chhota Udepur","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15931","name":"Chikhli","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15932","name":"Chiloda","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15933","name":"Chorvad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15934","name":"Chotila","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15935","name":"Dabhoi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15936","name":"Dadara","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15937","name":"Dahod","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15938","name":"Dakor","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15939","name":"Damnagar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15940","name":"Deesa","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15941","name":"Delvada","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15942","name":"Devgadh Baria","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15943","name":"Devsar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15944","name":"Dhandhuka","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15945","name":"Dhanera","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15946","name":"Dhangdhra","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15947","name":"Dhansura","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15948","name":"Dharampur","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15949","name":"Dhari","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15950","name":"Dhola","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15951","name":"Dholka","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15952","name":"Dholka Rural","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15953","name":"Dhoraji","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15954","name":"Dhrangadhra","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15955","name":"Dhrol","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15956","name":"Dhuva","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15957","name":"Dhuwaran","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15958","name":"Digvijaygram","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15959","name":"Disa","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15960","name":"Dungar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15961","name":"Dungarpur","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15962","name":"Dungra","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15963","name":"Dwarka","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15964","name":"Flelanganj","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15965","name":"GSFC Complex","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15966","name":"Gadhda","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15967","name":"Gandevi","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15968","name":"Gandhidham","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15969","name":"Gandhinagar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15970","name":"Gariadhar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15971","name":"Ghogha","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15972","name":"Godhra","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15973","name":"Gondal","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15974","name":"Hajira INA","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15975","name":"Halol","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15976","name":"Halvad","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15977","name":"Hansot","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15978","name":"Harij","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15979","name":"Himatnagar","city_id":"1603","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"is_activated":"1"}, +{"id":"15980","name":"Ichchhapor","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15981","name":"Idar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15982","name":"Jafrabad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15983","name":"Jalalpore","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15984","name":"Jambusar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15985","name":"Jamjodhpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15986","name":"Jamnagar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15987","name":"Jasdan","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15988","name":"Jawaharnagar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15989","name":"Jetalsar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15990","name":"Jetpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15991","name":"Jodiya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15992","name":"Joshipura","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15993","name":"Junagadh","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15994","name":"Kadi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15995","name":"Kadodara","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15996","name":"Kalavad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15997","name":"Kaliawadi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15998","name":"Kalol","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"15999","name":"Kalol INA","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16000","name":"Kandla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16001","name":"Kanjari","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16002","name":"Kanodar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16003","name":"Kapadwanj","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16004","name":"Karachiya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16005","name":"Karamsad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16006","name":"Karjan","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16007","name":"Kathial","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16008","name":"Kathor","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16009","name":"Katpar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16010","name":"Kavant","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16011","name":"Keshod","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16012","name":"Kevadiya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16013","name":"Khambhaliya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16014","name":"Khambhat","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16015","name":"Kharaghoda","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16016","name":"Khed Brahma","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16017","name":"Kheda","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16018","name":"Kheralu","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16019","name":"Kodinar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16020","name":"Kosamba","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16021","name":"Kundla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16022","name":"Kutch","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16023","name":"Kutiyana","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16024","name":"Lakhtar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16025","name":"Lalpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16026","name":"Lambha","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16027","name":"Lathi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16028","name":"Limbdi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16029","name":"Limla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16030","name":"Lunavada","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16031","name":"Madhapar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16032","name":"Maflipur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16033","name":"Mahemdavad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16034","name":"Mahudha","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16035","name":"Mahuva","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16036","name":"Mahuvar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16037","name":"Makarba","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16038","name":"Makarpura","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16039","name":"Makassar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16040","name":"Maktampur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16041","name":"Malia","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16042","name":"Malpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16043","name":"Manavadar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16044","name":"Mandal","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16045","name":"Mandvi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16046","name":"Mangrol","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16047","name":"Mansa","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16048","name":"Meghraj","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16049","name":"Mehsana","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16050","name":"Mendarla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16051","name":"Mithapur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16052","name":"Modasa","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16053","name":"Mogravadi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16054","name":"Morbi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16055","name":"Morvi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16056","name":"Mundra","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16057","name":"Nadiad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16058","name":"Naliya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16059","name":"Nanakvada","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16060","name":"Nandej","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16061","name":"Nandesari","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16062","name":"Nandesari INA","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16063","name":"Naroda","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16064","name":"Navagadh","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16065","name":"Navagam Ghed","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16066","name":"Navsari","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16067","name":"Ode","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16068","name":"Okaf","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16069","name":"Okha","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16070","name":"Olpad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16071","name":"Paddhari","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16072","name":"Padra","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16073","name":"Palanpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16074","name":"Palej","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16075","name":"Pali","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16076","name":"Palitana","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16077","name":"Paliyad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16078","name":"Pandesara","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16079","name":"Panoli","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16080","name":"Pardi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16081","name":"Parnera","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16082","name":"Parvat","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16083","name":"Patdi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16084","name":"Petlad","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16085","name":"Petrochemical Complex","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16086","name":"Porbandar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16087","name":"Prantij","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16088","name":"Radhanpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16089","name":"Raiya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16090","name":"Rajkot","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16091","name":"Rajpipla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16092","name":"Rajula","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16093","name":"Ramod","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16094","name":"Ranavav","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16095","name":"Ranoli","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16096","name":"Rapar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16097","name":"Sahij","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16098","name":"Salaya","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16099","name":"Sanand","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16100","name":"Sankheda","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16101","name":"Santrampur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16102","name":"Saribujrang","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16103","name":"Sarigam INA","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16104","name":"Sayan","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16105","name":"Sayla","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16106","name":"Shahwadi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16107","name":"Shapar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16108","name":"Shivrajpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16109","name":"Siddhapur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16110","name":"Sidhpur","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16111","name":"Sihor","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16112","name":"Sika","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16113","name":"Singarva","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16114","name":"Sinor","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16115","name":"Sojitra","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16116","name":"Sola","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16117","name":"Songadh","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16118","name":"Suraj Karadi","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16119","name":"Surat","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16120","name":"Surendranagar","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16121","name":"Talaja","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16122","name":"Talala","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16123","name":"Talod","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16124","name":"Tankara","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16125","name":"Tarsali","city_id":"1603","created_at":"2024-01-21 12:06:03","updated_at":"2024-01-21 12:06:03","translations":null,"is_activated":"1"}, +{"id":"16126","name":"Thangadh","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16127","name":"Tharad","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16128","name":"Thasra","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16129","name":"Udyognagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16130","name":"Ukai","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16131","name":"Umbergaon","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16132","name":"Umbergaon INA","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16133","name":"Umrala","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16134","name":"Umreth","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16135","name":"Un","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16136","name":"Unjha","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16137","name":"Upleta","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16138","name":"Utran","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16139","name":"Uttarsanda","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16140","name":"V.U. Nagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16141","name":"V.V. Nagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16142","name":"Vadia","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16143","name":"Vadla","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16144","name":"Vadnagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16145","name":"Vadodara","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16146","name":"Vaghodia INA","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16147","name":"Valbhipur","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16148","name":"Vallabh Vidyanagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16149","name":"Valsad","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16150","name":"Valsad INA","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16151","name":"Vanthali","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16152","name":"Vapi","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16153","name":"Vapi INA","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16154","name":"Vartej","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16155","name":"Vasad","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16156","name":"Vasna Borsad INA","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16157","name":"Vaso","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16158","name":"Veraval","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16159","name":"Vidyanagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16160","name":"Vijalpor","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16161","name":"Vijapur","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16162","name":"Vinchhiya","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16163","name":"Vinzol","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16164","name":"Virpur","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16165","name":"Visavadar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16166","name":"Visnagar","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16167","name":"Vyara","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16168","name":"Wadhwan","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16169","name":"Waghai","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16170","name":"Waghodia","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16171","name":"Wankaner","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16172","name":"Zalod","city_id":"1603","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16173","name":"Ambala","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16174","name":"Ambala Cantt","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16175","name":"Asan Khurd","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16176","name":"Asandh","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16177","name":"Ateli","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16178","name":"Babiyal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16179","name":"Bahadurgarh","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16180","name":"Ballabgarh","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16181","name":"Bawal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16182","name":"Bawani Khera","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16183","name":"Beri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16184","name":"Bhiwani","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16185","name":"Buria","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16186","name":"Charkhi Dadri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16187","name":"Chhachhrauli","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16188","name":"Dabwali","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16189","name":"Dharuhera","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16190","name":"Dundahera","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16191","name":"Ellenabad","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16192","name":"Farakhpur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16193","name":"Faridabad","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16194","name":"Fatehabad","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16195","name":"Firozpur Jhirka","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16196","name":"Gannaur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16197","name":"Ghraunda","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16198","name":"Gohana","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16199","name":"Gurgaon","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16200","name":"Haileymandi","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16201","name":"Hansi","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16202","name":"Hathin","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16203","name":"Hisar","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16204","name":"Hissar","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16205","name":"Hodal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16206","name":"Indri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16207","name":"Jagadhri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16208","name":"Jakhal Mandi","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16209","name":"Jhajjar","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16210","name":"Jind","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16211","name":"Julana","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16212","name":"Kaithal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16213","name":"Kalanur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16214","name":"Kalanwali","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16215","name":"Kalayat","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16216","name":"Kalka","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16217","name":"Kanina","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16218","name":"Kansepur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16219","name":"Kardhan","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16220","name":"Karnal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16221","name":"Kharkhoda","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16222","name":"Kheri Sampla","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16223","name":"Kundli","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16224","name":"Kurukshetra","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16225","name":"Ladrawan","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16226","name":"Ladwa","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16227","name":"Loharu","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16228","name":"Maham","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16229","name":"Mustafabad","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16230","name":"Nagai Chaudhry","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16231","name":"Narayangarh","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16232","name":"Narnaul","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16233","name":"Narnaund","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16234","name":"Narwana","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16235","name":"Nilokheri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16236","name":"Nuh","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16237","name":"Palwal","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16238","name":"Panchkula","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16239","name":"Panipat","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16240","name":"Panipat Taraf Ansar","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16241","name":"Panipat Taraf Makhdum Zadgan","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16242","name":"Panipat Taraf Rajputan","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16243","name":"Pehowa","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16244","name":"Pinjaur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16245","name":"Punahana","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16246","name":"Pundri","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16247","name":"Radaur","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16248","name":"Raipur Rani","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16249","name":"Rania","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16250","name":"Ratiya","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16251","name":"Rewari","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16252","name":"Rohtak","city_id":"1604","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"is_activated":"1"}, +{"id":"16253","name":"Ropar","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16254","name":"Sadauri","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16255","name":"Safidon","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16256","name":"Samalkha","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16257","name":"Sankhol","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16258","name":"Sasauli","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16259","name":"Shahabad","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16260","name":"Sirsa","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16261","name":"Siwani","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16262","name":"Sohna","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16263","name":"Sonipat","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16264","name":"Sukhrali","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16265","name":"Taoru","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16266","name":"Taraori","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16267","name":"Tauru","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16268","name":"Thanesar","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16269","name":"Tilpat","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16270","name":"Tohana","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16271","name":"Tosham","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16272","name":"Uchana","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16273","name":"Uklana Mandi","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16274","name":"Uncha Siwana","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16275","name":"Yamunanagar","city_id":"1604","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16276","name":"Arki","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16277","name":"Baddi","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16278","name":"Bakloh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16279","name":"Banjar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16280","name":"Bhota","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16281","name":"Bhuntar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16282","name":"Chamba","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16283","name":"Chaupal","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16284","name":"Chuari Khas","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16285","name":"Dagshai","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16286","name":"Dalhousie","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16287","name":"Dalhousie Cantonment","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16288","name":"Damtal","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16289","name":"Daulatpur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16290","name":"Dera Gopipur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16291","name":"Dhalli","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16292","name":"Dharamshala","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16293","name":"Gagret","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16294","name":"Ghamarwin","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16295","name":"Hamirpur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16296","name":"Jawala Mukhi","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16297","name":"Jogindarnagar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16298","name":"Jubbal","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16299","name":"Jutogh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16300","name":"Kala Amb","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16301","name":"Kalpa","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16302","name":"Kangra","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16303","name":"Kasauli","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16304","name":"Kot Khai","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16305","name":"Kullu","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16306","name":"Kulu","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16307","name":"Manali","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16308","name":"Mandi","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16309","name":"Mant Khas","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16310","name":"Mehatpur Basdehra","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16311","name":"Nadaun","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16312","name":"Nagrota","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16313","name":"Nahan","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16314","name":"Naina Devi","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16315","name":"Nalagarh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16316","name":"Narkanda","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16317","name":"Nurpur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16318","name":"Palampur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16319","name":"Pandoh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16320","name":"Paonta Sahib","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16321","name":"Parwanoo","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16322","name":"Parwanu","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16323","name":"Rajgarh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16324","name":"Rampur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16325","name":"Rawalsar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16326","name":"Rohru","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16327","name":"Sabathu","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16328","name":"Santokhgarh","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16329","name":"Sarahan","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16330","name":"Sarka Ghat","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16331","name":"Seoni","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16332","name":"Shimla","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16333","name":"Sirmaur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16334","name":"Solan","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16335","name":"Solon","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16336","name":"Sundarnagar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16337","name":"Sundernagar","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16338","name":"Talai","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16339","name":"Theog","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16340","name":"Tira Sujanpur","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16341","name":"Yol","city_id":"1605","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16342","name":"Achabal","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16343","name":"Akhnur","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16344","name":"Anantnag","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16345","name":"Arnia","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16346","name":"Awantipora","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16347","name":"Badami Bagh","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16348","name":"Bandipur","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16349","name":"Banihal","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16350","name":"Baramula","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16351","name":"Baramulla","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16352","name":"Bari Brahmana","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16353","name":"Bashohli","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16354","name":"Batote","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16355","name":"Bhaderwah","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16356","name":"Bijbiara","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16357","name":"Billawar","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16358","name":"Birwah","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16359","name":"Bishna","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16360","name":"Budgam","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16361","name":"Charari Sharief","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16362","name":"Chenani","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16363","name":"Doda","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16364","name":"Duru-Verinag","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16365","name":"Gandarbat","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16366","name":"Gho Manhasan","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16367","name":"Gorah Salathian","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16368","name":"Gulmarg","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16369","name":"Hajan","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16370","name":"Handwara","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16371","name":"Hiranagar","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16372","name":"Jammu","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16373","name":"Jammu Cantonment","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16374","name":"Jammu Tawi","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16375","name":"Jourian","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16376","name":"Kargil","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16377","name":"Kathua","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16378","name":"Katra","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16379","name":"Khan Sahib","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16380","name":"Khour","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16381","name":"Khrew","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16382","name":"Kishtwar","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16383","name":"Kud","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16384","name":"Kukernag","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16385","name":"Kulgam","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16386","name":"Kunzer","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16387","name":"Kupwara","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16388","name":"Lakhenpur","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16389","name":"Leh","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16390","name":"Magam","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16391","name":"Mattan","city_id":"1606","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"is_activated":"1"}, +{"id":"16392","name":"Naushehra","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16393","name":"Pahalgam","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16394","name":"Pampore","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16395","name":"Parole","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16396","name":"Pattan","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16397","name":"Pulwama","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16398","name":"Punch","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16399","name":"Qazigund","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16400","name":"Rajauri","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16401","name":"Ramban","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16402","name":"Ranbirsingh Pora","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16403","name":"Reasi","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16404","name":"Rehambal","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16405","name":"Samba","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16406","name":"Shupiyan","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16407","name":"Sopur","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16408","name":"Srinagar","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16409","name":"Sumbal","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16410","name":"Sunderbani","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16411","name":"Talwara","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16412","name":"Thanamandi","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16413","name":"Tral","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16414","name":"Udhampur","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16415","name":"Vijaypur","city_id":"1606","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16416","name":"Adityapur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16417","name":"Amlabad","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16418","name":"Angarpathar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16419","name":"Babua Kalan","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16420","name":"Bagbahra","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16421","name":"Baliapur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16422","name":"Baliari","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16423","name":"Balkundra","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16424","name":"Bandhgora","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16425","name":"Barajamda","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16426","name":"Barhi","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16427","name":"Barka Kana","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16428","name":"Barki Saraiya","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16429","name":"Barughutu","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16430","name":"Barwadih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16431","name":"Basaria","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16432","name":"Basukinath","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16433","name":"Bermo","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16434","name":"Bhagatdih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16435","name":"Bhaurah","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16436","name":"Bhojudih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16437","name":"Bhuli","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16438","name":"Bokaro","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16439","name":"Borio Bazar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16440","name":"Bundu","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16441","name":"Chaibasa","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16442","name":"Chaitudih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16443","name":"Chakradharpur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16444","name":"Chakulia","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16445","name":"Chandaur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16446","name":"Chandil","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16447","name":"Chandrapura","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16448","name":"Chas","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16449","name":"Chatra","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16450","name":"Chhatatanr","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16451","name":"Chhotaputki","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16452","name":"Chiria","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16453","name":"Chirkunda","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16454","name":"Churi","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16455","name":"Daltenganj","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16456","name":"Danguwapasi","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16457","name":"Dari","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16458","name":"Deoghar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16459","name":"Deorikalan","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16460","name":"Devghar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16461","name":"Dhanbad","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16462","name":"Dhanwar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16463","name":"Dhaunsar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16464","name":"Dugda","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16465","name":"Dumarkunda","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16466","name":"Dumka","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16467","name":"Egarkunr","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16468","name":"Gadhra","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16469","name":"Garwa","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16470","name":"Ghatsila","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16471","name":"Ghorabandha","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16472","name":"Gidi","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16473","name":"Giridih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16474","name":"Gobindpur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16475","name":"Godda","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16476","name":"Godhar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16477","name":"Golphalbari","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16478","name":"Gomoh","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16479","name":"Gua","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16480","name":"Gumia","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16481","name":"Gumla","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16482","name":"Haludbani","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16483","name":"Hazaribag","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16484","name":"Hesla","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16485","name":"Husainabad","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16486","name":"Isri","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16487","name":"Jadugora","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16488","name":"Jagannathpur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16489","name":"Jamadoba","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16490","name":"Jamshedpur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16491","name":"Jamtara","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16492","name":"Jarangdih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16493","name":"Jaridih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16494","name":"Jasidih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16495","name":"Jharia","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16496","name":"Jharia Khas","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16497","name":"Jhinkpani","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16498","name":"Jhumri Tilaiya","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16499","name":"Jorapokhar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16500","name":"Jugsalai","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16501","name":"Kailudih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16502","name":"Kalikapur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16503","name":"Kandra","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16504","name":"Kanke","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16505","name":"Katras","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16506","name":"Kedla","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16507","name":"Kenduadih","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16508","name":"Kharkhari","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16509","name":"Kharsawan","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16510","name":"Khelari","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16511","name":"Khunti","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16512","name":"Kiri Buru","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16513","name":"Kiriburu","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16514","name":"Kodarma","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16515","name":"Kuju","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16516","name":"Kurpania","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16517","name":"Kustai","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16518","name":"Lakarka","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16519","name":"Lapanga","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16520","name":"Latehar","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16521","name":"Lohardaga","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16522","name":"Loiya","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16523","name":"Loyabad","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16524","name":"Madhupur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16525","name":"Mahesh Mundi","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16526","name":"Maithon","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16527","name":"Malkera","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16528","name":"Mango","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16529","name":"Manoharpur","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16530","name":"Marma","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16531","name":"Meghahatuburu Forest village","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16532","name":"Mera","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16533","name":"Mihijam","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16534","name":"Mugma","city_id":"1607","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"is_activated":"1"}, +{"id":"16535","name":"Muri","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16536","name":"Mushabani","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16537","name":"Nagri Kalan","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16538","name":"Netarhat","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16539","name":"Nirsa","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16540","name":"Noamundi","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16541","name":"Okni","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16542","name":"Orla","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16543","name":"Pakaur","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16544","name":"Palamau","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16545","name":"Palawa","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16546","name":"Panchet","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16547","name":"Panrra","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16548","name":"Paratdih","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16549","name":"Pathardih","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16550","name":"Patratu","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16551","name":"Phusro","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16552","name":"Pondar Kanali","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16553","name":"Rajmahal","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16554","name":"Ranchi","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16555","name":"Ray","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16556","name":"Rehla","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16557","name":"Religara","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16558","name":"Rohraband","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16559","name":"Sahibganj","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16560","name":"Sahnidih","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16561","name":"Saraidhela","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16562","name":"Saraikela","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16563","name":"Sarjamda","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16564","name":"Saunda","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16565","name":"Sewai","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16566","name":"Sijhua","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16567","name":"Sijua","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16568","name":"Simdega","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16569","name":"Sindari","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16570","name":"Sinduria","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16571","name":"Sini","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16572","name":"Sirka","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16573","name":"Siuliban","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16574","name":"Surubera","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16575","name":"Tati","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16576","name":"Tenudam","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16577","name":"Tisra","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16578","name":"Topa","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16579","name":"Topchanchi","city_id":"1607","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16580","name":"Adityanagar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16581","name":"Adityapatna","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16582","name":"Afzalpur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16583","name":"Ajjampur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16584","name":"Aland","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16585","name":"Almatti Sitimani","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16586","name":"Alnavar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16587","name":"Alur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16588","name":"Ambikanagara","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16589","name":"Anekal","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16590","name":"Ankola","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16591","name":"Annigeri","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16592","name":"Arkalgud","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16593","name":"Arsikere","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16594","name":"Athni","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16595","name":"Aurad","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16596","name":"Badagavettu","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16597","name":"Badami","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16598","name":"Bagalkot","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16599","name":"Bagepalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16600","name":"Bailhongal","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16601","name":"Baindur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16602","name":"Bajala","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16603","name":"Bajpe","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16604","name":"Banavar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16605","name":"Bangarapet","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16606","name":"Bankapura","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16607","name":"Bannur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16608","name":"Bantwal","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16609","name":"Basavakalyan","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16610","name":"Basavana Bagevadi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16611","name":"Belagula","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16612","name":"Belakavadiq","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16613","name":"Belgaum","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16614","name":"Belgaum Cantonment","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16615","name":"Bellary","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16616","name":"Belluru","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16617","name":"Beltangadi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16618","name":"Belur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16619","name":"Belvata","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16620","name":"Bengaluru","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16621","name":"Bhadravati","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16622","name":"Bhalki","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16623","name":"Bhatkal","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16624","name":"Bhimarayanagudi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16625","name":"Bhogadi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16626","name":"Bidar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16627","name":"Bijapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16628","name":"Bilgi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16629","name":"Birur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16630","name":"Bommanahalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16631","name":"Bommasandra","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16632","name":"Byadgi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16633","name":"Byatarayanapura","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16634","name":"Chakranagar Colony","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16635","name":"Challakere","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16636","name":"Chamrajnagar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16637","name":"Chamundi Betta","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16638","name":"Channagiri","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16639","name":"Channapatna","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16640","name":"Channarayapatna","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16641","name":"Chickballapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16642","name":"Chik Ballapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16643","name":"Chikkaballapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16644","name":"Chikmagalur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16645","name":"Chiknayakanhalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16646","name":"Chikodi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16647","name":"Chincholi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16648","name":"Chintamani","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16649","name":"Chitaguppa","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16650","name":"Chitapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16651","name":"Chitradurga","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16652","name":"Coorg","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16653","name":"Dandeli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16654","name":"Dargajogihalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16655","name":"Dasarahalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16656","name":"Davangere","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16657","name":"Devadurga","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16658","name":"Devagiri","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16659","name":"Devanhalli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16660","name":"Dharwar","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16661","name":"Dhupdal","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16662","name":"Dod Ballapur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16663","name":"Donimalai","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16664","name":"Gadag","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16665","name":"Gajendragarh","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16666","name":"Ganeshgudi","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16667","name":"Gangawati","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16668","name":"Gangoli","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16669","name":"Gauribidanur","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16670","name":"Gokak","city_id":"1608","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"is_activated":"1"}, +{"id":"16671","name":"Gokak Falls","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16672","name":"Gonikoppal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16673","name":"Gorur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16674","name":"Gottikere","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16675","name":"Gubbi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16676","name":"Gudibanda","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16677","name":"Gulbarga","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16678","name":"Guledgudda","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16679","name":"Gundlupet","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16680","name":"Gurmatkal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16681","name":"Haliyal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16682","name":"Hangal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16683","name":"Harihar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16684","name":"Harpanahalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16685","name":"Hassan","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16686","name":"Hatti","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16687","name":"Hatti Gold Mines","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16688","name":"Haveri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16689","name":"Hebbagodi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16690","name":"Hebbalu","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16691","name":"Hebri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16692","name":"Heggadadevanakote","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16693","name":"Herohalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16694","name":"Hidkal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16695","name":"Hindalgi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16696","name":"Hirekerur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16697","name":"Hiriyur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16698","name":"Holalkere","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16699","name":"Hole Narsipur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16700","name":"Homnabad","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16701","name":"Honavar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16702","name":"Honnali","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16703","name":"Hosakote","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16704","name":"Hosanagara","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16705","name":"Hosangadi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16706","name":"Hosdurga","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16707","name":"Hoskote","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16708","name":"Hospet","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16709","name":"Hubli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16710","name":"Hukeri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16711","name":"Hunasagi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16712","name":"Hunasamaranahalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16713","name":"Hungund","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16714","name":"Hunsur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16715","name":"Huvina Hadagalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16716","name":"Ilkal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16717","name":"Indi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16718","name":"Jagalur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16719","name":"Jamkhandi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16720","name":"Jevargi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16721","name":"Jog Falls","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16722","name":"Kabini Colony","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16723","name":"Kadur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16724","name":"Kalghatgi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16725","name":"Kampli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16726","name":"Kanakapura","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16727","name":"Kangrali BK","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16728","name":"Kangrali KH","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16729","name":"Kannur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16730","name":"Karkala","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16731","name":"Karwar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16732","name":"Kemminja","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16733","name":"Kengeri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16734","name":"Kerur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16735","name":"Khanapur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16736","name":"Kodigenahalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16737","name":"Kodiyal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16738","name":"Kodlipet","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16739","name":"Kolar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16740","name":"Kollegal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16741","name":"Konanakunte","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16742","name":"Konanur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16743","name":"Konnur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16744","name":"Koppa","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16745","name":"Koppal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16746","name":"Koratagere","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16747","name":"Kotekara","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16748","name":"Kothnur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16749","name":"Kotturu","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16750","name":"Krishnapura","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16751","name":"Krishnarajanagar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16752","name":"Krishnarajapura","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16753","name":"Krishnarajasagara","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16754","name":"Krishnarajpet","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16755","name":"Kudchi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16756","name":"Kudligi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16757","name":"Kudremukh","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16758","name":"Kumsi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16759","name":"Kumta","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16760","name":"Kundapura","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16761","name":"Kundgol","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16762","name":"Kunigal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16763","name":"Kurgunta","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16764","name":"Kushalnagar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16765","name":"Kushtagi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16766","name":"Kyathanahalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16767","name":"Lakshmeshwar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16768","name":"Lingsugur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16769","name":"Londa","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16770","name":"Maddur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16771","name":"Madhugiri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16772","name":"Madikeri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16773","name":"Magadi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16774","name":"Magod Falls","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16775","name":"Mahadeswara Hills","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16776","name":"Mahadevapura","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16777","name":"Mahalingpur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16778","name":"Maisuru","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16779","name":"Maisuru Cantonment","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16780","name":"Malavalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16781","name":"Mallar","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16782","name":"Malpe","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16783","name":"Malur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16784","name":"Manchenahalli","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16785","name":"Mandya","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16786","name":"Mangalore","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16787","name":"Mangaluru","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16788","name":"Manipal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16789","name":"Manvi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16790","name":"Maski","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16791","name":"Mastikatte Colony","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16792","name":"Mayakonda","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16793","name":"Melukote","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16794","name":"Molakalmuru","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16795","name":"Mudalgi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16796","name":"Mudbidri","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16797","name":"Muddebihal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16798","name":"Mudgal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16799","name":"Mudhol","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16800","name":"Mudigere","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16801","name":"Mudushedde","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16802","name":"Mulbagal","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16803","name":"Mulgund","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16804","name":"Mulki","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16805","name":"Mulur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16806","name":"Mundargi","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16807","name":"Mundgod","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16808","name":"Munirabad","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16809","name":"Munnur","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16810","name":"Murudeshwara","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16811","name":"Mysore","city_id":"1608","created_at":"2024-01-21 12:06:08","updated_at":"2024-01-21 12:06:08","translations":null,"is_activated":"1"}, +{"id":"16812","name":"Nagamangala","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16813","name":"Nanjangud","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16814","name":"Naragund","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16815","name":"Narasimharajapura","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16816","name":"Naravi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16817","name":"Narayanpur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16818","name":"Naregal","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16819","name":"Navalgund","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16820","name":"Nelmangala","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16821","name":"Nipani","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16822","name":"Nitte","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16823","name":"Nyamati","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16824","name":"Padu","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16825","name":"Pandavapura","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16826","name":"Pattanagere","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16827","name":"Pavagada","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16828","name":"Piriyapatna","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16829","name":"Ponnampet","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16830","name":"Rabkavi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16831","name":"Raichur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16832","name":"Ramanagaram","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16833","name":"Ramdurg","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16834","name":"Ranibennur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16835","name":"Raybag","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16836","name":"Robertsonpet","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16837","name":"Ron","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16838","name":"Sadalgi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16839","name":"Sagar","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16840","name":"Sakleshpur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16841","name":"Saligram","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16842","name":"Sandur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16843","name":"Sanivarsante","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16844","name":"Sankeshwar","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16845","name":"Sargur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16846","name":"Sathyamangala","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16847","name":"Saundatti Yellamma","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16848","name":"Savanur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16849","name":"Sedam","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16850","name":"Shahabad A.C.C.","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16851","name":"Shahapur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16852","name":"Shaktinagar","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16853","name":"Shiggaon","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16854","name":"Shikarpur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16855","name":"Shimoga","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16856","name":"Shirhatti","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16857","name":"Shorapur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16858","name":"Shravanabelagola","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16859","name":"Shrirangapattana","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16860","name":"Siddapur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16861","name":"Sidlaghatta","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16862","name":"Sindgi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16863","name":"Sindhnur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16864","name":"Sira","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16865","name":"Sirakoppa","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16866","name":"Sirsi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16867","name":"Siruguppa","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16868","name":"Someshwar","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16869","name":"Somvarpet","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16870","name":"Sorab","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16871","name":"Sringeri","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16872","name":"Srinivaspur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16873","name":"Sulya","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16874","name":"Suntikopa","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16875","name":"Talikota","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16876","name":"Tarikera","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16877","name":"Tekkalakota","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16878","name":"Terdal","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16879","name":"Thokur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16880","name":"Thumbe","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16881","name":"Tiptur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16882","name":"Tirthahalli","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16883","name":"Tirumakudal Narsipur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16884","name":"Tonse","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16885","name":"Tumkur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16886","name":"Turuvekere","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16887","name":"Udupi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16888","name":"Ullal","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16889","name":"Uttarahalli","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16890","name":"Venkatapura","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16891","name":"Vijayapura","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16892","name":"Virarajendrapet","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16893","name":"Wadi","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16894","name":"Wadi A.C.C.","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16895","name":"Yadgir","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16896","name":"Yelahanka","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16897","name":"Yelandur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16898","name":"Yelbarga","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16899","name":"Yellapur","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16900","name":"Yenagudde","city_id":"1608","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16901","name":"Adimaly","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16902","name":"Adoor","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16903","name":"Adur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16904","name":"Akathiyur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16905","name":"Alangad","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16906","name":"Alappuzha","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16907","name":"Aluva","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16908","name":"Ancharakandy","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16909","name":"Angamaly","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16910","name":"Aroor","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16911","name":"Arukutti","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16912","name":"Attingal","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16913","name":"Avinissery","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16914","name":"Azhikode North","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16915","name":"Azhikode South","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16916","name":"Azhiyur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16917","name":"Balussery","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16918","name":"Bangramanjeshwar","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16919","name":"Beypur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16920","name":"Brahmakulam","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16921","name":"Chalakudi","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16922","name":"Changanacheri","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16923","name":"Chauwara","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16924","name":"Chavakkad","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16925","name":"Chelakkara","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16926","name":"Chelora","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16927","name":"Chendamangalam","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16928","name":"Chengamanad","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16929","name":"Chengannur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16930","name":"Cheranallur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16931","name":"Cheriyakadavu","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16932","name":"Cherthala","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16933","name":"Cherukunnu","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16934","name":"Cheruthazham","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16935","name":"Cheruvannur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16936","name":"Cheruvattur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16937","name":"Chevvur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16938","name":"Chirakkal","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16939","name":"Chittur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16940","name":"Chockli","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16941","name":"Churnikkara","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16942","name":"Dharmadam","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16943","name":"Edappal","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16944","name":"Edathala","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16945","name":"Elayavur","city_id":"1610","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"is_activated":"1"}, +{"id":"16946","name":"Elur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16947","name":"Eranholi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16948","name":"Erattupetta","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16949","name":"Ernakulam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16950","name":"Eruvatti","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16951","name":"Ettumanoor","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16952","name":"Feroke","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16953","name":"Guruvayur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16954","name":"Haripad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16955","name":"Hosabettu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16956","name":"Idukki","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16957","name":"Iringaprom","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16958","name":"Irinjalakuda","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16959","name":"Iriveri","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16960","name":"Kadachira","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16961","name":"Kadalundi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16962","name":"Kadamakkudy","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16963","name":"Kadirur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16964","name":"Kadungallur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16965","name":"Kakkodi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16966","name":"Kalady","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16967","name":"Kalamassery","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16968","name":"Kalliasseri","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16969","name":"Kalpetta","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16970","name":"Kanhangad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16971","name":"Kanhirode","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16972","name":"Kanjikkuzhi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16973","name":"Kanjikode","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16974","name":"Kanjirappalli","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16975","name":"Kannadiparamba","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16976","name":"Kannangad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16977","name":"Kannapuram","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16978","name":"Kannur Cantonment","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16979","name":"Karunagappally","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16980","name":"Karuvamyhuruthy","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16981","name":"Kasaragod","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16982","name":"Kasargod","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16983","name":"Kattappana","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16984","name":"Kayamkulam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16985","name":"Kedamangalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16986","name":"Kochi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16987","name":"Kodamthuruthu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16988","name":"Kodungallur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16989","name":"Koduvally","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16990","name":"Koduvayur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16991","name":"Kokkothamangalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16992","name":"Kolazhy","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16993","name":"Kollam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16994","name":"Komalapuram","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16995","name":"Koothattukulam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16996","name":"Koratty","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16997","name":"Kothamangalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16998","name":"Kottarakkara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"16999","name":"Kottayam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17000","name":"Kottayam Malabar","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17001","name":"Kottuvally","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17002","name":"Koyilandi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17003","name":"Kozhikode","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17004","name":"Kudappanakunnu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17005","name":"Kudlu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17006","name":"Kumarakom","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17007","name":"Kumily","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17008","name":"Kunnamangalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17009","name":"Kunnamkulam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17010","name":"Kurikkad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17011","name":"Kurkkanchery","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17012","name":"Kuthuparamba","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17013","name":"Kuttakulam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17014","name":"Kuttikkattur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17015","name":"Kuttur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17016","name":"Malappuram","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17017","name":"Mallappally","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17018","name":"Manjeri","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17019","name":"Manjeshwar","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17020","name":"Mannancherry","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17021","name":"Mannar","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17022","name":"Mannarakkat","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17023","name":"Maradu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17024","name":"Marathakkara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17025","name":"Marutharod","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17026","name":"Mattannur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17027","name":"Mavelikara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17028","name":"Mavilayi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17029","name":"Mavur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17030","name":"Methala","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17031","name":"Muhamma","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17032","name":"Mulavukad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17033","name":"Mundakayam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17034","name":"Munderi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17035","name":"Munnar","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17036","name":"Muthakunnam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17037","name":"Muvattupuzha","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17038","name":"Muzhappilangad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17039","name":"Nadapuram","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17040","name":"Nadathara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17041","name":"Narath","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17042","name":"Nattakam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17043","name":"Nedumangad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17044","name":"Nenmenikkara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17045","name":"New Mahe","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17046","name":"Neyyattinkara","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17047","name":"Nileshwar","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17048","name":"Olavanna","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17049","name":"Ottapalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17050","name":"Ottappalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17051","name":"Paduvilayi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17052","name":"Palai","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17053","name":"Palakkad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17054","name":"Palayad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17055","name":"Palissery","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17056","name":"Pallikkunnu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17057","name":"Paluvai","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17058","name":"Panniyannur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17059","name":"Pantalam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17060","name":"Panthiramkavu","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17061","name":"Panur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17062","name":"Pappinisseri","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17063","name":"Parassala","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17064","name":"Paravur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17065","name":"Pathanamthitta","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17066","name":"Pathanapuram","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17067","name":"Pathiriyad","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17068","name":"Pattambi","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17069","name":"Pattiom","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17070","name":"Pavaratty","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17071","name":"Payyannur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17072","name":"Peermade","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17073","name":"Perakam","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17074","name":"Peralasseri","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17075","name":"Peringathur","city_id":"1610","created_at":"2024-01-21 12:06:10","updated_at":"2024-01-21 12:06:10","translations":null,"is_activated":"1"}, +{"id":"17076","name":"Perinthalmanna","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17077","name":"Perole","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17078","name":"Perumanna","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17079","name":"Perumbaikadu","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17080","name":"Perumbavoor","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17081","name":"Pinarayi","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17082","name":"Piravam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17083","name":"Ponnani","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17084","name":"Pottore","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17085","name":"Pudukad","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17086","name":"Punalur","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17087","name":"Puranattukara","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17088","name":"Puthunagaram","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17089","name":"Puthuppariyaram","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17090","name":"Puzhathi","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17091","name":"Ramanattukara","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17092","name":"Shoranur","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17093","name":"Sultans Battery","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17094","name":"Sulthan Bathery","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17095","name":"Talipparamba","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17096","name":"Thaikkad","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17097","name":"Thalassery","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17098","name":"Thannirmukkam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17099","name":"Theyyalingal","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17100","name":"Thiruvalla","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17101","name":"Thiruvananthapuram","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17102","name":"Thiruvankulam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17103","name":"Thodupuzha","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17104","name":"Thottada","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17105","name":"Thrippunithura","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17106","name":"Thrissur","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17107","name":"Tirur","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17108","name":"Udma","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17109","name":"Vadakara","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17110","name":"Vaikam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17111","name":"Valapattam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17112","name":"Vallachira","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17113","name":"Varam","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17114","name":"Varappuzha","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17115","name":"Varkala","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17116","name":"Vayalar","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17117","name":"Vazhakkala","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17118","name":"Venmanad","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17119","name":"Villiappally","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17120","name":"Wayanad","city_id":"1610","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17121","name":"Agethi","city_id":"1611","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17122","name":"Amini","city_id":"1611","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17123","name":"Androth Island","city_id":"1611","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17124","name":"Kavaratti","city_id":"1611","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17125","name":"Minicoy","city_id":"1611","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17126","name":"Agar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17127","name":"Ajaigarh","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17128","name":"Akoda","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17129","name":"Akodia","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17130","name":"Alirajpur","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17131","name":"Alot","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17132","name":"Amanganj","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17133","name":"Amarkantak","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17134","name":"Amarpatan","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17135","name":"Amarwara","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17136","name":"Ambada","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17137","name":"Ambah","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17138","name":"Amla","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17139","name":"Amlai","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17140","name":"Anjad","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17141","name":"Antri","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17142","name":"Anuppur","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17143","name":"Aron","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17144","name":"Ashoknagar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17145","name":"Ashta","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17146","name":"Babai","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17147","name":"Bada Malhera","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17148","name":"Badagaon","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17149","name":"Badagoan","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17150","name":"Badarwas","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17151","name":"Badawada","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17152","name":"Badi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17153","name":"Badkuhi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17154","name":"Badnagar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17155","name":"Badnawar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17156","name":"Badod","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17157","name":"Badoda","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17158","name":"Badra","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17159","name":"Bagh","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17160","name":"Bagli","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17161","name":"Baihar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17162","name":"Bakswaha","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17163","name":"Balaghat","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17164","name":"Baldeogarh","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17165","name":"Bamaniya","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17166","name":"Bamhani","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17167","name":"Bamor","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17168","name":"Bamora","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17169","name":"Banda","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17170","name":"Bangawan","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17171","name":"Bansatar Kheda","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17172","name":"Baraily","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17173","name":"Barela","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17174","name":"Barghat","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17175","name":"Bargi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17176","name":"Barigarh","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17177","name":"Barwaha","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17178","name":"Barwani","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17179","name":"Basoda","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17180","name":"Beohari","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17181","name":"Berasia","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17182","name":"Betma","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17183","name":"Betul","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17184","name":"Betul Bazar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17185","name":"Bhainsdehi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17186","name":"Bhamodi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17187","name":"Bhander","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17188","name":"Bhanpura","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17189","name":"Bharveli","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17190","name":"Bhaurasa","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17191","name":"Bhavra","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17192","name":"Bhedaghat","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17193","name":"Bhikangaon","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17194","name":"Bhilakhedi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17195","name":"Bhind","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17196","name":"Bhitarwar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17197","name":"Bhopal","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17198","name":"Bhuibandh","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17199","name":"Biaora","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17200","name":"Bijawar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17201","name":"Bijeypur","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17202","name":"Bijrauni","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17203","name":"Bijuri","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17204","name":"Bilaua","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17205","name":"Bilpura","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17206","name":"Bina Railway Colony","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17207","name":"Bina-Etawa","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17208","name":"Birsinghpur","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17209","name":"Budhni","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17210","name":"Burhanpur","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17211","name":"Burhar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17212","name":"Chachaura Binaganj","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17213","name":"Chakghat","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17214","name":"Chandameta Butar","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17215","name":"Chanderi","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17216","name":"Chandia","city_id":"1612","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"is_activated":"1"}, +{"id":"17217","name":"Chandla","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17218","name":"Chaurai Khas","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17219","name":"Chhatarpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17220","name":"Chhindwara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17221","name":"Chhota Chhindwara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17222","name":"Chichli","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17223","name":"Chitrakut","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17224","name":"Churhat","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17225","name":"Daboh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17226","name":"Dabra","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17227","name":"Damoh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17228","name":"Damua","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17229","name":"Datia","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17230","name":"Deodara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17231","name":"Deori Khas","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17232","name":"Depalpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17233","name":"Devendranagar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17234","name":"Devhara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17235","name":"Dewas","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17236","name":"Dhamnod","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17237","name":"Dhana","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17238","name":"Dhanpuri","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17239","name":"Dhar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17240","name":"Dharampuri","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17241","name":"Dighawani","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17242","name":"Diken","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17243","name":"Dindori","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17244","name":"Dola","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17245","name":"Dumar Kachhar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17246","name":"Dungariya Chhapara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17247","name":"Gadarwara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17248","name":"Gairatganj","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17249","name":"Gandhi Sagar Hydel Colony","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17250","name":"Ganjbasoda","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17251","name":"Garhakota","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17252","name":"Garhi Malhara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17253","name":"Garoth","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17254","name":"Gautapura","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17255","name":"Ghansor","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17256","name":"Ghuwara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17257","name":"Gogapur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17258","name":"Gohad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17259","name":"Gormi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17260","name":"Govindgarh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17261","name":"Guna","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17262","name":"Gurh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17263","name":"Gwalior","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17264","name":"Hanumana","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17265","name":"Harda","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17266","name":"Harpalpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17267","name":"Harrai","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17268","name":"Harsud","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17269","name":"Hatod","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17270","name":"Hatpipalya","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17271","name":"Hatta","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17272","name":"Hindoria","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17273","name":"Hirapur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17274","name":"Hoshangabad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17275","name":"Ichhawar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17276","name":"Iklehra","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17277","name":"Indergarh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17278","name":"Indore","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17279","name":"Isagarh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17280","name":"Itarsi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17281","name":"Jabalpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17282","name":"Jabalpur Cantonment","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17283","name":"Jabalpur G.C.F","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17284","name":"Jaisinghnagar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17285","name":"Jaithari","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17286","name":"Jaitwara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17287","name":"Jamai","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17288","name":"Jaora","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17289","name":"Jatachhapar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17290","name":"Jatara","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17291","name":"Jawad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17292","name":"Jawar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17293","name":"Jeronkhalsa","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17294","name":"Jhabua","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17295","name":"Jhundpura","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17296","name":"Jiran","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17297","name":"Jirapur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17298","name":"Jobat","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17299","name":"Joura","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17300","name":"Kailaras","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17301","name":"Kaimur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17302","name":"Kakarhati","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17303","name":"Kalichhapar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17304","name":"Kanad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17305","name":"Kannod","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17306","name":"Kantaphod","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17307","name":"Kareli","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17308","name":"Karera","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17309","name":"Kari","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17310","name":"Karnawad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17311","name":"Karrapur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17312","name":"Kasrawad","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17313","name":"Katangi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17314","name":"Katni","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17315","name":"Kelhauri","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17316","name":"Khachrod","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17317","name":"Khajuraho","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17318","name":"Khamaria","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17319","name":"Khand","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17320","name":"Khandwa","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17321","name":"Khaniyadhana","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17322","name":"Khargapur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17323","name":"Khargone","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17324","name":"Khategaon","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17325","name":"Khetia","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17326","name":"Khilchipur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17327","name":"Khirkiya","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17328","name":"Khujner","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17329","name":"Khurai","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17330","name":"Kolaras","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17331","name":"Kotar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17332","name":"Kothi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17333","name":"Kotma","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17334","name":"Kukshi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17335","name":"Kumbhraj","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17336","name":"Kurwai","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17337","name":"Lahar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17338","name":"Lakhnadon","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17339","name":"Lateri","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17340","name":"Laundi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17341","name":"Lidhora Khas","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17342","name":"Lodhikheda","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17343","name":"Loharda","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17344","name":"Machalpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17345","name":"Madhogarh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17346","name":"Maharajpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17347","name":"Maheshwar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17348","name":"Mahidpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17349","name":"Maihar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17350","name":"Majholi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17351","name":"Makronia","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17352","name":"Maksi","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17353","name":"Malaj Khand","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17354","name":"Malanpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17355","name":"Malhargarh","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17356","name":"Manasa","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17357","name":"Manawar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17358","name":"Mandav","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17359","name":"Mandideep","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17360","name":"Mandla","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17361","name":"Mandleshwar","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17362","name":"Mandsaur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17363","name":"Manegaon","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17364","name":"Mangawan","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17365","name":"Manglaya Sadak","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17366","name":"Manpur","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17367","name":"Mau","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17368","name":"Mauganj","city_id":"1612","created_at":"2024-01-21 12:06:12","updated_at":"2024-01-21 12:06:12","translations":null,"is_activated":"1"}, +{"id":"17369","name":"Meghnagar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17370","name":"Mehara Gaon","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17371","name":"Mehgaon","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17372","name":"Mhaugaon","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17373","name":"Mhow","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17374","name":"Mihona","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17375","name":"Mohgaon","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17376","name":"Morar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17377","name":"Morena","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17378","name":"Multai","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17379","name":"Mundi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17380","name":"Mungaoli","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17381","name":"Murwara","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17382","name":"Nagda","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17383","name":"Nagod","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17384","name":"Nagri","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17385","name":"Naigarhi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17386","name":"Nainpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17387","name":"Nalkheda","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17388","name":"Namli","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17389","name":"Narsimhapur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17390","name":"Narsingarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17391","name":"Narsinghpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17392","name":"Narwar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17393","name":"Nasrullaganj","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17394","name":"Naudhia","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17395","name":"Naurozabad","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17396","name":"Neemuch","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17397","name":"Nepa Nagar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17398","name":"Neuton Chikhli Kalan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17399","name":"Nimach","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17400","name":"Niwari","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17401","name":"Obedullaganj","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17402","name":"Omkareshwar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17403","name":"Orachha","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17404","name":"Ordinance Factory Itarsi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17405","name":"Pachmarhi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17406","name":"Pachmarhi Cantonment","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17407","name":"Pachore","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17408","name":"Palchorai","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17409","name":"Palda","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17410","name":"Palera","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17411","name":"Panagar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17412","name":"Panara","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17413","name":"Pandaria","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17414","name":"Pandhana","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17415","name":"Pandhurna","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17416","name":"Panna","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17417","name":"Pansemal","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17418","name":"Parasia","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17419","name":"Pasan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17420","name":"Patharia","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17421","name":"Pawai","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17422","name":"Petlawad","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17423","name":"Phuph Kalan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17424","name":"Pichhore","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17425","name":"Pipariya","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17426","name":"Pipliya Mandi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17427","name":"Piploda","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17428","name":"Pithampur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17429","name":"Polay Kalan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17430","name":"Porsa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17431","name":"Prithvipur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17432","name":"Raghogarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17433","name":"Rahatgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17434","name":"Raisen","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17435","name":"Rajakhedi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17436","name":"Rajnagar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17437","name":"Rajpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17438","name":"Rampur Baghelan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17439","name":"Rampur Naikin","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17440","name":"Rampura","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17441","name":"Ranapur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17442","name":"Ranipura","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17443","name":"Ratangarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17444","name":"Ratlam","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17445","name":"Ratlam Kasba","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17446","name":"Rau","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17447","name":"Rehli","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17448","name":"Rehti","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17449","name":"Rewa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17450","name":"Sabalgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17451","name":"Sagar Cantonment","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17452","name":"Sailana","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17453","name":"Sanawad","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17454","name":"Sanchi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17455","name":"Sanwer","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17456","name":"Sarangpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17457","name":"Sardarpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17458","name":"Sarni","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17459","name":"Satai","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17460","name":"Satna","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17461","name":"Satwas","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17462","name":"Sausar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17463","name":"Sehore","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17464","name":"Semaria","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17465","name":"Sendhwa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17466","name":"Seondha","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17467","name":"Seoni Malwa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17468","name":"Sethia","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17469","name":"Shahdol","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17470","name":"Shahgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17471","name":"Shahpura","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17472","name":"Shajapur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17473","name":"Shamgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17474","name":"Sheopur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17475","name":"Shivpuri","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17476","name":"Shujalpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17477","name":"Sidhi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17478","name":"Sihora","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17479","name":"Singolo","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17480","name":"Singrauli","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17481","name":"Sinhasa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17482","name":"Sirgora","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17483","name":"Sironj","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17484","name":"Sitamau","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17485","name":"Sohagpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17486","name":"Sonkatch","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17487","name":"Soyatkalan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17488","name":"Suhagi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17489","name":"Sultanpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17490","name":"Susner","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17491","name":"Suthaliya","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17492","name":"Tal","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17493","name":"Talen","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17494","name":"Tarana","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17495","name":"Taricharkalan","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17496","name":"Tekanpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17497","name":"Tendukheda","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17498","name":"Teonthar","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17499","name":"Thandia","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17500","name":"Tikamgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17501","name":"Timarni","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17502","name":"Tirodi","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17503","name":"Udaipura","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17504","name":"Ujjain","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17505","name":"Ukwa","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17506","name":"Umaria","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17507","name":"Unchahara","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17508","name":"Unhel","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17509","name":"Vehicle Factory Jabalpur","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17510","name":"Vidisha","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17511","name":"Vijayraghavgarh","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17512","name":"Waraseoni","city_id":"1612","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"is_activated":"1"}, +{"id":"17513","name":"Achalpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17514","name":"Aheri","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17515","name":"Ahmadnagar Cantonment","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17516","name":"Ahmadpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17517","name":"Ahmednagar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17518","name":"Ajra","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17519","name":"Akalkot","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17520","name":"Akkalkuwa","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17521","name":"Akola","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17522","name":"Akot","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17523","name":"Alandi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17524","name":"Alibag","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17525","name":"Allapalli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17526","name":"Alore","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17527","name":"Amalner","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17528","name":"Ambad","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17529","name":"Ambajogai","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17530","name":"Ambernath","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17531","name":"Ambivali Tarf Wankhal","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17532","name":"Amgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17533","name":"Amravati","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17534","name":"Anjangaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17535","name":"Arvi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17536","name":"Ashti","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17537","name":"Aurangabad Cantonment","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17538","name":"Ausa","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17539","name":"Babhulgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17540","name":"Badlapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17541","name":"Ballarpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17542","name":"Baramati","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17543","name":"Barshi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17544","name":"Basmat","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17545","name":"Beed","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17546","name":"Bhagur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17547","name":"Bhandara","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17548","name":"Bhigvan","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17549","name":"Bhingar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17550","name":"Bhiwandi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17551","name":"Bhokhardan","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17552","name":"Bhor","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17553","name":"Bhosari","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17554","name":"Bhum","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17555","name":"Bhusawal","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17556","name":"Bid","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17557","name":"Biloli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17558","name":"Birwadi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17559","name":"Boisar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17560","name":"Bop Khel","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17561","name":"Brahmapuri","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17562","name":"Budhgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17563","name":"Buldana","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17564","name":"Buldhana","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17565","name":"Butibori","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17566","name":"Chakan","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17567","name":"Chalisgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17568","name":"Chandrapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17569","name":"Chandur Bazar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17570","name":"Chandvad","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17571","name":"Chicholi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17572","name":"Chikhala","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17573","name":"Chikhaldara","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17574","name":"Chinchani","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17575","name":"Chinchwad","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17576","name":"Chiplun","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17577","name":"Chopda","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17578","name":"Dabhol","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17579","name":"Dahance","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17580","name":"Dahanu","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17581","name":"Daharu","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17582","name":"Dapoli Camp","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17583","name":"Darwa","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17584","name":"Daryapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17585","name":"Dattapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17586","name":"Daund","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17587","name":"Davlameti","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17588","name":"Deglur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17589","name":"Dehu Road","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17590","name":"Deolali","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17591","name":"Deolali Pravara","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17592","name":"Deoli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17593","name":"Desaiganj","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17594","name":"Deulgaon Raja","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17595","name":"Dewhadi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17596","name":"Dharangaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17597","name":"Dharmabad","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17598","name":"Dharur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17599","name":"Dhatau","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17600","name":"Dhule","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17601","name":"Digdoh","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17602","name":"Diglur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17603","name":"Digras","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17604","name":"Dombivli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17605","name":"Dondaicha","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17606","name":"Dudhani","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17607","name":"Durgapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17608","name":"Dyane","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17609","name":"Edandol","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17610","name":"Eklahare","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17611","name":"Faizpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17612","name":"Fekari","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17613","name":"Gadchiroli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17614","name":"Gadhinghaj","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17615","name":"Gandhi Nagar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17616","name":"Ganeshpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17617","name":"Gangakher","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17618","name":"Gangapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17619","name":"Gevrai","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17620","name":"Ghatanji","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17621","name":"Ghoti","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17622","name":"Ghugus","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17623","name":"Ghulewadi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17624","name":"Godoli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17625","name":"Gondia","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17626","name":"Guhagar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17627","name":"Hadgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17628","name":"Harnai Beach","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17629","name":"Hinganghat","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17630","name":"Hingoli","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17631","name":"Hupari","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17632","name":"Ichalkaranji","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17633","name":"Igatpuri","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17634","name":"Indapur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17635","name":"Jaisinghpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17636","name":"Jalgaon","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17637","name":"Jalna","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17638","name":"Jamkhed","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17639","name":"Jawhar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17640","name":"Jaysingpur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17641","name":"Jejuri","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17642","name":"Jintur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17643","name":"Junnar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17644","name":"Kabnur","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17645","name":"Kagal","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17646","name":"Kalamb","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17647","name":"Kalamnuri","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17648","name":"Kalas","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17649","name":"Kalmeshwar","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17650","name":"Kalundre","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17651","name":"Kalyan","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17652","name":"Kamthi","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17653","name":"Kamthi Cantonment","city_id":"1613","created_at":"2024-01-21 12:06:14","updated_at":"2024-01-21 12:06:14","translations":null,"is_activated":"1"}, +{"id":"17654","name":"Kandari","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17655","name":"Kandhar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17656","name":"Kandri","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17657","name":"Kandri II","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17658","name":"Kanhan","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17659","name":"Kankavli","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17660","name":"Kannad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17661","name":"Karanja","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17662","name":"Karanje Tarf","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17663","name":"Karivali","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17664","name":"Karjat","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17665","name":"Karmala","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17666","name":"Kasara Budruk","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17667","name":"Katai","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17668","name":"Katkar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17669","name":"Katol","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17670","name":"Kegaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17671","name":"Khadkale","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17672","name":"Khadki","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17673","name":"Khamgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17674","name":"Khapa","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17675","name":"Kharadi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17676","name":"Kharakvasla","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17677","name":"Khed","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17678","name":"Kherdi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17679","name":"Khoni","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17680","name":"Khopoli","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17681","name":"Khuldabad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17682","name":"Kinwat","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17683","name":"Kodoli","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17684","name":"Kolhapur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17685","name":"Kon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17686","name":"Kondumal","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17687","name":"Kopargaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17688","name":"Kopharad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17689","name":"Koradi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17690","name":"Koregaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17691","name":"Korochi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17692","name":"Kudal","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17693","name":"Kundalwadi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17694","name":"Kurandvad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17695","name":"Kurduvadi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17696","name":"Kusgaon Budruk","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17697","name":"Lanja","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17698","name":"Lasalgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17699","name":"Latur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17700","name":"Loha","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17701","name":"Lohegaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17702","name":"Lonar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17703","name":"Lonavala","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17704","name":"Madhavnagar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17705","name":"Mahabaleshwar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17706","name":"Mahad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17707","name":"Mahadula","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17708","name":"Maindargi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17709","name":"Majalgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17710","name":"Malegaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17711","name":"Malgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17712","name":"Malkapur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17713","name":"Malwan","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17714","name":"Manadur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17715","name":"Manchar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17716","name":"Mangalvedhe","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17717","name":"Mangrul Pir","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17718","name":"Manmad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17719","name":"Manor","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17720","name":"Mansar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17721","name":"Manwath","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17722","name":"Mapuca","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17723","name":"Matheran","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17724","name":"Mehkar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17725","name":"Mhasla","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17726","name":"Mhaswad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17727","name":"Mira Bhayandar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17728","name":"Miraj","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17729","name":"Mohpa","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17730","name":"Mohpada","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17731","name":"Moram","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17732","name":"Morshi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17733","name":"Mowad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17734","name":"Mudkhed","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17735","name":"Mukhed","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17736","name":"Mul","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17737","name":"Mulshi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17738","name":"Mumbai","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17739","name":"Murbad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17740","name":"Murgud","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17741","name":"Murtijapur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17742","name":"Murud","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17743","name":"Nachane","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17744","name":"Nagardeole","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17745","name":"Nagothane","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17746","name":"Nagpur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17747","name":"Nakoda","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17748","name":"Nalasopara","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17749","name":"Naldurg","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17750","name":"Nanded","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17751","name":"Nandgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17752","name":"Nandura","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17753","name":"Nandurbar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17754","name":"Narkhed","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17755","name":"Nashik","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17756","name":"Navapur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17757","name":"Navi Mumbai","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17758","name":"Navi Mumbai Panvel","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17759","name":"Neral","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17760","name":"Nigdi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17761","name":"Nilanga","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17762","name":"Nildoh","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17763","name":"Nimbhore","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17764","name":"Ojhar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17765","name":"Osmanabad","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17766","name":"Pachgaon","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17767","name":"Pachora","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17768","name":"Padagha","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17769","name":"Paithan","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17770","name":"Palghar","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17771","name":"Panchgani","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17772","name":"Pandhakarwada","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17773","name":"Pandharpur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17774","name":"Panhala","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17775","name":"Panvel","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17776","name":"Paranda","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17777","name":"Parbhani","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17778","name":"Parli","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17779","name":"Parola","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17780","name":"Partur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17781","name":"Pasthal","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17782","name":"Pathardi","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17783","name":"Pathri","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17784","name":"Patur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17785","name":"Pawni","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17786","name":"Pen","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17787","name":"Pethumri","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17788","name":"Phaltan","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17789","name":"Pimpri","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17790","name":"Poladpur","city_id":"1613","created_at":"2024-01-21 12:06:15","updated_at":"2024-01-21 12:06:15","translations":null,"is_activated":"1"}, +{"id":"17791","name":"Pulgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17792","name":"Pune","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17793","name":"Pune Cantonment","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17794","name":"Purna","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17795","name":"Purushottamnagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17796","name":"Pusad","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17797","name":"Rahimatpur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17798","name":"Rahta Pimplas","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17799","name":"Rahuri","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17800","name":"Raigad","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17801","name":"Rajapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17802","name":"Rajgurunagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17803","name":"Rajur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17804","name":"Rajura","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17805","name":"Ramtek","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17806","name":"Ratnagiri","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17807","name":"Ravalgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17808","name":"Raver","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17809","name":"Revadanda","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17810","name":"Risod","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17811","name":"Roha Ashtami","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17812","name":"Sakri","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17813","name":"Sandor","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17814","name":"Sangamner","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17815","name":"Sangli","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17816","name":"Sangole","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17817","name":"Sasti","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17818","name":"Sasvad","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17819","name":"Satana","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17820","name":"Satara","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17821","name":"Savantvadi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17822","name":"Savda","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17823","name":"Savner","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17824","name":"Sawari Jawharnagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17825","name":"Selu","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17826","name":"Shahada","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17827","name":"Shegaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17828","name":"Shelar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17829","name":"Shendurjana","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17830","name":"Shirdi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17831","name":"Shirgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17832","name":"Shirpur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17833","name":"Shirur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17834","name":"Shirwal","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17835","name":"Shivatkar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17836","name":"Shrigonda","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17837","name":"Shrirampur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17838","name":"Shrirampur Rural","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17839","name":"Sillewada","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17840","name":"Sillod","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17841","name":"Sindhudurg","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17842","name":"Sindi Turf Hindnagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17843","name":"Sindkhed Raja","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17844","name":"Singnapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17845","name":"Sinnar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17846","name":"Sirur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17847","name":"Sitasawangi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17848","name":"Solapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17849","name":"Sonai","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17850","name":"Sonegaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17851","name":"Soyagaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17852","name":"Srivardhan","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17853","name":"Surgana","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17854","name":"Talegaon Dabhade","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17855","name":"Taloda","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17856","name":"Taloja","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17857","name":"Talwade","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17858","name":"Tarapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17859","name":"Tasgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17860","name":"Tathavade","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17861","name":"Tekadi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17862","name":"Telhara","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17863","name":"Thane","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17864","name":"Tirira","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17865","name":"Totaladoh","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17866","name":"Trimbak","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17867","name":"Tuljapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17868","name":"Tumsar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17869","name":"Uchgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17870","name":"Udgir","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17871","name":"Ulhasnagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17872","name":"Umarga","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17873","name":"Umarkhed","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17874","name":"Umarsara","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17875","name":"Umbar Pada Nandade","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17876","name":"Umred","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17877","name":"Umri Pragane Balapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17878","name":"Uran","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17879","name":"Uran Islampur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17880","name":"Utekhol","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17881","name":"Vada","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17882","name":"Vadgaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17883","name":"Vadgaon Kasba","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17884","name":"Vaijapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17885","name":"Vanvadi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17886","name":"Varangaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17887","name":"Vasai","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17888","name":"Vasantnagar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17889","name":"Vashind","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17890","name":"Vengurla","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17891","name":"Virar","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17892","name":"Visapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17893","name":"Vite","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17894","name":"Vithalwadi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17895","name":"Waghapur","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17896","name":"Wai","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17897","name":"Wajegaon","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17898","name":"Walani","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17899","name":"Wanadongri","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17900","name":"Wani","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17901","name":"Wardha","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17902","name":"Warora","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17903","name":"Warthi","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17904","name":"Warud","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17905","name":"Washim","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17906","name":"Yaval","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17907","name":"Yavatmal","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17908","name":"Yeola","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17909","name":"Yerkheda","city_id":"1613","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17910","name":"Andro","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17911","name":"Bijoy Govinda","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17912","name":"Bishnupur","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17913","name":"Churachandpur","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17914","name":"Heriok","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17915","name":"Imphal","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17916","name":"Jiribam","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17917","name":"Kakching","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17918","name":"Kakching Khunou","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17919","name":"Khongman","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17920","name":"Kumbi","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17921","name":"Kwakta","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17922","name":"Lamai","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17923","name":"Lamjaotongba","city_id":"1614","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"is_activated":"1"}, +{"id":"17924","name":"Lamshang","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17925","name":"Lilong","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17926","name":"Mayang Imphal","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17927","name":"Moirang","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17928","name":"Moreh","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17929","name":"Nambol","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17930","name":"Naoriya Pakhanglakpa","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17931","name":"Ningthoukhong","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17932","name":"Oinam","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17933","name":"Porompat","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17934","name":"Samurou","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17935","name":"Sekmai Bazar","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17936","name":"Senapati","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17937","name":"Sikhong Sekmai","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17938","name":"Sugnu","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17939","name":"Thongkhong Laxmi Bazar","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17940","name":"Thoubal","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17941","name":"Torban","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17942","name":"Wangjing","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17943","name":"Wangoi","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17944","name":"Yairipok","city_id":"1614","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17945","name":"Baghmara","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17946","name":"Cherrapunji","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17947","name":"Jawai","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17948","name":"Madanrting","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17949","name":"Mairang","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17950","name":"Mawlai","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17951","name":"Nongmynsong","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17952","name":"Nongpoh","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17953","name":"Nongstoin","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17954","name":"Nongthymmai","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17955","name":"Pynthorumkhrah","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17956","name":"Resubelpara","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17957","name":"Shillong","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17958","name":"Shillong Cantonment","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17959","name":"Williamnagar","city_id":"1615","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17960","name":"Aizawl","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17961","name":"Bairabi","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17962","name":"Biate","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17963","name":"Champhai","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17964","name":"Darlawn","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17965","name":"Hnahthial","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17966","name":"Kawnpui","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17967","name":"Khawhai","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17968","name":"Khawzawl","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17969","name":"Kolasib","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17970","name":"Lengpui","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17971","name":"Lunglei","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17972","name":"Mamit","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17973","name":"North Vanlaiphai","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17974","name":"Saiha","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17975","name":"Sairang","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17976","name":"Saitul","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17977","name":"Serchhip","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17978","name":"Thenzawl","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17979","name":"Tlabung","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17980","name":"Vairengte","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17981","name":"Zawlnuam","city_id":"1616","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17982","name":"Chumukedima","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17983","name":"Dimapur","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17984","name":"Kohima","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17985","name":"Mokokchung","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17986","name":"Mon","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17987","name":"Phek","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17988","name":"Tuensang","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17989","name":"Wokha","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17990","name":"Zunheboto","city_id":"1617","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17991","name":"Anandapur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17992","name":"Angul","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17993","name":"Aska","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17994","name":"Athgarh","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17995","name":"Athmallik","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17996","name":"Balagoda","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17997","name":"Balangir","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17998","name":"Balasore","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"17999","name":"Baleshwar","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18000","name":"Balimeta","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18001","name":"Balugaon","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18002","name":"Banapur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18003","name":"Bangura","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18004","name":"Banki","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18005","name":"Banposh","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18006","name":"Barbil","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18007","name":"Bargarh","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18008","name":"Baripada","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18009","name":"Barpali","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18010","name":"Basudebpur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18011","name":"Baudh","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18012","name":"Belagachhia","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18013","name":"Belaguntha","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18014","name":"Belpahar","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18015","name":"Berhampur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18016","name":"Bhadrak","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18017","name":"Bhanjanagar","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18018","name":"Bhawanipatna","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18019","name":"Bhuban","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18020","name":"Bhubaneswar","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18021","name":"Binika","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18022","name":"Birmitrapur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18023","name":"Bishama Katek","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18024","name":"Bolangir","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18025","name":"Brahmapur","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18026","name":"Brajrajnagar","city_id":"1620","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"is_activated":"1"}, +{"id":"18027","name":"Buguda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18028","name":"Burla","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18029","name":"Byasanagar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18030","name":"Champua","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18031","name":"Chandapur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18032","name":"Chandbali","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18033","name":"Chandili","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18034","name":"Charibatia","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18035","name":"Chatrapur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18036","name":"Chikitigarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18037","name":"Chitrakonda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18038","name":"Choudwar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18039","name":"Cuttack","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18040","name":"Dadhapatna","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18041","name":"Daitari","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18042","name":"Damanjodi","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18043","name":"Deogarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18044","name":"Deracolliery","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18045","name":"Dhamanagar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18046","name":"Dhenkanal","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18047","name":"Digapahandi","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18048","name":"Dungamal","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18049","name":"Fertilizer Corporation of Indi","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18050","name":"Ganjam","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18051","name":"Ghantapada","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18052","name":"Gudari","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18053","name":"Gunupur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18054","name":"Hatibandha","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18055","name":"Hinjilikatu","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18056","name":"Hirakud","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18057","name":"Jagatsinghapur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18058","name":"Jajpur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18059","name":"Jalda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18060","name":"Jaleswar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18061","name":"Jatni","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18062","name":"Jaypur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18063","name":"Jeypore","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18064","name":"Jharsuguda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18065","name":"Jhumpura","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18066","name":"Joda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18067","name":"Junagarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18068","name":"Kamakhyanagar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18069","name":"Kantabanji","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18070","name":"Kantilo","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18071","name":"Kashinagara","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18072","name":"Kataka","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18073","name":"Kavisuryanagar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18074","name":"Kendrapara","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18075","name":"Kendujhar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18076","name":"Keonjhar","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18077","name":"Kesinga","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18078","name":"Khaliapali","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18079","name":"Khalikote","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18080","name":"Khandaparha","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18081","name":"Kharhial","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18082","name":"Kharhial Road","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18083","name":"Khatiguda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18084","name":"Khurda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18085","name":"Kochinda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18086","name":"Kodala","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18087","name":"Konark","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18088","name":"Koraput","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18089","name":"Kotaparh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18090","name":"Lanjigarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18091","name":"Lattikata","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18092","name":"Makundapur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18093","name":"Malkangiri","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18094","name":"Mukhiguda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18095","name":"Nabarangpur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18096","name":"Nalco","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18097","name":"Naurangapur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18098","name":"Nayagarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18099","name":"Nilagiri","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18100","name":"Nimaparha","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18101","name":"Nuapada","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18102","name":"Nuapatna","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18103","name":"OCL Industrialship","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18104","name":"Padampur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18105","name":"Paradip","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18106","name":"Paradwip","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18107","name":"Parlakimidi","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18108","name":"Patamundai","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18109","name":"Patnagarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18110","name":"Phulabani","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18111","name":"Pipili","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18112","name":"Polasara","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18113","name":"Pratapsasan","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18114","name":"Puri","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18115","name":"Purushottampur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18116","name":"Rairangpur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18117","name":"Raj Gangpur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18118","name":"Rambha","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18119","name":"Raurkela","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18120","name":"Raurkela Civil Township","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18121","name":"Rayagada","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18122","name":"Redhakhol","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18123","name":"Remuna","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18124","name":"Rengali","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18125","name":"Rourkela","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18126","name":"Sambalpur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18127","name":"Sinapali","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18128","name":"Sorada","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18129","name":"Sunabeda","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18130","name":"Sundargarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18131","name":"Talcher","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18132","name":"Talcher Thermal Power Station ","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18133","name":"Tarabha","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18134","name":"Tensa","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18135","name":"Titlagarh","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18136","name":"Udala","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18137","name":"Udayagiri","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18138","name":"Umarkot","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18139","name":"Vikrampur","city_id":"1620","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18140","name":"Ariankuppam","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18141","name":"Karaikal","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18142","name":"Kurumbapet","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18143","name":"Mahe","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18144","name":"Ozhukarai","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18145","name":"Pondicherry","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18146","name":"Villianur","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18147","name":"Yanam","city_id":"1622","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18148","name":"Abohar","city_id":"1623","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"is_activated":"1"}, +{"id":"18149","name":"Adampur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18150","name":"Ahmedgarh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18151","name":"Ajnala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18152","name":"Akalgarh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18153","name":"Alawalpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18154","name":"Amloh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18155","name":"Amritsar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18156","name":"Amritsar Cantonment","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18157","name":"Anandpur Sahib","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18158","name":"Badhni Kalan","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18159","name":"Bagh Purana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18160","name":"Balachaur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18161","name":"Banaur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18162","name":"Banga","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18163","name":"Banur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18164","name":"Baretta","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18165","name":"Bariwala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18166","name":"Barnala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18167","name":"Bassi Pathana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18168","name":"Batala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18169","name":"Bathinda","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18170","name":"Begowal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18171","name":"Behrampur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18172","name":"Bhabat","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18173","name":"Bhadur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18174","name":"Bhankharpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18175","name":"Bharoli Kalan","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18176","name":"Bhawanigarh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18177","name":"Bhikhi","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18178","name":"Bhikhiwind","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18179","name":"Bhisiana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18180","name":"Bhogpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18181","name":"Bhuch","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18182","name":"Bhulath","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18183","name":"Budha Theh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18184","name":"Budhlada","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18185","name":"Chohal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18186","name":"Dasuya","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18187","name":"Dera Baba Nanak","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18188","name":"Dera Bassi","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18189","name":"Dhanaula","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18190","name":"Dharam Kot","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18191","name":"Dhariwal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18192","name":"Dhilwan","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18193","name":"Dhuri","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18194","name":"Dinanagar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18195","name":"Dirba","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18196","name":"Doraha","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18197","name":"Faridkot","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18198","name":"Fateh Nangal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18199","name":"Fatehgarh Churian","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18200","name":"Fatehgarh Sahib","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18201","name":"Fazilka","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18202","name":"Firozpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18203","name":"Firozpur Cantonment","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18204","name":"Gardhiwala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18205","name":"Garhshankar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18206","name":"Ghagga","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18207","name":"Ghanaur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18208","name":"Giddarbaha","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18209","name":"Gobindgarh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18210","name":"Goniana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18211","name":"Goraya","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18212","name":"Gurdaspur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18213","name":"Guru Har Sahai","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18214","name":"Handiaya","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18215","name":"Hariana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18216","name":"Hoshiarpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18217","name":"Hussainpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18218","name":"Jagraon","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18219","name":"Jaitu","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18220","name":"Jalalabad","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18221","name":"Jalandhar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18222","name":"Jalandhar Cantonment","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18223","name":"Jandiala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18224","name":"Jugial","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18225","name":"Kalanaur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18226","name":"Kapurthala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18227","name":"Karoran","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18228","name":"Kartarpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18229","name":"Khamanon","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18230","name":"Khanauri","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18231","name":"Khanna","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18232","name":"Kharar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18233","name":"Khem Karan","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18234","name":"Kot Fatta","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18235","name":"Kot Isa Khan","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18236","name":"Kot Kapura","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18237","name":"Kotkapura","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18238","name":"Kurali","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18239","name":"Lalru","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18240","name":"Lehra Gaga","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18241","name":"Lodhian Khas","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18242","name":"Longowal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18243","name":"Ludhiana","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18244","name":"Machhiwara","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18245","name":"Mahilpur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18246","name":"Majitha","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18247","name":"Makhu","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18248","name":"Malaut","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18249","name":"Malerkotla","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18250","name":"Maloud","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18251","name":"Mandi Gobindgarh","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18252","name":"Maur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18253","name":"Moga","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18254","name":"Mohali","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18255","name":"Moonak","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18256","name":"Morinda","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18257","name":"Mukerian","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18258","name":"Muktsar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18259","name":"Mullanpur Dakha","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18260","name":"Mullanpur Garibdas","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18261","name":"Munak","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18262","name":"Muradpura","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18263","name":"Nabha","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18264","name":"Nakodar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18265","name":"Nangal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18266","name":"Nawashahr","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18267","name":"Naya Nangal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18268","name":"Nehon","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18269","name":"Nurmahal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18270","name":"Pathankot","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18271","name":"Patiala","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18272","name":"Patti","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18273","name":"Pattran","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18274","name":"Payal","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18275","name":"Phagwara","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18276","name":"Phillaur","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18277","name":"Qadian","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18278","name":"Rahon","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18279","name":"Raikot","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18280","name":"Raja Sansi","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18281","name":"Rajpura","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18282","name":"Ram Das","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18283","name":"Raman","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18284","name":"Rayya","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18285","name":"Rupnagar","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18286","name":"Rurki Kasba","city_id":"1623","created_at":"2024-01-21 12:06:19","updated_at":"2024-01-21 12:06:19","translations":null,"is_activated":"1"}, +{"id":"18287","name":"Sahnewal","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18288","name":"Samrala","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18289","name":"Sanaur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18290","name":"Sangat","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18291","name":"Sangrur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18292","name":"Sansarpur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18293","name":"Sardulgarh","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18294","name":"Shahkot","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18295","name":"Sham Churasi","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18296","name":"Shekhpura","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18297","name":"Sirhind","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18298","name":"Sri Hargobindpur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18299","name":"Sujanpur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18300","name":"Sultanpur Lodhi","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18301","name":"Sunam","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18302","name":"Talwandi Bhai","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18303","name":"Tappa","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18304","name":"Tarn Taran","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18305","name":"Urmar Tanda","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18306","name":"Zira","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18307","name":"Zirakpur","city_id":"1623","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18308","name":"Abu Road","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18309","name":"Ajmer","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18310","name":"Aklera","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18311","name":"Alwar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18312","name":"Amet","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18313","name":"Antah","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18314","name":"Anupgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18315","name":"Asind","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18316","name":"Bagar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18317","name":"Bagru","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18318","name":"Bahror","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18319","name":"Bakani","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18320","name":"Balotra","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18321","name":"Bandikui","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18322","name":"Banswara","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18323","name":"Baran","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18324","name":"Bari","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18325","name":"Bari Sadri","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18326","name":"Barmer","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18327","name":"Basi","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18328","name":"Basni Belima","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18329","name":"Baswa","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18330","name":"Bayana","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18331","name":"Beawar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18332","name":"Begun","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18333","name":"Bhadasar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18334","name":"Bhadra","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18335","name":"Bhalariya","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18336","name":"Bharatpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18337","name":"Bhasawar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18338","name":"Bhawani Mandi","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18339","name":"Bhawri","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18340","name":"Bhilwara","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18341","name":"Bhindar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18342","name":"Bhinmal","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18343","name":"Bhiwadi","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18344","name":"Bijoliya Kalan","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18345","name":"Bikaner","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18346","name":"Bilara","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18347","name":"Borkhera","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18348","name":"Budhpura","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18349","name":"Bundi","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18350","name":"Chatsu","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18351","name":"Chechat","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18352","name":"Chhabra","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18353","name":"Chhapar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18354","name":"Chhipa Barod","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18355","name":"Chhoti Sadri","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18356","name":"Chirawa","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18357","name":"Chittaurgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18358","name":"Chittorgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18359","name":"Chomun","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18360","name":"Churu","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18361","name":"Daosa","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18362","name":"Dariba","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18363","name":"Dausa","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18364","name":"Deshnok","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18365","name":"Devgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18366","name":"Devli","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18367","name":"Dhariawad","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18368","name":"Dhaulpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18369","name":"Dholpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18370","name":"Didwana","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18371","name":"Dig","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18372","name":"Dungargarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18373","name":"Falna","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18374","name":"Fatehnagar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18375","name":"Fatehpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18376","name":"Gajsinghpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18377","name":"Galiakot","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18378","name":"Ganganagar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18379","name":"Goredi Chancha","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18380","name":"Gothra","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18381","name":"Gulabpura","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18382","name":"Hanumangarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18383","name":"Hindaun","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18384","name":"Indragarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18385","name":"Jahazpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18386","name":"Jaipur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18387","name":"Jaisalmer","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18388","name":"Jaiselmer","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18389","name":"Jaitaran","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18390","name":"Jalore","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18391","name":"Jhalawar","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18392","name":"Jhalrapatan","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18393","name":"Jhunjhunun","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18394","name":"Jobner","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18395","name":"Jodhpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18396","name":"Kaithun","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18397","name":"Kaman","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18398","name":"Kankroli","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18399","name":"Kanor","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18400","name":"Kapasan","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18401","name":"Kaprain","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18402","name":"Karanpura","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18403","name":"Karauli","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18404","name":"Kekri","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18405","name":"Keshorai Patan","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18406","name":"Kesrisinghpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18407","name":"Khairthal","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18408","name":"Khandela","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18409","name":"Khanpur","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18410","name":"Kherli","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18411","name":"Kherliganj","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18412","name":"Kherwara Chhaoni","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18413","name":"Khetri","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18414","name":"Kiranipura","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18415","name":"Kishangarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18416","name":"Kishangarh Ranwal","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18417","name":"Kolvi Rajendrapura","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18418","name":"Kot Putli","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18419","name":"Kuchaman","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18420","name":"Kuchera","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18421","name":"Kumbhalgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18422","name":"Kumbhkot","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18423","name":"Kumher","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18424","name":"Kushalgarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18425","name":"Lachhmangarh","city_id":"1624","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"is_activated":"1"}, +{"id":"18426","name":"Ladnun","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18427","name":"Lakheri","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18428","name":"Lalsot","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18429","name":"Losal","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18430","name":"Madanganj","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18431","name":"Mahu Kalan","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18432","name":"Mahwa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18433","name":"Makrana","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18434","name":"Malpura","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18435","name":"Mandalgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18436","name":"Mandawar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18437","name":"Mandwa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18438","name":"Manohar Thana","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18439","name":"Marwar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18440","name":"Merta","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18441","name":"Modak","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18442","name":"Mount Abu","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18443","name":"Mukandgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18444","name":"Mundwa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18445","name":"Nadbai","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18446","name":"Naenwa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18447","name":"Nagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18448","name":"Nagaur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18449","name":"Napasar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18450","name":"Naraina","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18451","name":"Nasirabad","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18452","name":"Nathdwara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18453","name":"Nawa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18454","name":"Nawalgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18455","name":"Neem Ka Thana","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18456","name":"Neemrana","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18457","name":"Newa Talai","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18458","name":"Nimaj","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18459","name":"Nimbahera","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18460","name":"Niwai","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18461","name":"Nohar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18462","name":"One SGM","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18463","name":"Partapur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18464","name":"Parvatsar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18465","name":"Pasoond","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18466","name":"Phalna","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18467","name":"Phalodi","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18468","name":"Phulera","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18469","name":"Pilani","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18470","name":"Pilibanga","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18471","name":"Pindwara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18472","name":"Pipalia Kalan","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18473","name":"Pipar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18474","name":"Pirawa","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18475","name":"Pokaran","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18476","name":"Pratapgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18477","name":"Pushkar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18478","name":"Raisinghnagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18479","name":"Rajakhera","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18480","name":"Rajaldesar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18481","name":"Rajsamand","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18482","name":"Ramganj Mandi","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18483","name":"Raniwara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18484","name":"Ratan Nagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18485","name":"Rawatbhata","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18486","name":"Rawatsar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18487","name":"Rikhabdev","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18488","name":"Ringas","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18489","name":"Sadri","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18490","name":"Sadulshahar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18491","name":"Sagwara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18492","name":"Salumbar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18493","name":"Sambhar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18494","name":"Samdari","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18495","name":"Sanchor","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18496","name":"Sangariya","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18497","name":"Sangod","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18498","name":"Sardarshahr","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18499","name":"Sarwar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18500","name":"Satal Kheri","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18501","name":"Sawai Madhopur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18502","name":"Sewan Kalan","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18503","name":"Sheoganj","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18504","name":"Sikar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18505","name":"Sirohi","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18506","name":"Siwana","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18507","name":"Sogariya","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18508","name":"Sojat","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18509","name":"Sojat Road","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18510","name":"Sri Madhopur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18511","name":"Sriganganagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18512","name":"Sujangarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18513","name":"Suket","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18514","name":"Sumerpur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18515","name":"Sunel","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18516","name":"Surajgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18517","name":"Suratgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18518","name":"Swaroopganj","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18519","name":"Takhatgarh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18520","name":"Taranagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18521","name":"Three STR","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18522","name":"Tijara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18523","name":"Toda Bhim","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18524","name":"Toda Raisingh","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18525","name":"Todra","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18526","name":"Tonk","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18527","name":"Udaipur","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18528","name":"Udpura","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18529","name":"Uniara","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18530","name":"Vanasthali","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18531","name":"Vidyavihar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18532","name":"Vijainagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18533","name":"Viratnagar","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18534","name":"Wer","city_id":"1624","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18535","name":"Gangtok","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18536","name":"Gezing","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18537","name":"Jorethang","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18538","name":"Mangan","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18539","name":"Namchi","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18540","name":"Naya Bazar","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18541","name":"No City","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18542","name":"Rangpo","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18543","name":"Sikkim","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18544","name":"Singtam","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18545","name":"Upper Tadong","city_id":"1625","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18546","name":"Abiramam","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18547","name":"Achampudur","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18548","name":"Acharapakkam","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18549","name":"Acharipallam","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18550","name":"Achipatti","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18551","name":"Adikaratti","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18552","name":"Adiramapattinam","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18553","name":"Aduturai","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18554","name":"Adyar","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18555","name":"Agaram","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18556","name":"Agasthiswaram","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18557","name":"Akkaraipettai","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18558","name":"Alagappapuram","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18559","name":"Alagapuri","city_id":"1626","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"is_activated":"1"}, +{"id":"18560","name":"Alampalayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18561","name":"Alandur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18562","name":"Alanganallur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18563","name":"Alangayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18564","name":"Alangudi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18565","name":"Alangulam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18566","name":"Alanthurai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18567","name":"Alapakkam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18568","name":"Allapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18569","name":"Alwar Tirunagari","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18570","name":"Alwarkurichi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18571","name":"Ambasamudram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18572","name":"Ambur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18573","name":"Ammainaickanur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18574","name":"Ammaparikuppam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18575","name":"Ammapettai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18576","name":"Ammavarikuppam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18577","name":"Ammur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18578","name":"Anaimalai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18579","name":"Anaiyur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18580","name":"Anakaputhur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18581","name":"Ananthapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18582","name":"Andanappettai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18583","name":"Andipalayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18584","name":"Andippatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18585","name":"Anjugramam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18586","name":"Annamalainagar","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18587","name":"Annavasal","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18588","name":"Annur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18589","name":"Anthiyur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18590","name":"Appakudal","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18591","name":"Arachalur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18592","name":"Arakandanallur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18593","name":"Arakonam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18594","name":"Aralvaimozhi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18595","name":"Arani Road","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18596","name":"Arantangi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18597","name":"Arasiramani","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18598","name":"Aravakurichi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18599","name":"Aravankadu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18600","name":"Arcot","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18601","name":"Arimalam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18602","name":"Ariyalur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18603","name":"Ariyappampalayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18604","name":"Ariyur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18605","name":"Arni","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18606","name":"Arulmigu Thirumuruganpundi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18607","name":"Arumanai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18608","name":"Arumbavur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18609","name":"Arumuganeri","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18610","name":"Aruppukkottai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18611","name":"Ashokapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18612","name":"Athani","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18613","name":"Athanur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18614","name":"Athimarapatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18615","name":"Athipattu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18616","name":"Athur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18617","name":"Attayyampatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18618","name":"Attur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18619","name":"Auroville","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18620","name":"Avadattur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18621","name":"Avadi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18622","name":"Avalpundurai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18623","name":"Avaniapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18624","name":"Avinashi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18625","name":"Ayakudi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18626","name":"Ayanadaippu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18627","name":"Aygudi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18628","name":"Ayothiapattinam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18629","name":"Ayyalur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18630","name":"Ayyampalayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18631","name":"Ayyampettai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18632","name":"Azhagiapandiapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18633","name":"Balakrishnampatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18634","name":"Balakrishnapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18635","name":"Balapallam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18636","name":"Balasamudram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18637","name":"Bargur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18638","name":"Berhatty","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18639","name":"Bhavani","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18640","name":"Bhawanisagar","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18641","name":"Bhuvanagiri","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18642","name":"Bikketti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18643","name":"Bodinayakkanur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18644","name":"Brahmana Periya Agraharam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18645","name":"Buthapandi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18646","name":"Buthipuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18647","name":"Chatrapatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18648","name":"Chembarambakkam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18649","name":"Chengalpattu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18650","name":"Chengam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18651","name":"Chennai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18652","name":"Chennasamudram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18653","name":"Chennimalai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18654","name":"Cheranmadevi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18655","name":"Cheruvanki","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18656","name":"Chetpet","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18657","name":"Chettiarpatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18658","name":"Chettipalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18659","name":"Chettipalayam Cantonment","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18660","name":"Chettithangal","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18661","name":"Cheyur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18662","name":"Cheyyar","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18663","name":"Chidambaram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18664","name":"Chinalapatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18665","name":"Chinna Anuppanadi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18666","name":"Chinna Salem","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18667","name":"Chinnakkampalayam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18668","name":"Chinnammanur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18669","name":"Chinnampalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18670","name":"Chinnasekkadu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18671","name":"Chinnavedampatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18672","name":"Chitlapakkam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18673","name":"Chittodu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18674","name":"Cholapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18675","name":"Coimbatore","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18676","name":"Coonoor","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18677","name":"Courtalam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18678","name":"Cuddalore","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18679","name":"Dalavaipatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18680","name":"Darasuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18681","name":"Denkanikottai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18682","name":"Desur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18683","name":"Devadanapatti","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18684","name":"Devakkottai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18685","name":"Devakottai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18686","name":"Devanangurichi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18687","name":"Devarshola","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18688","name":"Devasthanam","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18689","name":"Dhalavoipuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18690","name":"Dhali","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18691","name":"Dhaliyur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18692","name":"Dharapadavedu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18693","name":"Dharapuram","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18694","name":"Dharmapuri","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18695","name":"Dindigul","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18696","name":"Dusi","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18697","name":"Edaganasalai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18698","name":"Edaikodu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18699","name":"Edakalinadu","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18700","name":"Elathur","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18701","name":"Elayirampannai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18702","name":"Elumalai","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18703","name":"Eral","city_id":"1626","created_at":"2024-01-21 12:06:22","updated_at":"2024-01-21 12:06:22","translations":null,"is_activated":"1"}, +{"id":"18704","name":"Eraniel","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18705","name":"Eriodu","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18706","name":"Erode","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18707","name":"Erumaipatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18708","name":"Eruvadi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18709","name":"Ethapur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18710","name":"Ettaiyapuram","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18711","name":"Ettimadai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18712","name":"Ezhudesam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18713","name":"Ganapathipuram","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18714","name":"Gangaikondan","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18715","name":"Gangavalli","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18716","name":"Ganguvarpatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18717","name":"Gingi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18718","name":"Gopalasamudram","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18719","name":"Gopichettipalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18720","name":"Gudalur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18721","name":"Gudiyattam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18722","name":"Guduvanchery","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18723","name":"Gummidipoondi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18724","name":"Hanumanthampatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18725","name":"Harur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18726","name":"Harveypatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18727","name":"Highways","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18728","name":"Hosur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18729","name":"Hubbathala","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18730","name":"Huligal","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18731","name":"Idappadi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18732","name":"Idikarai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18733","name":"Ilampillai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18734","name":"Ilanji","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18735","name":"Iluppaiyurani","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18736","name":"Iluppur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18737","name":"Inam Karur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18738","name":"Injambakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18739","name":"Irugur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18740","name":"Jaffrabad","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18741","name":"Jagathala","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18742","name":"Jalakandapuram","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18743","name":"Jalladiampet","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18744","name":"Jambai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18745","name":"Jayankondam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18746","name":"Jolarpet","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18747","name":"Kadambur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18748","name":"Kadathur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18749","name":"Kadayal","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18750","name":"Kadayampatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18751","name":"Kadayanallur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18752","name":"Kadiapatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18753","name":"Kalakkad","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18754","name":"Kalambur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18755","name":"Kalapatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18756","name":"Kalappanaickenpatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18757","name":"Kalavai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18758","name":"Kalinjur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18759","name":"Kaliyakkavilai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18760","name":"Kallakkurichi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18761","name":"Kallakudi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18762","name":"Kallidaikurichchi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18763","name":"Kallukuttam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18764","name":"Kallupatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18765","name":"Kalpakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18766","name":"Kalugumalai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18767","name":"Kamayagoundanpatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18768","name":"Kambainallur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18769","name":"Kambam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18770","name":"Kamuthi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18771","name":"Kanadukathan","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18772","name":"Kanakkampalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18773","name":"Kanam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18774","name":"Kanchipuram","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18775","name":"Kandanur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18776","name":"Kangayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18777","name":"Kangayampalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18778","name":"Kangeyanallur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18779","name":"Kaniyur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18780","name":"Kanjikoil","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18781","name":"Kannadendal","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18782","name":"Kannamangalam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18783","name":"Kannampalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18784","name":"Kannankurichi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18785","name":"Kannapalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18786","name":"Kannivadi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18787","name":"Kanyakumari","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18788","name":"Kappiyarai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18789","name":"Karaikkudi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18790","name":"Karamadai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18791","name":"Karambakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18792","name":"Karambakkudi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18793","name":"Kariamangalam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18794","name":"Kariapatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18795","name":"Karugampattur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18796","name":"Karumandi Chellipalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18797","name":"Karumathampatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18798","name":"Karumbakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18799","name":"Karungal","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18800","name":"Karunguzhi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18801","name":"Karuppur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18802","name":"Karur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18803","name":"Kasipalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18804","name":"Kasipalayam G","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18805","name":"Kathirvedu","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18806","name":"Kathujuganapalli","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18807","name":"Katpadi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18808","name":"Kattivakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18809","name":"Kattumannarkoil","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18810","name":"Kattupakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18811","name":"Kattuputhur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18812","name":"Kaveripakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18813","name":"Kaveripattinam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18814","name":"Kavundampalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18815","name":"Kavundampalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18816","name":"Kayalpattinam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18817","name":"Kayattar","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18818","name":"Kelamangalam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18819","name":"Kelambakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18820","name":"Kembainaickenpalayam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18821","name":"Kethi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18822","name":"Kilakarai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18823","name":"Kilampadi","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18824","name":"Kilkulam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18825","name":"Kilkunda","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18826","name":"Killiyur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18827","name":"Killlai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18828","name":"Kilpennathur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18829","name":"Kilvelur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18830","name":"Kinathukadavu","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18831","name":"Kiramangalam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18832","name":"Kiranur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18833","name":"Kiripatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18834","name":"Kizhapavur","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18835","name":"Kmarasamipatti","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18836","name":"Kochadai","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18837","name":"Kodaikanal","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18838","name":"Kodambakkam","city_id":"1626","created_at":"2024-01-21 12:06:23","updated_at":"2024-01-21 12:06:23","translations":null,"is_activated":"1"}, +{"id":"18839","name":"Kodavasal","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18840","name":"Kodumudi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18841","name":"Kolachal","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18842","name":"Kolappalur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18843","name":"Kolathupalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18844","name":"Kolathur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18845","name":"Kollankodu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18846","name":"Kollankoil","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18847","name":"Komaralingam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18848","name":"Komarapalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18849","name":"Kombai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18850","name":"Konakkarai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18851","name":"Konavattam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18852","name":"Kondalampatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18853","name":"Konganapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18854","name":"Koradacheri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18855","name":"Korampallam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18856","name":"Kotagiri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18857","name":"Kothinallur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18858","name":"Kottaiyur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18859","name":"Kottakuppam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18860","name":"Kottaram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18861","name":"Kottivakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18862","name":"Kottur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18863","name":"Kovilpatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18864","name":"Koyampattur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18865","name":"Krishnagiri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18866","name":"Krishnarayapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18867","name":"Krishnasamudram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18868","name":"Kuchanur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18869","name":"Kuhalur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18870","name":"Kulasekarappattinam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18871","name":"Kulasekarapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18872","name":"Kulithalai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18873","name":"Kumarapalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18874","name":"Kumarapalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18875","name":"Kumarapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18876","name":"Kumbakonam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18877","name":"Kundrathur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18878","name":"Kuniyamuthur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18879","name":"Kunnathur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18880","name":"Kunur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18881","name":"Kuraikundu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18882","name":"Kurichi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18883","name":"Kurinjippadi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18884","name":"Kurudampalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18885","name":"Kurumbalur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18886","name":"Kuthalam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18887","name":"Kuthappar","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18888","name":"Kuttalam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18889","name":"Kuttanallur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18890","name":"Kuzhithurai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18891","name":"Labbaikudikadu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18892","name":"Lakkampatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18893","name":"Lalgudi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18894","name":"Lalpet","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18895","name":"Llayangudi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18896","name":"Madambakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18897","name":"Madanur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18898","name":"Madathukulam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18899","name":"Madhavaram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18900","name":"Madippakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18901","name":"Madukkarai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18902","name":"Madukkur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18903","name":"Madurai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18904","name":"Maduranthakam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18905","name":"Maduravoyal","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18906","name":"Mahabalipuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18907","name":"Makkinanpatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18908","name":"Mallamuppampatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18909","name":"Mallankinaru","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18910","name":"Mallapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18911","name":"Mallasamudram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18912","name":"Mallur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18913","name":"Mamallapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18914","name":"Mamsapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18915","name":"Manachanallur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18916","name":"Manalmedu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18917","name":"Manalurpet","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18918","name":"Manamadurai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18919","name":"Manapakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18920","name":"Manapparai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18921","name":"Manavalakurichi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18922","name":"Mandaikadu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18923","name":"Mandapam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18924","name":"Mangadu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18925","name":"Mangalam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18926","name":"Mangalampet","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18927","name":"Manimutharu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18928","name":"Mannargudi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18929","name":"Mappilaiurani","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18930","name":"Maraimalai Nagar","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18931","name":"Marakkanam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18932","name":"Maramangalathupatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18933","name":"Marandahalli","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18934","name":"Markayankottai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18935","name":"Marudur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18936","name":"Marungur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18937","name":"Masinigudi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18938","name":"Mathigiri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18939","name":"Mattur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18940","name":"Mayiladuthurai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18941","name":"Mecheri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18942","name":"Melacheval","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18943","name":"Melachokkanathapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18944","name":"Melagaram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18945","name":"Melamadai","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18946","name":"Melamaiyur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18947","name":"Melanattam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18948","name":"Melathiruppanthuruthi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18949","name":"Melattur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18950","name":"Melmananbedu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18951","name":"Melpattampakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18952","name":"Melur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18953","name":"Melvisharam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18954","name":"Mettupalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18955","name":"Mettur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18956","name":"Meyyanur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18957","name":"Milavittan","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18958","name":"Minakshipuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18959","name":"Minambakkam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18960","name":"Minjur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18961","name":"Modakurichi","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18962","name":"Mohanur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18963","name":"Mopperipalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18964","name":"Mudalur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18965","name":"Mudichur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18966","name":"Mudukulathur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18967","name":"Mukasipidariyur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18968","name":"Mukkudal","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18969","name":"Mulagumudu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18970","name":"Mulakaraipatti","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18971","name":"Mulanur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18972","name":"Mullakkadu","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18973","name":"Muruganpalayam","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18974","name":"Musiri","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18975","name":"Muthupet","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18976","name":"Muthur","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18977","name":"Muttayyapuram","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18978","name":"Muttupet","city_id":"1626","created_at":"2024-01-21 12:06:24","updated_at":"2024-01-21 12:06:24","translations":null,"is_activated":"1"}, +{"id":"18979","name":"Muvarasampettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18980","name":"Myladi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18981","name":"Mylapore","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18982","name":"Nadukkuthagai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18983","name":"Naduvattam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18984","name":"Nagapattinam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18985","name":"Nagavakulam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18986","name":"Nagercoil","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18987","name":"Nagojanahalli","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18988","name":"Nallampatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18989","name":"Nallur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18990","name":"Namagiripettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18991","name":"Namakkal","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18992","name":"Nambiyur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18993","name":"Nambutalai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18994","name":"Nandambakkam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18995","name":"Nandivaram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18996","name":"Nangavalli","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18997","name":"Nangavaram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18998","name":"Nanguneri","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"18999","name":"Nanjikottai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19000","name":"Nannilam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19001","name":"Naranammalpuram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19002","name":"Naranapuram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19003","name":"Narasimhanaickenpalayam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19004","name":"Narasingapuram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19005","name":"Narasojipatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19006","name":"Naravarikuppam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19007","name":"Nasiyanur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19008","name":"Natham","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19009","name":"Nathampannai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19010","name":"Natrampalli","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19011","name":"Nattam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19012","name":"Nattapettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19013","name":"Nattarasankottai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19014","name":"Navalpattu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19015","name":"Nazarethpettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19016","name":"Nazerath","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19017","name":"Neikkarapatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19018","name":"Neiyyur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19019","name":"Nellikkuppam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19020","name":"Nelliyalam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19021","name":"Nemili","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19022","name":"Nemilicheri","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19023","name":"Neripperichal","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19024","name":"Nerkunram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19025","name":"Nerkuppai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19026","name":"Nerunjipettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19027","name":"Neykkarappatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19028","name":"Neyveli","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19029","name":"Nidamangalam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19030","name":"Nilakkottai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19031","name":"Nilankarai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19032","name":"Odaipatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19033","name":"Odaiyakulam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19034","name":"Oddanchatram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19035","name":"Odugathur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19036","name":"Oggiyamduraipakkam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19037","name":"Olagadam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19038","name":"Omalur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19039","name":"Ooty","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19040","name":"Orathanadu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19041","name":"Othakadai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19042","name":"Othakalmandapam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19043","name":"Ottapparai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19044","name":"Pacode","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19045","name":"Padaividu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19046","name":"Padianallur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19047","name":"Padirikuppam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19048","name":"Padmanabhapuram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19049","name":"Padririvedu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19050","name":"Palaganangudy","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19051","name":"Palaimpatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19052","name":"Palakkodu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19053","name":"Palamedu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19054","name":"Palani","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19055","name":"Palani Chettipatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19056","name":"Palavakkam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19057","name":"Palavansathu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19058","name":"Palayakayal","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19059","name":"Palayam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19060","name":"Palayamkottai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19061","name":"Palladam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19062","name":"Pallapalayam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19063","name":"Pallapatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19064","name":"Pallattur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19065","name":"Pallavaram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19066","name":"Pallikaranai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19067","name":"Pallikonda","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19068","name":"Pallipalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19069","name":"Pallipalaiyam Agraharam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19070","name":"Pallipattu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19071","name":"Pammal","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19072","name":"Panagudi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19073","name":"Panaimarathupatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19074","name":"Panapakkam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19075","name":"Panboli","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19076","name":"Pandamangalam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19077","name":"Pannaikadu","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19078","name":"Pannaipuram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19079","name":"Pannuratti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19080","name":"Panruti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19081","name":"Papanasam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19082","name":"Pappankurichi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19083","name":"Papparapatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19084","name":"Pappireddipatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19085","name":"Paramakkudi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19086","name":"Paramankurichi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19087","name":"Paramathi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19088","name":"Parangippettai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19089","name":"Paravai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19090","name":"Pasur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19091","name":"Pathamadai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19092","name":"Pattinam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19093","name":"Pattiviranpatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19094","name":"Pattukkottai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19095","name":"Pazhugal","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19096","name":"Pennadam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19097","name":"Pennagaram","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19098","name":"Pennathur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19099","name":"Peraiyur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19100","name":"Peralam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19101","name":"Perambalur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19102","name":"Peranamallur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19103","name":"Peravurani","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19104","name":"Periyakodiveri","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19105","name":"Periyakulam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19106","name":"Periyanayakkanpalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19107","name":"Periyanegamam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19108","name":"Periyapatti","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19109","name":"Periyasemur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19110","name":"Pernambut","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19111","name":"Perumagalur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19112","name":"Perumandi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19113","name":"Perumuchi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19114","name":"Perundurai","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19115","name":"Perungalathur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19116","name":"Perungudi","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19117","name":"Perungulam","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19118","name":"Perur","city_id":"1626","created_at":"2024-01-21 12:06:25","updated_at":"2024-01-21 12:06:25","translations":null,"is_activated":"1"}, +{"id":"19119","name":"Perur Chettipalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19120","name":"Pethampalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19121","name":"Pethanaickenpalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19122","name":"Pillanallur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19123","name":"Pirkankaranai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19124","name":"Polichalur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19125","name":"Pollachi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19126","name":"Polur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19127","name":"Ponmani","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19128","name":"Ponnamaravathi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19129","name":"Ponnampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19130","name":"Ponneri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19131","name":"Porur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19132","name":"Pothanur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19133","name":"Pothatturpettai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19134","name":"Pudukadai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19135","name":"Pudukkottai Cantonment","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19136","name":"Pudukottai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19137","name":"Pudupalaiyam Aghraharam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19138","name":"Pudupalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19139","name":"Pudupatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19140","name":"Pudupattinam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19141","name":"Pudur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19142","name":"Puduvayal","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19143","name":"Pulambadi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19144","name":"Pulampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19145","name":"Puliyampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19146","name":"Puliyankudi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19147","name":"Puliyur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19148","name":"Pullampadi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19149","name":"Puluvapatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19150","name":"Punamalli","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19151","name":"Punjai Puliyampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19152","name":"Punjai Thottakurichi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19153","name":"Punjaipugalur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19154","name":"Puthalam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19155","name":"Putteri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19156","name":"Puvalur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19157","name":"Puzhal","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19158","name":"Puzhithivakkam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19159","name":"Rajapalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19160","name":"Ramanathapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19161","name":"Ranipet","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19162","name":"Rasipuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19163","name":"Rayagiri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19164","name":"Rithapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19165","name":"Rosalpatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19166","name":"Rudravathi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19167","name":"Sadayankuppam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19168","name":"Saint Thomas Mount","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19169","name":"Salangapalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19170","name":"Samalapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19171","name":"Samathur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19172","name":"Sambavar Vadagarai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19173","name":"Sankaramanallur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19174","name":"Sankarankoil","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19175","name":"Sankarapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19176","name":"Sankari","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19177","name":"Sankarnagar","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19178","name":"Saravanampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19179","name":"Sarcarsamakulam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19180","name":"Sathiyavijayanagaram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19181","name":"Sathuvachari","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19182","name":"Sathyamangalam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19183","name":"Sattankulam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19184","name":"Sattur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19185","name":"Sayalgudi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19186","name":"Sayapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19187","name":"Seithur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19188","name":"Sembakkam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19189","name":"Semmipalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19190","name":"Sennirkuppam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19191","name":"Senthamangalam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19192","name":"Sentharapatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19193","name":"Senur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19194","name":"Sethiathoppu","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19195","name":"Sevilimedu","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19196","name":"Sevugampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19197","name":"Shenbakkam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19198","name":"Shencottai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19199","name":"Shenkottai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19200","name":"Sholavandan","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19201","name":"Sholinganallur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19202","name":"Sholingur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19203","name":"Sholur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19204","name":"Sikkarayapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19205","name":"Singampuneri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19206","name":"Singanallur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19207","name":"Singaperumalkoil","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19208","name":"Sirapalli","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19209","name":"Sirkali","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19210","name":"Sirugamani","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19211","name":"Sirumugai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19212","name":"Sithayankottai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19213","name":"Sithurajapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19214","name":"Sivaganga","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19215","name":"Sivagiri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19216","name":"Sivakasi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19217","name":"Sivanthipuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19218","name":"Sivur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19219","name":"Soranjeri","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19220","name":"South Kannanur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19221","name":"South Kodikulam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19222","name":"Srimushnam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19223","name":"Sriperumpudur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19224","name":"Sriramapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19225","name":"Srirangam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19226","name":"Srivaikuntam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19227","name":"Srivilliputtur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19228","name":"Suchindram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19229","name":"Suliswaranpatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19230","name":"Sulur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19231","name":"Sundarapandiam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19232","name":"Sundarapandiapuram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19233","name":"Surampatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19234","name":"Surandai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19235","name":"Suriyampalayam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19236","name":"Swamimalai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19237","name":"TNPL Pugalur","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19238","name":"Tambaram","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19239","name":"Taramangalam","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19240","name":"Tattayyangarpettai","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19241","name":"Tayilupatti","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19242","name":"Tenkasi","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19243","name":"Thadikombu","city_id":"1626","created_at":"2024-01-21 12:06:26","updated_at":"2024-01-21 12:06:26","translations":null,"is_activated":"1"}, +{"id":"19244","name":"Thakkolam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19245","name":"Thalainayar","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19246","name":"Thalakudi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19247","name":"Thamaraikulam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19248","name":"Thammampatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19249","name":"Thanjavur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19250","name":"Thanthoni","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19251","name":"Tharangambadi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19252","name":"Thedavur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19253","name":"Thenambakkam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19254","name":"Thengampudur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19255","name":"Theni","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19256","name":"Theni Allinagaram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19257","name":"Thenkarai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19258","name":"Thenthamaraikulam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19259","name":"Thenthiruperai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19260","name":"Thesur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19261","name":"Thevaram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19262","name":"Thevur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19263","name":"Thiagadurgam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19264","name":"Thiagarajar Colony","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19265","name":"Thingalnagar","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19266","name":"Thiruchirapalli","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19267","name":"Thirukarungudi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19268","name":"Thirukazhukundram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19269","name":"Thirumalayampalayam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19270","name":"Thirumazhisai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19271","name":"Thirunagar","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19272","name":"Thirunageswaram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19273","name":"Thirunindravur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19274","name":"Thirunirmalai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19275","name":"Thiruparankundram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19276","name":"Thiruparappu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19277","name":"Thiruporur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19278","name":"Thiruppanandal","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19279","name":"Thirupuvanam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19280","name":"Thiruthangal","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19281","name":"Thiruthuraipundi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19282","name":"Thiruvaivaru","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19283","name":"Thiruvalam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19284","name":"Thiruvarur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19285","name":"Thiruvattaru","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19286","name":"Thiruvenkatam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19287","name":"Thiruvennainallur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19288","name":"Thiruvithankodu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19289","name":"Thisayanvilai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19290","name":"Thittacheri","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19291","name":"Thondamuthur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19292","name":"Thorapadi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19293","name":"Thottipalayam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19294","name":"Thottiyam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19295","name":"Thudiyalur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19296","name":"Thuthipattu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19297","name":"Thuvakudi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19298","name":"Timiri","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19299","name":"Tindivanam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19300","name":"Tinnanur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19301","name":"Tiruchchendur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19302","name":"Tiruchengode","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19303","name":"Tirukkalukkundram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19304","name":"Tirukkattuppalli","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19305","name":"Tirukkoyilur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19306","name":"Tirumangalam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19307","name":"Tirumullaivasal","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19308","name":"Tirumuruganpundi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19309","name":"Tirunageswaram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19310","name":"Tirunelveli","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19311","name":"Tirupathur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19312","name":"Tirupattur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19313","name":"Tiruppuvanam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19314","name":"Tirupur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19315","name":"Tirusulam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19316","name":"Tiruttani","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19317","name":"Tiruvallur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19318","name":"Tiruvannamalai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19319","name":"Tiruverambur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19320","name":"Tiruverkadu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19321","name":"Tiruvethipuram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19322","name":"Tiruvidaimarudur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19323","name":"Tiruvottiyur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19324","name":"Tittakudi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19325","name":"Tondi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19326","name":"Turaiyur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19327","name":"Tuticorin","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19328","name":"Udagamandalam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19329","name":"Udagamandalam Valley","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19330","name":"Udankudi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19331","name":"Udayarpalayam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19332","name":"Udumalaipettai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19333","name":"Udumalpet","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19334","name":"Ullur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19335","name":"Ulundurpettai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19336","name":"Unjalaur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19337","name":"Unnamalaikadai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19338","name":"Uppidamangalam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19339","name":"Uppiliapuram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19340","name":"Urachikkottai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19341","name":"Urapakkam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19342","name":"Usilampatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19343","name":"Uthangarai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19344","name":"Uthayendram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19345","name":"Uthiramerur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19346","name":"Uthukkottai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19347","name":"Uttamapalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19348","name":"Uttukkuli","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19349","name":"Vadakarai Kizhpadugai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19350","name":"Vadakkanandal","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19351","name":"Vadakku Valliyur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19352","name":"Vadalur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19353","name":"Vadamadurai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19354","name":"Vadavalli","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19355","name":"Vadipatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19356","name":"Vadugapatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19357","name":"Vaithiswarankoil","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19358","name":"Valangaiman","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19359","name":"Valasaravakkam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19360","name":"Valavanur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19361","name":"Vallam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19362","name":"Valparai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19363","name":"Valvaithankoshtam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19364","name":"Vanavasi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19365","name":"Vandalur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19366","name":"Vandavasi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19367","name":"Vandiyur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19368","name":"Vaniputhur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19369","name":"Vaniyambadi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19370","name":"Varadarajanpettai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19371","name":"Varadharajapuram","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19372","name":"Vasudevanallur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19373","name":"Vathirairuppu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19374","name":"Vattalkundu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19375","name":"Vazhapadi","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19376","name":"Vedapatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19377","name":"Vedaranniyam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19378","name":"Vedasandur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19379","name":"Velampalaiyam","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19380","name":"Velankanni","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19381","name":"Vellakinar","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19382","name":"Vellakoil","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19383","name":"Vellalapatti","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19384","name":"Vellalur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19385","name":"Vellanur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19386","name":"Vellimalai","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19387","name":"Vellore","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19388","name":"Vellottamparappu","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19389","name":"Velluru","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19390","name":"Vengampudur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19391","name":"Vengathur","city_id":"1626","created_at":"2024-01-21 12:06:27","updated_at":"2024-01-21 12:06:27","translations":null,"is_activated":"1"}, +{"id":"19392","name":"Vengavasal","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19393","name":"Venghatur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19394","name":"Venkarai","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19395","name":"Vennanthur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19396","name":"Veppathur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19397","name":"Verkilambi","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19398","name":"Vettaikaranpudur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19399","name":"Vettavalam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19400","name":"Vikramasingapuram","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19401","name":"Vikravandi","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19402","name":"Vilangudi","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19403","name":"Vilankurichi","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19404","name":"Vilapakkam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19405","name":"Vilathikulam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19406","name":"Vilavur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19407","name":"Villukuri","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19408","name":"Villupuram","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19409","name":"Viraganur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19410","name":"Virakeralam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19411","name":"Virakkalpudur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19412","name":"Virapandi","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19413","name":"Virapandi Cantonment","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19414","name":"Virappanchatram","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19415","name":"Viravanallur","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19416","name":"Virudambattu","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19417","name":"Virudhachalam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19418","name":"Virudhunagar","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19419","name":"Virupakshipuram","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19420","name":"Viswanatham","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19421","name":"Vriddhachalam","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19422","name":"Walajabad","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19423","name":"Walajapet","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19424","name":"Yercaud","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19425","name":"Zamin Uthukuli","city_id":"1626","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19426","name":"Achampet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19427","name":"Adilabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19428","name":"Armoor","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19429","name":"Asifabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19430","name":"Badepally","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19431","name":"Banswada","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19432","name":"Bellampalli","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19433","name":"Bhadrachalam","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19434","name":"Bhainsa","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19435","name":"Bhongir","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19436","name":"Bhupalpally","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19437","name":"Bodhan","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19438","name":"Bollaram","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19439","name":"Devarkonda","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19440","name":"Farooqnagar","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19441","name":"Gadwal","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19442","name":"Gajwel","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19443","name":"Ghatkesar","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19444","name":"Hyderabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19445","name":"Jagtial","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19446","name":"Jangaon","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19447","name":"Kagaznagar","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19448","name":"Kalwakurthy","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19449","name":"Kamareddy","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19450","name":"Karimnagar","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19451","name":"Khammam","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19452","name":"Kodada","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19453","name":"Koratla","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19454","name":"Kottagudem","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19455","name":"Kyathampalle","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19456","name":"Madhira","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19457","name":"Mahabubabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19458","name":"Mahbubnagar","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19459","name":"Mancherial","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19460","name":"Mandamarri","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19461","name":"Manuguru","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19462","name":"Medak","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19463","name":"Medchal","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19464","name":"Miryalaguda","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19465","name":"Nagar Karnul","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19466","name":"Nakrekal","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19467","name":"Nalgonda","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19468","name":"Narayanpet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19469","name":"Narsampet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19470","name":"Nirmal","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19471","name":"Nizamabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19472","name":"Palwancha","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19473","name":"Peddapalli","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19474","name":"Ramagundam","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19475","name":"Ranga Reddy district","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19476","name":"Sadasivpet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19477","name":"Sangareddy","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19478","name":"Sarapaka","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19479","name":"Sathupalle","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19480","name":"Secunderabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19481","name":"Siddipet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19482","name":"Singapur","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19483","name":"Sircilla","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19484","name":"Suryapet","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19485","name":"Tandur","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19486","name":"Vemulawada","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19487","name":"Vikarabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19488","name":"Wanaparthy","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19489","name":"Warangal","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19490","name":"Yellandu","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19491","name":"Zahirabad","city_id":"1627","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19492","name":"Agartala","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19493","name":"Ambassa","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19494","name":"Badharghat","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19495","name":"Belonia","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19496","name":"Dharmanagar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19497","name":"Gakulnagar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19498","name":"Gandhigram","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19499","name":"Indranagar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19500","name":"Jogendranagar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19501","name":"Kailasahar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19502","name":"Kamalpur","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19503","name":"Kanchanpur","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19504","name":"Khowai","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19505","name":"Kumarghat","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19506","name":"Kunjaban","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19507","name":"Ranir Bazar","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19508","name":"Sabrum","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19509","name":"Sonamura","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19510","name":"Teliamura","city_id":"1628","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19511","name":"Achhalda","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19512","name":"Achhnera","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19513","name":"Adari","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19514","name":"Afzalgarh","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19515","name":"Agarwal Mandi","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19516","name":"Agra","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19517","name":"Agra Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19518","name":"Ahraura","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19519","name":"Ailum","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19520","name":"Air Force Area","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19521","name":"Ajhuwa","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19522","name":"Akbarpur","city_id":"1629","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"is_activated":"1"}, +{"id":"19523","name":"Alapur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19524","name":"Aliganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19525","name":"Aligarh","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19526","name":"Allahabad","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19527","name":"Allahabad Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19528","name":"Allahganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19529","name":"Amanpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19530","name":"Ambahta","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19531","name":"Amethi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19532","name":"Amila","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19533","name":"Amilo","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19534","name":"Aminagar Sarai","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19535","name":"Aminagar Urf Bhurbaral","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19536","name":"Amraudha","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19537","name":"Amroha","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19538","name":"Anandnagar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19539","name":"Anpara","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19540","name":"Antu","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19541","name":"Anupshahr","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19542","name":"Aonla","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19543","name":"Armapur Estate","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19544","name":"Ashokpuram","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19545","name":"Ashrafpur Kichhauchha","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19546","name":"Atarra","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19547","name":"Atasu","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19548","name":"Atrauli","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19549","name":"Atraulia","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19550","name":"Auraiya","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19551","name":"Aurangabad Bangar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19552","name":"Auras","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19553","name":"Awagarh","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19554","name":"Ayodhya","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19555","name":"Azamgarh","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19556","name":"Azizpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19557","name":"Azmatgarh","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19558","name":"Babarpur Ajitmal","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19559","name":"Baberu","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19560","name":"Babina","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19561","name":"Babrala","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19562","name":"Babugarh","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19563","name":"Bachhiowan","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19564","name":"Bachhraon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19565","name":"Bad","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19566","name":"Badaun","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19567","name":"Baghpat","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19568","name":"Bah","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19569","name":"Baheri","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19570","name":"Bahjoi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19571","name":"Bahraich","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19572","name":"Bahsuma","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19573","name":"Bahua","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19574","name":"Bakewar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19575","name":"Bakiabad","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19576","name":"Baldeo","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19577","name":"Ballia","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19578","name":"Balrampur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19579","name":"Banat","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19580","name":"Bangarmau","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19581","name":"Bansdih","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19582","name":"Bansgaon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19583","name":"Bansi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19584","name":"Barabanki","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19585","name":"Baragaon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19586","name":"Baraut","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19587","name":"Bareilly","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19588","name":"Bareilly Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19589","name":"Barhalganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19590","name":"Barhani","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19591","name":"Barhapur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19592","name":"Barkhera","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19593","name":"Barsana","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19594","name":"Barva Sagar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19595","name":"Barwar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19596","name":"Basti","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19597","name":"Begumabad Budhana","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19598","name":"Behat","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19599","name":"Behta Hajipur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19600","name":"Bela","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19601","name":"Belthara","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19602","name":"Beniganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19603","name":"Beswan","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19604","name":"Bewar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19605","name":"Bhadarsa","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19606","name":"Bhadohi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19607","name":"Bhagwantnagar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19608","name":"Bharatganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19609","name":"Bhargain","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19610","name":"Bharthana","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19611","name":"Bharuhana","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19612","name":"Bharwari","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19613","name":"Bhatni Bazar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19614","name":"Bhatpar Rani","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19615","name":"Bhawan Bahadurnagar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19616","name":"Bhinga","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19617","name":"Bhojpur Dharampur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19618","name":"Bhokarhedi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19619","name":"Bhongaon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19620","name":"Bhulepur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19621","name":"Bidhuna","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19622","name":"Bighapur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19623","name":"Bijnor","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19624","name":"Bijpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19625","name":"Bikapur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19626","name":"Bilari","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19627","name":"Bilgram","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19628","name":"Bilhaur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19629","name":"Bilram","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19630","name":"Bilrayaganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19631","name":"Bilsanda","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19632","name":"Bilsi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19633","name":"Bindki","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19634","name":"Bisalpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19635","name":"Bisanda Buzurg","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19636","name":"Bisauli","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19637","name":"Bisharatganj","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19638","name":"Bisokhar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19639","name":"Biswan","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19640","name":"Bithur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19641","name":"Budaun","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19642","name":"Bugrasi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19643","name":"Bulandshahar","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19644","name":"Burhana","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19645","name":"Chail","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19646","name":"Chak Imam Ali","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19647","name":"Chakeri","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19648","name":"Chandauli","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19649","name":"Chandausi","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19650","name":"Charkhari","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19651","name":"Charthawal","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19652","name":"Chaumuhan","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19653","name":"Chhaprauli","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19654","name":"Chhara Rafatpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19655","name":"Chharprauli","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19656","name":"Chhata","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19657","name":"Chhatari","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19658","name":"Chhibramau","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19659","name":"Chhutmalpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19660","name":"Chilkana Sultanpur","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19661","name":"Chirgaon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19662","name":"Chit Baragaon","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19663","name":"Chitrakut Dham","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19664","name":"Chopan","city_id":"1629","created_at":"2024-01-21 12:06:29","updated_at":"2024-01-21 12:06:29","translations":null,"is_activated":"1"}, +{"id":"19665","name":"Choubepur Kalan","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19666","name":"Chunar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19667","name":"Churk Ghurma","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19668","name":"Colonelganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19669","name":"Dadri","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19670","name":"Dalmau","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19671","name":"Dankaur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19672","name":"Dariyabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19673","name":"Dasna","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19674","name":"Dataganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19675","name":"Daurala","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19676","name":"Dayal Bagh","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19677","name":"Deoband","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19678","name":"Deoranian","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19679","name":"Deoria","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19680","name":"Dewa","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19681","name":"Dhampur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19682","name":"Dhanauha","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19683","name":"Dhanauli","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19684","name":"Dhanaura","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19685","name":"Dharoti Khurd","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19686","name":"Dhauratanda","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19687","name":"Dhaurhra","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19688","name":"Dibai","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19689","name":"Dibiyapur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19690","name":"Dildarnagar Fatehpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19691","name":"Do Ghat","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19692","name":"Dohrighat","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19693","name":"Dostpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19694","name":"Dudhinagar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19695","name":"Dulhipur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19696","name":"Dundwaraganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19697","name":"Ekdil","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19698","name":"Erich","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19699","name":"Etah","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19700","name":"Etawah","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19701","name":"Faizabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19702","name":"Faizabad Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19703","name":"Faizganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19704","name":"Farah","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19705","name":"Faridnagar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19706","name":"Faridpur Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19707","name":"Fariha","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19708","name":"Farrukhabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19709","name":"Fatehganj Pashchimi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19710","name":"Fatehganj Purvi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19711","name":"Fatehgarh","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19712","name":"Fatehpur Chaurasi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19713","name":"Fatehpur Sikri","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19714","name":"Firozabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19715","name":"Gajraula","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19716","name":"Ganga Ghat","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19717","name":"Gangoh","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19718","name":"Ganj Muradabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19719","name":"Garautha","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19720","name":"Garhi Pukhta","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19721","name":"Garhmukteshwar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19722","name":"Gaura Barahaj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19723","name":"Gauri Bazar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19724","name":"Gausganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19725","name":"Gawan","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19726","name":"Ghatampur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19727","name":"Ghaziabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19728","name":"Ghazipur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19729","name":"Ghiror","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19730","name":"Ghorawal","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19731","name":"Ghosi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19732","name":"Ghosia Bazar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19733","name":"Ghughuli","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19734","name":"Gohand","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19735","name":"Gokul","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19736","name":"Gola Bazar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19737","name":"Gola Gokarannath","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19738","name":"Gonda","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19739","name":"Gopamau","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19740","name":"Gopiganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19741","name":"Gorakhpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19742","name":"Gosainganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19743","name":"Govardhan","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19744","name":"Greater Noida","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19745","name":"Gulaothi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19746","name":"Gulariya","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19747","name":"Gulariya Bhindara","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19748","name":"Gunnaur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19749","name":"Gursahaiganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19750","name":"Gursarai","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19751","name":"Gyanpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19752","name":"Hafizpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19753","name":"Haidergarh","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19754","name":"Haldaur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19755","name":"Handia","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19756","name":"Hapur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19757","name":"Hardoi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19758","name":"Harduaganj","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19759","name":"Hargaon","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19760","name":"Hariharpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19761","name":"Harraiya","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19762","name":"Hasayan","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19763","name":"Hastinapur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19764","name":"Hata","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19765","name":"Hathras","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19766","name":"Ibrahimpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19767","name":"Iglas","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19768","name":"Ikauna","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19769","name":"Iltifatganj Bazar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19770","name":"Indian Telephone Industry Mank","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19771","name":"Islamnagar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19772","name":"Itaunja","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19773","name":"Itimadpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19774","name":"Jagner","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19775","name":"Jahangirabad","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19776","name":"Jahangirpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19777","name":"Jais","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19778","name":"Jaithara","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19779","name":"Jalali","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19780","name":"Jalalpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19781","name":"Jalaun","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19782","name":"Jalesar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19783","name":"Jamshila","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19784","name":"Jangipur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19785","name":"Jansath","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19786","name":"Jarwal","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19787","name":"Jasrana","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19788","name":"Jaswantnagar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19789","name":"Jatari","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19790","name":"Jaunpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19791","name":"Jewar","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19792","name":"Jhalu","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19793","name":"Jhansi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19794","name":"Jhansi Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19795","name":"Jhansi Railway Settlement","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19796","name":"Jhinjhak","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19797","name":"Jhinjhana","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19798","name":"Jhusi","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19799","name":"Jhusi Kohna","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19800","name":"Jiyanpur","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19801","name":"Joya","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19802","name":"Jyoti Khuria","city_id":"1629","created_at":"2024-01-21 12:06:30","updated_at":"2024-01-21 12:06:30","translations":null,"is_activated":"1"}, +{"id":"19803","name":"Jyotiba Phule Nagar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19804","name":"Kabrai","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19805","name":"Kachhauna Patseni","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19806","name":"Kachhla","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19807","name":"Kachhwa","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19808","name":"Kadaura","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19809","name":"Kadipur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19810","name":"Kailashpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19811","name":"Kaimganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19812","name":"Kairana","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19813","name":"Kakgaina","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19814","name":"Kakod","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19815","name":"Kakori","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19816","name":"Kakrala","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19817","name":"Kalinagar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19818","name":"Kalpi","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19819","name":"Kamalganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19820","name":"Kampil","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19821","name":"Kandhla","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19822","name":"Kandwa","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19823","name":"Kannauj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19824","name":"Kanpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19825","name":"Kant","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19826","name":"Kanth","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19827","name":"Kaptanganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19828","name":"Karaon","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19829","name":"Karari","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19830","name":"Karhal","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19831","name":"Karnawal","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19832","name":"Kasganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19833","name":"Katariya","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19834","name":"Katghar Lalganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19835","name":"Kathera","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19836","name":"Katra Medniganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19837","name":"Kauriaganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19838","name":"Kemri","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19839","name":"Kerakat","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19840","name":"Khadda","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19841","name":"Khaga","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19842","name":"Khailar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19843","name":"Khair","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19844","name":"Khairabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19845","name":"Khalilabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19846","name":"Kharela","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19847","name":"Khargupur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19848","name":"Khariya","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19849","name":"Khatauli","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19850","name":"Khatauli Rural","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19851","name":"Khekra","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19852","name":"Kheri","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19853","name":"Kheta Sarai","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19854","name":"Khudaganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19855","name":"Khurja","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19856","name":"Khutar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19857","name":"Kiraoli","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19858","name":"Kiratpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19859","name":"Kishanpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19860","name":"Kishni","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19861","name":"Kithaur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19862","name":"Koiripur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19863","name":"Konch","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19864","name":"Kopaganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19865","name":"Kora Jahanabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19866","name":"Korwa","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19867","name":"Kosi Kalan","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19868","name":"Kotra","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19869","name":"Kotwa","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19870","name":"Kulpahar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19871","name":"Kundarki","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19872","name":"Kunwargaon","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19873","name":"Kurara","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19874","name":"Kurawali","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19875","name":"Kursath","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19876","name":"Kurthi Jafarpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19877","name":"Kushinagar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19878","name":"Kusmara","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19879","name":"Laharpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19880","name":"Lakhna","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19881","name":"Lalitpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19882","name":"Lar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19883","name":"Lawar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19884","name":"Ledwa Mahuwa","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19885","name":"Lohta","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19886","name":"Loni","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19887","name":"Machhlishahr","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19888","name":"Madhoganj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19889","name":"Maghar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19890","name":"Mahaban","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19891","name":"Mahmudabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19892","name":"Mahoba","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19893","name":"Maholi","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19894","name":"Mahona","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19895","name":"Mahroni","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19896","name":"Mailani","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19897","name":"Mainpuri","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19898","name":"Majhara Pipar Ehatmali","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19899","name":"Majhauli Raj","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19900","name":"Malihabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19901","name":"Mallanwam","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19902","name":"Manikpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19903","name":"Maniyar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19904","name":"Manjhanpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19905","name":"Mankapur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19906","name":"Marehra","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19907","name":"Mariahu","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19908","name":"Maruadih","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19909","name":"Maswasi","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19910","name":"Mataundh","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19911","name":"Mathu","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19912","name":"Mathura","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19913","name":"Mathura Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19914","name":"Mau Aima","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19915","name":"Maudaha","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19916","name":"Mauranipur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19917","name":"Maurawan","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19918","name":"Meerut","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19919","name":"Mehnagar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19920","name":"Mehndawal","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19921","name":"Mendu","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19922","name":"Milak","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19923","name":"Miranpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19924","name":"Mirat","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19925","name":"Mirat Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19926","name":"Misrikh","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19927","name":"Modinagar","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19928","name":"Mogra Badshahpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19929","name":"Mohan","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19930","name":"Mohanpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19931","name":"Mohiuddinpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19932","name":"Moradabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19933","name":"Moth","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19934","name":"Mubarakpur","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19935","name":"Mughal Sarai","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19936","name":"Mughal Sarai Railway Settlemen","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19937","name":"Muhammadabad","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19938","name":"Muhammadi","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19939","name":"Mukrampur Khema","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19940","name":"Mundia","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19941","name":"Mundora","city_id":"1629","created_at":"2024-01-21 12:06:31","updated_at":"2024-01-21 12:06:31","translations":null,"is_activated":"1"}, +{"id":"19942","name":"Muradnagar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19943","name":"Mursan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19944","name":"Musafirkhana","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19945","name":"Muzaffarnagar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19946","name":"Nadigaon","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19947","name":"Nagina","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19948","name":"Nagram","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19949","name":"Nai Bazar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19950","name":"Nainana Jat","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19951","name":"Najibabad","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19952","name":"Nakur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19953","name":"Nanaunta","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19954","name":"Nanpara","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19955","name":"Naraini","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19956","name":"Narauli","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19957","name":"Naraura","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19958","name":"Naugawan Sadat","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19959","name":"Nautanwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19960","name":"Nichlaul","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19961","name":"Nidhauli Kalan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19962","name":"Nihtaur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19963","name":"Nindaura","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19964","name":"Noida","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19965","name":"Northern Railway Colony","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19966","name":"Nyoria Husenpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19967","name":"Nyotini","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19968","name":"Obra","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19969","name":"Oel Dhakwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19970","name":"Orai","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19971","name":"Ordinance Factory Muradnagar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19972","name":"Pachperwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19973","name":"Padrauna","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19974","name":"Pahasu","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19975","name":"Paintepur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19976","name":"Palia Kalan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19977","name":"Parasi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19978","name":"Parichha","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19979","name":"Parichhatgarh","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19980","name":"Parsadepur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19981","name":"Patala","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19982","name":"Patiyali","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19983","name":"Pawayan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19984","name":"Phalauda","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19985","name":"Phaphund","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19986","name":"Phulpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19987","name":"Phulwaria","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19988","name":"Pihani","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19989","name":"Pilibhit","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19990","name":"Pilkana","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19991","name":"Pilkhuwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19992","name":"Pinahat","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19993","name":"Pipalsana Chaudhari","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19994","name":"Pipiganj","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19995","name":"Pipraich","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19996","name":"Pipri","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19997","name":"Pukhrayan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19998","name":"Puranpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"19999","name":"Purdil Nagar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20000","name":"Purqazi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20001","name":"Purwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20002","name":"Qasimpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20003","name":"Rabupura","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20004","name":"Radha Kund","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20005","name":"Rae Bareilly","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20006","name":"Raja Ka Rampur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20007","name":"Ramkola","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20008","name":"Rampur Bhawanipur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20009","name":"Rampur Karkhana","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20010","name":"Rampur Maniharan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20011","name":"Ranipur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20012","name":"Rashidpur Garhi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20013","name":"Rasra","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20014","name":"Rasulabad","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20015","name":"Rath","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20016","name":"Raya","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20017","name":"Renukut","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20018","name":"Reoti","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20019","name":"Richha","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20020","name":"Risia Bazar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20021","name":"Rithora","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20022","name":"Robertsganj","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20023","name":"Roza","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20024","name":"Rudarpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20025","name":"Rudauli","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20026","name":"Rudayan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20027","name":"Rura","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20028","name":"Rustamnagar Sahaspur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20029","name":"Sabatwar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20030","name":"Sadabad","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20031","name":"Sadat","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20032","name":"Safipur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20033","name":"Sahanpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20034","name":"Saharanpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20035","name":"Sahaspur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20036","name":"Sahaswan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20037","name":"Sahawar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20038","name":"Sahibabad","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20039","name":"Sahjanwa","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20040","name":"Sahpau","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20041","name":"Saidpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20042","name":"Sainthal","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20043","name":"Saiyadraja","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20044","name":"Sakhanu","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20045","name":"Sakit","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20046","name":"Salarpur Khadar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20047","name":"Salimpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20048","name":"Salon","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20049","name":"Sambhal","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20050","name":"Sambhawali","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20051","name":"Samdhan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20052","name":"Samthar","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20053","name":"Sandi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20054","name":"Sandila","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20055","name":"Sarai Mir","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20056","name":"Sarai akil","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20057","name":"Sarauli","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20058","name":"Sardhana","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20059","name":"Sarila","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20060","name":"Sarsawan","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20061","name":"Sasni","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20062","name":"Satrikh","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20063","name":"Saunkh","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20064","name":"Saurikh","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20065","name":"Seohara","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20066","name":"Sewal Khas","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20067","name":"Sewarhi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20068","name":"Shahganj","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20069","name":"Shahi","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20070","name":"Shahjahanpur","city_id":"1629","created_at":"2024-01-21 12:06:32","updated_at":"2024-01-21 12:06:32","translations":null,"is_activated":"1"}, +{"id":"20071","name":"Shahjahanpur Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20072","name":"Shamli","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20073","name":"Shamsabad","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20074","name":"Shankargarh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20075","name":"Shergarh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20076","name":"Sherkot","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20077","name":"Shikohabad","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20078","name":"Shisgarh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20079","name":"Shivdaspur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20080","name":"Shivli","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20081","name":"Shohratgarh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20082","name":"Siddhanur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20083","name":"Siddharthnagar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20084","name":"Sidhauli","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20085","name":"Sidhpura","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20086","name":"Sikandarabad","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20087","name":"Sikandarpur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20088","name":"Sikandra","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20089","name":"Sikandra Rao","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20090","name":"Singahi Bhiraura","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20091","name":"Sirathu","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20092","name":"Sirsaganj","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20093","name":"Sisauli","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20094","name":"Siswa Bazar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20095","name":"Sitapur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20096","name":"Siyana","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20097","name":"Som","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20098","name":"Sonbhadra","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20099","name":"Soron","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20100","name":"Suar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20101","name":"Sukhmalpur Nizamabad","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20102","name":"Suriyawan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20103","name":"Swamibagh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20104","name":"Tajpur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20105","name":"Talbahat","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20106","name":"Talgram","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20107","name":"Tambaur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20108","name":"Tatarpur Lallu","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20109","name":"Tetribazar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20110","name":"Thakurdwara","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20111","name":"Thana Bhawan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20112","name":"Thiriya Nizamat Khan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20113","name":"Tikaitnagar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20114","name":"Tikri","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20115","name":"Tilhar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20116","name":"Tindwari","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20117","name":"Tirwaganj","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20118","name":"Titron","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20119","name":"Tori Fatehpur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20120","name":"Tulsipur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20121","name":"Tundla","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20122","name":"Tundla Kham","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20123","name":"Tundla Railway Colony","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20124","name":"Ugu","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20125","name":"Ujhani","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20126","name":"Ujhari","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20127","name":"Umri","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20128","name":"Umri Kalan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20129","name":"Unchahar","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20130","name":"Unnao","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20131","name":"Usaihat","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20132","name":"Usawan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20133","name":"Utraula","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20134","name":"Varanasi","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20135","name":"Varanasi Cantonment","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20136","name":"Vijaigarh","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20137","name":"Vrindavan","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20138","name":"Wazirganj","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20139","name":"Zafarabad","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20140","name":"Zaidpur","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20141","name":"Zamania","city_id":"1629","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20142","name":"Almora","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20143","name":"Almora Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20144","name":"Badrinathpuri","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20145","name":"Bageshwar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20146","name":"Bah Bazar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20147","name":"Banbasa","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20148","name":"Bandia","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20149","name":"Barkot","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20150","name":"Bazpur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20151","name":"Bhim Tal","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20152","name":"Bhowali","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20153","name":"Chakrata","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20154","name":"Chamoli and Gopeshwar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20155","name":"Champawat","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20156","name":"Clement Town","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20157","name":"Dehra Dun Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20158","name":"Dehradun","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20159","name":"Dehrakhas","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20160","name":"Devaprayag","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20161","name":"Dhaluwala","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20162","name":"Dhandera","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20163","name":"Dharchula","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20164","name":"Dharchula Dehat","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20165","name":"Didihat","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20166","name":"Dineshpur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20167","name":"Doiwala","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20168","name":"Dugadda","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20169","name":"Dwarahat","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20170","name":"Gadarpur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20171","name":"Gangotri","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20172","name":"Gauchar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20173","name":"Haldwani","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20174","name":"Haridwar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20175","name":"Herbertpur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20176","name":"Jaspur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20177","name":"Jhabrera","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20178","name":"Joshimath","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20179","name":"Kachnal Gosain","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20180","name":"Kaladungi","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20181","name":"Kalagarh","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20182","name":"Karnaprayang","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20183","name":"Kashipur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20184","name":"Kashirampur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20185","name":"Kausani","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20186","name":"Kedarnath","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20187","name":"Kelakhera","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20188","name":"Khatima","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20189","name":"Kichha","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20190","name":"Kirtinagar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20191","name":"Kotdwara","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20192","name":"Laksar","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20193","name":"Lalkuan","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20194","name":"Landaura","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20195","name":"Landhaura Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20196","name":"Lensdaun","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20197","name":"Logahat","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20198","name":"Mahua Dabra Haripura","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20199","name":"Mahua Kheraganj","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20200","name":"Manglaur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20201","name":"Masuri","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20202","name":"Mohanpur Mohammadpur","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20203","name":"Muni Ki Reti","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20204","name":"Nagla","city_id":"1630","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"is_activated":"1"}, +{"id":"20205","name":"Nainital","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20206","name":"Nainital Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20207","name":"Nandaprayang","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20208","name":"Narendranagar","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20209","name":"Pauri","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20210","name":"Pithoragarh","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20211","name":"Pratitnagar","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20212","name":"Raiwala","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20213","name":"Ranikhet","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20214","name":"Rishikesh","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20215","name":"Rishikesh Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20216","name":"Roorkee","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20217","name":"Rudraprayag","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20218","name":"Rudrapur","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20219","name":"Rurki","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20220","name":"Rurki Cantonment","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20221","name":"Shaktigarh","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20222","name":"Sitarganj","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20223","name":"Tanakpur","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20224","name":"Tehri","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20225","name":"Udham Singh Nagar","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20226","name":"Uttarkashi","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20227","name":"Vikasnagar","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20228","name":"Virbhadra","city_id":"1630","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20229","name":"24 Parganas (n)","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20230","name":"24 Parganas (s)","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20231","name":"Adra","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20232","name":"Aiho","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20233","name":"Aistala","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20234","name":"Alipur Duar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20235","name":"Alipur Duar Railway Junction","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20236","name":"Alpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20237","name":"Amalhara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20238","name":"Amkula","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20239","name":"Amlagora","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20240","name":"Amodghata","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20241","name":"Amtala","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20242","name":"Andul","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20243","name":"Anksa","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20244","name":"Ankurhati","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20245","name":"Anup Nagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20246","name":"Arambagh","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20247","name":"Argari","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20248","name":"Arsha","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20249","name":"Asansol","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20250","name":"Ashoknagar Kalyangarh","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20251","name":"Bablari Dewanganj","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20252","name":"Badhagachhi","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20253","name":"Baduria","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20254","name":"Baghdogra","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20255","name":"Bagnan","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20256","name":"Bagra","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20257","name":"Bagula","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20258","name":"Baharampur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20259","name":"Bahirgram","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20260","name":"Bahula","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20261","name":"Baidyabati","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20262","name":"Bairatisal","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20263","name":"Baj Baj","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20264","name":"Bakreswar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20265","name":"Balaram Pota","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20266","name":"Balarampur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20267","name":"Bali Chak","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20268","name":"Ballavpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20269","name":"Bally","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20270","name":"Balurghat","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20271","name":"Bamunari","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20272","name":"Banarhat Tea Garden","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20273","name":"Bandel","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20274","name":"Bangaon","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20275","name":"Bankra","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20276","name":"Bankura","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20277","name":"Bansbaria","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20278","name":"Banshra","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20279","name":"Banupur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20280","name":"Bara Bamonia","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20281","name":"Barakpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20282","name":"Barakpur Cantonment","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20283","name":"Baranagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20284","name":"Barasat","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20285","name":"Barddhaman","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20286","name":"Barijhati","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20287","name":"Barjora","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20288","name":"Barrackpore","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20289","name":"Baruihuda","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20290","name":"Baruipur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20291","name":"Barunda","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20292","name":"Basirhat","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20293","name":"Baska","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20294","name":"Begampur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20295","name":"Beldanga","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20296","name":"Beldubi","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20297","name":"Belebathan","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20298","name":"Beliator","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20299","name":"Bhadreswar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20300","name":"Bhandardaha","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20301","name":"Bhangar Raghunathpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20302","name":"Bhangri Pratham Khanda","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20303","name":"Bhanowara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20304","name":"Bhatpara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20305","name":"Bholar Dabri","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20306","name":"Bidhannagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20307","name":"Bidyadharpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20308","name":"Biki Hakola","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20309","name":"Bilandapur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20310","name":"Bilpahari","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20311","name":"Bipra Noapara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20312","name":"Birlapur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20313","name":"Birnagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20314","name":"Bisarpara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20315","name":"Bolpur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20316","name":"Bongaon","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20317","name":"Bowali","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20318","name":"Burdwan","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20319","name":"Canning","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20320","name":"Cart Road","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20321","name":"Chachanda","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20322","name":"Chak Bankola","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20323","name":"Chak Enayetnagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20324","name":"Chak Kashipur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20325","name":"Chakalampur","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20326","name":"Chakbansberia","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20327","name":"Chakdaha","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20328","name":"Chakpara","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20329","name":"Champahati","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20330","name":"Champdani","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20331","name":"Chamrail","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20332","name":"Chandannagar","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20333","name":"Chandrakona","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20334","name":"Chapari","city_id":"1632","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"is_activated":"1"}, +{"id":"20335","name":"Chapui","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20336","name":"Char Brahmanagar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20337","name":"Char Maijdia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20338","name":"Charka","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20339","name":"Chata Kalikapur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20340","name":"Chauhati","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20341","name":"Checha Khata","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20342","name":"Chelad","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20343","name":"Chhora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20344","name":"Chikrand","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20345","name":"Chittaranjan","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20346","name":"Contai","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20347","name":"Cooch Behar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20348","name":"Dainhat","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20349","name":"Dakshin Baguan","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20350","name":"Dakshin Jhapardaha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20351","name":"Dakshin Rajyadharpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20352","name":"Dakshin Raypur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20353","name":"Dalkola","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20354","name":"Dalurband","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20355","name":"Darap Pur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20356","name":"Darjiling","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20357","name":"Debipur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20358","name":"Defahat","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20359","name":"Deora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20360","name":"Deulia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20361","name":"Dhakuria","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20362","name":"Dhandadihi","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20363","name":"Dhanyakuria","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20364","name":"Dharmapur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20365","name":"Dhatri Gram","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20366","name":"Dhuilya","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20367","name":"Dhulagari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20368","name":"Dhulian","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20369","name":"Dhupgari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20370","name":"Dhusaripara","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20371","name":"Diamond Harbour","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20372","name":"Digha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20373","name":"Dignala","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20374","name":"Dinhata","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20375","name":"Dubrajpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20376","name":"Dumjor","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20377","name":"Durllabhganj","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20378","name":"Egra","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20379","name":"Eksara","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20380","name":"Falakata","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20381","name":"Farakka","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20382","name":"Fatellapur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20383","name":"Fort Gloster","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20384","name":"Gabberia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20385","name":"Gadigachha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20386","name":"Gairkata","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20387","name":"Gangarampur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20388","name":"Garalgachha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20389","name":"Garbeta Amlagora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20390","name":"Garhbeta","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20391","name":"Garshyamnagar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20392","name":"Garui","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20393","name":"Garulia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20394","name":"Gayespur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20395","name":"Ghatal","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20396","name":"Ghorsala","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20397","name":"Goaljan","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20398","name":"Goasafat","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20399","name":"Gobardanga","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20400","name":"Gobindapur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20401","name":"Gopinathpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20402","name":"Gora Bazar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20403","name":"Guma","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20404","name":"Gurdaha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20405","name":"Guriahati","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20406","name":"Guskhara","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20407","name":"Habra","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20408","name":"Haldia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20409","name":"Haldibari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20410","name":"Halisahar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20411","name":"Haora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20412","name":"Harharia Chak","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20413","name":"Harindanga","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20414","name":"Haringhata","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20415","name":"Haripur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20416","name":"Harishpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20417","name":"Hatgachha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20418","name":"Hatsimla","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20419","name":"Hijuli","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20420","name":"Hindustan Cables Town","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20421","name":"Hooghly","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20422","name":"Howrah","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20423","name":"Hugli-Chunchura","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20424","name":"Humaipur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20425","name":"Ichha Pur Defence Estate","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20426","name":"Ingraj Bazar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20427","name":"Jafarpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20428","name":"Jagadanandapur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20429","name":"Jagdishpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20430","name":"Jagtaj","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20431","name":"Jala Kendua","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20432","name":"Jaldhaka","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20433","name":"Jalkhura","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20434","name":"Jalpaiguri","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20435","name":"Jamuria","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20436","name":"Jaygaon","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20437","name":"Jaynagar-Majilpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20438","name":"Jemari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20439","name":"Jemari Township","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20440","name":"Jetia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20441","name":"Jhalida","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20442","name":"Jhargram","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20443","name":"Jhorhat","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20444","name":"Jiaganj-Azimganj","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20445","name":"Joka","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20446","name":"Jot Kamal","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20447","name":"Kachu Pukur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20448","name":"Kajora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20449","name":"Kakdihi","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20450","name":"Kakdwip","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20451","name":"Kalaikunda","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20452","name":"Kalara","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20453","name":"Kalimpong","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20454","name":"Kaliyaganj","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20455","name":"Kalna","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20456","name":"Kalyani","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20457","name":"Kamarhati","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20458","name":"Kanaipur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20459","name":"Kanchrapara","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20460","name":"Kanki","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20461","name":"Kankuria","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20462","name":"Kantlia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20463","name":"Kanyanagar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20464","name":"Karimpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20465","name":"Karsiyang","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20466","name":"Kasimbazar","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20467","name":"Katwa","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20468","name":"Kaugachhi","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20469","name":"Kenda","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20470","name":"Kendra Khottamdi","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20471","name":"Kendua","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20472","name":"Kesabpur","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20473","name":"Khagrabari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20474","name":"Khalia","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20475","name":"Khalor","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20476","name":"Khandra","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20477","name":"Khantora","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20478","name":"Kharagpur Railway Settlement","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20479","name":"Khardaha","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20480","name":"Khari Mala Khagrabari","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20481","name":"Kharsarai","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20482","name":"Khatra","city_id":"1632","created_at":"2024-01-21 12:06:35","updated_at":"2024-01-21 12:06:35","translations":null,"is_activated":"1"}, +{"id":"20483","name":"Khodarampur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20484","name":"Kodalia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20485","name":"Kolaghat","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20486","name":"Kolaghat Thermal Power Project","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20487","name":"Kolkata","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20488","name":"Konardihi","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20489","name":"Konnogar","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20490","name":"Krishnanagar","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20491","name":"Krishnapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20492","name":"Kshidirpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20493","name":"Kshirpai","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20494","name":"Kulihanda","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20495","name":"Kulti","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20496","name":"Kunustara","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20497","name":"Kuperskem","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20498","name":"Madanpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20499","name":"Madhusudanpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20500","name":"Madhyamgram","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20501","name":"Maheshtala","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20502","name":"Mahiari","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20503","name":"Mahikpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20504","name":"Mahira","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20505","name":"Mahishadal","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20506","name":"Mainaguri","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20507","name":"Makardaha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20508","name":"Mal","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20509","name":"Mandarbani","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20510","name":"Mansinhapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20511","name":"Masila","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20512","name":"Maslandapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20513","name":"Mathabhanga","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20514","name":"Mekliganj","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20515","name":"Memari","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20516","name":"Midnapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20517","name":"Mirik","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20518","name":"Monoharpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20519","name":"Mrigala","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20520","name":"Muragachha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20521","name":"Murgathaul","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20522","name":"Murshidabad","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20523","name":"Nabadhai Dutta Pukur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20524","name":"Nabagram","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20525","name":"Nabgram","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20526","name":"Nachhratpur Katabari","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20527","name":"Nadia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20528","name":"Naihati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20529","name":"Nalhati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20530","name":"Nasra","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20531","name":"Natibpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20532","name":"Naupala","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20533","name":"Navadwip","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20534","name":"Nebadhai Duttapukur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20535","name":"New Barrackpore","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20536","name":"Ni Barakpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20537","name":"Nibra","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20538","name":"Noapara","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20539","name":"Nokpul","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20540","name":"North Barakpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20541","name":"Odlabari","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20542","name":"Old Maldah","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20543","name":"Ondal","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20544","name":"Pairagachha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20545","name":"Palashban","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20546","name":"Panchla","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20547","name":"Panchpara","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20548","name":"Pandua","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20549","name":"Pangachhiya","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20550","name":"Paniara","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20551","name":"Panihati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20552","name":"Panuhat","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20553","name":"Par Beliya","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20554","name":"Parashkol","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20555","name":"Parbbatipur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20556","name":"Parui","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20557","name":"Paschim Jitpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20558","name":"Paschim Punro Para","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20559","name":"Patrasaer","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20560","name":"Pattabong Tea Garden","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20561","name":"Patuli","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20562","name":"Patulia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20563","name":"Phulia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20564","name":"Podara","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20565","name":"Prayagpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20566","name":"Pujali","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20567","name":"Purba Medinipur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20568","name":"Purba Tajpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20569","name":"Purulia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20570","name":"Raghudebbati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20571","name":"Raghudebpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20572","name":"Raghunathchak","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20573","name":"Raghunathpur-Dankuni","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20574","name":"Raghunathpur-Magra","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20575","name":"Raigachhi","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20576","name":"Raiganj","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20577","name":"Rajarhat Gopalpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20578","name":"Ramchandrapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20579","name":"Ramjibanpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20580","name":"Rampur Hat","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20581","name":"Ranaghat","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20582","name":"Raniganj","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20583","name":"Ratibati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20584","name":"Rishra","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20585","name":"Rishra Cantonment","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20586","name":"Ruiya","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20587","name":"Sahajadpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20588","name":"Sahapur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20589","name":"Sainthia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20590","name":"Salap","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20591","name":"Sankarpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20592","name":"Sankrail","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20593","name":"Santoshpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20594","name":"Saontaidih","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20595","name":"Sarenga","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20596","name":"Sarpi","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20597","name":"Satigachha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20598","name":"Serpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20599","name":"Shankhanagar","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20600","name":"Shantipur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20601","name":"Siduli","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20602","name":"Siliguri","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20603","name":"Simla","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20604","name":"Singur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20605","name":"Sirsha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20606","name":"Siuri","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20607","name":"Sobhaganj","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20608","name":"Sodpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20609","name":"Sonamukhi","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20610","name":"Sonatikiri","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20611","name":"Srikantabati","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20612","name":"Srirampur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20613","name":"Sukdal","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20614","name":"Taherpur","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20615","name":"Taki","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20616","name":"Talbandha","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20617","name":"Tamluk","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20618","name":"Tarakeswar","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20619","name":"Tentulberia","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20620","name":"Tentulkuli","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20621","name":"Thermal Power Project","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20622","name":"Titagarh","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20623","name":"Tufanganj","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20624","name":"Ukhra","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20625","name":"Ula","city_id":"1632","created_at":"2024-01-21 12:06:36","updated_at":"2024-01-21 12:06:36","translations":null,"is_activated":"1"}, +{"id":"20626","name":"Ulubaria","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20627","name":"Uttar Durgapur","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20628","name":"Uttar Goara","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20629","name":"Uttar Kalas","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20630","name":"Uttar Kamakhyaguri","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20631","name":"Uttar Latabari","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20632","name":"Uttar Mahammadpur","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20633","name":"Uttar Pirpur","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20634","name":"Uttar Raypur","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20635","name":"Uttarpara-Kotrung","city_id":"1632","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20636","name":"Banda Aceh","city_id":"1633","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20637","name":"Bireun","city_id":"1633","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20638","name":"Langsa","city_id":"1633","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20639","name":"Lhokseumawe","city_id":"1633","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20640","name":"Meulaboh","city_id":"1633","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20641","name":"Denpasar","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20642","name":"Karangasem","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20643","name":"Klungkung","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20644","name":"Kuta","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20645","name":"Negara","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20646","name":"Singaraja","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20647","name":"Tabanan","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20648","name":"Ubud","city_id":"1634","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20649","name":"Manggar","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20650","name":"Mentok","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20651","name":"Pangkal Pinang","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20652","name":"Sungai Liat","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20653","name":"Tanjung Pandan","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20654","name":"Toboali-Rias","city_id":"1635","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20655","name":"Cikupa","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20656","name":"Cilegon","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20657","name":"Ciputat","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20658","name":"Curug","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20659","name":"Kresek","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20660","name":"Labuhan","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20661","name":"Pandegelang","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20662","name":"Pondok Aren","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20663","name":"Rangkasbitung","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20664","name":"Serang","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20665","name":"Serpong","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20666","name":"Tangerang","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20667","name":"Teluknaga","city_id":"1636","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20668","name":"Bengkulu","city_id":"1637","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20669","name":"Curup","city_id":"1637","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20670","name":"Gandaria","city_id":"1638","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20671","name":"Gorontalo","city_id":"1639","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20672","name":"Cengkareng","city_id":"1640","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20673","name":"Jakarta","city_id":"1640","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20674","name":"Jambi","city_id":"1641","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20675","name":"Kualatungka","city_id":"1641","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20676","name":"Simpang","city_id":"1641","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20677","name":"Sungaipenuh","city_id":"1641","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20678","name":"Kendal","city_id":"1649","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20679","name":"Bandar Lampung","city_id":"1650","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20680","name":"Kota Bumi","city_id":"1650","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20681","name":"Metro","city_id":"1650","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20682","name":"Pringsewu","city_id":"1650","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20683","name":"Terbanggi Besar","city_id":"1650","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"is_activated":"1"}, +{"id":"20684","name":"Amahai","city_id":"1651","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20685","name":"Ambon","city_id":"1651","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20686","name":"Tual","city_id":"1651","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20687","name":"Aberpura","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20688","name":"Biak","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20689","name":"Jaya Pura","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20690","name":"Manokwari","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20691","name":"Merauke","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20692","name":"Sorong","city_id":"1655","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20693","name":"Balaipungut","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20694","name":"Bengkalis","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20695","name":"Dumai","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20696","name":"Duri","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20697","name":"Pekan Baru","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20698","name":"Selatpanjang","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20699","name":"Tanjung Balai-Meral","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20700","name":"Tembilahan","city_id":"1656","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20701","name":"Solo","city_id":"1658","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20702","name":"Bambanglipuro","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20703","name":"Banguntapan","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20704","name":"Bantul","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20705","name":"Depok","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20706","name":"Gamping","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20707","name":"Godean","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20708","name":"Jetis","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20709","name":"Kasihan","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20710","name":"Ngaglik","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20711","name":"Pandak","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20712","name":"Pundong","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20713","name":"Sewon","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20714","name":"Seyegan","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20715","name":"Sleman","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20716","name":"Srandakan","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20717","name":"Wonosari","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20718","name":"Yogyakarta","city_id":"1666","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20719","name":"Ardabil","city_id":"1667","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20720","name":"Garmi","city_id":"1667","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20721","name":"Khalkhal","city_id":"1667","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20722","name":"Meshkinshahr","city_id":"1667","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20723","name":"Parsabad","city_id":"1667","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20724","name":"Bandar-e Gonaveh","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20725","name":"Borazjan","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20726","name":"Bushehr","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20727","name":"Dashti","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20728","name":"Dir","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20729","name":"Khormuj","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20730","name":"Kongan","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20731","name":"Tangestan","city_id":"1670","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20732","name":"Ardistan","city_id":"1672","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20733","name":"Dorchehpiyaz","city_id":"1672","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"is_activated":"1"}, +{"id":"20734","name":"Dowlatabad","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20735","name":"Esfahan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20736","name":"Falavarjan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20737","name":"Faridan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20738","name":"Fereydunshahr","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20739","name":"Fuladshahr","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20740","name":"Golara","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20741","name":"Golpayegan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20742","name":"Kashan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20743","name":"Kelishad","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20744","name":"Khomeynishahr","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20745","name":"Khonsar","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20746","name":"Khuresgan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20747","name":"Mobarakeh","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20748","name":"Na in","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20749","name":"Najafabad","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20750","name":"Natnaz","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20751","name":"Qahdarijan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20752","name":"Rehnan","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20753","name":"Semirom","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20754","name":"Shahinshahr","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20755","name":"Shahreza","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20756","name":"Zarinshahr","city_id":"1672","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20757","name":"Abadeh","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20758","name":"Akbarabad","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20759","name":"Darab","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20760","name":"Eqlid","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20761","name":"Estehban","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20762","name":"Fasa","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20763","name":"Firuzabad","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20764","name":"Gerash","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20765","name":"Jahrom","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20766","name":"Kazerun","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20767","name":"Marv Dasht","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20768","name":"Neyriz","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20769","name":"Nurabad","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20770","name":"Qa emiyeh","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20771","name":"Sepidan","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20772","name":"Shiraz","city_id":"1673","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20773","name":"Astaneh-ye Ashrafiyeh","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20774","name":"Bandar-e Anzali","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20775","name":"Faman","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20776","name":"Hashtpar","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20777","name":"Lahijan","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20778","name":"Langarud","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20779","name":"Rasht","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20780","name":"Rudbar","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20781","name":"Rudsar","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20782","name":"Sawma eh Sara","city_id":"1674","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20783","name":"Aq Qal eh","city_id":"1675","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20784","name":"Azad Shahr","city_id":"1675","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20785","name":"Bandar-e Torkaman","city_id":"1675","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20786","name":"Gonbad-e Qabus","city_id":"1675","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20787","name":"Gorgan","city_id":"1675","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20788","name":"Asadabad","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20789","name":"Bahar","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20790","name":"Hamadan","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20791","name":"Malayer","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20792","name":"Nahavand","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20793","name":"Tuysarkan","city_id":"1676","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20794","name":"Bandar Abbas","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20795","name":"Bandar-e Abbas","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20796","name":"Bandar-e Lengeh","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20797","name":"Gheshm","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20798","name":"Jask","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20799","name":"Kish","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20800","name":"Kish Island","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20801","name":"Minab","city_id":"1677","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20802","name":"Abdanan","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20803","name":"Darrehshahr","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20804","name":"Dehloran","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20805","name":"Ilam","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20806","name":"Ivan","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20807","name":"Mehran","city_id":"1678","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20808","name":"Baft","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20809","name":"Bam","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20810","name":"Bardsir","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20811","name":"Jiroft","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20812","name":"Kahnuj","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20813","name":"Kerman","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20814","name":"Rafsanjan","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20815","name":"Ravar","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20816","name":"Shahr-e Babak","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20817","name":"Sirjan","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20818","name":"Zarand","city_id":"1679","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20819","name":"Eslamabad","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20820","name":"Gilan-e Garb","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20821","name":"Harsin","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20822","name":"Javanrud","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20823","name":"Kangavar","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20824","name":"Kermanshah","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20825","name":"Paveh","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20826","name":"Sahneh","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20827","name":"Sar-e-Pol-e-Zohab","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20828","name":"Sonqor","city_id":"1680","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20829","name":"Birjand","city_id":"1681","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20830","name":"Bojnurd","city_id":"1681","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20831","name":"Chenaran","city_id":"1681","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"is_activated":"1"}, +{"id":"20832","name":"Darreh Gaz","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20833","name":"Esfarayen","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20834","name":"Fariman","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20835","name":"Ferdus","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20836","name":"Gha nat","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20837","name":"Gonabad","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20838","name":"Kashmar","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20839","name":"Mashad","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20840","name":"Mashhad","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20841","name":"Neyshabur","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20842","name":"Qayen","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20843","name":"Quchan","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20844","name":"Sabzevar","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20845","name":"Sarakhs","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20846","name":"Shirvan","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20847","name":"Tabas","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20848","name":"Tayyebat","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20849","name":"Torbat-e Heydariyeh","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20850","name":"Torbat-e Jam","city_id":"1681","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20851","name":"Abadan","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20852","name":"Agha Jari","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20853","name":"Ahvaz","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20854","name":"Ahwaz","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20855","name":"Andimeshk","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20856","name":"Bandar-e Emam Khomeyni","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20857","name":"Bandar-e Mahshahr","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20858","name":"Behbahan","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20859","name":"Dezful","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20860","name":"Ezeh","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20861","name":"Hendijan","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20862","name":"Khorramshahr","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20863","name":"Masjed-e Soleyman","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20864","name":"Omidiyeh","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20865","name":"Ramhormoz","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20866","name":"Ramshir","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20867","name":"Shadegan","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20868","name":"Shush","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20869","name":"Shushtar","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20870","name":"Susangerd","city_id":"1682","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20871","name":"Baneh","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20872","name":"Bijar","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20873","name":"Kamyaran","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20874","name":"Marivan","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20875","name":"Qorveh","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20876","name":"Sanandaj","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20877","name":"Saqqez","city_id":"1684","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20878","name":"Alashtar","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20879","name":"Aligudarz","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20880","name":"Azna","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20881","name":"Borujerd","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20882","name":"Do Rud","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20883","name":"Khorramabad","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20884","name":"Kuhdasht","city_id":"1685","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20885","name":"Arak","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20886","name":"Ashtian","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20887","name":"Delijan","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20888","name":"Khomeyn","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20889","name":"Mahallat","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20890","name":"Sarband","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20891","name":"Saveh","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20892","name":"Tafresh","city_id":"1686","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20893","name":"Aliabad","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20894","name":"Amir Kala","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20895","name":"Amol","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20896","name":"Babol","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20897","name":"Babol Sar","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20898","name":"Behshahr","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20899","name":"Chalus","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20900","name":"Fereydunkenar","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20901","name":"Juybar","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20902","name":"Kalaleh","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20903","name":"Kordkuy","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20904","name":"Minudasht","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20905","name":"Neka","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20906","name":"Nur","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20907","name":"Nushahr","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20908","name":"Qa emshahr","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20909","name":"Ramsar","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20910","name":"Sari","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20911","name":"Savadkuh","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20912","name":"Tonekabon","city_id":"1687","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20913","name":"Abhar","city_id":"1689","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20914","name":"Abyek","city_id":"1689","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20915","name":"Qazvin","city_id":"1689","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20916","name":"Takestan","city_id":"1689","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20917","name":"Qom","city_id":"1690","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20918","name":"Damghan","city_id":"1691","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20919","name":"Garmsar","city_id":"1691","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20920","name":"Semnan","city_id":"1691","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20921","name":"Shahrud","city_id":"1691","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20922","name":"Damavand","city_id":"1693","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"is_activated":"1"}, +{"id":"20923","name":"Eqbaliyeh","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20924","name":"Eslamshahr","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20925","name":"Hashtgerd","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20926","name":"Karaj","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20927","name":"Mahdasht","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20928","name":"Malard","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20929","name":"Mohammadiyeh","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20930","name":"Nazarabad","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20931","name":"Pakdasht","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20932","name":"Pishva","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20933","name":"Qarchak","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20934","name":"Qods","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20935","name":"Robat Karim","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20936","name":"Shahriyar","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20937","name":"Tehran","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20938","name":"Varamin","city_id":"1693","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20939","name":"Ardakan","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20940","name":"Bafq","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20941","name":"Mehriz","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20942","name":"Meybod","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20943","name":"Taft","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20944","name":"Yazd","city_id":"1694","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20945","name":"Alvand","city_id":"1695","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20946","name":"Khorramdarreh","city_id":"1695","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20947","name":"Zanjan","city_id":"1695","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20948","name":"Jurf-as-Sakhr","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20949","name":"Saddat-al-Hindiyah","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20950","name":"al-Hillah","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20951","name":"al-Madhatiyah","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20952","name":"al-Musayyib","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20953","name":"al-Qasim","city_id":"1696","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20954","name":"Baghdad","city_id":"1697","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20955","name":"Dahuk","city_id":"1698","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20956","name":"Zakhu","city_id":"1698","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20957","name":"Ba qubah","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20958","name":"Hanaqin","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20959","name":"Jalula ","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20960","name":"Kifri","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20961","name":"Mandali","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20962","name":"al-Fuhud","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20963","name":"al-Khalis","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20964","name":"al-Miqdadiyah","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20965","name":"ash-Shatrah","city_id":"1700","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20966","name":"Ankawa","city_id":"1701","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20967","name":"Chaqalawa","city_id":"1702","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20968","name":"Irbil","city_id":"1702","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20969","name":"Rawanduz","city_id":"1702","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20970","name":"Karbala","city_id":"1703","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20971","name":"al-Hindiyah","city_id":"1703","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20972","name":"Erbil","city_id":"1704","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20973","name":" Ali al Gharbi","city_id":"1705","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20974","name":"al- Amarah","city_id":"1705","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20975","name":"al-Majarr-al-Kabir","city_id":"1705","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20976","name":"Qarah Qush","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20977","name":"Sinjar","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20978","name":"Tall Afar","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20979","name":"Tall Kayf","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20980","name":"al-Mawsil","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20981","name":"ash-Shaykhan","city_id":"1706","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20982","name":"Balad","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20983","name":"Bayji","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20984","name":"Dhalu iyah","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20985","name":"Samarra","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20986","name":"Tikrit","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20987","name":"Tuz","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20988","name":"ad-Dujayl","city_id":"1707","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20989","name":"al- Aziziyah","city_id":"1708","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20990","name":"al-Hayy","city_id":"1708","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20991","name":"al-Kut","city_id":"1708","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20992","name":"an-Nu maniyah","city_id":"1708","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20993","name":"as-Suwayrah","city_id":"1708","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"is_activated":"1"}, +{"id":"20994","name":" Anah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"20995","name":"Hit","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"20996","name":"Rawah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"20997","name":"al-Fallujah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"20998","name":"al-Habbaniyah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"20999","name":"al-Hadithah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21000","name":"ar-Ramadi","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21001","name":"ar-Rutbah","city_id":"1709","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21002","name":"Abu al-Khasib","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21003","name":"Harithah","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21004","name":"Shatt-al- Arab","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21005","name":"al-Basrah","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21006","name":"al-Faw","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21007","name":"al-Qurnah","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21008","name":"az-Zubayr","city_id":"1710","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21009","name":"ar-Rumaythah","city_id":"1711","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21010","name":"as-Samawah","city_id":"1711","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21011","name":" Afak","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21012","name":"ad-Diwaniyah","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21013","name":"al-Ghammas","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21014","name":"al-Hamzah","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21015","name":"ash-Shamiyah","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21016","name":"ash-Shinafiyah","city_id":"1712","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21017","name":"al-Kufah","city_id":"1713","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21018","name":"al-Mishkhab","city_id":"1713","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21019","name":"an-Najaf","city_id":"1713","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21020","name":"Chamchamal","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21021","name":"Halabjah","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21022","name":"Kusanjaq","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21023","name":"Panjwin","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21024","name":"Qal at Dizeh","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21025","name":"as-Sulaymaniyah","city_id":"1714","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21026","name":" Aqrah","city_id":"1715","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21027","name":"Kirkuk","city_id":"1715","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21028","name":"Moira","city_id":"1716","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21029","name":"Bagenalstown","city_id":"1717","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21030","name":"Carlow","city_id":"1717","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21031","name":"Tullow","city_id":"1717","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21032","name":"Bailieborough","city_id":"1718","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21033","name":"Belturbet","city_id":"1718","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21034","name":"Cavan","city_id":"1718","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21035","name":"Coothill","city_id":"1718","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21036","name":"Ennis","city_id":"1719","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21037","name":"Kilkee","city_id":"1719","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21038","name":"Kilrush","city_id":"1719","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21039","name":"Newmarket-on-Fergus","city_id":"1719","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21040","name":"Shannon","city_id":"1719","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21041","name":"Bandon","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21042","name":"Bantry","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21043","name":"Blarney","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21044","name":"Carrigaline","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21045","name":"Charleville","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21046","name":"Clonakilty","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21047","name":"Cobh","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21048","name":"Cork","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21049","name":"Drishane","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21050","name":"Dunmanway","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21051","name":"Fermoy","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21052","name":"Kanturk","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21053","name":"Kinsale","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21054","name":"Macroom","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21055","name":"Mallow","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21056","name":"Midleton","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21057","name":"Millstreet","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21058","name":"Mitchelstown","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21059","name":"Passage West","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21060","name":"Skibbereen","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21061","name":"Youghal","city_id":"1720","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21062","name":"Ballybofey","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21063","name":"Ballyshannon","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21064","name":"Buncrana","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21065","name":"Bundoran","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21066","name":"Carndonagh","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21067","name":"Donegal","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21068","name":"Killybegs","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21069","name":"Letterkenny","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21070","name":"Lifford","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21071","name":"Moville","city_id":"1721","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21072","name":"Balbriggan","city_id":"1722","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21073","name":"Ballsbridge","city_id":"1722","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21074","name":"Dublin","city_id":"1722","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21075","name":"Leixlip","city_id":"1722","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"is_activated":"1"}, +{"id":"21076","name":"Malahide","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21077","name":"Portrane","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21078","name":"Rathcoole","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21079","name":"Rush","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21080","name":"Skerries","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21081","name":"Swords","city_id":"1722","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21082","name":"Athenry","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21083","name":"Ballinasloe","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21084","name":"Clifden","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21085","name":"Galway","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21086","name":"Gort","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21087","name":"Loughrea","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21088","name":"Tuam","city_id":"1723","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21089","name":"Ballybunion","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21090","name":"Cahirciveen","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21091","name":"Castleisland","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21092","name":"Dingle","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21093","name":"Kenmare","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21094","name":"Killorglin","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21095","name":"Tralee","city_id":"1724","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21096","name":"Athy","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21097","name":"Celbridge","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21098","name":"Clane","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21099","name":"Kilcock","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21100","name":"Kilcullen","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21101","name":"Kildare","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21102","name":"Maynooth","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21103","name":"Monasterevan","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21104","name":"Naas","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21105","name":"Newbridge","city_id":"1725","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21106","name":"Callan","city_id":"1726","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21107","name":"Castlecomer","city_id":"1726","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21108","name":"Kilkenny","city_id":"1726","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21109","name":"Abbeyleix","city_id":"1727","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21110","name":"Mountmellick","city_id":"1727","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21111","name":"Mountrath","city_id":"1727","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21112","name":"Port Laoise","city_id":"1727","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21113","name":"Portarlington","city_id":"1727","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21114","name":"Meath","city_id":"1728","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21115","name":"Carrick-on-Shannon","city_id":"1729","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21116","name":"Abbeyfeale","city_id":"1730","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21117","name":"Kilmallock","city_id":"1730","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21118","name":"Limerick","city_id":"1730","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21119","name":"Newcastle","city_id":"1730","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21120","name":"Rathkeale","city_id":"1730","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21121","name":"Granard","city_id":"1732","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21122","name":"Longford","city_id":"1732","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21123","name":"Moate","city_id":"1732","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21124","name":"Ardee","city_id":"1733","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21125","name":"Drogheda","city_id":"1733","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21126","name":"Drumcar","city_id":"1733","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21127","name":"Ballina","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21128","name":"Ballinrobe","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21129","name":"Ballyhaunis","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21130","name":"Castlebar","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21131","name":"Claremorris","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21132","name":"Swinford","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21133","name":"Westport","city_id":"1734","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21134","name":"Ashbourne","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21135","name":"Duleek","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21136","name":"Dunboyne","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21137","name":"Dunshaughlin","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21138","name":"Kells","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21139","name":"Laytown","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21140","name":"Navan","city_id":"1735","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"is_activated":"1"}, +{"id":"21141","name":"Trim","city_id":"1735","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21142","name":"Carrickmacross","city_id":"1736","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21143","name":"Castleblayney","city_id":"1736","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21144","name":"Clones","city_id":"1736","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21145","name":"Monaghan","city_id":"1736","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21146","name":"Banagher","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21147","name":"Birr","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21148","name":"Clara","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21149","name":"Edenderry","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21150","name":"Kilcormac","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21151","name":"Tullamore","city_id":"1737","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21152","name":"Ballaghaderreen","city_id":"1738","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21153","name":"Boyle","city_id":"1738","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21154","name":"Castlerea","city_id":"1738","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21155","name":"Roscommon","city_id":"1738","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21156","name":"Sligo","city_id":"1739","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21157","name":"Co Tyrone","city_id":"1742","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21158","name":"Downpatrick","city_id":"1742","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21159","name":"Dungarvan","city_id":"1743","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21160","name":"Tramore","city_id":"1743","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21161","name":"Athlone","city_id":"1744","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21162","name":"Mullingar","city_id":"1744","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21163","name":"Enniscorthy","city_id":"1745","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21164","name":"Gorey","city_id":"1745","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21165","name":"New Ross","city_id":"1745","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21166","name":"Wexford","city_id":"1745","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21167","name":"Arklow","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21168","name":"Baltinglass","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21169","name":"Blessington","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21170","name":"Bray","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21171","name":"Greystones","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21172","name":"Kilcoole","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21173","name":"Newtownmountkennedy","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21174","name":"Rathdrum","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21175","name":"Wicklow","city_id":"1746","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21176","name":"Bethlehem","city_id":"1749","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21177","name":"Caesarea","city_id":"1750","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21178","name":"Petach Tikva","city_id":"649","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21179","name":"Ramallah","city_id":"649","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21180","name":"Gaza","city_id":"1751","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21181","name":" Arad","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21182","name":" Omer","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21183","name":"Ashdod","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21184","name":"Ashqelon","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21185","name":"Be er Sheva","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21186","name":"Beersheba","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21187","name":"Bene Ayish","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21188","name":"Dimona","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21189","name":"Elat","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21190","name":"Gan Yavne","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21191","name":"Nahal `Oz","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21192","name":"Netivot","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21193","name":"Ofaqim","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21194","name":"Qiryat Gat","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21195","name":"Qiryat Mal akhi","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21196","name":"Sederot","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21197","name":"Yeroham","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21198","name":"kiryat Malachi","city_id":"1752","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"is_activated":"1"}, +{"id":"21199","name":"Be er Ya aqov","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21200","name":"Beit Shemesh","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21201","name":"Bene Beraq","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21202","name":"Bnei Brak","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21203","name":"Even Yehuda","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21204","name":"Fureidis","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21205","name":"Gat Rimon","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21206","name":"Gedera","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21207","name":"Givat Shmuel","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21208","name":"Hibat Zion","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21209","name":"Hod HaSharon","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21210","name":"Hogar","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21211","name":"Jaljulye","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21212","name":"Jatt","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21213","name":"Kafar Qasem","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21214","name":"Kefar Sava","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21215","name":"Kefar Yona","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21216","name":"Kfar Saba","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21217","name":"Kiryag Bialik","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21218","name":"Lod","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21219","name":"Mazkeret Batya","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21220","name":"Modi in","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21221","name":"Nes Ziyyona","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21222","name":"Ness Ziona","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21223","name":"Netanya","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21224","name":"Nordiya","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21225","name":"Pardesiyya","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21226","name":"Petakh Tiqwa","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21227","name":"Qadima","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21228","name":"Qalansawe","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21229","name":"Qiryat Eqron","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21230","name":"Ra anana","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21231","name":"Ramla","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21232","name":"Rehovot","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21233","name":"Rekhovot","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21234","name":"Rinnatya","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21235","name":"Rishon LeZiyyon","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21236","name":"Rosh HaAyin","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21237","name":"Shoham","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21238","name":"Tayibe","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21239","name":"Tire","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21240","name":"Tsur Igal","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21241","name":"Udim","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21242","name":"Yavne","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21243","name":"Yehud","city_id":"1754","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21244","name":" Afula","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21245","name":" Akko","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21246","name":" Arrabe","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21247","name":" Ein Mahel","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21248","name":" Ilut","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21249","name":"Abu Sinan","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21250","name":"Basmat Tab un","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21251","name":"Beit Jann","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21252","name":"Bet She an","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21253","name":"Bi ne","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21254","name":"Bir-al-Maksur","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21255","name":"Bu eine-Nujeidat","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21256","name":"Dabburye","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21257","name":"Dayr Hannah","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21258","name":"Dayr-al-Asad","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21259","name":"Hazor HaGelilit","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21260","name":"I billin","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21261","name":"Iksal","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21262","name":"Judeide-Maker","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21263","name":"Kabul","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21264","name":"Kafar Kanna","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21265","name":"Kafar Manda","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21266","name":"Kafar Yasif","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21267","name":"Karmiel","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21268","name":"Kisra-Sumei","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21269","name":"Ma alot Tarshikha","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21270","name":"Majd-al-Kurum","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21271","name":"Migdal Ha Emeq","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21272","name":"Mugar","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21273","name":"Nahariyya","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21274","name":"Nahef","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21275","name":"Nazerat","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21276","name":"Nazerat Illit","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21277","name":"Qiryat Shemona","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21278","name":"Qiryat Tiv on","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21279","name":"Rame","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21280","name":"Reine","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21281","name":"Sakhnin","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21282","name":"Shefar am","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21283","name":"Tamra","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21284","name":"Tiberias","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21285","name":"Tur an","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21286","name":"Yirka","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21287","name":"Yoqne am Illit","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21288","name":"Zefat","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21289","name":"Zur Yigal","city_id":"1755","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21290","name":"Sgula","city_id":"1757","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21291","name":"Jerusalem","city_id":"1758","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21292","name":" Ar ara","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21293","name":" Isifya","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21294","name":"Baqa al-Gharbiyyah","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21295","name":"Binyamina","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21296","name":"Daliyat-al-Karmil","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21297","name":"Jizr-az-Zarqa","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21298","name":"Khadera","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21299","name":"Khefa","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21300","name":"Nesher","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21301","name":"Or Aqiva","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21302","name":"Pardes Khanna-Karkur","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21303","name":"Qiryat Atta","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21304","name":"Qiryat Bialik","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21305","name":"Qiryat Motzkin","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21306","name":"Qiryat Yam","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21307","name":"Rekhasim","city_id":"1759","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"is_activated":"1"}, +{"id":"21308","name":"Tirat Karmel","city_id":"1759","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21309","name":"Umm-al-Fahm","city_id":"1759","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21310","name":"Zikhron Ya aqov","city_id":"1759","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21311","name":"Qalqilya","city_id":"1762","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21312","name":"Hadera","city_id":"1765","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21313","name":"Bet Shemesh","city_id":"1767","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21314","name":"Mevasserat Ziyyon","city_id":"1767","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21315","name":"Yerushalayim","city_id":"1767","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21316","name":"Meta","city_id":"1768","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21317","name":"Miano","city_id":"1768","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21318","name":"Alba Adriatica","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21319","name":"Atessa","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21320","name":"Atri","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21321","name":"Avezzano","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21322","name":"Celano","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21323","name":"Cepagatti","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21324","name":"Chieti","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21325","name":"Citta Sant Angelo","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21326","name":"Francavilla al Mare","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21327","name":"Giulianova","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21328","name":"Guardiagrele","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21329","name":"L Aquila","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21330","name":"Lanciano","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21331","name":"Martinsicuro","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21332","name":"Montesilvano","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21333","name":"Montorio al Vomano","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21334","name":"Mosciano Sant Angelo","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21335","name":"Ortona","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21336","name":"Penne","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21337","name":"Pescara","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21338","name":"Pineto","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21339","name":"Roseto degli Abruzzi","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21340","name":"San Giovanni Teatino","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21341","name":"San Salvo","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21342","name":"Sant Egidio alla Vibrata","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21343","name":"Silvi","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21344","name":"Spoltore","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21345","name":"Sulmona","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21346","name":"Teramo","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21347","name":"Vasto","city_id":"1769","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21348","name":"Agrigento","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21349","name":"Alessandria della Rocca","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21350","name":"Aragona","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21351","name":"Bivona","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21352","name":"Burgio","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21353","name":"Calamonaci","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21354","name":"Caltabellotta","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21355","name":"Camastra","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21356","name":"Cammarata","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21357","name":"Campobello di Licata","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21358","name":"Canicattì","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21359","name":"Casteltermini","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21360","name":"Castrofilippo","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21361","name":"Cattolica Eraclea","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21362","name":"Cianciana","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21363","name":"Comitini","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21364","name":"Favara","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21365","name":"Grotte","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21366","name":"Joppolo Giancaxio","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21367","name":"Lampedusa e Linosa","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21368","name":"Licata","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21369","name":"Lucca Sicula","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21370","name":"Menfi","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21371","name":"Montallegro","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21372","name":"Montevago","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21373","name":"Naro","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21374","name":"Palma di Montechiaro","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21375","name":"Porto Empedocle","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21376","name":"Racalmuto","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21377","name":"Raffadali","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21378","name":"Ravanusa","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21379","name":"Realmonte","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21380","name":"Ribera","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21381","name":"Sambuca di Sicilia","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21382","name":"San Biagio Platani","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21383","name":"San Giovanni Gemini","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21384","name":"Sant Angelo Muxaro","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21385","name":"Santa Elisabetta","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21386","name":"Santa Margherita di Belice","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21387","name":"Santo Stefano Quisquina","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21388","name":"Sciacca","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21389","name":"Siculiana","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21390","name":"Villafranca Sicula","city_id":"1770","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21391","name":"Castellazzo Bormida","city_id":"1771","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21392","name":"Gavi","city_id":"1771","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"is_activated":"1"}, +{"id":"21393","name":"Villanova Monferrato","city_id":"1771","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21394","name":"Camerano","city_id":"1772","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21395","name":"Castelplanio","city_id":"1772","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21396","name":"Capolona","city_id":"1773","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21397","name":"Montevarchi","city_id":"1773","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21398","name":"Subbiano","city_id":"1773","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21399","name":"Buttigliera d Asti","city_id":"1775","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21400","name":"Flumeri","city_id":"1776","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21401","name":"Nusco","city_id":"1776","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21402","name":"Prata di Principato Ultra","city_id":"1776","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21403","name":"Villanova del Battista","city_id":"1776","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21404","name":"Avigliano","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21405","name":"Bernalda","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21406","name":"Ferrandina","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21407","name":"Lauria","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21408","name":"Lavello","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21409","name":"Matera","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21410","name":"Montescaglioso","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21411","name":"Pisticci","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21412","name":"Policoro","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21413","name":"Potenza","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21414","name":"Rionero in Vulture","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21415","name":"Venosa","city_id":"1778","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21416","name":"Belluno","city_id":"1779","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21417","name":"D alpago","city_id":"1779","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21418","name":"Longarone","city_id":"1779","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21419","name":"Pedavena","city_id":"1779","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21420","name":"San Bartolomeo","city_id":"1780","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21421","name":"","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21422","name":"Bagnatica","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21423","name":"Bergamo","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21424","name":"Bolgare","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21425","name":"Bottanuco","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21426","name":"Brignano Gera d Adda","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21427","name":"Calcio","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21428","name":"Caravaggio","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21429","name":"Chiuduno","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21430","name":"Ciserano","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21431","name":"Comun Nuovo","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21432","name":"Costa di Mezzate","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21433","name":"Gandino","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21434","name":"Grassobbio","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21435","name":"Grumello Del Monte","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21436","name":"Lallio","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21437","name":"Levate","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21438","name":"Lurano","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21439","name":"Mapello","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21440","name":"Pagazzano","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21441","name":"Ponteranica","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21442","name":"Pontida","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21443","name":"Sant Omobono Imagna","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21444","name":"Torre Pallavicina","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21445","name":"Trescore Balneario","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21446","name":"Verdellino","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21447","name":"Zingonia","city_id":"1781","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21448","name":"Camburzano","city_id":"1782","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21449","name":"Crevacuore","city_id":"1782","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21450","name":"Gaglianico","city_id":"1782","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21451","name":"Sandigliano","city_id":"1782","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21452","name":"Vigliano Biellese","city_id":"1782","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21453","name":"Anzola dell Emilia","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21454","name":"Bologna","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21455","name":"Borgo Tossignano","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21456","name":"Casalfiumanese","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21457","name":"Castiglione Dei Pepoli ","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21458","name":"Funo","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21459","name":"Loiano","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21460","name":"Monterenzio","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21461","name":"Osteria Grande","city_id":"1783","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21462","name":"Frangarto","city_id":"1784","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21463","name":"Agnosine","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21464","name":"Brescia","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21465","name":"Capriano del Colle","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21466","name":"Capriolo","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21467","name":"Castegnato","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21468","name":"Castelcovati","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21469","name":"Cellatica","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21470","name":"Coccaglio","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21471","name":"Comezzano-Cizzago","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21472","name":"Erbusco","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21473","name":"Flero","city_id":"1785","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"is_activated":"1"}, +{"id":"21474","name":"Lavenone","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21475","name":"Longhena","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21476","name":"Maclodio","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21477","name":"Muscoline","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21478","name":"Padenghe sul Garda","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21479","name":"Paderno Franciacorta","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21480","name":"Paratico","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21481","name":"Passirano","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21482","name":"Polaveno","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21483","name":"Poncarale","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21484","name":"Prevalle","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21485","name":"Provaglio dIseo","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21486","name":"Roncadelle","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21487","name":"Verolavecchia","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21488","name":"Visano","city_id":"1785","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21489","name":"San Donaci","city_id":"1786","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21490","name":"Acri","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21491","name":"Amantea","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21492","name":"Bagnara Calabra","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21493","name":"Belvedere Marittimo","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21494","name":"Bisignano","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21495","name":"Bovalino","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21496","name":"Cariati","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21497","name":"Cassano allo Ionio","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21498","name":"Castrolibero","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21499","name":"Castrovillari","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21500","name":"Catanzaro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21501","name":"Cetraro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21502","name":"Ciro Marina","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21503","name":"Cittanova","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21504","name":"Corigliano Calabro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21505","name":"Cosenza","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21506","name":"Crosia","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21507","name":"Crotone","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21508","name":"Cutro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21509","name":"Fuscaldo","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21510","name":"Gioia Tauro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21511","name":"Isola di Capo Rizzuto","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21512","name":"Lamezia Terme","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21513","name":"Locri","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21514","name":"Luzzi","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21515","name":"Melito di Porto Salvo","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21516","name":"Mendicino","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21517","name":"Montalto Uffugo","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21518","name":"Palmi","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21519","name":"Paola","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21520","name":"Petilia Policastro","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21521","name":"Pizzo","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21522","name":"Polistena","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21523","name":"Reggio di Calabria","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21524","name":"Rende","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21525","name":"Rosarno","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21526","name":"Rossano","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21527","name":"San Giovanni in Fiore","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21528","name":"Scalea","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21529","name":"Sellia Marina","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21530","name":"Siderno","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21531","name":"Soverato","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21532","name":"Taurianova","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21533","name":"Trebisacce","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21534","name":"Vibo Valentia","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21535","name":"Villa San Giovanni","city_id":"1787","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21536","name":"Acerra","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21537","name":"Afragola","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21538","name":"Agropoli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21539","name":"Angri","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21540","name":"Ariano Irpino","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21541","name":"Arzano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21542","name":"Atripalda","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21543","name":"Avellino","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21544","name":"Aversa","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21545","name":"Bacoli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21546","name":"Barano d Ischia","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21547","name":"Baronissi","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21548","name":"Battipaglia","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21549","name":"Bellizzi","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21550","name":"Benevento","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21551","name":"Boscoreale","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21552","name":"Boscotrecase","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21553","name":"Brusciano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21554","name":"Caivano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21555","name":"Calvizzano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21556","name":"Campagna","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21557","name":"Capaccio","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21558","name":"Capua","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21559","name":"Cardito","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21560","name":"Carinola","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21561","name":"Casagiove","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21562","name":"Casal di Principe","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21563","name":"Casalnuovo di Napoli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21564","name":"Casaluce","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21565","name":"Casandrino","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21566","name":"Casavatore","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21567","name":"Caserta","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21568","name":"Casoria","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21569","name":"Castel San Giorgio","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21570","name":"Castel Volturno","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21571","name":"Castellammare di Stabia","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21572","name":"Cava de Tirreni","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21573","name":"Cercola","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21574","name":"Cervinara","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21575","name":"Cicciano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21576","name":"Crispano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21577","name":"Eboli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21578","name":"Ercolano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21579","name":"Fisciano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21580","name":"Forio","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21581","name":"Frattamaggiore","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21582","name":"Frattaminore","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21583","name":"Frignano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21584","name":"Giffoni Valle Piana","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21585","name":"Giugliano in Campania","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21586","name":"Gragnano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21587","name":"Gricignano di Aversa","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21588","name":"Grottaminarda","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21589","name":"Grumo Nevano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21590","name":"Ischia","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21591","name":"Lusciano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21592","name":"Macerata Campania","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21593","name":"Maddaloni","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21594","name":"Marano di Napoli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21595","name":"Marcianise","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21596","name":"Marigliano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21597","name":"Massa Lubrense","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21598","name":"Melito di Napoli","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21599","name":"Mercato San Severino","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21600","name":"Mercogliano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21601","name":"Mirabella Eclano","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21602","name":"Mondragone","city_id":"1788","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"is_activated":"1"}, +{"id":"21603","name":"Monte di Procida","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21604","name":"Montecorvino Rovella","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21605","name":"Monteforte Irpino","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21606","name":"Montesarchio","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21607","name":"Montoro Inferiore","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21608","name":"Mugnano di Napoli","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21609","name":"Naples","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21610","name":"Napoli","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21611","name":"Nocera Inferiore","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21612","name":"Nocera Superiore","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21613","name":"Orta di Atella","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21614","name":"Ottaviano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21615","name":"Pagani","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21616","name":"Palma Campania","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21617","name":"Parete","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21618","name":"Pellezzano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21619","name":"Piano di Sorrento","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21620","name":"Piedimonte Matese","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21621","name":"Poggiomarino","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21622","name":"Pollena Trocchia","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21623","name":"Pomigliano d Arco","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21624","name":"Pompei","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21625","name":"Pontecagnano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21626","name":"Portici","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21627","name":"Positano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21628","name":"Pozzuoli","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21629","name":"Procida","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21630","name":"Qualiano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21631","name":"Quarto","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21632","name":"Roccapiemonte","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21633","name":"Sala Consilina","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21634","name":"Salerno","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21635","name":"San Cipriano d Aversa","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21636","name":"San Felice a Cancello","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21637","name":"San Gennaro Vesuviano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21638","name":"San Giorgio a Cremano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21639","name":"San Giorgio del Sannio","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21640","name":"San Giuseppe Vesuviano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21641","name":"San Marcellino","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21642","name":"San Marzano sul Sarno","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21643","name":"San Nicola","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21644","name":"San Prisco","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21645","name":"San Sebastiano al Vesuvio","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21646","name":"San Valentino Torio","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21647","name":"Sant Antimo","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21648","name":"Sant Agata de Goti","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21649","name":"Sant Agnello","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21650","name":"Sant Anastasia","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21651","name":"Sant Antonio Abate","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21652","name":"Sant Arpino","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21653","name":"Sant Egidio del Monte Albino","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21654","name":"Santa Maria Capua Vetere","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21655","name":"Santa Maria a Vico","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21656","name":"Santa Maria la Carita","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21657","name":"Sarno","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21658","name":"Saviano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21659","name":"Scafati","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21660","name":"Sessa Aurunca","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21661","name":"Siano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21662","name":"Solofra","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21663","name":"Somma Vesuviana","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21664","name":"Sorrento","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21665","name":"Teano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21666","name":"Teggiano","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21667","name":"Terzigno","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21668","name":"Teverola","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21669","name":"Torre Annunziata","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21670","name":"Torre del Greco","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21671","name":"Trecase","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21672","name":"Trentola-Ducenta","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21673","name":"Vallo della Lucania","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21674","name":"Vico Equense","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21675","name":"Vietri sul Mare","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21676","name":"Villa Literno","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21677","name":"Villaricca","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21678","name":"Volla","city_id":"1788","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21679","name":"Cartoceto","city_id":"1789","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21680","name":"Carinaro","city_id":"1790","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21681","name":"San Marco Evangelista","city_id":"1790","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21682","name":"Fiandaca Di Acireale","city_id":"1791","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21683","name":"San Cono","city_id":"1791","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21684","name":"Altino","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21685","name":"Archi","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21686","name":"Ari","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21687","name":"Arielli","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21688","name":"Bomba","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21689","name":"Borrello","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21690","name":"Bucchianico","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21691","name":"Canosa Sannita","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21692","name":"Carpineto Sinello","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21693","name":"Carunchio","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21694","name":"Casacanditella","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21695","name":"Casalanguida","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21696","name":"Casalbordino","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21697","name":"Casalincontrada","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21698","name":"Casoli","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21699","name":"Castel Frentano","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21700","name":"Castelguidone","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21701","name":"Castiglione Messer Marino","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21702","name":"Celenza sul Trigno","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21703","name":"Civitaluparella","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21704","name":"Civitella Messer Raimondo","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21705","name":"Colledimacine","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21706","name":"Colledimezzo","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21707","name":"Crecchio","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21708","name":"Cupello","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21709","name":"Dogliola","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21710","name":"Fallo","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21711","name":"Fara Filiorum Petri","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21712","name":"Fara San Martino","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21713","name":"Filetto","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21714","name":"Fossacesia","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21715","name":"Fraine","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21716","name":"Fresagrandinaria","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21717","name":"Frisa","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21718","name":"Furci","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21719","name":"Gamberale","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21720","name":"Gessopalena","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21721","name":"Gissi","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21722","name":"Giuliano Teatino","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21723","name":"Guilmi","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21724","name":"Lama dei Peligni","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21725","name":"Lentella","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21726","name":"Lettopalena","city_id":"1792","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"is_activated":"1"}, +{"id":"21727","name":"Liscia","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21728","name":"Miglianico","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21729","name":"Montazzoli","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21730","name":"Montebello sul Sangro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21731","name":"Monteferrante","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21732","name":"Montelapiano","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21733","name":"Montenerodomo","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21734","name":"Monteodorisio","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21735","name":"Mozzagrogna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21736","name":"Orsogna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21737","name":"Paglieta","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21738","name":"Palena","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21739","name":"Palmoli","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21740","name":"Palombaro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21741","name":"Pennadomo","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21742","name":"Pennapiedimonte","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21743","name":"Perano","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21744","name":"Pietraferrazzana","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21745","name":"Pizzoferrato","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21746","name":"Poggiofiorito","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21747","name":"Pollutri","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21748","name":"Pretoro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21749","name":"Quadri","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21750","name":"Rapino","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21751","name":"Ripa Teatina","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21752","name":"Rocca San Giovanni","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21753","name":"Roccamontepiano","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21754","name":"Roccascalegna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21755","name":"Roccaspinalveti","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21756","name":"Roio del Sangro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21757","name":"Rosello","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21758","name":"San Buono","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21759","name":"San Giovanni Lipioni","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21760","name":"San Martino sulla Marrucina","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21761","name":"San Vito Chietino","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21762","name":"Sant Eusanio del Sangro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21763","name":"Santa Maria Imbaro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21764","name":"Scerni","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21765","name":"Schiavi di Abruzzo","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21766","name":"Taranta Peligna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21767","name":"Tollo","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21768","name":"Torino di Sangro","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21769","name":"Tornareccio","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21770","name":"Torrebruna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21771","name":"Torrevecchia Teatina","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21772","name":"Torricella Peligna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21773","name":"Treglio","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21774","name":"Tufillo","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21775","name":"Vacri","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21776","name":"Villa Santa Maria","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21777","name":"Villalfonsina","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21778","name":"Villamagna","city_id":"1792","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21779","name":"Albavilla","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21780","name":"Cadorago","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21781","name":"Carimate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21782","name":"Castelmarte","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21783","name":"Cavaria","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21784","name":"Cernobbio","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21785","name":"Comocrea","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21786","name":"Dongo","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21787","name":"Gironico","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21788","name":"Grandate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21789","name":"Lurago dErba","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21790","name":"Mozzate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21791","name":"Novedrate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21792","name":"Orsenigo","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21793","name":"Turate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21794","name":"Uggiate","city_id":"1793","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21795","name":"Corso del Tirreno","city_id":"1794","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21796","name":"Mangone","city_id":"1794","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21797","name":"Casalbuttano","city_id":"1795","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21798","name":"Casalmaggiore","city_id":"1795","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21799","name":"Castelverde","city_id":"1795","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21800","name":"Madignano","city_id":"1795","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21801","name":"Pieve San Giacomo","city_id":"1795","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21802","name":"Bandito","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21803","name":"Bra","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21804","name":"Casalgrasso","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21805","name":"Cossano Belbo","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21806","name":"Magliano Alpi","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21807","name":"Mondovi","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21808","name":"Roddi","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21809","name":"Santa Vittoria d Alba","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21810","name":"Verduno","city_id":"1796","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21811","name":"Alfonsine","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21812","name":"Argelato","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21813","name":"Argenta","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21814","name":"Bagnacavallo","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21815","name":"Bagnolo in Piano","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21816","name":"Bellaria-Igea Marina","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21817","name":"Bertinoro","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21818","name":"Bondeno","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21819","name":"Budrio","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21820","name":"Calderara di Reno","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21821","name":"Carpi","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21822","name":"Casalecchio di Reno","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21823","name":"Casalgrande","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21824","name":"Castel Bolognese","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21825","name":"Castel Maggiore","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21826","name":"Castel San Giovanni","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21827","name":"Castel San Pietro Terme","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21828","name":"Castelfranco Emilia","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21829","name":"Castellarano","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21830","name":"Castelnovo ne Monti","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21831","name":"Castelnuovo Rangone","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21832","name":"Castelvetro di Modena","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21833","name":"Castenaso","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21834","name":"Cattolica","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21835","name":"Cavriago","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21836","name":"Cento","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21837","name":"Cervia","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21838","name":"Cesena","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21839","name":"Cesenatico","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21840","name":"Codigoro","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21841","name":"Collecchio","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21842","name":"Comacchio","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21843","name":"Concordia sulla Secchia","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21844","name":"Conselice","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21845","name":"Copparo","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21846","name":"Coriano","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21847","name":"Correggio","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21848","name":"Crespellano","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21849","name":"Crevalcore","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21850","name":"Faenza","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21851","name":"Ferrara","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21852","name":"Fidenza","city_id":"1797","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"is_activated":"1"}, +{"id":"21853","name":"Finale Emilia","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21854","name":"Fiorano Modenese","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21855","name":"Fiorenzuola d Arda","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21856","name":"Forli","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21857","name":"Forlimpopoli","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21858","name":"Formigine","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21859","name":"Gambettola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21860","name":"Granarolo dell Emilia","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21861","name":"Guastalla","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21862","name":"Imola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21863","name":"Langhirano","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21864","name":"Lugo","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21865","name":"Luzzara","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21866","name":"Maranello","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21867","name":"Massa Lombarda","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21868","name":"Medesano","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21869","name":"Medicina","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21870","name":"Meldola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21871","name":"Mirandola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21872","name":"Misano Adriatico","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21873","name":"Modena","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21874","name":"Molinella","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21875","name":"Monte San Pietro","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21876","name":"Montecchio Emilia","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21877","name":"Montechiarugolo","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21878","name":"Noceto","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21879","name":"Nonantola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21880","name":"Novellara","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21881","name":"Novi di Modena","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21882","name":"Ozzano dell Emilia","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21883","name":"Parma","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21884","name":"Pavullo nel Frignano","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21885","name":"Piacenza","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21886","name":"Pianoro","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21887","name":"Ponticino","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21888","name":"Portomaggiore","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21889","name":"Quattro Castella","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21890","name":"Ravenna","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21891","name":"Reggio nell Emilia","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21892","name":"Reggiolo","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21893","name":"Riccione","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21894","name":"Rimini","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21895","name":"Rottofreno","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21896","name":"Rubiera","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21897","name":"Russi","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21898","name":"Salsomaggiore Terme","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21899","name":"San Felice sul Panaro","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21900","name":"San Giovanni in Persiceto","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21901","name":"San Lazzaro di Savena","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21902","name":"San Mauro Pascoli","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21903","name":"San Pietro in Casale","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21904","name":"Sant Ilario d Enza","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21905","name":"Santarcangelo di Romagna","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21906","name":"Sasso Marconi","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21907","name":"Sassuolo","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21908","name":"Savignano sul Panaro","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21909","name":"Savignano sul Rubicone","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21910","name":"Scandiano","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21911","name":"Soliera","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21912","name":"Sorbolo","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21913","name":"Spilamberto","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21914","name":"Verucchio","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21915","name":"Vignola","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21916","name":"Zola Predosa","city_id":"1797","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21917","name":"Saint Agostino","city_id":"1798","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21918","name":"Capalle","city_id":"1799","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21919","name":"Firenze","city_id":"1799","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21920","name":"Pelago","city_id":"1799","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21921","name":"San Donnino","city_id":"1799","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21922","name":"Scarperia","city_id":"1799","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21923","name":"Scandicci","city_id":"1800","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21924","name":"Sesto Fiorentino","city_id":"1800","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21925","name":"Casalvieri","city_id":"1803","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21926","name":"Frosinone","city_id":"1803","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21927","name":"Sgurgola","city_id":"1803","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21928","name":"Genoa","city_id":"1804","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21929","name":"Moneglia","city_id":"1804","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21930","name":"Romans d Isonzo","city_id":"1805","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21931","name":"Savogna d Isonzo","city_id":"1805","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21932","name":"Magliano de Marsi","city_id":"1806","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"is_activated":"1"}, +{"id":"21933","name":"Alatri","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21934","name":"Albano Laziale","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21935","name":"Anagni","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21936","name":"Anguillara Sabazia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21937","name":"Anzio","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21938","name":"Aprilia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21939","name":"Ardea","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21940","name":"Ariccia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21941","name":"Artena","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21942","name":"Boville Ernica","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21943","name":"Bracciano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21944","name":"Campagnano di Roma","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21945","name":"Cassino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21946","name":"Cave","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21947","name":"Ceccano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21948","name":"Ceprano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21949","name":"Cerveteri","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21950","name":"Ciampino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21951","name":"Cisterna","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21952","name":"Civita Castellana","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21953","name":"Civitavecchia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21954","name":"Colleferro","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21955","name":"Cori","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21956","name":"Fara in Sabina","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21957","name":"Ferentino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21958","name":"Fiano Romano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21959","name":"Fiuggi","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21960","name":"Fiumicino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21961","name":"Fondi","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21962","name":"Fonte Nuova","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21963","name":"Formello","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21964","name":"Formia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21965","name":"Frascati","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21966","name":"Gaeta","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21967","name":"Genzano di Roma","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21968","name":"Grottaferrata","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21969","name":"Guidonia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21970","name":"Isola del Liri","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21971","name":"Itri","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21972","name":"Ladispoli","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21973","name":"Lanuvio","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21974","name":"Lariano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21975","name":"Latina","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21976","name":"Marino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21977","name":"Mentana","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21978","name":"Minturno","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21979","name":"Monte San Giovanni Campano","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21980","name":"Montefiascone","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21981","name":"Monterotondo","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21982","name":"Nettuno","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21983","name":"Palestrina","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21984","name":"Palombara Sabina","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21985","name":"Pomezia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21986","name":"Pontecorvo","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21987","name":"Pontinia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21988","name":"Priverno","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21989","name":"Rieti","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21990","name":"Rocca Priora","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21991","name":"Rocca di Papa","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21992","name":"Rome","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21993","name":"Sabaudia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21994","name":"San Cesareo","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21995","name":"Santa Marinella","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21996","name":"Segni","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21997","name":"Sezze","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21998","name":"Soriano nel Cimino","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"21999","name":"Subiaco","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22000","name":"Tarquinia","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22001","name":"Terracina","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22002","name":"Tivoli","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22003","name":"Valmontone","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22004","name":"Velletri","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22005","name":"Veroli","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22006","name":"Vetralla","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22007","name":"Zagarolo","city_id":"1807","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22008","name":"Acquarica del Capo","city_id":"1808","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22009","name":"Airuno","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22010","name":"Bosisio Parini","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22011","name":"Lecco","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22012","name":"Margno","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22013","name":"Osnago","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22014","name":"Sirone","city_id":"1809","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22015","name":"Alassio","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22016","name":"Albenga","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22017","name":"Albisola Superiore","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22018","name":"Arcola","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22019","name":"Arenzano","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22020","name":"Bordighera","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22021","name":"Borgonuovo","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22022","name":"Cairo Montenotte","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22023","name":"Chiavari","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22024","name":"Cogoleto","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22025","name":"Finale Ligure","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22026","name":"Imperia","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22027","name":"La Spezia","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22028","name":"Lavagna","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22029","name":"Lerici","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22030","name":"Loano","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22031","name":"Ortonovo","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22032","name":"Pietra Ligure","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22033","name":"Rapallo","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22034","name":"Recco","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22035","name":"San Remo","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22036","name":"Santa Margherita Ligure","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22037","name":"Santo Stefano di Magra","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22038","name":"Sarzana","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22039","name":"Savona","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22040","name":"Sestri Levante","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22041","name":"Taggia","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22042","name":"Varazze","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22043","name":"Ventimiglia","city_id":"1810","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22044","name":"Somaglia","city_id":"1811","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22045","name":"Abbiategrasso","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22046","name":"Agrate Brianza","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22047","name":"Albiate","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22048","name":"Albino","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22049","name":"Albizzate","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22050","name":"Alzano Lombardo","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22051","name":"Arcisate","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22052","name":"Arconate","city_id":"1812","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"is_activated":"1"}, +{"id":"22053","name":"Arcore","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22054","name":"Arese","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22055","name":"Arluno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22056","name":"Asola","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22057","name":"Bagnolo Mella","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22058","name":"Ballabio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22059","name":"Bareggio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22060","name":"Basiglio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22061","name":"Bedizzole","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22062","name":"Bernareggio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22063","name":"Besana in Brianza","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22064","name":"Besozzo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22065","name":"Biassono","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22066","name":"Bienate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22067","name":"Bollate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22068","name":"Botticino","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22069","name":"Bovisio-Masciago","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22070","name":"Brembilla","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22071","name":"Bresso","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22072","name":"Broni","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22073","name":"Brugherio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22074","name":"Buccinasco","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22075","name":"Bussero","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22076","name":"Busto Arsizio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22077","name":"Busto Garolfo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22078","name":"Cairate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22079","name":"Calcinato","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22080","name":"Calolziocorte","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22081","name":"Calusco d Adda","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22082","name":"Canegrate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22083","name":"Cantu","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22084","name":"Carate Brianza","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22085","name":"Cardano al Campo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22086","name":"Caronno Pertusella","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22087","name":"Carpenedolo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22088","name":"Carugate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22089","name":"Carvico","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22090","name":"Casalpusterlengo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22091","name":"Casatenovo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22092","name":"Casazza","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22093","name":"Casnigo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22094","name":"Cassano Magnago","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22095","name":"Cassano d Adda","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22096","name":"Cassina de Pecchi","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22097","name":"Castano Primo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22098","name":"Castel Goffredo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22099","name":"Castel Mella","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22100","name":"Castellanza","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22101","name":"Castelleone","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22102","name":"Castelli Calepio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22103","name":"Castenedolo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22104","name":"Castiglione delle Stiviere","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22105","name":"Cazzago San Martino","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22106","name":"Cene","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22107","name":"Cermenate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22108","name":"Cernusco sul Naviglio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22109","name":"Cerro Maggiore","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22110","name":"Cesano Boscone","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22111","name":"Cesano Maderno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22112","name":"Cesate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22113","name":"Chiari","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22114","name":"Cilavegna","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22115","name":"Cinisello Balsamo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22116","name":"Cislago","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22117","name":"Clusone","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22118","name":"Codogno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22119","name":"Cologno Monzese","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22120","name":"Cologno al Serio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22121","name":"Como","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22122","name":"Concesio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22123","name":"Concorezzo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22124","name":"Corbetta","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22125","name":"Cormano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22126","name":"Cornaredo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22127","name":"Cornate d Adda","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22128","name":"Corsico","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22129","name":"Corte dei Cortesi","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22130","name":"Costa Volpino","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22131","name":"Crema","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22132","name":"Cremona","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22133","name":"Crocetta","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22134","name":"Curtatone","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22135","name":"Cusano Milanino","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22136","name":"Dalmine","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22137","name":"Darfo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22138","name":"Desenzano del Garda","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22139","name":"Desio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22140","name":"Erba","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22141","name":"Fagnano Olona","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22142","name":"Fino Mornasco","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22143","name":"Gaggiano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22144","name":"Galbiate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22145","name":"Gallarate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22146","name":"Gambolo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22147","name":"Garbagnate Milanese","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22148","name":"Gardone Val Trompia","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22149","name":"Garlasco","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22150","name":"Gavardo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22151","name":"Gavirate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22152","name":"Gerenzano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22153","name":"Ghedi","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22154","name":"Giussano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22155","name":"Goito","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22156","name":"Gonzaga","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22157","name":"Gorgonzola","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22158","name":"Gussago","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22159","name":"Gussola","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22160","name":"Induno Olona","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22161","name":"Inveruno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22162","name":"Inzago","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22163","name":"Iseo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22164","name":"Isola Dovarese","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22165","name":"Lacchiarella","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22166","name":"Lainate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22167","name":"Laveno-Mombello","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22168","name":"Leffe","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22169","name":"Legnano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22170","name":"Leno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22171","name":"Lentate sul Seveso","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22172","name":"Limbiate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22173","name":"Lissone","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22174","name":"Locate di Triulzi","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22175","name":"Lodi","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22176","name":"Lomazzo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22177","name":"Lonate Pozzolo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22178","name":"Lonato","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22179","name":"Luino","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22180","name":"Lumezzane","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22181","name":"Lurate Caccivio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22182","name":"Magenta","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22183","name":"Malnate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22184","name":"Mandello del Lario","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22185","name":"Manerbio","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22186","name":"Mantova","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22187","name":"Mariano Comense","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22188","name":"Martinengo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22189","name":"Mazzano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22190","name":"Meda","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22191","name":"Mediglia","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22192","name":"Melegnano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22193","name":"Melzo","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22194","name":"Merate","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22195","name":"Milano","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22196","name":"Molteno","city_id":"1812","created_at":"2024-01-21 12:06:53","updated_at":"2024-01-21 12:06:53","translations":null,"is_activated":"1"}, +{"id":"22197","name":"Montichiari","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22198","name":"Monza","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22199","name":"Morbegno","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22200","name":"Mornago","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22201","name":"Mortara","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22202","name":"Muggio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22203","name":"Nave","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22204","name":"Nembro","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22205","name":"Nerviano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22206","name":"Nova Milanese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22207","name":"Novate Milanese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22208","name":"Olgiate Comasco","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22209","name":"Olgiate Olona","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22210","name":"Opera","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22211","name":"Orzinuovi","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22212","name":"Osio Sotto","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22213","name":"Ospitaletto","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22214","name":"Paderno Dugnano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22215","name":"Palazzolo sull Oglio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22216","name":"Pandino","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22217","name":"Parabiago","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22218","name":"Paullo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22219","name":"Pavia","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22220","name":"Pero","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22221","name":"Peschiera Borromeo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22222","name":"Pessano con Bornago","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22223","name":"Pieve Emanuele","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22224","name":"Pioltello","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22225","name":"Ponte Nossa","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22226","name":"Ponte San Pietro","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22227","name":"Porto Mantovano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22228","name":"Pozzolengo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22229","name":"Rescaldina","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22230","name":"Rezzato","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22231","name":"Rho","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22232","name":"Rivarolo Mantovano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22233","name":"Rodano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22234","name":"Romano di Lombardia","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22235","name":"Rovato","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22236","name":"Rozzano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22237","name":"Saletto","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22238","name":"Samarate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22239","name":"San Donato Milanese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22240","name":"San Giuliano Milanese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22241","name":"Sant Angelo Lodigiano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22242","name":"Sarezzo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22243","name":"Saronno","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22244","name":"Scanzorosciate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22245","name":"Sedriano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22246","name":"Segrate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22247","name":"Senago","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22248","name":"Seregno","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22249","name":"Seriate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22250","name":"Sesto Calende","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22251","name":"Sesto San Giovanni","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22252","name":"Settimo Milanese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22253","name":"Seveso","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22254","name":"Sirmione","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22255","name":"Solaro","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22256","name":"Somma Lombardo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22257","name":"Sondrio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22258","name":"Soresina","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22259","name":"Sorisole","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22260","name":"Stezzano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22261","name":"Stradella","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22262","name":"Suzzara","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22263","name":"Tirano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22264","name":"Tornata","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22265","name":"Tradate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22266","name":"Travagliato","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22267","name":"Treviglio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22268","name":"Treviolo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22269","name":"Trezzano sul Naviglio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22270","name":"Trezzo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22271","name":"Tromello","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22272","name":"Uboldo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22273","name":"Urgnano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22274","name":"Usmate Velate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22275","name":"Valmadrera","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22276","name":"Varedo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22277","name":"Varese","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22278","name":"Verano Brianza","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22279","name":"Vergiate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22280","name":"Viadana","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22281","name":"Vigevano","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22282","name":"Vignate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22283","name":"Villa Carcina","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22284","name":"Villa Guardia","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22285","name":"Villasanta","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22286","name":"Vimercate","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22287","name":"Vimodrone","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22288","name":"Virgilio","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22289","name":"Voghera","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22290","name":"Zibido San Giacomo","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22291","name":"Zogno","city_id":"1812","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22292","name":"Barasso","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22293","name":"Bolladello","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22294","name":"Capergnanica","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22295","name":"Costa Masnaga","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22296","name":"Medolago","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22297","name":"Nibionno","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22298","name":"Sordio","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22299","name":"Torre d Isola","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22300","name":"Villongo","city_id":"1813","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22301","name":"Colmurano","city_id":"1814","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22302","name":"Monte San Giusto","city_id":"1814","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22303","name":"Castel","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22304","name":"Gazoldo","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22305","name":"Marmirolo","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22306","name":"Monzambano","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22307","name":"Ostiglia","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22308","name":"Pegognaga","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22309","name":"Poggio Rusco","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22310","name":"Quistello","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22311","name":"Roverbella","city_id":"1815","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22312","name":"Ancona","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22313","name":"Ascoli Piceno","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22314","name":"Barchi","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22315","name":"Cagli","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22316","name":"Castelfidardo","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22317","name":"Chiaravalle","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22318","name":"Cingoli","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22319","name":"Civitanova Marche","city_id":"1816","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"is_activated":"1"}, +{"id":"22320","name":"Corridonia","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22321","name":"Fabriano","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22322","name":"Falconara Marittima","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22323","name":"Fano","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22324","name":"Fermo","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22325","name":"Filottrano","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22326","name":"Folignano","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22327","name":"Fossombrone","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22328","name":"Grottammare","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22329","name":"Jesi","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22330","name":"Loreto","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22331","name":"Macerata","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22332","name":"Matelica","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22333","name":"Mondavio","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22334","name":"Mondolfo","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22335","name":"Montappone","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22336","name":"Montecosaro","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22337","name":"Montegranaro","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22338","name":"Montemarciano","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22339","name":"Monteprandone","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22340","name":"Morrovalle","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22341","name":"Osimo","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22342","name":"Pesaro","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22343","name":"Polverigi","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22344","name":"Porto Recanati","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22345","name":"Porto San Giorgio","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22346","name":"Porto Sant Elpidio","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22347","name":"Potenza Picena","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22348","name":"Recanati","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22349","name":"San Benedetto del Tronto","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22350","name":"San Severino Marche","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22351","name":"Sant Elpidio a Mare","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22352","name":"Senigallia","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22353","name":"Tolentino","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22354","name":"Treia","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22355","name":"Urbino","city_id":"1816","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22356","name":"Cumiana","city_id":"1817","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22357","name":"Giammoro","city_id":"1817","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22358","name":"Assago","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22359","name":"Burago Molgora","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22360","name":"Cuggiono","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22361","name":"Cusago","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22362","name":"Foro Buonaparte","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22363","name":"Gessate","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22364","name":"Liscate","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22365","name":"Noviglio","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22366","name":"Passirana Di Rho","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22367","name":"Pregnana Milane","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22368","name":"Trezzo Sull adda","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22369","name":"Tribiano","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22370","name":"Vaprio d Adda","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22371","name":"Vermezzo","city_id":"1818","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22372","name":"Bomporto","city_id":"1819","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22373","name":"Campogalliano","city_id":"1819","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22374","name":"Cavezzo","city_id":"1819","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22375","name":"Medolla","city_id":"1819","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22376","name":"San Possidonio","city_id":"1819","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22377","name":"Bojano","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22378","name":"Campobasso","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22379","name":"Cantalupo","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22380","name":"Isernia","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22381","name":"Termoli","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22382","name":"Venafro","city_id":"1820","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22383","name":"Forio d Ischia","city_id":"1824","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22384","name":"Bogogno","city_id":"1825","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22385","name":"Invorio","city_id":"1825","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22386","name":"Pombia","city_id":"1825","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22387","name":"Bagnoli di Sopra","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22388","name":"Bovolenta","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22389","name":"Casale Di Scodosia","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22390","name":"Cervarese Santa Croce","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22391","name":"Fontaniva","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22392","name":"Galliera Veneta","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22393","name":"Legnaro","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22394","name":"Limena","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22395","name":"Loreggia","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22396","name":"Massanzago","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22397","name":"Onara","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22398","name":"Ponso","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22399","name":"Portogallo","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22400","name":"Tribano","city_id":"1826","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22401","name":"Baganzola","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22402","name":"Busseto","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22403","name":"Casale Di Mezzani","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22404","name":"Fontevivo","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22405","name":"Solignano","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22406","name":"Torrile","city_id":"1827","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"is_activated":"1"}, +{"id":"22407","name":"Codevilla","city_id":"1828","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22408","name":"Marcignago","city_id":"1828","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22409","name":"Siziano","city_id":"1828","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22410","name":"Pianello","city_id":"1829","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22411","name":"Ponte Felcino","city_id":"1829","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22412","name":"Zanica","city_id":"1829","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22413","name":"Gradara","city_id":"1830","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22414","name":"Monte Porzio","city_id":"1830","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22415","name":"Pergola","city_id":"1830","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22416","name":"Tavullia","city_id":"1830","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22417","name":"Alseno","city_id":"1831","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22418","name":"Gossolengo","city_id":"1831","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22419","name":"Vigolzone","city_id":"1831","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22420","name":"Armeno","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22421","name":"Bergamasco","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22422","name":"Caselette","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22423","name":"Rosta","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22424","name":"San Damiano","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22425","name":"Spinetta Marengo","city_id":"1832","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22426","name":"Acqui Terme","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22427","name":"Alba","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22428","name":"Alessandria","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22429","name":"Alpignano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22430","name":"Andezeno","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22431","name":"Andonno","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22432","name":"Arona","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22433","name":"Asti","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22434","name":"Avigliana","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22435","name":"Baveno","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22436","name":"Beinasco","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22437","name":"Bellinzago Novarese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22438","name":"Biella","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22439","name":"Borgaro Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22440","name":"Borgo San Dalmazzo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22441","name":"Borgomanero","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22442","name":"Borgosesia","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22443","name":"Boves","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22444","name":"Busca","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22445","name":"Cameri","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22446","name":"Canelli","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22447","name":"Carignano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22448","name":"Carmagnola","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22449","name":"Casale Monferrato","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22450","name":"Caselle Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22451","name":"Castellamonte","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22452","name":"Castelletto sopra Ticino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22453","name":"Chieri","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22454","name":"Chivasso","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22455","name":"Cirie","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22456","name":"Collegno","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22457","name":"Cossato","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22458","name":"Cuneo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22459","name":"Cuorgne","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22460","name":"Domodossola","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22461","name":"Druento","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22462","name":"Fossano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22463","name":"Galliate","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22464","name":"Gassino Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22465","name":"Gattinara","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22466","name":"Giaveno","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22467","name":"Grugliasco","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22468","name":"Ivrea","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22469","name":"Leini","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22470","name":"Lusigliè","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22471","name":"Marano Ticino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22472","name":"Mergozzo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22473","name":"Moncalieri","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22474","name":"Mongrando","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22475","name":"Nichelino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22476","name":"Nizza Monferrato","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22477","name":"Novara","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22478","name":"Novi Ligure","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22479","name":"Oleggio","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22480","name":"Omegna","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22481","name":"Orbassano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22482","name":"Ovada","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22483","name":"Pianezza","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22484","name":"Pinerolo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22485","name":"Pino Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22486","name":"Piossasco","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22487","name":"Poirino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22488","name":"Racconigi","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22489","name":"Rivalta di Torino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22490","name":"Rivarolo Canavese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22491","name":"Rivoli","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22492","name":"Saluzzo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22493","name":"San Maurizio","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22494","name":"San Mauro Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22495","name":"Santena","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22496","name":"Santhia","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22497","name":"Savigliano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22498","name":"Settimo Torinese","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22499","name":"Torino","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22500","name":"Tortona","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22501","name":"Trecate","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22502","name":"Trofarello","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22503","name":"Valduggia","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22504","name":"Valenza","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22505","name":"Venaria Reale","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22506","name":"Verbania","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22507","name":"Vercelli","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22508","name":"Vinovo","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22509","name":"Volpiano","city_id":"1833","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22510","name":"Perignano","city_id":"1834","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22511","name":"Ponte a Egola","city_id":"1834","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"is_activated":"1"}, +{"id":"22512","name":"San Quirino","city_id":"1835","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22513","name":"Latronico","city_id":"1836","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22514","name":"Acquaviva delle Fonti","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22515","name":"Adelfia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22516","name":"Alberobello","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22517","name":"Altamura","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22518","name":"Andria","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22519","name":"Apricena","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22520","name":"Aradeo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22521","name":"Barletta","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22522","name":"Bisceglie","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22523","name":"Bitetto","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22524","name":"Bitonto","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22525","name":"Bitritto","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22526","name":"Brindisi","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22527","name":"Campi Salentina","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22528","name":"Canosa di Puglia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22529","name":"Capurso","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22530","name":"Carmiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22531","name":"Carovigno","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22532","name":"Casamassima","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22533","name":"Casarano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22534","name":"Cassano delle Murge","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22535","name":"Castellana Grotte","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22536","name":"Castellaneta","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22537","name":"Cavallino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22538","name":"Ceglie Messapica","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22539","name":"Cerignola","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22540","name":"Cisternino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22541","name":"Conversano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22542","name":"Copertino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22543","name":"Corato","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22544","name":"Crispiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22545","name":"Cutrofiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22546","name":"Erchie","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22547","name":"Fasano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22548","name":"Foggia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22549","name":"Francavilla Fontana","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22550","name":"Galatina","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22551","name":"Galatone","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22552","name":"Gallipoli","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22553","name":"Ginosa","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22554","name":"Gioia del Colle","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22555","name":"Giovinazzo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22556","name":"Gravina in Puglia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22557","name":"Grottaglie","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22558","name":"Grumo Appula","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22559","name":"Laterza","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22560","name":"Latiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22561","name":"Lecce","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22562","name":"Leverano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22563","name":"Lizzanello","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22564","name":"Lizzano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22565","name":"Locorotondo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22566","name":"Lucera","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22567","name":"Maglie","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22568","name":"Manduria","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22569","name":"Manfredonia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22570","name":"Margherita di Savoia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22571","name":"Martano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22572","name":"Martina Franca","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22573","name":"Massafra","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22574","name":"Matino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22575","name":"Melendugno","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22576","name":"Mesagne","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22577","name":"Minervino Murge","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22578","name":"Modugno","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22579","name":"Mola di Bari","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22580","name":"Molfetta","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22581","name":"Monopoli","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22582","name":"Monte Sant Angelo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22583","name":"Monteroni di Lecce","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22584","name":"Mottola","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22585","name":"Nardo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22586","name":"Neviano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22587","name":"Noci","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22588","name":"Noicattaro","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22589","name":"Novoli","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22590","name":"Oria","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22591","name":"Orta Nova","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22592","name":"Ostuni","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22593","name":"Palagiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22594","name":"Palo del Colle","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22595","name":"Parabita","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22596","name":"Polignano a Mare","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22597","name":"Pulsano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22598","name":"Putignano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22599","name":"Racale","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22600","name":"Ruffano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22601","name":"Rutigliano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22602","name":"Ruvo di Puglia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22603","name":"Salice Salentino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22604","name":"San Ferdinando di Puglia","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22605","name":"San Giorgio Ionico","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22606","name":"San Giovanni Rotondo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22607","name":"San Marco in Lamis","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22608","name":"San Marzano di San Giuseppe","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22609","name":"San Nicandro Garganico","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22610","name":"San Pancrazio Salentino","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22611","name":"San Pietro Vernotico","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22612","name":"San Severo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22613","name":"San Vito dei Normanni","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22614","name":"Sannicandro di Bari","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22615","name":"Santeramo in Colle","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22616","name":"Sava","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22617","name":"Squinzano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22618","name":"Statte","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22619","name":"Surbo","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22620","name":"Taranto","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22621","name":"Taurisano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22622","name":"Taviano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22623","name":"Terlizzi","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22624","name":"Toritto","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22625","name":"Torre Santa Susanna","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22626","name":"Torremaggiore","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22627","name":"Trani","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22628","name":"Trepuzzi","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22629","name":"Tricase","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22630","name":"Triggiano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22631","name":"Trinitapoli","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22632","name":"Ugento","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22633","name":"Valenzano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22634","name":"Veglie","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22635","name":"Vico del Gargano","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22636","name":"Vieste","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22637","name":"Villa Castelli","city_id":"1837","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"is_activated":"1"}, +{"id":"22638","name":"San Giovanni in Marignano","city_id":"1839","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22639","name":"Torriana","city_id":"1839","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22640","name":"Atena Lucana","city_id":"1841","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22641","name":"Giungano","city_id":"1841","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22642","name":"Omignano","city_id":"1841","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22643","name":"Alghero","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22644","name":"Arzachena","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22645","name":"Assemini","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22646","name":"Cabras","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22647","name":"Cagliari","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22648","name":"Capoterra","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22649","name":"Carbonia","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22650","name":"Dorgali","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22651","name":"Guspini","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22652","name":"Iglesias","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22653","name":"Ittiri","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22654","name":"La Maddalena","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22655","name":"Macomer","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22656","name":"Monserrato","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22657","name":"Nuoro","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22658","name":"Olbia","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22659","name":"Oristano","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22660","name":"Ozieri","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22661","name":"Porto Torres","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22662","name":"Quartu Sant Elena","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22663","name":"Quartucciu","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22664","name":"San Gavino Monreale","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22665","name":"Sanluri","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22666","name":"Sant Antioco","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22667","name":"Sassari","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22668","name":"Selargius","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22669","name":"Serramanna","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22670","name":"Sestu","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22671","name":"Siniscola","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22672","name":"Sinnai","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22673","name":"Sorso","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22674","name":"Tempio Pausania","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22675","name":"Terralba","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22676","name":"Tortoli","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22677","name":"Villacidro","city_id":"1842","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22678","name":"Nule","city_id":"1843","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22679","name":"Altare","city_id":"1844","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22680","name":"Aci Castello","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22681","name":"Aci Catena","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22682","name":"Aci Sant Antonio","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22683","name":"Acireale","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22684","name":"Adrano","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22685","name":"Agira","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22686","name":"Alcamo","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22687","name":"Altofonte","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22688","name":"Augusta","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22689","name":"Avola","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22690","name":"Bagheria","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22691","name":"Barcellona","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22692","name":"Barrafranca","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22693","name":"Belmonte Mezzagno","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22694","name":"Belpasso","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22695","name":"Biancavilla","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22696","name":"Bronte","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22697","name":"Caccamo","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22698","name":"Caltagirone","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22699","name":"Caltanissetta","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22700","name":"Campobello di Mazara","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22701","name":"Canicatti","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22702","name":"Capaci","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22703","name":"Capo d Orlando","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22704","name":"Carini","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22705","name":"Carlentini","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22706","name":"Castelbuono","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22707","name":"Casteldaccia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22708","name":"Castellammare del Golfo","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22709","name":"Castelvetrano","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22710","name":"Catania","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22711","name":"Catenanuova","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22712","name":"Cefalu","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22713","name":"Chiaramonte Gulfi","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22714","name":"Cinisi","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22715","name":"Comiso","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22716","name":"Corleone","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22717","name":"Enna","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22718","name":"Erice","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22719","name":"Ficarazzi","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22720","name":"Fiumefreddo di Sicilia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22721","name":"Floridia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22722","name":"Francofonte","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22723","name":"Gela","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22724","name":"Giardini-Naxos","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22725","name":"Giarre","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22726","name":"Grammichele","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22727","name":"Gravina di Catania","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22728","name":"Ispica","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22729","name":"Lentini","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22730","name":"Leonforte","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22731","name":"Lipari","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22732","name":"Marsala","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22733","name":"Mascali","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22734","name":"Mascalucia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22735","name":"Mazara del Vallo","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22736","name":"Mazzarino","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22737","name":"Melilli","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22738","name":"Messina","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22739","name":"Milazzo","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22740","name":"Militello in Val di Catania","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22741","name":"Misilmeri","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22742","name":"Misterbianco","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22743","name":"Modica","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22744","name":"Monreale","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22745","name":"Motta Sant Anastasia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22746","name":"Mussomeli","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22747","name":"Nicosia","city_id":"1845","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"is_activated":"1"}, +{"id":"22748","name":"Niscemi","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22749","name":"Noto","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22750","name":"Paceco","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22751","name":"Pachino","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22752","name":"Palagonia","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22753","name":"Palazzolo Acreide","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22754","name":"Partanna","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22755","name":"Partinico","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22756","name":"Paterno","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22757","name":"Pedara","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22758","name":"Piazza Armerina","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22759","name":"Pozzallo","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22760","name":"Priolo Gargallo","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22761","name":"Ragusa","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22762","name":"Ramacca","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22763","name":"Randazzo","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22764","name":"Riesi","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22765","name":"Riposto","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22766","name":"Rosolini","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22767","name":"Salemi","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22768","name":"San Cataldo","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22769","name":"San Giovanni la Punta","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22770","name":"San Giuseppe Jato","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22771","name":"San Gregorio di Catania","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22772","name":"Sant Agata di Militello","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22773","name":"Sant Agata li Battiati","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22774","name":"Santa Croce Camerina","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22775","name":"Santa Flavia","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22776","name":"Santa Teresa di Riva","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22777","name":"Scicli","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22778","name":"Scordia","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22779","name":"Siracusa","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22780","name":"Sortino","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22781","name":"Taormina","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22782","name":"Termini Imerese","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22783","name":"Terrasini","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22784","name":"Trabia","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22785","name":"Trapani","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22786","name":"Trecastagni","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22787","name":"Tremestieri Etneo","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22788","name":"Troina","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22789","name":"Valderice","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22790","name":"Valguarnera Caropepe","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22791","name":"Villabate","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22792","name":"Villafranca Tirrena","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22793","name":"Vittoria","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22794","name":"Zafferana Etnea","city_id":"1845","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22795","name":"Monteriggioni","city_id":"1846","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22796","name":"Monteroni d Arbia","city_id":"1846","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22797","name":"Delebio","city_id":"1847","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22798","name":"Talamona","city_id":"1847","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22799","name":"Faggiano","city_id":"1849","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22800","name":"Riva del Garda","city_id":"1849","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22801","name":"Castilenti","city_id":"1850","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22802","name":"Controguerra","city_id":"1850","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22803","name":"Bruino","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22804","name":"Busano","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22805","name":"Buttigliera Alta","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22806","name":"Cavour","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22807","name":"Colleretto Giacosa","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22808","name":"Cuceglio","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22809","name":"Mazze","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22810","name":"Mercenasco","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22811","name":"Piobesi","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22812","name":"Robassomero","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22813","name":"Scarmagno","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22814","name":"Strambino","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22815","name":"Turin","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22816","name":"Villar Perosa","city_id":"1851","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22817","name":"Agliana","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22818","name":"Altopascio","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22819","name":"Anghiari","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22820","name":"Arezzo","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22821","name":"Aulla","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22822","name":"Bagno a Ripoli","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22823","name":"Barberino di Mugello","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22824","name":"Barga","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22825","name":"Bibbiena","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22826","name":"Borgo San Lorenzo","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22827","name":"Bucine","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22828","name":"Buggiano","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22829","name":"Calcinaia","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22830","name":"Calenzano","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22831","name":"Camaiore","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22832","name":"Campi Bisenzio","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22833","name":"Campiglia Marittima","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22834","name":"Capannori","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22835","name":"Cappelle","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22836","name":"Capraia","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22837","name":"Carmignano","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22838","name":"Carrara","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22839","name":"Cascina","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22840","name":"Castagneto Carducci","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22841","name":"Castelfiorentino","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22842","name":"Castelfranco di Sotto","city_id":"1852","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"is_activated":"1"}, +{"id":"22843","name":"Castiglion Fiorentino","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22844","name":"Cecina","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22845","name":"Cerreto Guidi","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22846","name":"Certaldo","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22847","name":"Chiesina Uzzanese","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22848","name":"Chiusi","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22849","name":"Civitella in Val di Chiana","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22850","name":"Colle di Val d Elsa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22851","name":"Collesalvetti","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22852","name":"Cortona","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22853","name":"Empoli","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22854","name":"Fiesole","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22855","name":"Figline Valdarno","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22856","name":"Fivizzano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22857","name":"Florence","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22858","name":"Foiano della Chiana","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22859","name":"Follonica","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22860","name":"Forte dei Marmi","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22861","name":"Fucecchio","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22862","name":"Gavorrano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22863","name":"Greve in Chianti","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22864","name":"Grosseto","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22865","name":"Impruneta","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22866","name":"Lari","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22867","name":"Lastra a Signa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22868","name":"Livorno","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22869","name":"Lucca","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22870","name":"Massa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22871","name":"Massa Marittima","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22872","name":"Massarosa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22873","name":"Monsummano Terme","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22874","name":"Montale","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22875","name":"Monte Argentario","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22876","name":"Monte San Savino","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22877","name":"Montecatini-Terme","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22878","name":"Montelupo Fiorentino","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22879","name":"Montemurlo","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22880","name":"Montepulciano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22881","name":"Montespertoli","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22882","name":"Montignoso","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22883","name":"Montopoli in Val d Arno","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22884","name":"Orbetello","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22885","name":"Pescia","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22886","name":"Pietrasanta","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22887","name":"Pieve a Nievole","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22888","name":"Piombino","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22889","name":"Pisa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22890","name":"Pistoia","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22891","name":"Poggibonsi","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22892","name":"Poggio a Caiano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22893","name":"Ponsacco","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22894","name":"Pontassieve","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22895","name":"Pontedera","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22896","name":"Pontremoli","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22897","name":"Portoferraio","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22898","name":"Prato","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22899","name":"Quarrata","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22900","name":"Reggello","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22901","name":"Rignano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22902","name":"Roccastrada","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22903","name":"Rosignano Marittimo","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22904","name":"San Casciano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22905","name":"San Giovanni Valdarno","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22906","name":"San Giuliano Terme","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22907","name":"San Miniato","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22908","name":"Sansepolcro","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22909","name":"Santa Croce sull Arno","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22910","name":"Santa Maria a Monte","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22911","name":"Seravezza","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22912","name":"Serravalle Pistoiese","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22913","name":"Siena","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22914","name":"Signa","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22915","name":"Sinalunga","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22916","name":"Sovicille","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22917","name":"Terranuova Bracciolini","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22918","name":"Vaiano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22919","name":"Vecchiano","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22920","name":"Viareggio","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22921","name":"Vinci","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22922","name":"Volterra","city_id":"1852","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22923","name":"Guarrato","city_id":"1853","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22924","name":" San Giorgio","city_id":"1855","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22925","name":"Dro","city_id":"1855","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22926","name":"Asolo","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22927","name":"Conegliano","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22928","name":"Cordignano","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22929","name":"Gaiarine","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22930","name":"Ormelle","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22931","name":"Possagno","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22932","name":"Revine Lago","city_id":"1856","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22933","name":"Basiliano","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22934","name":"Bicinicco","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22935","name":"Buttrio","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22936","name":"Coseano","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22937","name":"Pradamano","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22938","name":"San Giovanni al Natisone","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22939","name":"Torreano","city_id":"1857","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22940","name":"Amelia","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22941","name":"Assisi","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22942","name":"Bastia Umbra","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22943","name":"Castiglione del Lago","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22944","name":"Citta di Castello","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22945","name":"Corciano","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22946","name":"Deruta","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22947","name":"Foligno","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22948","name":"Gualdo Tadino","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22949","name":"Gubbio","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22950","name":"Magione","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22951","name":"Marsciano","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22952","name":"Narni","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22953","name":"Orvieto","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22954","name":"Perugia","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22955","name":"San Giustino","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22956","name":"Spello","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22957","name":"Spoleto","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22958","name":"Terni","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22959","name":"Todi","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22960","name":"Umbertide","city_id":"1858","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"is_activated":"1"}, +{"id":"22961","name":"Arsago Seprio","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22962","name":"Gazzada","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22963","name":"Oggiona Con Santo Stefano","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22964","name":"Solbiate Arno","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22965","name":"Solbiate Olona","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22966","name":"Ternate","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22967","name":"Venegono Inferiore","city_id":"1860","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22968","name":"Abano Terme","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22969","name":"Adria","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22970","name":"Albignasego","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22971","name":"Altavilla Vicentina","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22972","name":"Arzignano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22973","name":"Badia Polesine","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22974","name":"Bassano del Grappa","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22975","name":"Belfiore","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22976","name":"Borso del Grappa","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22977","name":"Bovolone","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22978","name":"Bussolengo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22979","name":"Cadoneghe","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22980","name":"Caldogno","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22981","name":"Camisano Vicentino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22982","name":"Campodarsego","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22983","name":"Campolongo Maggiore","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22984","name":"Camponogara","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22985","name":"Camposampiero","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22986","name":"Caorle","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22987","name":"Carbonera","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22988","name":"Casale sul Sile","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22989","name":"Casier","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22990","name":"Cassola","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22991","name":"Castel d Azzano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22992","name":"Castelfranco Veneto","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22993","name":"Castello di Godego","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22994","name":"Castelnuovo del Garda","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22995","name":"Cavallino-Treporti","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22996","name":"Cavarzere","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22997","name":"Cerea","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22998","name":"Chiampo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"22999","name":"Chioggia","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23000","name":"Cittadella","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23001","name":"Colombano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23002","name":"Concordia Sagittaria","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23003","name":"Conselve","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23004","name":"Cornedo Vicentino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23005","name":"Creazzo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23006","name":"Dolo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23007","name":"Due Carrare","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23008","name":"Dueville","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23009","name":"Eraclea","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23010","name":"Este","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23011","name":"Feltre","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23012","name":"Galzignano Terme","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23013","name":"Grezzana","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23014","name":"Iesolo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23015","name":"Isola Vicentina","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23016","name":"Isola della Scala","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23017","name":"Jesolo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23018","name":"Legnago","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23019","name":"Lendinara","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23020","name":"Lonigo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23021","name":"Malo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23022","name":"Marano Vicentino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23023","name":"Marcon","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23024","name":"Marostica","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23025","name":"Martellago","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23026","name":"Mestrino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23027","name":"Mira","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23028","name":"Mirano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23029","name":"Mogliano Veneto","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23030","name":"Monselice","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23031","name":"Montagnana","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23032","name":"Montebelluna","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23033","name":"Montecchio Maggiore","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23034","name":"Montegrotto Terme","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23035","name":"Monticello Conte Otto","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23036","name":"Motta di Livenza","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23037","name":"Murano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23038","name":"Musile di Piave","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23039","name":"Mussolente","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23040","name":"Negrar","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23041","name":"Noale","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23042","name":"Noventa Padovana","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23043","name":"Noventa Vicentina","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23044","name":"Occhiobello","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23045","name":"Oderzo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23046","name":"Padova","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23047","name":"Padua","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23048","name":"Paese","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23049","name":"Pescantina","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23050","name":"Peschiera del Garda","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23051","name":"Pianiga","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23052","name":"Piazzola sul Brenta","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23053","name":"Pieve di Soligo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23054","name":"Pievebelvicino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23055","name":"Piombino Dese","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23056","name":"Piove di Sacco","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23057","name":"Ponte San Nicolo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23058","name":"Ponzano Veneto","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23059","name":"Porto Tolle","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23060","name":"Porto Viro","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23061","name":"Portogruaro","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23062","name":"Preganziol","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23063","name":"Quinto di Treviso","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23064","name":"Riese Pio X","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23065","name":"Romano dEzzelino","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23066","name":"Roncade","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23067","name":"Rosa","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23068","name":"Rovigo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23069","name":"Rubano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23070","name":"Salzano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23071","name":"San Biagio di Callalta","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23072","name":"San Bonifacio","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23073","name":"San Dona di Piave","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23074","name":"San Giovanni Lupatoto","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23075","name":"San Martino Buon Albergo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23076","name":"San Martino di Lupari","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23077","name":"San Michele al Tagliamento","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23078","name":"San Pietro in Cariano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23079","name":"San Vendemiano","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23080","name":"Sant Ambrogio","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23081","name":"Santa Maria di Sala","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23082","name":"Santo Stino di Livenza","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23083","name":"Santorso","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23084","name":"Saonara","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23085","name":"Sarcedo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23086","name":"Schio","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23087","name":"Scorze","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23088","name":"Sedico","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23089","name":"Selvazzano Dentro","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23090","name":"Silea","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23091","name":"Sivizzo","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23092","name":"Sommacampagna","city_id":"1861","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"is_activated":"1"}, +{"id":"23093","name":"Sona","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23094","name":"Spinea","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23095","name":"Spresiano","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23096","name":"Susegana","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23097","name":"Taglio di Po","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23098","name":"Teolo","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23099","name":"Tezze sul Brenta","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23100","name":"Thiene","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23101","name":"Torri di Quartesolo","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23102","name":"Trebaseleghe","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23103","name":"Trevignano","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23104","name":"Treviso","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23105","name":"Trissino","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23106","name":"Valdagno","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23107","name":"Valdobbiadene","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23108","name":"Valeggio sul Mincio","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23109","name":"Vedelago","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23110","name":"Venezia","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23111","name":"Venice","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23112","name":"Verona","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23113","name":"Vicenza","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23114","name":"Vigodarzere","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23115","name":"Vigonovo","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23116","name":"Vigonza","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23117","name":"Villafranca di Verona","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23118","name":"Villorba","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23119","name":"Vittorio Veneto","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23120","name":"Volpago del Montello","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23121","name":"Zane","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23122","name":"Zero Branco","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23123","name":"Zevio","city_id":"1861","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23124","name":"Cona","city_id":"1862","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23125","name":"Marghera","city_id":"1862","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23126","name":"Oriago di Mira","city_id":"1862","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23127","name":"Tessera","city_id":"1862","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23128","name":"Piedimulera","city_id":"1863","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23129","name":"Crescentino","city_id":"1864","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23130","name":"Moncrivello","city_id":"1864","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23131","name":"Rovasenda","city_id":"1864","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23132","name":"Trino","city_id":"1864","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23133","name":" Valeggio Sul Mincio","city_id":"1865","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23134","name":"Cadidavid","city_id":"1865","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23135","name":"Colognola ai Colli","city_id":"1865","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23136","name":"Pastrengo","city_id":"1865","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23137","name":"Valgatara","city_id":"1865","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23138","name":" Montebello Vicentino","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23139","name":"Alonte","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23140","name":"Arcugnano","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23141","name":"Barbarano Vicentino","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23142","name":"Breganze","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23143","name":"Brendola","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23144","name":"Bressanvido","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23145","name":"Carre","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23146","name":"Castelgomberto","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23147","name":"Costabissara","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23148","name":"Grumolo delle Abbadesse","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23149","name":"Piovene Rocchette","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23150","name":"Povolaro","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23151","name":"Rossano Veneto","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23152","name":"San Pietro di Rosa","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23153","name":"San Vito di Leguzzano","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23154","name":"Sandrigo","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23155","name":"Torrebelvicino","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23156","name":"Villaverla","city_id":"1866","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23157","name":"Nepi","city_id":"1867","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23158","name":"May Pen","city_id":"1869","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23159","name":"Lucea","city_id":"1870","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23160","name":"Mandeville","city_id":"1872","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23161","name":"Port Antonio","city_id":"1873","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"is_activated":"1"}, +{"id":"23162","name":"Albert Town","city_id":"1878","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23163","name":"Falmouth","city_id":"1878","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23164","name":"Savanna la Mar","city_id":"1879","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23165","name":"Agui","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23166","name":"Anjo","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23167","name":"Atsumi","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23168","name":"Bisai","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23169","name":"Chiryu","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23170","name":"Fujioka","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23171","name":"Fuso","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23172","name":"Gamagori","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23173","name":"Handa","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23174","name":"Hekinan","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23175","name":"Higashiura","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23176","name":"Ichinomiya","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23177","name":"Inazawa","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23178","name":"Inuyama","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23179","name":"Isshiki","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23180","name":"Iwakura","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23181","name":"Jimokuji","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23182","name":"Kanie","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23183","name":"Kariya","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23184","name":"Kasugai","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23185","name":"Kira","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23186","name":"Kisogawa","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23187","name":"Komaki","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23188","name":"Konan","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23189","name":"Kozakai","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23190","name":"Mihama","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23191","name":"Minamichita","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23192","name":"Miwa","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23193","name":"Miyoshi","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23194","name":"Nagakute","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23195","name":"Nagoya","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23196","name":"Nishiharu","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23197","name":"Nishio","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23198","name":"Nisshin","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23199","name":"Obu","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23200","name":"Oharu","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23201","name":"Okazaki","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23202","name":"Owariashi","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23203","name":"Saori","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23204","name":"Saya","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23205","name":"Seto","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23206","name":"Shikatsu","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23207","name":"Shinshiro","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23208","name":"Shippo","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23209","name":"Sobue","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23210","name":"Tahara","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23211","name":"Takahama","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23212","name":"Taketoyo","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23213","name":"Togo","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23214","name":"Tokai","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23215","name":"Tokoname","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23216","name":"Toyoake","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23217","name":"Toyohashi","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23218","name":"Toyokawa","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23219","name":"Toyota","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23220","name":"Tsushima","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23221","name":"Yatomi","city_id":"1880","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23222","name":"Akita","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23223","name":"Honjo","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23224","name":"Kazuno","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23225","name":"Noshiro","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23226","name":"Odate","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23227","name":"Oga","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23228","name":"Omagari","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23229","name":"Takanosu","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23230","name":"Tenno","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23231","name":"Ugo","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23232","name":"Yokote","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23233","name":"Yuzawa","city_id":"1881","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23234","name":"Aomori","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23235","name":"Goshogawara","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23236","name":"Hachinohe","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23237","name":"Hiraka","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23238","name":"Hirosaki","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23239","name":"Kizukuri","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23240","name":"Kuroishi","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23241","name":"Misawa","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23242","name":"Mutsu","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23243","name":"Namioka","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23244","name":"Towada","city_id":"1882","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23245","name":"Abiko","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23246","name":"Asahi","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23247","name":"Chiba","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23248","name":"Choshi","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23249","name":"Funabashi","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23250","name":"Fussa","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23251","name":"Futtsu","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23252","name":"Ichihara","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23253","name":"Ichikawa","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23254","name":"Inzai","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23255","name":"Kamagaya","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23256","name":"Kamogawa","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23257","name":"Kashiwa","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23258","name":"Katsuura","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23259","name":"Kimitsu","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23260","name":"Kisarazu","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23261","name":"Kujukuri","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23262","name":"Matsudo","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23263","name":"Mobara","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23264","name":"Nagareyama","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23265","name":"Narashino","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23266","name":"Narita","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23267","name":"Naruto","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23268","name":"Noda","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23269","name":"Oamishirasato","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23270","name":"Ohara","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23271","name":"Omigawa","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23272","name":"Sakae","city_id":"1883","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"is_activated":"1"}, +{"id":"23273","name":"Sakura","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23274","name":"Sambu","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23275","name":"Sawara","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23276","name":"Sekiyado","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23277","name":"Shiroi","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23278","name":"Shisui","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23279","name":"Shonan","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23280","name":"Sodegaura","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23281","name":"Tateyama","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23282","name":"Togane","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23283","name":"Tomisato","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23284","name":"Urayasu","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23285","name":"Yachimata","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23286","name":"Yachiyo","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23287","name":"Yokaichiba","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23288","name":"Yotsukaido","city_id":"1883","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23289","name":"Hojo","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23290","name":"Imabari","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23291","name":"Iyo","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23292","name":"Iyomishima","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23293","name":"Kawanoe","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23294","name":"Masaki","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23295","name":"Matsuyama","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23296","name":"Niihama","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23297","name":"Ozu","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23298","name":"Saijo","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23299","name":"Shigenobu","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23300","name":"Tobe","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23301","name":"Toyo","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23302","name":"Uwajima","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23303","name":"Yawatahama","city_id":"1884","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23304","name":"Fukui","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23305","name":"Harue","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23306","name":"Katsuyama","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23307","name":"Maruoka","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23308","name":"Mikuni","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23309","name":"Obama","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23310","name":"Ono","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23311","name":"Sabae","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23312","name":"Takefu","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23313","name":"Tsuruga","city_id":"1885","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23314","name":"Amagi","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23315","name":"Buzen","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23316","name":"Chikugo","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23317","name":"Chikushino","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23318","name":"Dazaifu","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23319","name":"Fukuma","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23320","name":"Fukuoka","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23321","name":"Hirokawa","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23322","name":"Honami","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23323","name":"Iizuka","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23324","name":"Inatsuki","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23325","name":"Kanda","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23326","name":"Kasuga","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23327","name":"Kasuya","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23328","name":"Kawasaki","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23329","name":"Kitakyushu","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23330","name":"Koga","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23331","name":"Kurate","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23332","name":"Kurume","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23333","name":"Maebaru","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23334","name":"Miyata","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23335","name":"Mizumaki","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23336","name":"Munakata","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23337","name":"Nakagawa","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23338","name":"Nakama","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23339","name":"Nogata","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23340","name":"Ogori","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23341","name":"Okagaki","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23342","name":"Okawa","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23343","name":"Omuta","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23344","name":"Onojo","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23345","name":"Sasaguri","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23346","name":"Setaka","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23347","name":"Shime","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23348","name":"Shingu","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23349","name":"Sue","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23350","name":"Tagawa","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23351","name":"Tanushimaru","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23352","name":"Umi","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23353","name":"Yamada","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23354","name":"Yame","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23355","name":"Yanagawa","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23356","name":"Yukuhashi","city_id":"1886","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23357","name":"Aizubange","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23358","name":"Aizuwakamatsu","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23359","name":"Fukushima","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23360","name":"Funehiki","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23361","name":"Haramachi","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23362","name":"Hobara","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23363","name":"Inawashiro","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23364","name":"Ishikawa","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23365","name":"Iwaki","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23366","name":"Kawamata","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23367","name":"Kitakata","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23368","name":"Koriyama","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23369","name":"Miharu","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23370","name":"Motomiya","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23371","name":"Namie","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23372","name":"Nihommatsu","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23373","name":"Shirakawa","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23374","name":"Soma","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23375","name":"Sukagawa","city_id":"1887","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23376","name":"Ena","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23377","name":"Gifu","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23378","name":"Ginan","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23379","name":"Godo","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23380","name":"Hashima","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23381","name":"Hozumi","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23382","name":"Ibigawa","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23383","name":"Ikeda","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23384","name":"Kakamigahara","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23385","name":"Kasamatsu","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23386","name":"Mino","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23387","name":"Minokamo","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23388","name":"Mitake","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23389","name":"Mizunami","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23390","name":"Nakatsugawa","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23391","name":"Ogaki","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23392","name":"Seki","city_id":"1888","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"is_activated":"1"}, +{"id":"23393","name":"Tajimi","city_id":"1888","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23394","name":"Takayama","city_id":"1888","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23395","name":"Tarui","city_id":"1888","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23396","name":"Toki","city_id":"1888","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23397","name":"Annaka","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23398","name":"Azuma","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23399","name":"Fujimi","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23400","name":"Gumma","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23401","name":"Haruna","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23402","name":"Isesaki","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23403","name":"Kasakake","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23404","name":"Kiryu","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23405","name":"Maebashi","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23406","name":"Nakanojo","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23407","name":"Nitta","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23408","name":"Numata","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23409","name":"Oizumi","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23410","name":"Omama","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23411","name":"Ora","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23412","name":"Ota","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23413","name":"Sakai","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23414","name":"Shibukawa","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23415","name":"Takasaki","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23416","name":"Tamamura","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23417","name":"Tatebayashi","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23418","name":"Tomioka","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23419","name":"Yoshii","city_id":"1889","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23420","name":"Fuchu","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23421","name":"Fukuyama","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23422","name":"Hatsukaichi","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23423","name":"Higashihiroshima","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23424","name":"Hiroshima","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23425","name":"Innoshima","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23426","name":"Kaita","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23427","name":"Kannabe","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23428","name":"Kumano","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23429","name":"Kure","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23430","name":"Kurose","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23431","name":"Mihara","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23432","name":"Onomichi","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23433","name":"Otake","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23434","name":"Shinichi","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23435","name":"Shobara","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23436","name":"Takehara","city_id":"1890","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23437","name":"Abashiri","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23438","name":"Akabira","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23439","name":"Asahikawa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23440","name":"Ashibetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23441","name":"Bibai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23442","name":"Bihoro","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23443","name":"Chitose","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23444","name":"Date","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23445","name":"Ebetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23446","name":"Eniwa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23447","name":"Fukagawa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23448","name":"Furano","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23449","name":"Hakodate","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23450","name":"Hokkaido","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23451","name":"Hyogo","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23452","name":"Ishikari","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23453","name":"Iwamizawa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23454","name":"Iwanai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23455","name":"Kamiiso","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23456","name":"Kitahiroshima","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23457","name":"Kitami","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23458","name":"Kushiro","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23459","name":"Makubetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23460","name":"Mikasa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23461","name":"Mombetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23462","name":"Muroran","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23463","name":"Nakashibetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23464","name":"Nanae","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23465","name":"Nayoro","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23466","name":"Nemuro","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23467","name":"Noboribetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23468","name":"Obihiro","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23469","name":"Otaru","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23470","name":"Otofuke","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23471","name":"Rumoi","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23472","name":"Sapporo","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23473","name":"Shibetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23474","name":"Shiraoi","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23475","name":"Shizunai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23476","name":"Sunagawa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23477","name":"Takikawa","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23478","name":"Tobetsu","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23479","name":"Tomakomai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23480","name":"Utashinai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23481","name":"Wakkanai","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23482","name":"Yoichi","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23483","name":"Yubari","city_id":"1891","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23484","name":"Aioi","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23485","name":"Akashi","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23486","name":"Ako","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23487","name":"Amagasaki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23488","name":"Ashiya","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23489","name":"Fukusaki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23490","name":"Harima","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23491","name":"Himeji","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23492","name":"Inagawa","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23493","name":"Inami","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23494","name":"Itami","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23495","name":"Kakogawa","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23496","name":"Kasai","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23497","name":"Kawanishi","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23498","name":"Kobe","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23499","name":"Kodera","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23500","name":"Miki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23501","name":"Nandan","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23502","name":"Nishinomiya","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23503","name":"Nishiwaki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23504","name":"Sanda","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23505","name":"Sasayama","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23506","name":"Sumoto","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23507","name":"Taishi","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23508","name":"Takarazuka","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23509","name":"Takasago","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23510","name":"Tatsuno","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23511","name":"Toyooka","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23512","name":"Yamasaki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23513","name":"Yashiro","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23514","name":"Yumesaki","city_id":"1892","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"is_activated":"1"}, +{"id":"23515","name":"Ami","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23516","name":"Chiyoda","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23517","name":"Daigo","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23518","name":"Edosaki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23519","name":"Fujishiro","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23520","name":"Hasaki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23521","name":"Hitachi","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23522","name":"Hitachinaka","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23523","name":"Hitachiota","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23524","name":"Hokota","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23525","name":"Ibaraki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23526","name":"Ina","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23527","name":"Ishige","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23528","name":"Ishioka","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23529","name":"Itako","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23530","name":"Iwai","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23531","name":"Iwase","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23532","name":"Kamisu","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23533","name":"Kasama","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23534","name":"Kashima","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23535","name":"Kasumigaura","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23536","name":"Kitaibaraki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23537","name":"Kukizaki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23538","name":"Makabe","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23539","name":"Minori","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23540","name":"Mito","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23541","name":"Mitsukaido","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23542","name":"Moriya","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23543","name":"Naka","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23544","name":"Oarai","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23545","name":"Omiya","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23546","name":"Ryugasaki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23547","name":"Sanwa","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23548","name":"Shimodate","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23549","name":"Shimotsuma","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23550","name":"Takahagi","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23551","name":"Tomobe","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23552","name":"Tone","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23553","name":"Toride","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23554","name":"Tsukuba","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23555","name":"Ushiku","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23556","name":"Yasato","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23557","name":"Yuki","city_id":"1893","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23558","name":"Hakui","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23559","name":"Kaga","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23560","name":"Kanazawa","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23561","name":"Komatsu","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23562","name":"Matto","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23563","name":"Nanao","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23564","name":"Nonoichi","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23565","name":"Suzu","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23566","name":"Tsubata","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23567","name":"Tsurugi","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23568","name":"Uchinada","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23569","name":"Wajima","city_id":"1894","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23570","name":"Daito","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23571","name":"Esashi","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23572","name":"Hanamaki","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23573","name":"Ichinohe","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23574","name":"Ichinoseki","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23575","name":"Iwate","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23576","name":"Kamaishi","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23577","name":"Kitakami","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23578","name":"Kuji","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23579","name":"Miyako","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23580","name":"Mizusawa","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23581","name":"Morioka","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23582","name":"Ninohe","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23583","name":"Ofunato","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23584","name":"Otsuchi","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23585","name":"Rikuzentakata","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23586","name":"Shiwa","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23587","name":"Shizukuishi","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23588","name":"Takizawa","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23589","name":"Tono","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23590","name":"Yahaba","city_id":"1895","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23591","name":"Kagawa","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23592","name":"Kanonji","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23593","name":"Kokubunji","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23594","name":"Marugame","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23595","name":"Ryonan","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23596","name":"Sakaide","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23597","name":"Shido","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23598","name":"Tadotsu","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23599","name":"Takamatsu","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23600","name":"Tonosho","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23601","name":"Zentsuji","city_id":"1896","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23602","name":"Aira","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23603","name":"Akune","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23604","name":"Hayato","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23605","name":"Ibusuki","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23606","name":"Ijuin","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23607","name":"Izumi","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23608","name":"Kagoshima","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23609","name":"Kajiki","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23610","name":"Kanoya","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23611","name":"Kaseda","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23612","name":"Kokubu","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23613","name":"Kushikino","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23614","name":"Makurazaki","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23615","name":"Naze","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23616","name":"Nishinoomote","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23617","name":"Okuchi","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23618","name":"Sendai","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23619","name":"Shibushi","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23620","name":"Sueyoshi","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23621","name":"Tarumizu","city_id":"1897","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23622","name":"Aikawa","city_id":"1898","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23623","name":"Atsugi","city_id":"1898","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"is_activated":"1"}, +{"id":"23624","name":"Ayase","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23625","name":"Chigasaki","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23626","name":"Ebina","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23627","name":"Fujisawa","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23628","name":"Hadano","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23629","name":"Hakone","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23630","name":"Hayama","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23631","name":"Hiratsuka","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23632","name":"Isehara","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23633","name":"Kamakura","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23634","name":"Minamiashigara","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23635","name":"Miura","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23636","name":"Ninomiya","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23637","name":"Odawara","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23638","name":"Oiso","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23639","name":"Sagamihara","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23640","name":"Samukawa","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23641","name":"Shiroyama","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23642","name":"Takatsu-Ku","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23643","name":"Tsukui","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23644","name":"Yamato","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23645","name":"Yokohama","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23646","name":"Yokosuka","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23647","name":"Yugawara","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23648","name":"Zama","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23649","name":"Zushi","city_id":"1898","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23650","name":"Gunma","city_id":"1899","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23651","name":"Saitama","city_id":"1899","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23652","name":"Aki","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23653","name":"Ino","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23654","name":"Muroto","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23655","name":"Nakamura","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23656","name":"Nankoku","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23657","name":"Sukumo","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23658","name":"Susaki","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23659","name":"Tosa","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23660","name":"Tosashimizu","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23661","name":"Tosayamada","city_id":"1900","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23662","name":"Arao","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23663","name":"Ashikita","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23664","name":"Aso","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23665","name":"Hitoyoshi","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23666","name":"Hondo","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23667","name":"Jonan","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23668","name":"Kikuchi","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23669","name":"Kikuyo","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23670","name":"Koshi","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23671","name":"Kumamoto","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23672","name":"Mashiki","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23673","name":"Matsubase","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23674","name":"Minamata","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23675","name":"Nishigoshi","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23676","name":"Tamana","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23677","name":"Ueki","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23678","name":"Ushibuka","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23679","name":"Uto","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23680","name":"Yamaga","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23681","name":"Yatsushiro","city_id":"1901","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23682","name":"Ayabe","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23683","name":"Fukuchiyama","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23684","name":"Joyo","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23685","name":"Kameoka","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23686","name":"Kizu","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23687","name":"Kumiyama","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23688","name":"Kyotanabe","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23689","name":"Kyoto","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23690","name":"Maizuru","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23691","name":"Miyazu","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23692","name":"Muko","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23693","name":"Nagaokakyo","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23694","name":"Seika","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23695","name":"Uji","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23696","name":"Yawata","city_id":"1902","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23697","name":"Ago","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23698","name":"Hisai","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23699","name":"Ise","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23700","name":"Kameyama","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23701","name":"Komono","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23702","name":"Kuwana","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23703","name":"Matsusaka","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23704","name":"Meiwa","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23705","name":"Nabari","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23706","name":"Owase","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23707","name":"Suzuka","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23708","name":"Toba","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23709","name":"Toin","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23710","name":"Tsu","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23711","name":"Ueno","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23712","name":"Yokkaichi","city_id":"1903","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23713","name":"Furukawa","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23714","name":"Hasama","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23715","name":"Ishinomaki","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23716","name":"Iwanuma","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23717","name":"Kakuda","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23718","name":"Kesennuma","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23719","name":"Kogota","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23720","name":"Marumori","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23721","name":"Natori","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23722","name":"Ogawara","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23723","name":"Rifu","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23724","name":"Shibata","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23725","name":"Shichigahama","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23726","name":"Shiogama","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23727","name":"Shiroishi","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23728","name":"Tagajo","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23729","name":"Taiwa","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23730","name":"Tomiya","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23731","name":"Wakuya","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23732","name":"Watari","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23733","name":"Yamoto","city_id":"1904","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23734","name":"Ebino","city_id":"1905","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23735","name":"Hyuga","city_id":"1905","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23736","name":"Kiyotake","city_id":"1905","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"is_activated":"1"}, +{"id":"23737","name":"Kobayashi","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23738","name":"Kunitomi","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23739","name":"Kushima","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23740","name":"Mimata","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23741","name":"Miyakonojo","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23742","name":"Miyazaki","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23743","name":"Nichinan","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23744","name":"Nobeoka","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23745","name":"Sadowara","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23746","name":"Saito","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23747","name":"Shintomi","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23748","name":"Takanabe","city_id":"1905","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23749","name":"Chino","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23750","name":"Hotaka","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23751","name":"Iida","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23752","name":"Iiyama","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23753","name":"Komagane","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23754","name":"Komoro","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23755","name":"Koshoku","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23756","name":"Maruko","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23757","name":"Matsumoto","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23758","name":"Minowa","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23759","name":"Nagano","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23760","name":"Nakano","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23761","name":"Okaya","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23762","name":"Omachi","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23763","name":"Shimosuwa","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23764","name":"Shiojiri","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23765","name":"Suwa","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23766","name":"Suzaka","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23767","name":"Tobu","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23768","name":"Toyoshina","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23769","name":"Ueda","city_id":"1906","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23770","name":"Fukue","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23771","name":"Hirado","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23772","name":"Isahaya","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23773","name":"Matsuura","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23774","name":"Nagasaki","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23775","name":"Nagayo","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23776","name":"Omura","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23777","name":"Sasebo","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23778","name":"Shimabara","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23779","name":"Togitsu","city_id":"1907","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23780","name":"Gojo","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23781","name":"Gose","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23782","name":"Haibara","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23783","name":"Heguri","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23784","name":"Ikagura","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23785","name":"Ikoma","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23786","name":"Kammaki","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23787","name":"Kashiba","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23788","name":"Kashihara","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23789","name":"Kawai","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23790","name":"Koryo","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23791","name":"Nara","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23792","name":"Oji","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23793","name":"Oyodo","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23794","name":"Sakurai","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23795","name":"Sango","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23796","name":"Tawaramoto","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23797","name":"Tenri","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23798","name":"Yamatokoriyama","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23799","name":"Yamatotakada","city_id":"1908","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23800","name":"Arai","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23801","name":"Gosen","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23802","name":"Itoigawa","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23803","name":"Joetsu","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23804","name":"Kameda","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23805","name":"Kamo","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23806","name":"Kashiwazaki","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23807","name":"Kurosaki","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23808","name":"Maki","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23809","name":"Mitsuke","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23810","name":"Muika","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23811","name":"Murakami","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23812","name":"Muramatsu","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23813","name":"Nagaoka","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23814","name":"Nakajo","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23815","name":"Niigata","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23816","name":"Niitsu","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23817","name":"Ojiya","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23818","name":"Ryotsu","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23819","name":"Sanjo","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23820","name":"Shiozawa","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23821","name":"Shirone","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23822","name":"Suibara","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23823","name":"Tochio","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23824","name":"Tokamachi","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23825","name":"Toyosaka","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23826","name":"Tsubame","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23827","name":"Yoshida","city_id":"1909","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23828","name":"Beppu","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23829","name":"Bungotakada","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23830","name":"Hiji","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23831","name":"Hita","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23832","name":"Kitsuki","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23833","name":"Kusu","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23834","name":"Nakatsu","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23835","name":"Oita","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23836","name":"Saiki","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23837","name":"Taketa","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23838","name":"Tsukumi","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23839","name":"Usa","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23840","name":"Usuki","city_id":"1910","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23841","name":"Bizen","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23842","name":"Ibara","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23843","name":"Kamogata","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23844","name":"Kasaoka","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23845","name":"Kurashiki","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23846","name":"Mabi","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23847","name":"Niimi","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23848","name":"Okayama","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23849","name":"Sanyo","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23850","name":"Soja","city_id":"1911","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"is_activated":"1"}, +{"id":"23851","name":"Takahashi","city_id":"1911","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23852","name":"Tamano","city_id":"1911","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23853","name":"Tsuyama","city_id":"1911","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23854","name":"Chatan","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23855","name":"Ginowan","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23856","name":"Gushikawa","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23857","name":"Haebaru","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23858","name":"Hirara","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23859","name":"Ishigaki","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23860","name":"Itoman","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23861","name":"Nago","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23862","name":"Nishihara","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23863","name":"Okinawa","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23864","name":"Tomigusuku","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23865","name":"Urasoe","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23866","name":"Yomitan","city_id":"1912","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23867","name":"Fujiidera","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23868","name":"Habikino","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23869","name":"Hannan","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23870","name":"Higashiosaka","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23871","name":"Hirakata","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23872","name":"Izumiotsu","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23873","name":"Izumisano","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23874","name":"Kadoma","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23875","name":"Kaizuka","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23876","name":"Kashiwara","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23877","name":"Katano","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23878","name":"Kawachinagano","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23879","name":"Kishiwada","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23880","name":"Kumatori","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23881","name":"Matsubara","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23882","name":"Misaki","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23883","name":"Moriguchi","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23884","name":"Neyagawa","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23885","name":"Osaka","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23886","name":"Osakasayama","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23887","name":"Sennan","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23888","name":"Settsu","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23889","name":"Shijonawate","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23890","name":"Shimamoto","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23891","name":"Suita","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23892","name":"Takaishi","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23893","name":"Takatsuki","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23894","name":"Tondabayashi","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23895","name":"Toyonaka","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23896","name":"Toyono","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23897","name":"Yao","city_id":"1913","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23898","name":"Imari","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23899","name":"Kanzaki","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23900","name":"Karatsu","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23901","name":"Kawasoe","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23902","name":"Saga","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23903","name":"Takeo","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23904","name":"Taku","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23905","name":"Tosu","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23906","name":"Ureshino","city_id":"1914","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23907","name":"Ageo","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23908","name":"Asaka","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23909","name":"Chichibu","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23910","name":"Fukaya","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23911","name":"Fukiage","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23912","name":"Gyoda","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23913","name":"Hanno","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23914","name":"Hanyu","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23915","name":"Hasuda","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23916","name":"Hatogaya","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23917","name":"Hatoyama","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23918","name":"Hidaka","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23919","name":"Higashimatsuyama","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23920","name":"Iruma","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23921","name":"Iwatsuki","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23922","name":"Kamifukuoka","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23923","name":"Kamisato","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23924","name":"Kasukabe","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23925","name":"Kawagoe","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23926","name":"Kawaguchi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23927","name":"Kawajima","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23928","name":"Kazo","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23929","name":"Kisai","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23930","name":"Kitamoto","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23931","name":"Kodama","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23932","name":"Konosu","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23933","name":"Koshigaya","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23934","name":"Kuki","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23935","name":"Kumagaya","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23936","name":"Kurihashi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23937","name":"Matsubushi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23938","name":"Menuma","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23939","name":"Misato","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23940","name":"Miyashiro","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23941","name":"Moroyama","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23942","name":"Niiza","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23943","name":"Ogawa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23944","name":"Oi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23945","name":"Okegawa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23946","name":"Saitma-Shi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23947","name":"Sakado","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23948","name":"Satte","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23949","name":"Sayama","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23950","name":"Shiki","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23951","name":"Shiraoka","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23952","name":"Shobu","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23953","name":"Showa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23954","name":"Soka","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23955","name":"Sugito","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23956","name":"Toda","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23957","name":"Tokorozawa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23958","name":"Tsurugashima","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23959","name":"Urawa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23960","name":"Wako","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23961","name":"Warabi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23962","name":"Washimiya","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23963","name":"Yashio","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23964","name":"Yono","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23965","name":"Yorii","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23966","name":"Yoshikawa","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23967","name":"Yoshimi","city_id":"1915","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"is_activated":"1"}, +{"id":"23968","name":"Hikone","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23969","name":"Hino","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23970","name":"Kosei","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23971","name":"Kusatsu","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23972","name":"Minakuchi","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23973","name":"Moriyama","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23974","name":"Nagahama","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23975","name":"Notogawa","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23976","name":"Omihachiman","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23977","name":"Otsu","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23978","name":"Ritto","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23979","name":"Shiga","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23980","name":"Yasu","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23981","name":"Yokaichi","city_id":"1916","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23982","name":"Gotsu","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23983","name":"Hamada","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23984","name":"Hikawa","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23985","name":"Hirata","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23986","name":"Izumo","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23987","name":"Masuda","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23988","name":"Matsue","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23989","name":"Yasugi","city_id":"1917","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23990","name":"Asaba","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23991","name":"Atami","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23992","name":"Fuji","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23993","name":"Fujieda","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23994","name":"Fujinomiya","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23995","name":"Fukuroi","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23996","name":"Gotemba","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23997","name":"Hamakita","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23998","name":"Hamamatsu","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"23999","name":"Hamaoka","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24000","name":"Hosoe","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24001","name":"Ito","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24002","name":"Iwata","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24003","name":"Kakegawa","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24004","name":"Kanaya","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24005","name":"Kannami","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24006","name":"Kikugawa","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24007","name":"Kosai","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24008","name":"Mishima","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24009","name":"Mori","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24010","name":"Nagaizumi","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24011","name":"Numazu","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24012","name":"Oigawa","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24013","name":"Oyama","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24014","name":"Ryuyo","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24015","name":"Sagara","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24016","name":"Shimada","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24017","name":"Shimizu","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24018","name":"Shimoda","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24019","name":"Shizuoka","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24020","name":"Susono","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24021","name":"Tenryu","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24022","name":"Toyoda","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24023","name":"Yaizu","city_id":"1918","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24024","name":"Ashikaga","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24025","name":"Imaichi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24026","name":"Iwafune","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24027","name":"Kaminokawa","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24028","name":"Kanuma","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24029","name":"Karasuyama","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24030","name":"Kawachi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24031","name":"Kuroiso","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24032","name":"Mashiko","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24033","name":"Mibu","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24034","name":"Minamikawachi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24035","name":"Moka","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24036","name":"Motegi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24037","name":"Nasu","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24038","name":"Nikko","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24039","name":"Nishinasuno","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24040","name":"Nogi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24041","name":"Ohira","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24042","name":"Otawara","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24043","name":"Sano","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24044","name":"Takanezawa","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24045","name":"Tanuma","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24046","name":"Tochigi","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24047","name":"Ujiie","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24048","name":"Utsunomiya","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24049","name":"Yaita","city_id":"1919","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24050","name":"Aizumi","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24051","name":"Anan","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24052","name":"Ishii","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24053","name":"Kamojima","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24054","name":"Kitajima","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24055","name":"Komatsushima","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24056","name":"Tokushima","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24057","name":"Waki","city_id":"1920","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24058","name":"Akiruno","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24059","name":"Akishima","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24060","name":"Chofu","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24061","name":"Hachioji","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24062","name":"Hamura","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24063","name":"Higashikurume","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24064","name":"Higashimurayama","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24065","name":"Higashiyamato","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24066","name":"Inagi","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24067","name":"Kiyose","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24068","name":"Kodaira","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24069","name":"Koganei","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24070","name":"Komae","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24071","name":"Kunitachi","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24072","name":"Machida","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24073","name":"Mitaka","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24074","name":"Mizuho","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24075","name":"Musashimurayama","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24076","name":"Musashino","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24077","name":"Ome","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24078","name":"Tachikawa","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24079","name":"Tama","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24080","name":"Tanashi","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24081","name":"Tokyo","city_id":"1921","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24082","name":"Kurayoshi","city_id":"1922","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24083","name":"Sakaiminato","city_id":"1922","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"is_activated":"1"}, +{"id":"24084","name":"Tottori","city_id":"1922","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24085","name":"Yonago","city_id":"1922","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24086","name":"Fukumitsu","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24087","name":"Himi","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24088","name":"Kamiichi","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24089","name":"Kosugi","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24090","name":"Kurobe","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24091","name":"Namerikawa","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24092","name":"Nyuzen","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24093","name":"Osawano","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24094","name":"Oyabe","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24095","name":"Shimminato","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24096","name":"Takaoka","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24097","name":"Tonami","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24098","name":"Toyama","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24099","name":"Uozu","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24100","name":"Yatsuo","city_id":"1923","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24101","name":"Arida","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24102","name":"Gobo","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24103","name":"Hashimoto","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24104","name":"Iwade","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24105","name":"Kainan","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24106","name":"Katsuragi","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24107","name":"Kishigawa","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24108","name":"Nachikatsuura","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24109","name":"Tanabe","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24110","name":"Wakayama","city_id":"1924","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24111","name":"Higashine","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24112","name":"Kahoku","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24113","name":"Kaminoyama","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24114","name":"Murayama","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24115","name":"Nagai","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24116","name":"Nanyo","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24117","name":"Obanazawa","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24118","name":"Sagae","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24119","name":"Sakata","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24120","name":"Shinjo","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24121","name":"Takahata","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24122","name":"Tendo","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24123","name":"Tsuchiura","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24124","name":"Tsuruoka","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24125","name":"Yamagata","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24126","name":"Yonezawa","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24127","name":"Yuza","city_id":"1925","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24128","name":"Hagi","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24129","name":"Hikari","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24130","name":"Hofu","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24131","name":"Iwakuni","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24132","name":"Kudamatsu","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24133","name":"Mine","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24134","name":"Nagato","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24135","name":"Onoda","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24136","name":"Shimonoseki","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24137","name":"Shinnanyo","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24138","name":"Tokuyama","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24139","name":"Toyoura","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24140","name":"Ube","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24141","name":"Yamaguchi","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24142","name":"Yanai","city_id":"1926","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24143","name":"Enzan","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24144","name":"Fujiyoshida","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24145","name":"Isawa","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24146","name":"Kofu","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24147","name":"Nirasaki","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24148","name":"Otsuki","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24149","name":"Ryuo","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24150","name":"Tsuru","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24151","name":"Uenohara","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24152","name":"Yamanashi","city_id":"1927","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24153","name":" Abbin","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24154","name":" Ajlun","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24155","name":" Anjarah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24156","name":" Arjan","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24157","name":" Ayn Janna","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24158","name":"Halawah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24159","name":"Kharbat al-Wahadnah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24160","name":"Kufranjah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24161","name":"Sakhrah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24162","name":"al-Hashamiyah","city_id":"1928","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24163","name":"Abu Alanda","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24164","name":"Amman","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24165","name":"Askan Abu Nusayr","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24166","name":"Jawa","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24167","name":"Khalda wa Tila -al- Ali","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24168","name":"Khraybat As-Suq","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24169","name":"Marj al-Hammam","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24170","name":"Na ur","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24171","name":"Nuzhat Sahab","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24172","name":"Sahab","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24173","name":"Shafa Badran","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24174","name":"Suwaylih","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24175","name":"Tariq","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24176","name":"Umm As-Summaq","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24177","name":"Umm Nuwarah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24178","name":"Umm Qusayr wal Muqabalin","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24179","name":"Umm al-Basatin","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24180","name":"Wadi as-Sir","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24181","name":"al- Abdaliyah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24182","name":"al-Binayat","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24183","name":"al-Faysaliyah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24184","name":"al-Jubayhah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24185","name":"al-Juwaydah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24186","name":"al-Quwaysimah","city_id":"1929","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"is_activated":"1"}, +{"id":"24187","name":"al-Yadudah","city_id":"1929","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24188","name":"at-Talbiyah","city_id":"1929","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24189","name":"at-Taybah","city_id":"1929","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24190","name":" Al al","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24191","name":" Anbah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24192","name":"Arhaba","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24193","name":"Aydun","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24194","name":"Bayt Idas","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24195","name":"Bayt Ras","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24196","name":"Bayt Yafa","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24197","name":"Bushra","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24198","name":"Dayr Abi Sa id","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24199","name":"Dayr Yusif","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24200","name":"Dayr as-Sa anah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24201","name":"Duwaqarah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24202","name":"Hakama","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24203","name":"Hatam","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24204","name":"Hawwarah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24205","name":"Irbid","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24206","name":"Jasar ash-Shaykh Hussayn","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24207","name":"Judayta","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24208","name":"Katam","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24209","name":"Kharja","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24210","name":"Kufur Awan","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24211","name":"Kufur Abil","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24212","name":"Kufur Asad","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24213","name":"Kufur Rakab","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24214","name":"Kufur Sum","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24215","name":"Kufur Yuba","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24216","name":"Kufur al-Ma ","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24217","name":"Kuraymah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24218","name":"Malka","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24219","name":"Mukhayyam al-Husun","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24220","name":"Qumaym","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24221","name":"Saham","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24222","name":"Sal","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24223","name":"Samma","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24224","name":"Sammaw ","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24225","name":"Sum","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24226","name":"Tabnah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24227","name":"Umm Qays","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24228","name":"Wadi al-Yabas","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24229","name":"Waqqas","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24230","name":"Zahar","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24231","name":"al-Ashrafiyah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24232","name":"al-Balawnah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24233","name":"al-Buwaydah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24234","name":"al-Husun","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24235","name":"al-Manshiyah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24236","name":"al-Mashari a","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24237","name":"al-Mazar ash-Shamaliyah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24238","name":"al-Mughayyar","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24239","name":"an-Nu aymeh","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24240","name":"ar-Ramtha","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24241","name":"as-Sarih","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24242","name":"ash-Shajarah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24243","name":"ash-Shunah ash-Shamaliyah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24244","name":"at-Turrah","city_id":"1930","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24245","name":"Balila","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24246","name":"Burma","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24247","name":"Jarash","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24248","name":"Kufur Khall","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24249","name":"Mukhayyam Ghazzah","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24250","name":"Mukhayyam Suf","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24251","name":"Qafqafa","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24252","name":"Raymun","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24253","name":"Sakab","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24254","name":"Suf","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24255","name":"al-Kattah","city_id":"1931","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24256","name":"Bayar","city_id":"1932","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24257","name":"Ma an","city_id":"1932","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24258","name":"Wadi Musa","city_id":"1932","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24259","name":"al-Hussayniyah","city_id":"1932","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24260","name":"al-Jafar","city_id":"1932","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24261","name":"Dhiban","city_id":"1933","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24262","name":"Ma in","city_id":"1933","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24263","name":"Madaba","city_id":"1933","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24264","name":"Mulayh","city_id":"1933","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24265","name":"al- Aqabah","city_id":"1934","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24266","name":"al-Quwayrah","city_id":"1934","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24267","name":" Ayn al-Basha","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24268","name":"Darar","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24269","name":"Juwafat al-Kafrayn","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24270","name":"Ma addi","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24271","name":"Mahas","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24272","name":"Safut","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24273","name":"Suknat ash-Shunah","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24274","name":"Yarqa","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24275","name":"al-Baq ah","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24276","name":"al-Fuhays","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24277","name":"al-Karamah","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24278","name":"as-Salt","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24279","name":"as-Sawalhah","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24280","name":"as-Subayhi","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24281","name":"at-Tawal al-Janubi","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24282","name":"at-Tuwal ash-Shamali","city_id":"1935","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24283","name":" Ayy","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24284","name":"Adar","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24285","name":"Faqqu ","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24286","name":"Ghawr al-Mazra ah","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24287","name":"Ghawr as-Safi","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24288","name":"Maw tah","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24289","name":"Sirfa","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24290","name":"al-Karak","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24291","name":"al-Mazar","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24292","name":"al-Qitranah","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24293","name":"ar-Rabbah","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24294","name":"ash-Shahabiyah","city_id":"1936","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24295","name":"Badiyat ar-Ruwayshid","city_id":"1937","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24296","name":"Bal ama","city_id":"1937","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"is_activated":"1"}, +{"id":"24297","name":"Manshiyat Bani Hassan","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24298","name":"Mugayyar as-Sarhan","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24299","name":"Sabha","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24300","name":"Sama as-Sarhan","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24301","name":"Umm al-Quttayn","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24302","name":"al-Hamra ","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24303","name":"al-Khaldiyah al-Jadidah","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24304","name":"al-Mabrukah","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24305","name":"al-Mafraq","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24306","name":"ar-Ruwayshid","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24307","name":"az-Za tari","city_id":"1937","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24308","name":"Busayrah","city_id":"1938","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24309","name":"al- Ayn al-Bayda","city_id":"1938","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24310","name":"al-Hasa","city_id":"1938","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24311","name":"al-Qadisiyah","city_id":"1938","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24312","name":"at-Tafilah","city_id":"1938","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24313","name":"Iskan al-Hashamiyah","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24314","name":"Mushayrfat Ras al- Ayn","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24315","name":"Shnillar","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24316","name":"ad-Dulayl","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24317","name":"al-Azraq ash-Shamali","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24318","name":"ar-Russayfah","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24319","name":"as-Sukhnah","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24320","name":"az-Zarqa ","city_id":"1939","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24321","name":"Akmecet","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24322","name":"Aral","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24323","name":"Baykonir","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24324","name":"Canakazali","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24325","name":"Canakorgan","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24326","name":"Cosali","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24327","name":"Kazali","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24328","name":"Sieli","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24329","name":"Tasboget","city_id":"1940","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24330","name":"Alekseevka","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24331","name":"Astana","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24332","name":"Atbasar","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24333","name":"Bestobe","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24334","name":"Caltir","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24335","name":"Colimbet","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24336","name":"Ereymentau","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24337","name":"Koksetau","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24338","name":"Makin","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24339","name":"Stepnogorsk","city_id":"1941","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24340","name":"Aktobe","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24341","name":"Alka","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24342","name":"Batamsi","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24343","name":"Embi","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24344","name":"Hromtau","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24345","name":"Kandagac","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24346","name":"Salkar","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24347","name":"Subarkudik","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24348","name":"Subarsi","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24349","name":"Temir","city_id":"1942","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24350","name":"Almati","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24351","name":"Almaty","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24352","name":"Boralday","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24353","name":"Carkant","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24354","name":"Energetyceskiy","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24355","name":"Esik","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24356","name":"Fabrichniy","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24357","name":"Kapsagay","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24358","name":"Karabulak","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24359","name":"Kaskelen","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24360","name":"Kirov","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24361","name":"Sariozek","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24362","name":"Sarkand","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24363","name":"Selek","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24364","name":"Taldikorgan","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24365","name":"Talgar","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24366","name":"Tekeli","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24367","name":"Ustobe","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24368","name":"Uzunagac","city_id":"1943","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24369","name":"Atirau","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24370","name":"Atyrau","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24371","name":"Dossor","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24372","name":"Inderbor","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24373","name":"Karaton","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24374","name":"Kulsari","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24375","name":"Makat","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24376","name":"Oporni","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24377","name":"Sumisker","city_id":"1944","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24378","name":"Abay","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24379","name":"Akadir","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24380","name":"Aktas","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24381","name":"Aktau","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24382","name":"Balkas","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24383","name":"Cayrem","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24384","name":"Cezkazgan","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24385","name":"Gulsat","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24386","name":"Karacal","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24387","name":"Karaganda","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24388","name":"Karkarali","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24389","name":"Karsakbay","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24390","name":"Konrat","city_id":"1947","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"is_activated":"1"}, +{"id":"24391","name":"Novodolinskiy","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24392","name":"Osakarovka","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24393","name":"Sahti","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24394","name":"Sarisagan","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24395","name":"Satpaev","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24396","name":"Temirtau","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24397","name":"Tokaryovka","city_id":"1947","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24398","name":"Arkalik","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24399","name":"Borovskoy","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24400","name":"Cetikara","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24401","name":"Derjavinsk","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24402","name":"Esil","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24403","name":"Fodorov","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24404","name":"Kacar","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24405","name":"Komsomol","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24406","name":"Kostanay","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24407","name":"Kusmurin","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24408","name":"Lisakovsk","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24409","name":"Rudni","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24410","name":"Tobol","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24411","name":"Uritsk","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24412","name":"Zatobolsk","city_id":"1948","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24413","name":"Beyneu","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24414","name":"Canaozen","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24415","name":"Cetibay","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24416","name":"Fort-Sevcenko","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24417","name":"Kurik","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24418","name":"Mangyslak","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24419","name":"Setpe","city_id":"1949","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24420","name":"Ekibastuz","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24421","name":"Ermak","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24422","name":"Ertis","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24423","name":"Kaciri","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24424","name":"Maykain","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24425","name":"Pavlodar","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24426","name":"Sarbakti","city_id":"1951","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24427","name":"Canatas","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24428","name":"Georgiyev","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24429","name":"Karatau","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24430","name":"Lugovoy","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24431","name":"Merke","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24432","name":"Mihaylov","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24433","name":"Oytal","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24434","name":"Su","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24435","name":"Taraz","city_id":"1954","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24436","name":"Gilgil","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24437","name":"Karatina","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24438","name":"Kiambu","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24439","name":"Kijabe","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24440","name":"Kikuyu","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24441","name":"Limuru","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24442","name":"Maragua","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24443","name":"Muranga","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24444","name":"Nyeri","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24445","name":"Ruiru","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24446","name":"Sagana","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24447","name":"Thika","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24448","name":"Vanga","city_id":"1102","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24449","name":"Changamwe","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24450","name":"Garsen","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24451","name":"Gazi","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24452","name":"Hola","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24453","name":"Kaloleni","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24454","name":"Kilifi","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24455","name":"Kinango","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24456","name":"Kipini","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24457","name":"Kwale","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24458","name":"Lamu","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24459","name":"Malindi","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24460","name":"Mambrui","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24461","name":"Mombasa","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24462","name":"Sawasawa","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24463","name":"Shimoni","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24464","name":"Takaungu","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24465","name":"Taveta","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24466","name":"Voi","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24467","name":"Witu","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24468","name":"Wundanyi","city_id":"1955","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24469","name":"Athi River","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24470","name":"Chuka","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24471","name":"Embu","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24472","name":"Isiolo","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24473","name":"Kangonde","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24474","name":"Kitui","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24475","name":"Machakos","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24476","name":"Mado Gashi","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24477","name":"Marsabit","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24478","name":"Mutomo","city_id":"140","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24479","name":"Nairobi","city_id":"1956","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"is_activated":"1"}, +{"id":"24480","name":"Homa Bay","city_id":"1958","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24481","name":"Kisii","city_id":"1958","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24482","name":"Kisumu","city_id":"1958","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24483","name":"Migori","city_id":"1958","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24484","name":"Bungoma","city_id":"143","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24485","name":"Busia","city_id":"143","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24486","name":"Kakamega","city_id":"143","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24487","name":"Mumias","city_id":"143","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24488","name":"Webuye","city_id":"143","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24489","name":"Taburao","city_id":"1960","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24490","name":"Binoinano","city_id":"1961","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24491","name":"Takaeang","city_id":"1962","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24492","name":"Roreti","city_id":"1963","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24493","name":"Ooma","city_id":"1964","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24494","name":"Tabukiniberu","city_id":"1965","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24495","name":"Butaritari","city_id":"1966","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24496","name":"Tabontebike","city_id":"1968","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24497","name":"Tabiauea","city_id":"1969","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24498","name":"Rawannawi","city_id":"1971","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24499","name":"Rungata","city_id":"1972","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24500","name":"Temaraia","city_id":"1973","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24501","name":"Ijaki","city_id":"1974","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24502","name":"Abaokoro","city_id":"1979","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24503","name":"Washington","city_id":"1982","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24504","name":"Kanggye","city_id":"1983","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"is_activated":"1"}, +{"id":"24505","name":"Cheongjin","city_id":"1984","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24506","name":"Kimchaek","city_id":"1984","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24507","name":"Najin","city_id":"1984","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24508","name":"Hamheung","city_id":"1985","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24509","name":"Sariweon","city_id":"1986","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24510","name":"Seongnim","city_id":"1986","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24511","name":"Haeju","city_id":"1987","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24512","name":"Kaeseong","city_id":"1988","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24513","name":"Weonsan","city_id":"1989","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24514","name":"Nampo","city_id":"1990","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24515","name":"Sineuiju","city_id":"1991","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24516","name":"Phyeongseong","city_id":"1992","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24517","name":"Pyeongyang","city_id":"1993","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24518","name":"Pyongyang","city_id":"1993","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24519","name":"Hyesan","city_id":"1994","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24520","name":"Busan","city_id":"1995","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24521","name":"Aeweol","city_id":"1996","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24522","name":"Cheju","city_id":"1996","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24523","name":"Seogwipo","city_id":"1996","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24524","name":"Cheonju","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24525","name":"Chongup","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24526","name":"Iksan","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24527","name":"Kimje","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24528","name":"Kochang","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24529","name":"Kunsan","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24530","name":"Namwon","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24531","name":"Puan","city_id":"1997","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24532","name":"Haenam","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24533","name":"Hwasun","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24534","name":"Kwangyang","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24535","name":"Kwangyang Up","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24536","name":"Mokpo","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24537","name":"Naju","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24538","name":"Peolgyo","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24539","name":"Suncheon","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24540","name":"Yeocheon","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24541","name":"Yeosu","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24542","name":"Yonggwang","city_id":"1998","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24543","name":"Cheongwon-gun","city_id":"1999","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24544","name":"Eumsung-Kun","city_id":"1999","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24545","name":"Jinchunkun","city_id":"1999","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24546","name":"Okcheon-gun","city_id":"1999","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24547","name":"Um Sung Gun","city_id":"1999","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24548","name":"Chechon","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24549","name":"Cheongju","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24550","name":"Chincheon","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24551","name":"Chungju","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24552","name":"Jincheon-gun","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24553","name":"Okchon","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24554","name":"Yongdong","city_id":"2000","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24555","name":"Asan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24556","name":"Cheonan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24557","name":"Chochiwon","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24558","name":"Geumsan-Gun","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24559","name":"Hongseong","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24560","name":"Kongju","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24561","name":"Kumsan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24562","name":"Nonsan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24563","name":"Poryong","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24564","name":"Puyeo","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24565","name":"Seonghwan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24566","name":"Seosan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24567","name":"Taean","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24568","name":"Taesan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24569","name":"Tangjin","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24570","name":"Yesan","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24571","name":"Yonmu","city_id":"2001","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"is_activated":"1"}, +{"id":"24572","name":"Chonan","city_id":"2002","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24573","name":"Danjin-gun","city_id":"2002","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24574","name":"Gongjusi","city_id":"2002","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24575","name":"Daegu","city_id":"2003","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24576","name":"Dalseo-gu","city_id":"2003","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24577","name":"Chungcheong","city_id":"2004","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24578","name":"Hoengseong","city_id":"2004","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24579","name":"Mummakeup","city_id":"2004","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24580","name":"Wonju","city_id":"2004","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24581","name":"Gimhae","city_id":"2005","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24582","name":"Goyang-si","city_id":"2005","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24583","name":"Ansan","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24584","name":"Anyang-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24585","name":"Anyangsi","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24586","name":"Buchon","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24587","name":"Buchun-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24588","name":"Byeoryangdong","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24589","name":"Dongan-gu","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24590","name":"Gimpo City","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24591","name":"Goyang","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24592","name":"Gupo-si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24593","name":"Guri-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24594","name":"Gwacheon Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24595","name":"Gwangju-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24596","name":"Hwaseong-si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24597","name":"Icheon-si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24598","name":"Iljuk-myeon","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24599","name":"Kwangju","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24600","name":"Pocheon-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24601","name":"Seongnam","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24602","name":"Shihung-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24603","name":"Siheung","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24604","name":"Sihung-si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24605","name":"Suwon","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24606","name":"Uijeongbu-dong","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24607","name":"Uiwang","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24608","name":"Yangju","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24609","name":"Yangpyeong-Gun","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24610","name":"Yeokbuk-Dong-Si","city_id":"2006","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24611","name":"Changwon","city_id":"2008","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24612","name":"Gimhae-si","city_id":"2008","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24613","name":"Incheon","city_id":"2009","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24614","name":"Kanghwa","city_id":"2009","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24615","name":"Namdongku","city_id":"2009","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24616","name":"Jeju","city_id":"2010","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24617","name":"Yeongpyeong-Dong","city_id":"2010","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24618","name":"Jeonju-Si","city_id":"2011","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24619","name":"Chuncheon","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24620","name":"Hongcheon","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24621","name":"Kangneung","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24622","name":"Samchok","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24623","name":"Seokcho","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24624","name":"Taebaek","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24625","name":"Tonghae","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24626","name":"Weonju","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24627","name":"Yeongweol","city_id":"1989","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24628","name":"Anseong","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24629","name":"Chongok","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24630","name":"Euijeongbu","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24631","name":"Euiwang","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24632","name":"Hanam","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24633","name":"Hoechon","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24634","name":"Hwado","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24635","name":"Hwasung","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24636","name":"Ichon","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24637","name":"Kihung","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24638","name":"Kimpo","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24639","name":"Koyang","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24640","name":"Kumchon","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24641","name":"Kunpo","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24642","name":"Kuri","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24643","name":"Kwacheon","city_id":"2013","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"is_activated":"1"}, +{"id":"24644","name":"Kwangmyeong","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24645","name":"Munsan","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24646","name":"Namyangju","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24647","name":"Osan","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24648","name":"Paengseong","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24649","name":"Pochon","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24650","name":"Pubal","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24651","name":"Pucheon","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24652","name":"Pyeongtaek","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24653","name":"Shiheung","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24654","name":"Suweon","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24655","name":"Tongducheon","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24656","name":"Wabu","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24657","name":"Yeoju","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24658","name":"Yongin","city_id":"2013","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24659","name":"Andong","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24660","name":"Angang","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24661","name":"Hayang","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24662","name":"Heunghae","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24663","name":"Kimcheon","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24664","name":"Kumi","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24665","name":"Kyeongju","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24666","name":"Kyeongsan","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24667","name":"Mungyong","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24668","name":"Ochon","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24669","name":"Oedong","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24670","name":"Pohang","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24671","name":"Sangju","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24672","name":"Seonsan","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24673","name":"Waegwan","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24674","name":"Yechon","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24675","name":"Yeongcheon","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24676","name":"Yeongju","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24677","name":"Yeonil","city_id":"2014","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24678","name":"Changweon","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24679","name":"Chinhae","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24680","name":"Chinju","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24681","name":"Chinyeong","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24682","name":"Keoje","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24683","name":"Kimhae","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24684","name":"Koseong","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24685","name":"Masan","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24686","name":"Miryang","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24687","name":"Naeso","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24688","name":"Sacheon","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24689","name":"Sinhyeon","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24690","name":"Tongyong","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24691","name":"Ungsang","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24692","name":"Yangsan","city_id":"2015","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24693","name":"Bucheon","city_id":"2016","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24694","name":"Sungnamshi","city_id":"2016","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24695","name":"Uijongbu","city_id":"2016","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24696","name":"Gumi-Shi","city_id":"2017","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24697","name":"Kyungsan","city_id":"2017","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24698","name":"Youngcheon-Si","city_id":"2017","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24699","name":"Bundang","city_id":"2018","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24700","name":"Gunpo","city_id":"2018","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24701","name":"Yangu","city_id":"2018","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24702","name":"Pochun","city_id":"2018","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24703","name":"Yonggi","city_id":"2018","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24704","name":"Kijang","city_id":"2019","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24705","name":"Pusan","city_id":"2019","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24706","name":"Seoul","city_id":"2020","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24707","name":"Hwawon","city_id":"2022","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24708","name":"Taegu","city_id":"2022","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24709","name":"Taejeon","city_id":"2023","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24710","name":"Daejeon","city_id":"2024","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24711","name":"Nongso","city_id":"2025","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24712","name":"Ulsan","city_id":"2025","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24713","name":"Heungup-Myun","city_id":"2026","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24714","name":"Inchon","city_id":"2027","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24715","name":"Taejon","city_id":"2027","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24716","name":"Hawalli","city_id":"2029","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"is_activated":"1"}, +{"id":"24717","name":"Massilah","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24718","name":"Mushrif","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24719","name":"Salwa ","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24720","name":"Sha ab","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24721","name":"Subbah-as-Salim","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24722","name":"al-Funaytis","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24723","name":"al-Funaytis-al-Garbiyah","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24724","name":"al-Jabiriyah","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24725","name":"al-Karim","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24726","name":"ar-Rumaythiyah","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24727","name":"as-Salimiyah","city_id":"2029","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24728","name":"Mishref","city_id":"2030","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24729","name":"Qadesiya","city_id":"2031","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24730","name":"Safat","city_id":"2032","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24731","name":"Salmiya","city_id":"2033","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24732","name":"A qaylah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24733","name":"Abu Hulayfah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24734","name":"Dahar","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24735","name":"Desert Area","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24736","name":"Hadiyah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24737","name":"Jabbar-al- Ali","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24738","name":"Shu aybah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24739","name":"al-Ahmadi","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24740","name":"al-Fintas","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24741","name":"al-Fuhayhil","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24742","name":"al-Mahbulah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24743","name":"al-Manqaf","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24744","name":"al-Wafrah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24745","name":"ar-Riqqah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24746","name":"as-Sabahiyah","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24747","name":"az-Zawr","city_id":"2034","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24748","name":" Umayriyah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24749","name":"Abraq Khitan","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24750","name":"Ardiyah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24751","name":"Fardaws","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24752","name":"Jalib ash-Shuyuh","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24753","name":"Janub-as-Surrah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24754","name":"Khitan-al-Janubiyah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24755","name":"Qartaba","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24756","name":"Riqay","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24757","name":"Sabhan","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24758","name":"Sarbah-an-Nasr","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24759","name":"Warmawk","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24760","name":"al-Andalus","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24761","name":"al-Farwaniyah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24762","name":"ar-Rabbiyah","city_id":"2035","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24763","name":"Amgarah","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24764","name":"Nasim","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24765","name":"Tayma ","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24766","name":"Uyawn","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24767","name":"Waha","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24768","name":"al-Jahra","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24769","name":"as-Sulaybiyah","city_id":"2036","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24770","name":" Abullah-as-Salam","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24771","name":"Ardhiyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24772","name":"Banayd-al-Qar","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24773","name":"Health District","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24774","name":"Kayfan","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24775","name":"Khalidiyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24776","name":"Mansuriyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24777","name":"Nuzha","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24778","name":"Qarnadah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24779","name":"Shamiyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24780","name":"ad-Da iyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24781","name":"ad-Dasma","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24782","name":"ad-Dawhah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24783","name":"al- Udayliyah","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24784","name":"al-Fayha","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24785","name":"al-Kuwayt","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24786","name":"as-Sulaybihat","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24787","name":"ash-Shuwaykh Industrial","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24788","name":"ash-Shuwaykh Reservoir","city_id":"2037","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24789","name":"Batken","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24790","name":"Isfana","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24791","name":"Khaidarkan","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24792","name":"Kyzyl-Kiya","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24793","name":"Ravat","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24794","name":"Sulukta","city_id":"2038","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24795","name":"Bishkek","city_id":"2039","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24796","name":"Ak-Suu","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24797","name":"Belovodskoye","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24798","name":"Boroldoy","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24799","name":"Chaldovar","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24800","name":"Chatkyol","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24801","name":"Chui","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24802","name":"Don Arik","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24803","name":"Ivanovka","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24804","name":"Jangyjar","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24805","name":"Jangypakhtar","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24806","name":"Kalininskoye","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24807","name":"Kalinovka","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24808","name":"Kara-Suu","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24809","name":"Karabalta","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24810","name":"Kayingdi","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24811","name":"Kegety","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24812","name":"Kemin","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24813","name":"Kosh Tegirmen","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24814","name":"Krasnaya Rechka","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24815","name":"Orlovka","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24816","name":"Sokuluk","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24817","name":"Sopokov","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24818","name":"Sosnovka","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24819","name":"Tokmok","city_id":"2040","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"is_activated":"1"}, +{"id":"24820","name":"Tunuk","city_id":"2040","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24821","name":"Yuryevka","city_id":"2040","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24822","name":"Ak-Bulok","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24823","name":"Ak-Terek","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24824","name":"Ananyevo","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24825","name":"Balykchy","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24826","name":"Barskoon","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24827","name":"Cholpon-Ata","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24828","name":"Darkhon","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24829","name":"Enilchek","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24830","name":"Grigoryevka","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24831","name":"Jyrgolon","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24832","name":"Kara-Say","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24833","name":"Karako","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24834","name":"Karakol","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24835","name":"Kuturgu","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24836","name":"Mikhaylovka","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24837","name":"Novovoznesenovka","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24838","name":"Ottuk","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24839","name":"Semyonovka","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24840","name":"Taldy-Suu","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24841","name":"Teploklyuchenka","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24842","name":"Tyup","city_id":"2041","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24843","name":"Ala Buka","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24844","name":"Bazarkurgon","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24845","name":"Jalal-Abad","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24846","name":"Jangybazar","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24847","name":"Karavan","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24848","name":"Kochkor-Ata","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24849","name":"Kok-Jangak","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24850","name":"Mailuu-Suu","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24851","name":"Tash-Kumyr","city_id":"2042","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24852","name":"At-Bashi","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24853","name":"Chaiek","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24854","name":"Kayirma","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24855","name":"Kek-Algyp","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24856","name":"Kochkorka","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24857","name":"Kulanak","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24858","name":"Mingbulok","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24859","name":"Mingkush","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24860","name":"Naryn","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24861","name":"Ugyut","city_id":"2043","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24862","name":"Daraut-Korgan","city_id":"2044","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24863","name":"Gulcha","city_id":"2044","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24864","name":"Leninskoye","city_id":"2044","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24865","name":"Osh","city_id":"2044","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24866","name":"Uzgen","city_id":"2044","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24867","name":"Chat-Bazar","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24868","name":"Groznoye","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24869","name":"Kara-Kul","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24870","name":"Klyuchevka","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24871","name":"Kyzyl-Adyr","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24872","name":"Leninopol","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24873","name":"Maimak","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24874","name":"Talas","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24875","name":"Toktogul","city_id":"2045","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24876","name":"Samakhixai","city_id":"2046","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24877","name":"Huayxay","city_id":"2047","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24878","name":"Pakxan","city_id":"2048","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24879","name":"Champasak","city_id":"2049","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24880","name":"Muang Khong","city_id":"2049","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24881","name":"Muang Khongxedon","city_id":"2049","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24882","name":"Pakxe","city_id":"2049","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24883","name":"Xam Nua","city_id":"2050","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24884","name":"Thakek","city_id":"2051","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24885","name":"Ban Nahin","city_id":"2054","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24886","name":"Phongsaly","city_id":"2055","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24887","name":"Saravan","city_id":"2056","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"is_activated":"1"}, +{"id":"24888","name":"Savannakhet","city_id":"2057","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24889","name":"Sekong","city_id":"2058","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24890","name":"Xaignabury","city_id":"2061","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24891","name":"Aizkraukle","city_id":"2063","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24892","name":"Jaunjelgava","city_id":"2063","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24893","name":"Plavinas","city_id":"2063","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24894","name":"Aluksne","city_id":"2064","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24895","name":"Ape","city_id":"2064","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24896","name":"Balvi","city_id":"2065","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24897","name":"Vilaka","city_id":"2065","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24898","name":"Bauska","city_id":"2066","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24899","name":"Cesis","city_id":"2067","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24900","name":"Ligatne","city_id":"2067","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24901","name":"Ilukste","city_id":"2068","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24902","name":"Subate","city_id":"2068","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24903","name":"Auce","city_id":"2070","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24904","name":"Dobele","city_id":"2070","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24905","name":"Gulbene","city_id":"2071","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24906","name":"Akniste","city_id":"2072","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24907","name":"Jekabspils","city_id":"2072","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24908","name":"Viesite","city_id":"2072","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24909","name":"Jelgava","city_id":"2073","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24910","name":"Kalnciems","city_id":"2074","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24911","name":"Dagda","city_id":"2076","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24912","name":"Kraslava","city_id":"2076","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24913","name":"Kuldiga","city_id":"2077","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24914","name":"Skrunda","city_id":"2077","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24915","name":"Liepaja","city_id":"2078","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24916","name":"Aizpute","city_id":"2079","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24917","name":"Durbe","city_id":"2079","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24918","name":"Grobina","city_id":"2079","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24919","name":"Pavilosta","city_id":"2079","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24920","name":"Priekule","city_id":"2079","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24921","name":"Ainazhi","city_id":"2080","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24922","name":"Aloja","city_id":"2080","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24923","name":"Limbazhi","city_id":"2080","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24924","name":"Salacgriva","city_id":"2080","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24925","name":"Staicele","city_id":"2080","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24926","name":"Karsava","city_id":"2081","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24927","name":"Ludza","city_id":"2081","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24928","name":"Zilupe","city_id":"2081","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"is_activated":"1"}, +{"id":"24929","name":"Cesvaine","city_id":"2082","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24930","name":"Lubana","city_id":"2082","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24931","name":"Madona","city_id":"2082","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24932","name":"Varaklani","city_id":"2082","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24933","name":"Ikskile","city_id":"2083","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24934","name":"Kegums","city_id":"2083","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24935","name":"Lielvarde","city_id":"2083","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24936","name":"Ogre","city_id":"2083","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24937","name":"Livani","city_id":"2084","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24938","name":"Preili","city_id":"2084","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24939","name":"Rezekne","city_id":"2085","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24940","name":"Vilani","city_id":"2086","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24941","name":"Riga","city_id":"2087","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24942","name":"Baldone","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24943","name":"Balozhi","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24944","name":"Olaine","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24945","name":"Salaspils","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24946","name":"Saulkrasti","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24947","name":"Sigulda","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24948","name":"Vangazhi","city_id":"2088","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24949","name":"Broceni","city_id":"2089","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24950","name":"Saldus","city_id":"2089","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24951","name":"Sabile","city_id":"2090","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24952","name":"Stende","city_id":"2090","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24953","name":"Talsi","city_id":"2090","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24954","name":"Valdemarpils","city_id":"2090","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24955","name":"Kandava","city_id":"2091","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24956","name":"Tukums","city_id":"2091","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24957","name":"Seda","city_id":"2092","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24958","name":"Smiltene","city_id":"2092","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24959","name":"Strenchi","city_id":"2092","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24960","name":"Valka","city_id":"2092","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24961","name":"Mazsalaca","city_id":"2093","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24962","name":"Rujiena","city_id":"2093","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24963","name":"Valmiera","city_id":"2093","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24964","name":"Piltene","city_id":"2094","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24965","name":"Beirut","city_id":"2096","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24966","name":"Jdeidet el Metn","city_id":"2096","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24967","name":"Jnaah","city_id":"2096","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24968","name":"Sidon","city_id":"2100","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24969","name":"Ba labakk","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24970","name":"Jubb Jannin","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24971","name":"Rashayya","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24972","name":"Riyak","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24973","name":"Zahlah","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24974","name":"al-Hirmil","city_id":"2101","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24975","name":"Jazzin","city_id":"2102","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24976","name":"Juwayya","city_id":"2102","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24977","name":"Sur","city_id":"2102","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"is_activated":"1"}, +{"id":"24978","name":"Marj Uyun","city_id":"2103","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24979","name":"Nabatieh","city_id":"2103","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24980","name":"an-Nabatiyat-at-Tahta","city_id":"2103","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24981","name":"Tarabulus ash-Sham","city_id":"2104","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24982","name":"al-Batrun","city_id":"2104","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24983","name":"Teyateyaneng","city_id":"2105","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24984","name":"Butha Buthe","city_id":"2106","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24985","name":"Hlotse","city_id":"2107","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24986","name":"Maputsoa","city_id":"2107","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24987","name":"Mafeteng","city_id":"2108","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24988","name":"Maseru","city_id":"2109","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24989","name":"Mokhotlong","city_id":"2111","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24990","name":"Quthing","city_id":"2113","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24991","name":"Thaba-Tseka","city_id":"2114","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24992","name":"Tubmanburg","city_id":"2115","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24993","name":"Gbarnga","city_id":"2116","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24994","name":"Voinjama","city_id":"2120","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24995","name":"Harbel","city_id":"2121","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24996","name":"Kakata","city_id":"2121","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24997","name":"Bensonville","city_id":"2123","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24998","name":"Monrovia","city_id":"2123","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"24999","name":"Ganta","city_id":"2124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25000","name":"Sanniquellie","city_id":"2124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25001","name":"Yekepa","city_id":"2124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25002","name":"Rivercess","city_id":"2125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25003","name":"Greenville","city_id":"2126","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25004","name":"Ajdabiya","city_id":"2127","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25005","name":"Awjilah","city_id":"2127","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25006","name":"Marsa al-Burayqah","city_id":"2127","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25007","name":"az-Zuwaytinah","city_id":"2127","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25008","name":"Awbari","city_id":"2128","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25009","name":"Ghat","city_id":"2128","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"is_activated":"1"}, +{"id":"25010","name":"Banghazi","city_id":"2129","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25011","name":"Suluq","city_id":"2129","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25012","name":"al-Quriyah","city_id":"2129","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25013","name":"Darnah","city_id":"2130","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25014","name":"Ghadamis","city_id":"2131","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25015","name":"Nalut","city_id":"2131","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25016","name":"Gharyan","city_id":"2132","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25017","name":"Mizdah","city_id":"2132","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25018","name":"al-Qaryah-ash-Sharqiyah","city_id":"2132","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25019","name":"Misratah","city_id":"2133","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25020","name":"Murzuq","city_id":"2134","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25021","name":"Bani Walid","city_id":"2136","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25022","name":"Surt","city_id":"2137","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25023","name":"Tarabulus","city_id":"2138","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25024","name":"Tarhunah","city_id":"2139","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25025","name":"Misrata","city_id":"2140","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25026","name":"Bardiyah","city_id":"2141","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25027","name":"Tubruq","city_id":"2141","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25028","name":"Yafran","city_id":"2142","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25029","name":"Zlitan","city_id":"2143","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25030","name":"al-Aziziyah","city_id":"2144","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25031","name":"al-Abyar","city_id":"2145","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25032","name":"al-Marj","city_id":"2145","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25033","name":"Waddan","city_id":"2147","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25034","name":"al-Khums","city_id":"2148","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25035","name":"al-Jawf","city_id":"2149","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25036","name":"Birak","city_id":"2151","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25037","name":"az-Zawiyah","city_id":"2152","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25038","name":"Balzers","city_id":"2153","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"is_activated":"1"}, +{"id":"25039","name":"Eschen","city_id":"2154","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25040","name":"Gamprin","city_id":"2155","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25041","name":"Mauren","city_id":"2156","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25042","name":"Planken","city_id":"2157","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25043","name":"Ruggell","city_id":"2158","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25044","name":"Schaan","city_id":"2159","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25045","name":"Schellenberg","city_id":"2160","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25046","name":"Triesen","city_id":"2161","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25047","name":"Triesenberg","city_id":"2162","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25048","name":"Vaduz","city_id":"2163","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25049","name":"Alytus","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25050","name":"Daugai","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25051","name":"Druskininkai","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25052","name":"Lazdijai","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25053","name":"Simnas","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25054","name":"Varena","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25055","name":"Veisiejai","city_id":"2164","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25056","name":"Anyksciai","city_id":"2165","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25057","name":"Ariogala","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25058","name":"Birshtonas","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25059","name":"Dotnuva","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25060","name":"Ezherelis","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25061","name":"Garliava","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25062","name":"Jieznas","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25063","name":"Jonava","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25064","name":"Kachergine","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25065","name":"Kaishiadorys","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25066","name":"Kaunas","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25067","name":"Kedainiai","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25068","name":"Kulautuva","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25069","name":"Prienai","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25070","name":"Raseiniai","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25071","name":"Vilkija","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25072","name":"Zhiezhmariai","city_id":"2166","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25073","name":"Gargzhdai","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25074","name":"Klaipeda","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25075","name":"Kretinga","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25076","name":"Neringa","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25077","name":"Pagegiai","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25078","name":"Palanga","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25079","name":"Panemune","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25080","name":"Rusne","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25081","name":"Salantai","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25082","name":"Shilute","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25083","name":"Skuodas","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25084","name":"Zhemaichiu Naumiestis","city_id":"2167","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25085","name":"Gelgaudishkis","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25086","name":"Kalvarija","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25087","name":"Kazlu Ruda","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25088","name":"Kudirkos Naumiestis","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25089","name":"Kybartai","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25090","name":"Marijampole","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25091","name":"Shakiai","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25092","name":"Vilkavishkis","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25093","name":"Virbalis","city_id":"2168","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25094","name":"Birzhai","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25095","name":"Jonishkelis","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25096","name":"Juodupe","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25097","name":"Kupishkis","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25098","name":"Obeliai","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25099","name":"Pandelys","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25100","name":"Panevezhys","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25101","name":"Panevezio","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25102","name":"Pasvalys","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25103","name":"Ramygala","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25104","name":"Rokishkis","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25105","name":"Subachius","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25106","name":"Vabalninkas","city_id":"2169","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25107","name":"Panevezys","city_id":"2170","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"is_activated":"1"}, +{"id":"25108","name":"Akmene","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25109","name":"Jonishkis","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25110","name":"Kelme","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25111","name":"Kurshenai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25112","name":"Linkuva","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25113","name":"Naujoji Akmene","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25114","name":"Pakruojis","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25115","name":"Radvilishkis","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25116","name":"Sheduva","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25117","name":"Shiauliai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25118","name":"Siauliai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25119","name":"Tyruliai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25120","name":"Tytuvenai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25121","name":"Uzhventis","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25122","name":"Venta","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25123","name":"Viekshniai","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25124","name":"Zhagare","city_id":"2171","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25125","name":"Jurbarkas","city_id":"2172","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25126","name":"Shilale","city_id":"2172","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25127","name":"Skaudvile","city_id":"2172","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25128","name":"Smalininkai","city_id":"2172","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25129","name":"Taurage","city_id":"2172","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25130","name":"Mazheikiai","city_id":"2173","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25131","name":"Plunge","city_id":"2173","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25132","name":"Rietavas","city_id":"2173","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25133","name":"Telshiai","city_id":"2173","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25134","name":"Varniai","city_id":"2173","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25135","name":"Mazeikiai","city_id":"2174","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25136","name":"Anykshchiai","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25137","name":"Dukshtas","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25138","name":"Dusetos","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25139","name":"Ignalina","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25140","name":"Kavarskas","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25141","name":"Moletai","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25142","name":"Troshkunai","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25143","name":"Turmantas","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25144","name":"Utena","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25145","name":"Visaginas","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25146","name":"Zarasai","city_id":"2175","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25147","name":"Baltoji Voke","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25148","name":"Eishishkes","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25149","name":"Elektrenai","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25150","name":"Grigishkes","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25151","name":"Lentvaris","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25152","name":"Nemenchine","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25153","name":"Pabrade","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25154","name":"Rudishkes","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25155","name":"Shalchininkai","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25156","name":"Shirvintos","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25157","name":"Shvenchioneliai","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25158","name":"Shvenchionys","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25159","name":"Trakai","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25160","name":"Ukmerge","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25161","name":"Vievis","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25162","name":"Vilnius","city_id":"2176","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25163","name":"Bascharage","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25164","name":"Bettange-sur-Mess","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25165","name":"Bridel","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25166","name":"Capellen","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25167","name":"Clemency","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25168","name":"Dahlem","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25169","name":"Dippach","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25170","name":"Dondelange","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25171","name":"Eischen","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25172","name":"Fingig","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25173","name":"Garnich","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25174","name":"Goeblange","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25175","name":"Goetzingen","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25176","name":"Grass","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25177","name":"Greisch","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25178","name":"Hautcharage","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25179","name":"Hivange","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25180","name":"Hobscheid","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25181","name":"Holzem","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25182","name":"Kahler","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25183","name":"Kehlen","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25184","name":"Keispelt","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25185","name":"Kleinbettingen","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25186","name":"Koerich","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25187","name":"Kospstal","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25188","name":"Linger","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25189","name":"Mamer","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25190","name":"Meispelt","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25191","name":"Nospelt","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25192","name":"Olm","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25193","name":"Roodt","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25194","name":"Schouweiler","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25195","name":"Septfontaines","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25196","name":"Sprinkange","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25197","name":"Steinfort","city_id":"2177","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25198","name":"Allerborn","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25199","name":"Asselborn","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25200","name":"Basbellain","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25201","name":"Beiler","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25202","name":"Binsfeld","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25203","name":"Biwisch","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25204","name":"Bockholtz","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25205","name":"Boevange","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25206","name":"Boxhorn","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25207","name":"Brachtenbach","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25208","name":"Breidfeld","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25209","name":"Cinqfontaines","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25210","name":"Clervaux","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25211","name":"Consthum","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25212","name":"Crendal","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25213","name":"Deiffelt-Lentzweiler","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25214","name":"Derenbach","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25215","name":"Doennange","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25216","name":"Dorscheid","city_id":"2178","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"is_activated":"1"}, +{"id":"25217","name":"Drauffelt","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25218","name":"Drinklange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25219","name":"Eisenbach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25220","name":"Eselborn","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25221","name":"Fischbach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25222","name":"Goedange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25223","name":"Grindhausen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25224","name":"Hachiville","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25225","name":"Hamiville","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25226","name":"Hautbellain","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25227","name":"Heinerscheid","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25228","name":"Hoffelt","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25229","name":"Holler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25230","name":"Holzthum","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25231","name":"Hosingen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25232","name":"Huldange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25233","name":"Hupperdange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25234","name":"Kalborn","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25235","name":"Leithum","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25236","name":"Lieler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25237","name":"Lullange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25238","name":"Marnach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25239","name":"Maulusmuehle","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25240","name":"Munshausen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25241","name":"Neidhausen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25242","name":"Niederwampach-Schimpach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25243","name":"Oberwampach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25244","name":"Reuler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25245","name":"Roder","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25246","name":"Rodershausen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25247","name":"Rumlange-Lentzweiler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25248","name":"Sassel","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25249","name":"Siebenaler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25250","name":"Stockem","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25251","name":"Troine-Hinterhasselt","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25252","name":"Troine-Route","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25253","name":"Troisvierges","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25254","name":"Urspelt","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25255","name":"Wahlhausen","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25256","name":"Weicherdange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25257","name":"Weiler","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25258","name":"Weiswampach","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25259","name":"Wilwerdange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25260","name":"Wincrange","city_id":"2178","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25261","name":"Bastendorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25262","name":"Bettendorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25263","name":"Bigelbach","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25264","name":"Bourscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25265","name":"Brandenbourg","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25266","name":"Burden","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25267","name":"Diekirch","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25268","name":"Eppeldorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25269","name":"Ermsdorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25270","name":"Erpeldange","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25271","name":"Ettelbruck","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25272","name":"Folkendange","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25273","name":"Gilsdorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25274","name":"Hoesdorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25275","name":"Hoscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25276","name":"Hoscheid-Dickt","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25277","name":"Ingeldorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25278","name":"Kehmen-Scheidel","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25279","name":"Landscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25280","name":"Lipperscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25281","name":"Medernach","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25282","name":"Mertzig","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25283","name":"Michelau","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25284","name":"Moestroff","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25285","name":"Niederfeulen","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25286","name":"Oberfeulen","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25287","name":"Reisdorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25288","name":"Savelborn + Fermes","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25289","name":"Schieren","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25290","name":"Schlindermanderscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25291","name":"Tandel","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25292","name":"Wallendorf","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25293","name":"Warken","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25294","name":"Welscheid","city_id":"2179","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25295","name":"Altrier","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25296","name":"Beaufort","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25297","name":"Bech","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25298","name":"Berdorf","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25299","name":"Bollendorf-Pont","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25300","name":"Born","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25301","name":"Boursdorf","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25302","name":"Breidweiler","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25303","name":"Christnach","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25304","name":"Consdorf","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25305","name":"Dickweiler","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25306","name":"Echternach","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25307","name":"Girst","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25308","name":"Girsterklaus","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25309","name":"Givenich","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25310","name":"Grundhof","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25311","name":"Haller","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25312","name":"Hemstal","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25313","name":"Hersberg-Kobenbour-Graulinster","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25314","name":"Hinkel","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25315","name":"Moersdorf","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25316","name":"Mompach","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25317","name":"Mullerthal","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25318","name":"Osweiler","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25319","name":"Rippig","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25320","name":"Rosport","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25321","name":"Scheidgen","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25322","name":"Waldbillig","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25323","name":"Weilerbach","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25324","name":"Zittig","city_id":"2180","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25325","name":"Abweiler","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25326","name":"Aspelt","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25327","name":"Belvaux","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25328","name":"Bergem","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25329","name":"Bettembourg","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25330","name":"Bivange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25331","name":"Crauthem","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25332","name":"Differdange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25333","name":"Dudelange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25334","name":"Ehlange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25335","name":"Ehlerange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25336","name":"Esch-Alzette","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25337","name":"Fennange","city_id":"2181","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"is_activated":"1"}, +{"id":"25338","name":"Foetz","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25339","name":"Fousbann","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25340","name":"Frisange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25341","name":"Hellange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25342","name":"Huncherange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25343","name":"Kayl","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25344","name":"Kockelscheuer","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25345","name":"Lamadelaine","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25346","name":"Lasauvage","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25347","name":"Leudelange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25348","name":"Limpach","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25349","name":"Livange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25350","name":"Mondercange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25351","name":"Niedercorn","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25352","name":"Noertzange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25353","name":"Obercorn","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25354","name":"Peppange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25355","name":"Petange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25356","name":"Pissange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25357","name":"Pontpierre","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25358","name":"Reckange-sur-Mess","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25359","name":"Rodange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25360","name":"Roedgen","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25361","name":"Roeser","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25362","name":"Rumelange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25363","name":"Sanem","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25364","name":"Schifflange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25365","name":"Soleuvre","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25366","name":"Tetange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25367","name":"Wickrange","city_id":"2181","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25368","name":"Ahn-Dreiborn","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25369","name":"Altlinster","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25370","name":"Beidweiler","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25371","name":"Berbourg","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25372","name":"Berg","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25373","name":"Beyren","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25374","name":"Biwer","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25375","name":"Biwerbach","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25376","name":"Boudler","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25377","name":"Boudlerbach","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25378","name":"Bourglinster","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25379","name":"Breinert","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25380","name":"Brouch","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25381","name":"Ehnen","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25382","name":"Eisenborn","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25383","name":"Eschweiler","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25384","name":"Flaxweiler","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25385","name":"Godbrange","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25386","name":"Gonderange","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25387","name":"Gostingen","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25388","name":"Graulinster-Blumenthal","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25389","name":"Grevenmacher","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25390","name":"Hagelsdorf","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25391","name":"Imbringen","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25392","name":"Junglinster","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25393","name":"Lellig","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25394","name":"Machtum","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25395","name":"Manternach","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25396","name":"Mensdorf","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25397","name":"Mertert","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25398","name":"Munschecker","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25399","name":"Niederdonven","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25400","name":"Oberdonven","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25401","name":"Olingen","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25402","name":"Rodenbourg","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25403","name":"Roodt-sur-Syr","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25404","name":"Wasserbillig","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25405","name":"Wecker","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25406","name":"Wecker-Gare","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25407","name":"Weydig","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25408","name":"Wormeldange","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25409","name":"Wormeldange-Haut","city_id":"2182","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25410","name":"Alzingen","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25411","name":"Bereldange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25412","name":"Bertrange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25413","name":"Contern","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25414","name":"Ernster","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25415","name":"Fentange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25416","name":"Findel","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25417","name":"Hassel","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25418","name":"Heisdorf","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25419","name":"Helmsange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25420","name":"Hesperange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25421","name":"Hostert","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25422","name":"Howald","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25423","name":"Itzig","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25424","name":"Luxembourg","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25425","name":"Medingen","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25426","name":"Moutfort","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25427","name":"Mullendorf","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25428","name":"Munsbach","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25429","name":"Neuhaeusgen","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25430","name":"Niederanven","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25431","name":"Oberanven","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25432","name":"Oetrange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25433","name":"Rameldange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25434","name":"Sandweiler","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25435","name":"Schrassig","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25436","name":"Schuttrange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25437","name":"Senningen","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25438","name":"Senningerberg","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25439","name":"Steinsel","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25440","name":"Strassen","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25441","name":"Syren","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25442","name":"Uebersyren","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25443","name":"Waldhof","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25444","name":"Walferdange","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25445","name":"Weiler-la-Tour","city_id":"429","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25446","name":"Angelsberg","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25447","name":"Ansembourg","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25448","name":"Bissen","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25449","name":"Blaschette","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25450","name":"Boevange-Attert","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25451","name":"Bofferdange","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25452","name":"Bour","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25453","name":"Buschdorf","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25454","name":"Colmar-Berg","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25455","name":"Cruchten","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25456","name":"Ernzen","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25457","name":"Glabach","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25458","name":"Gosseldange","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25459","name":"Grevenknapp-Bill-Finsterthal","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25460","name":"Heffingen","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25461","name":"Helmdange","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25462","name":"Hollenfels","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25463","name":"Hunsdorf","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25464","name":"Larochette","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25465","name":"Lintgen","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25466","name":"Lorentzweiler","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25467","name":"Marienthal","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25468","name":"Mersch","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25469","name":"Moesdorf","city_id":"2183","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"is_activated":"1"}, +{"id":"25470","name":"Nommern","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25471","name":"Pettingen","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25472","name":"Prettange","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25473","name":"Reckange","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25474","name":"Reuland","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25475","name":"Rollingen","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25476","name":"Scherbach","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25477","name":"Scherfenhof","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25478","name":"Schiltzberg","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25479","name":"Schoenfels","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25480","name":"Schoos","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25481","name":"Schrondweiler","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25482","name":"Tuntange","city_id":"2183","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25483","name":"Arsdorf","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25484","name":"Beckerich","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25485","name":"Bettborn","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25486","name":"Bigonville","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25487","name":"Bilsdorf","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25488","name":"Brattert-Rindschleiden","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25489","name":"Buschrodt","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25490","name":"Calmus","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25491","name":"Colpach-Bas","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25492","name":"Colpach-Haut","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25493","name":"Dellen-Lehrhof-Grevels","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25494","name":"Ehner","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25495","name":"Ell","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25496","name":"Eltz","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25497","name":"Elvange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25498","name":"Eschette","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25499","name":"Everlange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25500","name":"Folschette","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25501","name":"Grevels","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25502","name":"Grosbous","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25503","name":"Haut-Martelange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25504","name":"Heispelt","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25505","name":"Holtz","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25506","name":"Hovelange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25507","name":"Huttange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25508","name":"Kapweiler","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25509","name":"Koetschette","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25510","name":"Kuborn","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25511","name":"Lannen","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25512","name":"Levelange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25513","name":"Michelbouch","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25514","name":"Nagem","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25515","name":"Niederpallen","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25516","name":"Noerdange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25517","name":"Oberpallen","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25518","name":"Ospern","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25519","name":"Perle","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25520","name":"Petit-Nobressart","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25521","name":"Platen","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25522","name":"Pratz","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25523","name":"Rambrouch","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25524","name":"Redange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25525","name":"Reichlange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25526","name":"Reimberg","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25527","name":"Rippweiler","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25528","name":"Rombach","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25529","name":"Saeul","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25530","name":"Schandel","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25531","name":"Schwebach","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25532","name":"Schweich","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25533","name":"Useldange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25534","name":"Vichten","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25535","name":"Wahl","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25536","name":"Wolwelange","city_id":"2184","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25537","name":"Altwies","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25538","name":"Assel","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25539","name":"Bech-Kleinmacher","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25540","name":"Bous","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25541","name":"Burmerange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25542","name":"Canach","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25543","name":"Dalheim","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25544","name":"Ellange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25545","name":"Emerange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25546","name":"Filsdorf","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25547","name":"Greiveldange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25548","name":"Mondorf-les-Bains","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25549","name":"Remerschen","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25550","name":"Remich","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25551","name":"Rolling","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25552","name":"Schengen","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25553","name":"Schwebsingen","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25554","name":"Stadtbredimus","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25555","name":"Trintange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25556","name":"Trintange-Ersange-Roedt","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25557","name":"Waldbredimus","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25558","name":"Welfrange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25559","name":"Wellenstein","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25560","name":"Wintrange","city_id":"2185","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25561","name":"Bettel","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25562","name":"Bivels","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25563","name":"Fouhren","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25564","name":"Gralingen","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25565","name":"Longsdorf","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25566","name":"Merscheid","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25567","name":"Nachtmanderscheid","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25568","name":"Putscheid","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25569","name":"Stolzembourg","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25570","name":"Vianden","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25571","name":"Walsdorf","city_id":"2186","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25572","name":"Alscheid","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25573","name":"Baschleiden","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25574","name":"Bavigne","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25575","name":"Berle","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25576","name":"Boulaide","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25577","name":"Buderscheid","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25578","name":"Dahl","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25579","name":"Doncols","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25580","name":"Enscherange","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25581","name":"Esch-sur-Sure","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25582","name":"Eschdorf","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25583","name":"Goesdorf","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25584","name":"Grumelscheid","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25585","name":"Harlange","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25586","name":"Heiderscheid","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25587","name":"Heiderscheid-Fond","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25588","name":"Hierheck","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25589","name":"Insenborn","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25590","name":"Kaundorf","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25591","name":"Kautenbach","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25592","name":"Knaphoscheid","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25593","name":"Lellingen","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25594","name":"Liefrange","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25595","name":"Lultzhausen","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25596","name":"Masseler","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25597","name":"Mecher","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25598","name":"Merckholtz","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25599","name":"Neunhausen","city_id":"2187","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"is_activated":"1"}, +{"id":"25600","name":"Nocher","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25601","name":"Nocher-Route","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25602","name":"Noertrange","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25603","name":"Nothum","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25604","name":"Pintsch","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25605","name":"Pommerloch","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25606","name":"Schleif","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25607","name":"Selscheid","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25608","name":"Sonlez","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25609","name":"Surre","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25610","name":"Tadler-Ringel-Dirbach","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25611","name":"Tarchamps","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25612","name":"Watrange","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25613","name":"Wiltz","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25614","name":"Wilwerwiltz","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25615","name":"Winseler","city_id":"2187","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25616","name":"Macau","city_id":"2188","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25617","name":"Berovo","city_id":"2189","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25618","name":"Pehchevo","city_id":"2189","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25619","name":"Bach","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25620","name":"Bistrica","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25621","name":"Bitola","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25622","name":"Capari","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25623","name":"Dobrushevo","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25624","name":"Kukurechani","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25625","name":"Mogila","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25626","name":"Novaci","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25627","name":"Staravina","city_id":"2190","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25628","name":"Brod","city_id":"2191","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25629","name":"Plasnica","city_id":"2191","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25630","name":"Samokov","city_id":"2191","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25631","name":"Debar","city_id":"2192","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25632","name":"Zhupa","city_id":"2192","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25633","name":"Delchevo","city_id":"2193","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25634","name":"Kamenica","city_id":"2193","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25635","name":"Bogdanci","city_id":"2195","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25636","name":"Gevgelija","city_id":"2195","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25637","name":"Miravci","city_id":"2195","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25638","name":"Star Dojran","city_id":"2195","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25639","name":"Chegrane","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25640","name":"Dolna Banjica","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25641","name":"Gostivar","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25642","name":"Mavrovi Anovi","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25643","name":"Negotino-Poloshko","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25644","name":"Rostusha","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25645","name":"Srbinovo","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25646","name":"Vrapchishte","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25647","name":"Vrutok","city_id":"2196","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25648","name":"Kavadarci","city_id":"2197","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25649","name":"Konopishte","city_id":"2197","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25650","name":"Rosoman","city_id":"2197","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25651","name":"Drugovo","city_id":"2198","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25652","name":"Kichevo","city_id":"2198","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25653","name":"Oslomej","city_id":"2198","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25654","name":"Vraneshtica","city_id":"2198","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25655","name":"Zajas","city_id":"2198","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25656","name":"Cheshinovo","city_id":"2199","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25657","name":"Kochani","city_id":"2199","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25658","name":"Obleshevo","city_id":"2199","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25659","name":"Zletovo","city_id":"2199","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25660","name":"Kratovo","city_id":"2200","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25661","name":"Zhitoshe","city_id":"2202","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25662","name":"Izvor","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25663","name":"Klechevce","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25664","name":"Kumanovo","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25665","name":"Lipkovo","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25666","name":"Orashac","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25667","name":"Staro Nagorichane","city_id":"2203","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25668","name":"Demir Kapija","city_id":"2204","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25669","name":"Negotino","city_id":"2204","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"is_activated":"1"}, +{"id":"25670","name":"Belchishta","city_id":"2205","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25671","name":"Kosel","city_id":"2205","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25672","name":"Mesheishta","city_id":"2205","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25673","name":"Ohrid","city_id":"2205","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25674","name":"Dolneni","city_id":"2206","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25675","name":"Krivogashtani","city_id":"2206","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25676","name":"Prilep","city_id":"2206","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25677","name":"Topolchani","city_id":"2206","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25678","name":"Vitolishte","city_id":"2206","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25679","name":"Probishtip","city_id":"2207","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25680","name":"Konche","city_id":"2208","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25681","name":"Podaresh","city_id":"2208","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25682","name":"Radovish","city_id":"2208","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25683","name":"Resen","city_id":"2209","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25684","name":"Karbinci","city_id":"2210","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25685","name":"Shtip","city_id":"2210","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25686","name":"Stip","city_id":"2210","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25687","name":"Arachinovo","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25688","name":"Chucher","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25689","name":"Ilinden","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25690","name":"Kondovo","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25691","name":"Petrovec","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25692","name":"Saraj","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25693","name":"Skopje","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25694","name":"Sopishte","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25695","name":"Studenichani","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25696","name":"Zelenikovo","city_id":"2211","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25697","name":"Delogozhdi","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25698","name":"Labunishta","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25699","name":"Lukovo","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25700","name":"Struga","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25701","name":"Veleshta","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25702","name":"Vevchani","city_id":"2212","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25703","name":"Bosilovo","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25704","name":"Kuklish","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25705","name":"Murtino","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25706","name":"Novo Selo","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25707","name":"Strumica","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25708","name":"Vasilevo","city_id":"2213","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25709","name":"Bogovinje","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25710","name":"Brvenica","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25711","name":"Dzhepchishte","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25712","name":"Jegunovce","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25713","name":"Kamenjance","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25714","name":"Shipkovica","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25715","name":"Tearce","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25716","name":"Tetovo","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25717","name":"Vratnica","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25718","name":"Zhelino","city_id":"2215","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25719","name":"Valandovo","city_id":"2216","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25720","name":"Bogomila","city_id":"2217","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25721","name":"Chashka","city_id":"2217","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25722","name":"Gradsko","city_id":"2217","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25723","name":"Veles","city_id":"2217","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25724","name":"Blatec","city_id":"2218","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25725","name":"Orizari","city_id":"2218","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25726","name":"Zrnovci","city_id":"2218","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25727","name":"Ambatolampy","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25728","name":"Anjozorobe","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25729","name":"Ankazobe","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25730","name":"Antananarivo","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25731","name":"Antanifotsy","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25732","name":"Antsirabe","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25733","name":"Arivonimamo","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25734","name":"Betafo","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25735","name":"Faratsiho","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25736","name":"Fenoarivo","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25737","name":"Manjakandriana","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25738","name":"Soavinandriana","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25739","name":"Tsiroanomandidy","city_id":"2219","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25740","name":"Ambanja","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25741","name":"Ambilobe","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25742","name":"Andapa","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25743","name":"Antalaha","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25744","name":"Antsirambazaha","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25745","name":"Antsiranana","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25746","name":"Sambava","city_id":"2220","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25747","name":"Ambalavao","city_id":"2221","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"is_activated":"1"}, +{"id":"25748","name":"Ambatofinandrahana","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25749","name":"Ambositra","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25750","name":"Fandriana","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25751","name":"Farafangana","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25752","name":"Fianarantsoa","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25753","name":"Ifanadiana","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25754","name":"Ihosy","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25755","name":"Ikalamavony","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25756","name":"Ikongo","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25757","name":"Manakara","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25758","name":"Manandriana","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25759","name":"Mananjary","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25760","name":"Nosy Varika","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25761","name":"Vangaindrano","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25762","name":"Vondrozo","city_id":"2221","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25763","name":"Ambato Boina","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25764","name":"Antsohihy","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25765","name":"Bealanana","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25766","name":"Mahajanga","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25767","name":"Marovoay","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25768","name":"Tsaratanana","city_id":"2222","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25769","name":"Ambatondrazaka","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25770","name":"Ambodifototra","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25771","name":"Amparafaravola","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25772","name":"Andevoranto","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25773","name":"Andilamena","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25774","name":"Anosibe An ala","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25775","name":"Fenoarivo Atsinanana","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25776","name":"Mahanoro","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25777","name":"Mananara","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25778","name":"Maroantsetra","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25779","name":"Marolambo","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25780","name":"Moramanga","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25781","name":"Soanierana Ivongo","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25782","name":"Toamasina","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25783","name":"Vavatenina","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25784","name":"Vohibinany","city_id":"2223","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25785","name":"Amboasary","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25786","name":"Ambovombe","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25787","name":"Ampanihy","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25788","name":"Ankazoabo","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25789","name":"Beloha","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25790","name":"Belon i Tsiribihina","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25791","name":"Beroroha","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25792","name":"Betioky","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25793","name":"Miandrivazo","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25794","name":"Morondava","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25795","name":"Sakaraha","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25796","name":"Taolanaro","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25797","name":"Toliary","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25798","name":"Tsihombe","city_id":"2224","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25799","name":"Balaka","city_id":"2225","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25800","name":"Chikwawa","city_id":"2227","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25801","name":"Chiradzulu","city_id":"2228","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25802","name":"Chitipa","city_id":"2229","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25803","name":"Chipoka","city_id":"2230","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25804","name":"Dedza","city_id":"2230","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25805","name":"Dowa","city_id":"2231","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25806","name":"Mponela","city_id":"2231","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25807","name":"Chilumba","city_id":"2232","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25808","name":"Karonga","city_id":"2232","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25809","name":"Livingstonia","city_id":"2232","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25810","name":"Kasungu","city_id":"2233","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25811","name":"Liwonde","city_id":"2235","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25812","name":"Machinga","city_id":"2235","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25813","name":"Mangochi","city_id":"2236","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25814","name":"Monkey Bay","city_id":"2236","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25815","name":"Mchinji","city_id":"2237","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25816","name":"Mulanje","city_id":"2238","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"is_activated":"1"}, +{"id":"25817","name":"Mzimba","city_id":"2240","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25818","name":"Nkhotakota","city_id":"2243","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25819","name":"Nsanje","city_id":"2244","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25820","name":"Ntcheu","city_id":"2245","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25821","name":"Ntchisi","city_id":"2246","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25822","name":"Phalombe","city_id":"2247","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25823","name":"Rumphi","city_id":"2248","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25824","name":"Salima","city_id":"2249","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25825","name":"Luchenza","city_id":"2250","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25826","name":"Thyolo","city_id":"2250","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25827","name":"Bandar Maharani","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25828","name":"Bandar Penggaram","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25829","name":"Bukit Bakri","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25830","name":"Buloh Kasap","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25831","name":"Chaah","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25832","name":"Johor Bahru","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25833","name":"Kelapa Sawit","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25834","name":"Kluang","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25835","name":"Kota Tinggi","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25836","name":"Kulai","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25837","name":"Labis","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25838","name":"Ledang","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25839","name":"Masai","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25840","name":"Mersing","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25841","name":"Parit Raja","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25842","name":"Pasir Gudang","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25843","name":"Pekan Nenas","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25844","name":"Pontian Kecil","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25845","name":"Segamat","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25846","name":"Sekudai","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25847","name":"Senai","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25848","name":"Simpang Rengam","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25849","name":"Tangkak","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25850","name":"Ulu Tiram","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25851","name":"Yong Peng","city_id":"2252","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25852","name":"Alor Setar","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25853","name":"Bailing","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25854","name":"Bedong","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25855","name":"Gurun","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25856","name":"Jitra","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25857","name":"Kuah","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25858","name":"Kuala Kedah","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25859","name":"Kulim","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25860","name":"Langgar","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25861","name":"Sungai Petani","city_id":"2253","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25862","name":"Gua Musang","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25863","name":"Kadok","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25864","name":"Kota Bahru","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25865","name":"Kuala Krai","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25866","name":"Pangkal Kalong","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25867","name":"Pasir Mas","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25868","name":"Peringat","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25869","name":"Tanah Merah","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25870","name":"Tumpat","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25871","name":"Wakaf Baru","city_id":"2254","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25872","name":"Labuan","city_id":"2256","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25873","name":"Alor Gajah","city_id":"2257","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25874","name":"Ayer Keroh","city_id":"2257","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25875","name":"Ayer Molek","city_id":"2257","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25876","name":"Batu Berendam","city_id":"2257","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25877","name":"Bemban","city_id":"2257","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"is_activated":"1"}, +{"id":"25878","name":"Bukit Baru","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25879","name":"Bukit Rambai","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25880","name":"Klebang","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25881","name":"Kuala Sungai Baru","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25882","name":"Malacca","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25883","name":"Masjid Tanah","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25884","name":"Melaka","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25885","name":"Pulau Sebang","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25886","name":"Sungai Udang","city_id":"2257","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25887","name":"Bandar Jengka Pusat","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25888","name":"Bentong","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25889","name":"Bukit Tinggi","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25890","name":"Jerantut","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25891","name":"Karak","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25892","name":"Kuala Lipis","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25893","name":"Kuantan","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25894","name":"Mentakab","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25895","name":"Pekan","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25896","name":"Pulau Pinang","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25897","name":"Raub","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25898","name":"Temerloh","city_id":"2260","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25899","name":"Bayan Lepas","city_id":"2261","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25900","name":"Church Town","city_id":"2261","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25901","name":"George Town","city_id":"2261","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25902","name":"Ayer Tawar","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25903","name":"Bagan Serai","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25904","name":"Batu Gajah","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25905","name":"Bidor","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25906","name":"Ipoh","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25907","name":"Jelapang","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25908","name":"Kampar","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25909","name":"Kampong Koh","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25910","name":"Kuala Kangsar","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25911","name":"Lawan Kuda Baharu","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25912","name":"Lumut","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25913","name":"Pantai Remis","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25914","name":"Parit Buntar","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25915","name":"Perak","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25916","name":"Pusing","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25917","name":"Simpang Empat","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25918","name":"Sungai Siput Utara","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25919","name":"Taiping","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25920","name":"Tanjong Malim","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25921","name":"Tapah","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25922","name":"Teluk Intan","city_id":"2262","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25923","name":"Kangar","city_id":"2263","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25924","name":"Kuala Perlis","city_id":"2263","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25925","name":"Donggongon","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25926","name":"Keningau","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25927","name":"Kinarut","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25928","name":"Kota Belud","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25929","name":"Kota Kinabalu","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25930","name":"Kudat","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25931","name":"Kunak","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25932","name":"Lahad Datu","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25933","name":"Papar","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25934","name":"Putatan","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25935","name":"Ranau","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25936","name":"Sandakan","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25937","name":"Semporna","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25938","name":"Tawau","city_id":"2265","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25939","name":"Batu Delapan Bazaar","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25940","name":"Bintulu","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25941","name":"Kapit","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25942","name":"Kota Samarahan","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25943","name":"Kuching","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25944","name":"Limbang","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25945","name":"Miri","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25946","name":"Sarawak","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25947","name":"Sarikel","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25948","name":"Sibu","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25949","name":"Sri Aman","city_id":"2266","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25950","name":"Ampang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25951","name":"Ampang Jaya","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25952","name":"Balakong","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25953","name":"Bandar Baru Bangi","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25954","name":"Bandar Baru Salak Tinggi","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25955","name":"Bander Baro Bangi","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25956","name":"Banting","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25957","name":"Batang Berjuntai","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25958","name":"Batu Arang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25959","name":"Batu Sembilan Cheras","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25960","name":"Beranang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25961","name":"Bukit Beruntung","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25962","name":"Cyberjaya","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25963","name":"Darul Ehsan","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25964","name":"Dungun","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25965","name":"Gombak Setia","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25966","name":"Jenjarom","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25967","name":"Kajang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25968","name":"Kajang-Sungai Chua","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25969","name":"Klang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25970","name":"Kuala Kubu Baru","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25971","name":"Kuala Selangor","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25972","name":"Kuang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25973","name":"Pengkalan Kundang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25974","name":"Petaling Jaya","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25975","name":"Port Klang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25976","name":"Puchong","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25977","name":"Rawang","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25978","name":"Sabak","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25979","name":"Sekinchan","city_id":"2267","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"is_activated":"1"}, +{"id":"25980","name":"Selayang Baru","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25981","name":"Semenyih","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25982","name":"Serendah","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25983","name":"Seri Kembangan","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25984","name":"Shah Alam","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25985","name":"Subang Jaya","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25986","name":"Sungai Besar","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25987","name":"Sungai Buloh","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25988","name":"Sungai Pelek","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25989","name":"Taman Greenwood","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25990","name":"Tanjong Karang","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25991","name":"Tanjong Sepat","city_id":"2267","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25992","name":"Bahaiyah","city_id":"2268","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25993","name":"Langkap","city_id":"2268","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25994","name":"Cukai","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25995","name":"Jertih","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25996","name":"Kemaman","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25997","name":"Kerteh","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25998","name":"Kuala Terengganu","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"25999","name":"Marang","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26000","name":"Paka","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26001","name":"Serdang","city_id":"2269","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26002","name":"Dharavandhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26003","name":"Dhonfanu","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26004","name":"Eydhafushi","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26005","name":"Fehendhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26006","name":"Fulhadhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26007","name":"Goidhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26008","name":"Hithaadhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26009","name":"Kamadhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26010","name":"Kendhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26011","name":"Kihaadhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26012","name":"Kudarikilu","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26013","name":"Maalhos","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26014","name":"Thulhaadhoo","city_id":"2272","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26015","name":"Badidhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26016","name":"Gemendhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26017","name":"Hulhudheli","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26018","name":"Kudahuvadhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26019","name":"Maaeboodhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26020","name":"Meedhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26021","name":"Ribudhoo","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26022","name":"Vaanee","city_id":"2273","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26023","name":"Biledhdhoo","city_id":"2274","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26024","name":"Dharaboodhoo","city_id":"2274","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26025","name":"Feeali","city_id":"2274","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26026","name":"Magoodhoo","city_id":"2274","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26027","name":"Nilandhoo","city_id":"2274","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26028","name":"Fuvammulah","city_id":"2277","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26029","name":"Dhiffushi","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26030","name":"Gaafaru","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26031","name":"Gulhi","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26032","name":"Guraidhoo","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26033","name":"Himmafushi","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26034","name":"Huraa","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26035","name":"Kaashidhoo","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26036","name":"Maafushi","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26037","name":"Thulusdhoo","city_id":"2280","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26038","name":"Dhabidhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26039","name":"Fonadhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26040","name":"Gaadhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26041","name":"Gamu","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26042","name":"Hithadhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26043","name":"Isdhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26044","name":"Kalhaidhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26045","name":"Kunahandhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26046","name":"Maabaidhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26047","name":"Maamendhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26048","name":"Maavah","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26049","name":"Mundhoo","city_id":"2281","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26050","name":"Hinnavaru","city_id":"2282","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26051","name":"Kurendhoo","city_id":"2282","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26052","name":"Maafilaafushi","city_id":"2282","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26053","name":"Naifaru","city_id":"2282","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26054","name":"Olhuvelifushi","city_id":"2282","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"is_activated":"1"}, +{"id":"26055","name":"Dhiggaru","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26056","name":"Kolhufushi","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26057","name":"Madifushi","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26058","name":"Maduvvari","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26059","name":"Mulah","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26060","name":"Muli","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26061","name":"Naalaafushi","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26062","name":"Raimandhoo","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26063","name":"Veyvah","city_id":"2284","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26064","name":"Fodhdhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26065","name":"Hebadhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26066","name":"Holhudhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26067","name":"Kedhikolhudhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26068","name":"Kudafari","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26069","name":"Landhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26070","name":"Lhohi","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26071","name":"Maafaru","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26072","name":"Maalhendhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26073","name":"Manadhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26074","name":"Miladhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26075","name":"Velidhoo","city_id":"2285","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26076","name":"Agolhitheemu","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26077","name":"Alifushi","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26078","name":"Fainu","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26079","name":"Hulhudhuffaaru","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26080","name":"Iguraidhoo","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26081","name":"Innamaadhoo","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26082","name":"Kadholhudhoo","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26083","name":"Kinolhas","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26084","name":"Maakurathu","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26085","name":"Rasgetheemu","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26086","name":"Rasmaadhoo","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26087","name":"Ugoofaaru","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26088","name":"Vaadhoo","city_id":"2286","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26089","name":"Bilehffahi","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26090","name":"Feevah","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26091","name":"Feydhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26092","name":"Firubaidhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26093","name":"Foakaidhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26094","name":"Funadhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26095","name":"Kaditheemu","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26096","name":"Komandoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26097","name":"Lhaimagu","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26098","name":"Maakandoodhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26099","name":"Maaugoodhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26100","name":"Maroshi","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26101","name":"Narudhoo","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26102","name":"Noomaraa","city_id":"2287","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26103","name":"Hulhudhoo","city_id":"2288","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26104","name":"Maradhoo","city_id":"2288","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26105","name":"Maradhoo-Feydhoo","city_id":"2288","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26106","name":"Buruni","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26107","name":"Dhiyamigili","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26108","name":"Gaadhiffushi","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26109","name":"Hirilandhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26110","name":"Kadoodhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26111","name":"Kibidhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26112","name":"Omadhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26113","name":"Thimarafushi","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26114","name":"Vandhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26115","name":"Veymandhoo","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26116","name":"Vilufushi","city_id":"2289","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26117","name":"Felidhoo","city_id":"2290","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26118","name":"Fulidhoo","city_id":"2290","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26119","name":"Keyodhoo","city_id":"2290","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26120","name":"Rakeedhoo","city_id":"2290","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26121","name":"Thinadhoo","city_id":"2290","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26122","name":"Bamako","city_id":"2291","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26123","name":"Bafoulabe","city_id":"2293","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26124","name":"Kayes","city_id":"2293","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26125","name":"Kita","city_id":"2293","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26126","name":"Nioro","city_id":"2293","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26127","name":"Kidal","city_id":"2294","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26128","name":"Tessalit","city_id":"2294","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26129","name":"Banamba","city_id":"2295","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26130","name":"Kangaba","city_id":"2295","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26131","name":"Kati","city_id":"2295","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26132","name":"Kolokani","city_id":"2295","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26133","name":"Koulikoro","city_id":"2295","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26134","name":"Bandiagara","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26135","name":"Djenne","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26136","name":"Douentza","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26137","name":"Koro","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26138","name":"Mopti","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26139","name":"Tenenkou","city_id":"2296","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"is_activated":"1"}, +{"id":"26140","name":"Ke-Massina","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26141","name":"Kimparana","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26142","name":"Markala","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26143","name":"Niono","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26144","name":"San","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26145","name":"Segou","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26146","name":"Sokolo","city_id":"2297","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26147","name":"Bougouni","city_id":"2298","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26148","name":"Kolondieba","city_id":"2298","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26149","name":"Koutiala","city_id":"2298","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26150","name":"Sikasso","city_id":"2298","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26151","name":"Yorosso","city_id":"2298","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26152","name":"Araouane","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26153","name":"Dire","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26154","name":"Goundam","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26155","name":"Niafunke","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26156","name":"Taoudenni","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26157","name":"Tombouctou","city_id":"2299","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26158","name":"Gharghur","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26159","name":"Mellieha","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26160","name":"Mgarr","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26161","name":"Mosta","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26162","name":"Naxxar","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26163","name":"San Pawl il-Bahar","city_id":"1103","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26164","name":"L-Iklin","city_id":"919","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26165","name":"Attard","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26166","name":"Balzan","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26167","name":"Dingli","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26168","name":"Iklin","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26169","name":"Lija","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26170","name":"Mdina","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26171","name":"Rabat","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26172","name":"Sighghiewi","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26173","name":"Zebbug","city_id":"143","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26174","name":"Aerok","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26175","name":"Beran","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26176","name":"Bikeer","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26177","name":"Buoj","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26178","name":"Enewe","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26179","name":"Jabwan","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26180","name":"Jah","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26181","name":"Jeh","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26182","name":"Kattiej","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26183","name":"Mejajok","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26184","name":"Mejil","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26185","name":"Tobomaro","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26186","name":"Woja","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26187","name":"Wolar","city_id":"2304","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26188","name":"Ailuk","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26189","name":"Ajelep","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26190","name":"Aliej","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26191","name":"Biken","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26192","name":"Enejabrok","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26193","name":"Enejelar","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26194","name":"Kapen","city_id":"2305","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26195","name":"Arno Arno","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26196","name":"Bikarej","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26197","name":"Bikonele","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26198","name":"Boken","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26199","name":"Eneaidrik","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26200","name":"Enirik","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26201","name":"Ijoen","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26202","name":"Ine","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26203","name":"Japo","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26204","name":"Jilane","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26205","name":"Kejbwe","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26206","name":"Kilange","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26207","name":"Kilemman","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26208","name":"Kinajon","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26209","name":"Langor","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26210","name":"Lukoj","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26211","name":"Malel","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26212","name":"Manrar","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26213","name":"Matolen","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26214","name":"Meetdik","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26215","name":"Mian","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26216","name":"Najaj","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26217","name":"Namwi","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26218","name":"Neenkotkot","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26219","name":"Taklep","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26220","name":"Tinak","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26221","name":"Tutu","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26222","name":"Ulien","city_id":"2306","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"is_activated":"1"}, +{"id":"26223","name":"Aur","city_id":"2307","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26224","name":"Tabal","city_id":"2307","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26225","name":"Eneu","city_id":"2308","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26226","name":"Emej","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26227","name":"Enearmij","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26228","name":"Enekoion","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26229","name":"Enilok","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26230","name":"Jittaken","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26231","name":"Jittoen","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26232","name":"Rerok","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26233","name":"Toka","city_id":"2309","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26234","name":"Enewetak","city_id":"2310","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26235","name":"Japtan","city_id":"2310","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26236","name":"Medren","city_id":"2310","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26237","name":"Jabat","city_id":"2311","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26238","name":"Ae","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26239","name":"Ajejen","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26240","name":"Anilep","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26241","name":"Arreen","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26242","name":"Bokanake","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26243","name":"Bokkan","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26244","name":"Bukantorak","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26245","name":"Dede","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26246","name":"Imiej","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26247","name":"Imroj","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26248","name":"Jabnoren","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26249","name":"Jabwor","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26250","name":"Jaluit","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26251","name":"Lonone","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26252","name":"Mejatto","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26253","name":"Mejrirok","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26254","name":"Menge","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26255","name":"Nabbe","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26256","name":"Narmej","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26257","name":"Urbaj","city_id":"2312","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26258","name":"Kili","city_id":"2313","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26259","name":"Arbwa","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26260","name":"Ebadon","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26261","name":"Ebeye","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26262","name":"Ebjadik","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26263","name":"Ebwaj","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26264","name":"Ennilabegan","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26265","name":"Enubirr","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26266","name":"Enubuj","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26267","name":"Gugeegue","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26268","name":"Ningi","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26269","name":"North Loi","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26270","name":"Orpap","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26271","name":"South Loi","city_id":"2314","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26272","name":"Enerein","city_id":"2315","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26273","name":"Lae","city_id":"2315","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26274","name":"Lejab","city_id":"2315","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26275","name":"Lib","city_id":"2316","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26276","name":"Jebal","city_id":"2317","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26277","name":"Likiep","city_id":"2317","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26278","name":"Liklal","city_id":"2317","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26279","name":"Melang","city_id":"2317","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26280","name":"Ajeltake","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26281","name":"Aneenwudej","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26282","name":"Aneko","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26283","name":"Arrak","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26284","name":"Bokaetoktok","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26285","name":"Denmeo","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26286","name":"Didej","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26287","name":"Ejit","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26288","name":"Enemanet","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26289","name":"Jelter","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26290","name":"Kalalen","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26291","name":"Kemman","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26292","name":"Laura","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26293","name":"Pikiriin","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26294","name":"Rongrong","city_id":"2318","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26295","name":"Airok","city_id":"2319","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26296","name":"Jang","city_id":"2319","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26297","name":"Kaben","city_id":"2319","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26298","name":"Tarawa","city_id":"2319","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26299","name":"Wolot","city_id":"2319","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26300","name":"Mejit","city_id":"2320","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"is_activated":"1"}, +{"id":"26301","name":"Aeloneo","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26302","name":"Anel","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26303","name":"Arbar","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26304","name":"Bar","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26305","name":"Bikonel","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26306","name":"Enajet","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26307","name":"Eoo","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26308","name":"Jabonwod","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26309","name":"Loen","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26310","name":"Lukonwor","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26311","name":"Mae","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26312","name":"Majkin","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26313","name":"Mili","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26314","name":"Nad","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26315","name":"Nallu","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26316","name":"Tokewa","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26317","name":"Wau","city_id":"2321","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26318","name":"Namorik","city_id":"2322","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26319","name":"Namu","city_id":"2323","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26320","name":"Rongelap","city_id":"2324","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26321","name":"Ujae","city_id":"2325","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26322","name":"Utirik","city_id":"2326","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26323","name":"Wotho","city_id":"2327","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26324","name":"Didi","city_id":"2328","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26325","name":"Nibun","city_id":"2328","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26326","name":"Wormej","city_id":"2328","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26327","name":"Wotje","city_id":"2328","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26328","name":"Fort-de-France","city_id":"2329","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26329","name":"Le Lamentin","city_id":"2329","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26330","name":"Saint-Joseph","city_id":"2329","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26331","name":"Schoelcher","city_id":"2329","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26332","name":"Le Morne-Rouge","city_id":"2332","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26333","name":"Saint-Pierre","city_id":"2332","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26334","name":"Atar","city_id":"88","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26335","name":"Shingati","city_id":"88","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26336","name":"Kifah","city_id":"2333","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26337","name":"Alaq","city_id":"2334","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26338","name":"Buqah","city_id":"2334","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26339","name":"Magta Lahjar","city_id":"2334","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26340","name":" Ayun-al- Atrus","city_id":"2336","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26341","name":"Kubanni","city_id":"2336","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26342","name":"Timbedra","city_id":"2337","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26343","name":"Walatah","city_id":"2337","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26344","name":"an-Na mah","city_id":"2337","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"is_activated":"1"}, +{"id":"26345","name":"Aqjawajat","city_id":"2338","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26346","name":"Nawakshut","city_id":"2339","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26347","name":"Hsay Walad Ali Babi","city_id":"2340","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26348","name":"Kayhaydi","city_id":"2341","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26349","name":"Tijiqjah","city_id":"2342","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26350","name":"Rusu","city_id":"2344","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26351","name":"Bel Air","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26352","name":"Bon Accueil","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26353","name":"Brisee Verdiere","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26354","name":"Camp Ithier","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26355","name":"Camp de Masque","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26356","name":"Camp de Masque Pave","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26357","name":"Central Flacq","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26358","name":"Ecroignard","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26359","name":"Grand River South East","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26360","name":"Lalmatie","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26361","name":"Laventure","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26362","name":"Mare La Chaux","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26363","name":"Medine-Camp de Masque","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26364","name":"Olivia","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26365","name":"Poste de Flacq","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26366","name":"Quatre Cocos","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26367","name":"Quatre Soeurs","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26368","name":"Queen Victoria","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26369","name":"Saint Julien","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26370","name":"Saint Julien d Hotman","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26371","name":"Trou d Eau Douce","city_id":"2347","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26372","name":"Floreal","city_id":"2348","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26373","name":"Camp Thorel","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26374","name":"Dagotiere","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26375","name":"Dubreuil","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26376","name":"Esperance","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26377","name":"L Avenir","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26378","name":"La Laura-Malenga","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26379","name":"Melrose","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26380","name":"Montagne Blanche","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26381","name":"Pailles","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26382","name":"Providence","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26383","name":"Quartier Militaire","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26384","name":"Ripailles","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26385","name":"Saint Pierre","city_id":"2350","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26386","name":"Arsenal","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26387","name":"Baie du Tombeau","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26388","name":"Calebasses","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26389","name":"Congomah","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26390","name":"Creve Coeur","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26391","name":"D Epinay","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26392","name":"Fond du Sac","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26393","name":"La Tour Koenig","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26394","name":"Le Hochet","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26395","name":"Long Mountain","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26396","name":"Morcellement Saint Andre","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26397","name":"Notre Dame","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26398","name":"Pamplemousse","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26399","name":"Plaines des Papayes","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26400","name":"Pointe aux Piments","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26401","name":"Terre Rouge","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26402","name":"Triolet","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26403","name":"Villebague","city_id":"2351","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26404","name":"Baie Malgache","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26405","name":"Coromandel-Graviers","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26406","name":"Grand Baie-Montagne Goyaves","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26407","name":"La Ferme","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26408","name":"Lataniers-Mont Lubin","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26409","name":"Mangues-Quatre Vents","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26410","name":"Oyster Bay","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26411","name":"Petit Gabriel","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26412","name":"Piments-Baie Topaze","city_id":"2355","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"is_activated":"1"}, +{"id":"26413","name":"Plaine Corail-La Fouche Corail","city_id":"2355","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26414","name":"Port Mathurin","city_id":"2355","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26415","name":"Port Sud-Est","city_id":"2355","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26416","name":"Riviere Cocos","city_id":"2355","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26417","name":"Roche Bon Dieu-Trefles","city_id":"2355","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26418","name":"Baie du Cap","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26419","name":"Bel Ombre","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26420","name":"Benares","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26421","name":"Bois Cheri","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26422","name":"Britannia","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26423","name":"Camp Diable","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26424","name":"Chamouny","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26425","name":"Chemin Grenier","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26426","name":"Grand Bois","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26427","name":"Riviere des Anguilles","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26428","name":"Souillac","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26429","name":"Surinam","city_id":"2357","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26430","name":"Acoua","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26431","name":"Bandraboua","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26432","name":"Bandrele","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26433","name":"Boueni","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26434","name":"Chiconi","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26435","name":"Chirongui","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26436","name":"Dembeni","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26437","name":"Kanikeli","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26438","name":"Koungou","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26439","name":"Mamoudzou","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26440","name":"Mtsamboro","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26441","name":"Mtsangamouji","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26442","name":"Ouangani","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26443","name":"Sada","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26444","name":"Tsingoni","city_id":"2358","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26445","name":"Dzaoudzi","city_id":"2359","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26446","name":"Pamanzi","city_id":"2359","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26447","name":"Aguascalientes","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26448","name":"Asientos","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26449","name":"Calvillo","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26450","name":"Cosio","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26451","name":"Margaritas","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26452","name":"Ojocaliente","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26453","name":"Pabellon de Arteaga","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26454","name":"Pabellon de Hidalgo","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26455","name":"Palo Alto","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26456","name":"Rincon de Romos","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26457","name":"San Francisco de los Romo","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26458","name":"San Jose de Gracia","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26459","name":"Tepezala","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26460","name":"Villa Juarez","city_id":"2360","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26461","name":"Becal","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26462","name":"Bolonchen","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26463","name":"Calkini","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26464","name":"Campeche","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26465","name":"Champoton","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26466","name":"China","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26467","name":"Dzitbalche","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26468","name":"Escarcega","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26469","name":"Hecelchakan","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26470","name":"Hopelchen","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26471","name":"Isla Aguada","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26472","name":"Nuevo Progreso","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26473","name":"Nunkini","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26474","name":"Palizada","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26475","name":"Pomuch","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26476","name":"Sabancuy","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26477","name":"Seybaplaya","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26478","name":"Tenabo","city_id":"2363","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26479","name":"Acacoyagua","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26480","name":"Acala","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26481","name":"Acapetahua","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26482","name":"Altamirano","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26483","name":"Alvaro Obregon","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26484","name":"Amatan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26485","name":"Amatenango del Valle","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26486","name":"Arriaga","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26487","name":"Benemerito de las Americas","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26488","name":"Berriozabal","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26489","name":"Bochil","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26490","name":"Cacahoatan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26491","name":"Cancuc","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26492","name":"Catazaja","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26493","name":"Chalchihiutan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26494","name":"Chanal","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26495","name":"Chiapa","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26496","name":"Chiapilla","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26497","name":"Chicomuselo","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26498","name":"Chilon","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26499","name":"Cintalapa","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26500","name":"Comaltitlan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26501","name":"Comitan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26502","name":"Copainala","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26503","name":"Copoya","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26504","name":"Cristobal Obregon","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26505","name":"El Bosque","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26506","name":"El Parral","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26507","name":"Frontera Comalapa","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26508","name":"Frontera Corozal","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26509","name":"Frontera Hidalgo","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26510","name":"Huehuetan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26511","name":"Huehuetan Estacion","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26512","name":"Huixtla","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26513","name":"Ixhuatan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26514","name":"Ixtacomitan","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26515","name":"Ixtapa","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26516","name":"Jaltenango","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26517","name":"Jesus Maria Garza","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26518","name":"Jiquipilas","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26519","name":"Jitotol","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26520","name":"Juarez","city_id":"2364","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"is_activated":"1"}, +{"id":"26521","name":"La Concordia","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26522","name":"La Trinitaria","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26523","name":"Las Margaritas","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26524","name":"Las Rosas","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26525","name":"Mapastepec","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26526","name":"Mazatan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26527","name":"Motozintla","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26528","name":"Navenchauc","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26529","name":"Nicolas Ruiz","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26530","name":"Ocosingo","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26531","name":"Ocotepec","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26532","name":"Ocozocoautla","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26533","name":"Ostuacan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26534","name":"Oxchuc","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26535","name":"Palenque","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26536","name":"Pantelho","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26537","name":"Paredon","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26538","name":"Petalcingo","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26539","name":"Pichucalco","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26540","name":"Pijijiapan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26541","name":"Pueblo Nuevo Solistahuacan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26542","name":"Puerto Madero","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26543","name":"Pujiltic","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26544","name":"Raudales Malpaso","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26545","name":"Rayon","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26546","name":"Reforma","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26547","name":"Revolucion Mexicana","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26548","name":"Rincon Chamula","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26549","name":"Salto de Agua","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26550","name":"San Cristobal de las Casas","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26551","name":"San Lucas","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26552","name":"San Pedro Buenavista","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26553","name":"Simojovel","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26554","name":"Socoltenango","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26555","name":"Soyalo","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26556","name":"Suchiapa","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26557","name":"Suchiate","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26558","name":"Tapachula","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26559","name":"Tapilula","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26560","name":"Tecpatan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26561","name":"Tenango","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26562","name":"Teopisca","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26563","name":"Tila","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26564","name":"Tonala","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26565","name":"Totolapa","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26566","name":"Tres Picos","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26567","name":"Tuxtla Chico","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26568","name":"Tuxtla Gutierrez","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26569","name":"Tzimol","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26570","name":"Veinte de Noviembre","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26571","name":"Venustiano Carranza","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26572","name":"Villa Corzo","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26573","name":"Villaflores","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26574","name":"Yajalon","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26575","name":"Zinacantan","city_id":"2364","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26576","name":"Adolfo Lopez Mateos","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26577","name":"Ahumada","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26578","name":"Anahuac","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26579","name":"Ascension","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26580","name":"Benito Juarez","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26581","name":"Carichi","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26582","name":"Casas Grandes","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26583","name":"Chihuahua","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26584","name":"Colonia Municipio Libre","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26585","name":"Creel","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26586","name":"Cuauhtemoc","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26587","name":"Delicias","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26588","name":"El Largo","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26589","name":"Guachochi","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26590","name":"Guadalupe y Calvo","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26591","name":"Hermenegildo Galeana","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26592","name":"Hidalgo","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26593","name":"Ignacio Zaragoza","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26594","name":"Juan Aldama","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26595","name":"Lazaro Cardenas","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26596","name":"Madera","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26597","name":"Majimachi","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26598","name":"Meoqui","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26599","name":"Naica","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26600","name":"Nuevo Casas Grandes","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26601","name":"Octaviano Lopez","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26602","name":"Ojinaga","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26603","name":"Praxedis Guerrero","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26604","name":"Puerto Palomas","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26605","name":"Puerto de Anapra","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26606","name":"San Buenaventura","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26607","name":"San Francisco el Oro","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26608","name":"Santa Cruz de Rosales","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26609","name":"Saucillo","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26610","name":"Valentin Gomez Farias","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26611","name":"Valle de Allende","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26612","name":"Vicente Guerrero","city_id":"2365","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26613","name":"Acuna","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26614","name":"Allende","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26615","name":"Arteaga","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26616","name":"Castanos","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26617","name":"Cuatrocienagas","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26618","name":"El Coyote","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26619","name":"Frontera","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26620","name":"General Cepeda","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26621","name":"Hercules","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26622","name":"Matamoros","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26623","name":"Minas de Barroteran","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26624","name":"Monclova","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26625","name":"Muzquiz","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26626","name":"Nadadores","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26627","name":"Nava","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26628","name":"Nueva Rosita","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26629","name":"Ocampo","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26630","name":"Palau","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26631","name":"Parras","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26632","name":"Piedras Negras","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26633","name":"Ramos Arizpe","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26634","name":"Sabinas","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26635","name":"Saltillo","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26636","name":"Torreon","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26637","name":"Viesca","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26638","name":"Villa Madero","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26639","name":"Villa Union","city_id":"2366","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26640","name":"Armeria","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26641","name":"Cofradia","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26642","name":"Colima","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26643","name":"Colonia Bayardo","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26644","name":"Comala","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26645","name":"Coquimatlan","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26646","name":"El Colomo","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26647","name":"Minatitlan","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26648","name":"Queseria","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26649","name":"Suchitlan","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26650","name":"Tecoman","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26651","name":"Villa de Alvarez","city_id":"2367","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"is_activated":"1"}, +{"id":"26652","name":"Bermejillo","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26653","name":"Canatlan","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26654","name":"Cuencame","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26655","name":"Durango","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26656","name":"Gomez Palacio","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26657","name":"Guadalupe Victoria","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26658","name":"Lerdo","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26659","name":"Mapimi","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26660","name":"Nazareno","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26661","name":"Nazas","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26662","name":"Nombre de Dios","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26663","name":"Nuevo Ideal","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26664","name":"Panuco","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26665","name":"Papasquiaro","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26666","name":"Penon Blanco","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26667","name":"Poanas","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26668","name":"Rodeo","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26669","name":"Santa Catarina de Tepehuanes","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26670","name":"Santa Clara","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26671","name":"Santa Maria del Oro","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26672","name":"Suchil","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26673","name":"Tayoltita","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26674","name":"Tlahualilo","city_id":"2368","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26675","name":"Abasolo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26676","name":"Acambaro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26677","name":"Aldama","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26678","name":"Antonio Rodriguez","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26679","name":"Apaseo el Alto","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26680","name":"Apaseo el Grande","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26681","name":"Celaya","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26682","name":"Centro Familiar la Soledad","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26683","name":"Cerano","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26684","name":"Cerro Gordo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26685","name":"Colonias Nuevo Mexico","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26686","name":"Comonfort","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26687","name":"Coroneo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26688","name":"Cortazar","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26689","name":"Cueramaro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26690","name":"Doctor Mora","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26691","name":"Dolores Hidalgo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26692","name":"Duarte","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26693","name":"El Sabino","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26694","name":"Escobedo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26695","name":"Guanajuato","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26696","name":"Huanimaro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26697","name":"Iramuco","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26698","name":"Irapuato","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26699","name":"Jaral del Progreso","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26700","name":"Jerecuaro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26701","name":"Juventino Rosas","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26702","name":"La Aldea","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26703","name":"La Ermita","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26704","name":"La Moncada","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26705","name":"Leon","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26706","name":"Loma Pelada","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26707","name":"Manuel Doblado","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26708","name":"Maravatio","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26709","name":"Marfil","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26710","name":"Mexicanos","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26711","name":"Moroleon","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26712","name":"Octopan","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26713","name":"Pacueco","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26714","name":"Palo Verde","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26715","name":"Paracuaro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26716","name":"Penjamo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26717","name":"Plan de Ayala","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26718","name":"Purisima de Bustos","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26719","name":"Rincon de Tamayo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26720","name":"Romita","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26721","name":"Salvatierra","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26722","name":"San Bartolo de Berrios","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26723","name":"San Diego de la Union","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26724","name":"San Francisco del Rincon","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26725","name":"San Jose Agua Azul","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26726","name":"San Jose Iturbide","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26727","name":"San Jose Temascatio","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26728","name":"San Juan de la Vega","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26729","name":"San Luis de la Paz","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26730","name":"San Nicolas de los Agustinos","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26731","name":"San Pedro de los Naranjos","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26732","name":"Santa Teresa","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26733","name":"Santiago de Cuenda","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26734","name":"Sarabia","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26735","name":"Tarandacuao","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26736","name":"Tarimoro","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26737","name":"Teneria del Santuario","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26738","name":"Uriangato","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26739","name":"Urireo","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26740","name":"Valle de Santiago","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26741","name":"Valtierrilla","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26742","name":"Villagran","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26743","name":"Villas de Irapuato","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26744","name":"Yerbabuena","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26745","name":"Yuriria","city_id":"2370","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26746","name":"Acamixtla","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26747","name":"Acapulco","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26748","name":"Acatlan","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26749","name":"Ajuchitlan","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26750","name":"Alpoyeca","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26751","name":"Apango","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26752","name":"Apaxtla","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26753","name":"Arcelia","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26754","name":"Atliaca","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26755","name":"Atoyac","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26756","name":"Ayutla","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26757","name":"Azoyu","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26758","name":"Bajos de Ejido","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26759","name":"Chichihualco","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26760","name":"Chilapa","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26761","name":"Chilpancingo","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26762","name":"Coacoyul","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26763","name":"Cocula","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26764","name":"Copala","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26765","name":"Copalillo","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26766","name":"Coyuca","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26767","name":"Cruz Grande","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26768","name":"Cuajinicuilapa","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26769","name":"Cuautepec","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26770","name":"Cutzamala","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26771","name":"El Ocotito","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26772","name":"El Suchil","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26773","name":"Huamuxtitlan","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26774","name":"Huitziltepec","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26775","name":"Huitzuco","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26776","name":"Iguala","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26777","name":"Kilometro Treinta","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26778","name":"La Loma","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26779","name":"Las Petaquillas","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26780","name":"Las Vigas","city_id":"2371","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"is_activated":"1"}, +{"id":"26781","name":"Marquelia","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26782","name":"Mazatlan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26783","name":"Mochitlan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26784","name":"Olinala","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26785","name":"Ometepec","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26786","name":"Petatlan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26787","name":"Pilcaya","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26788","name":"Quechultenango","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26789","name":"San Jeronimito","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26790","name":"San Jose Ixtapa","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26791","name":"San Luis San Pedro","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26792","name":"Taxco","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26793","name":"Taxco de Alarcon","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26794","name":"Tecoanapa","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26795","name":"Tecpan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26796","name":"Teloloapan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26797","name":"Tepecoacuilco","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26798","name":"Tierra Colorada","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26799","name":"Tixtla","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26800","name":"Tlacoachistlahuaca","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26801","name":"Tlacotepec","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26802","name":"Tlalchapa","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26803","name":"Tlamacazapa","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26804","name":"Tlapa","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26805","name":"Tlapehuala","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26806","name":"Totolapan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26807","name":"Tres Palos","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26808","name":"Xalpatlahuac","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26809","name":"Xaltianguis","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26810","name":"Xochihuehuetlan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26811","name":"Xochistlahuaca","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26812","name":"Zacualpan","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26813","name":"Zihuatanejo","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26814","name":"Zirandaro","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26815","name":"Zitlala","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26816","name":"Zumpango","city_id":"2371","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26817","name":"Acaxochitlan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26818","name":"Acayuca","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26819","name":"Actopan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26820","name":"Ajacuba","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26821","name":"Almoloya","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26822","name":"Apan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26823","name":"Atengo","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26824","name":"Atitalaquia","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26825","name":"Atotonilco de Tula","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26826","name":"Atotonilco el Grande","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26827","name":"Calnali","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26828","name":"Cardonal","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26829","name":"Chapulhuacan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26830","name":"Doxey","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26831","name":"El Arenal","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26832","name":"El Llano","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26833","name":"Emiliano Zapata","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26834","name":"Huautla","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26835","name":"Huejutla","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26836","name":"Hueytlalpan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26837","name":"Huichapan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26838","name":"Ixmiquilpan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26839","name":"Jacala","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26840","name":"Jaltocan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26841","name":"Los Reyes","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26842","name":"Mineral del Monte","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26843","name":"Mixquiahuala","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26844","name":"Molango","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26845","name":"Orizatlan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26846","name":"Pachuca","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26847","name":"Pachuquilla","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26848","name":"Progreso","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26849","name":"San Ildefonso","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26850","name":"San Juan Tepa","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26851","name":"Singuilucan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26852","name":"Tasquillo","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26853","name":"Tecozautla","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26854","name":"Tepatepec","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26855","name":"Tepeapulco","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26856","name":"Tepeji","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26857","name":"Tepepa","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26858","name":"Tetepango","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26859","name":"Tezontepec","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26860","name":"Tizayuca","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26861","name":"Tlahuelilpan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26862","name":"Tlanalapa","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26863","name":"Tlanchinol","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26864","name":"Tlaxcoapan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26865","name":"Tlaxiaca","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26866","name":"Tolcayuca","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26867","name":"Tula de Allende","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26868","name":"Tulancingo","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26869","name":"Tulantepec","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26870","name":"Vindho","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26871","name":"Zacualtipan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26872","name":"Zapotlan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26873","name":"Zempoala","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26874","name":"Zimapan","city_id":"2372","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26875","name":"Acatic","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26876","name":"Ahualulco","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26877","name":"Ajijic","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26878","name":"Amatitan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26879","name":"Ameca","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26880","name":"Antonio Escobedo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26881","name":"Arandas","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26882","name":"Atemajac","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26883","name":"Atequiza","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26884","name":"Atotonilco el Alto","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26885","name":"Atotonilquillo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26886","name":"Autlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26887","name":"Ayotlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26888","name":"Bellavista","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26889","name":"Cajititlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26890","name":"Capilla de Guadalupe","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26891","name":"Casimiro Castillo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26892","name":"Centro de Readaptacion Social","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26893","name":"Chapala","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26894","name":"Chiquilistlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26895","name":"Cihuatlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26896","name":"Colotlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26897","name":"Concepcion de Buenos Aires","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26898","name":"Cosala","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26899","name":"Coyula","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26900","name":"Cuitzeo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26901","name":"Cuqio","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26902","name":"Cuyutlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26903","name":"Degollado","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26904","name":"El Grullo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26905","name":"El Limon","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26906","name":"El Quince","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26907","name":"El Refugio","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26908","name":"El Salto","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26909","name":"El Verde","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26910","name":"Encarnacion","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26911","name":"Etzatlan","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26912","name":"Guadalajara","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26913","name":"Guzman","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26914","name":"Hostotipaquillo","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26915","name":"Huejucar","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26916","name":"Huejuquilla el Alto","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26917","name":"Itzican","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26918","name":"Ixtlahuacan de los Membrillos","city_id":"2373","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"is_activated":"1"}, +{"id":"26919","name":"Ixtlahuacan del Rio","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26920","name":"Ixtlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26921","name":"Jalostotitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26922","name":"Jamay","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26923","name":"Jocotepec","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26924","name":"Juanacatlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26925","name":"Juchitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26926","name":"La Barca","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26927","name":"La Huerta","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26928","name":"La Ribera","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26929","name":"La Tijera","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26930","name":"La Venta del Astillero","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26931","name":"Lagos de Moreno","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26932","name":"Las Juntas","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26933","name":"Las Pintas","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26934","name":"Las Pintitas","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26935","name":"Lo Arado","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26936","name":"Mascota","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26937","name":"Mazamitla","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26938","name":"Mexticacan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26939","name":"Mezcala","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26940","name":"Nuevo Mexico","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26941","name":"Ocotlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26942","name":"Ojuelos de Jalisco","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26943","name":"Pihuamo","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26944","name":"Poncitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26945","name":"Puente Grande","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26946","name":"Puerto Vallarta","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26947","name":"San Francisco de Asis","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26948","name":"San Jose del Castillo","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26949","name":"San Juan de los Lagos","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26950","name":"San Martin de Hidalgo","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26951","name":"San Miguel el Alto","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26952","name":"San Patricio","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26953","name":"San Sebastian del Sur","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26954","name":"San Sebastian el Grande","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26955","name":"Santa Anita","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26956","name":"Santa Cruz de las Flores","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26957","name":"Santa Cruz del Valle","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26958","name":"Sayula","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26959","name":"Talpa","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26960","name":"Tamazula","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26961","name":"Tapalpa","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26962","name":"Tecalitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26963","name":"Tecolotlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26964","name":"Tenamaxtlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26965","name":"Teocaltiche","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26966","name":"Teocuitatlan de Corona","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26967","name":"Tepatitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26968","name":"Tequila","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26969","name":"Tesistan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26970","name":"Teuchitlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26971","name":"Tizapan el Alto","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26972","name":"Tlajomulco","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26973","name":"Tlaquepaque","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26974","name":"Tomatlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26975","name":"Tonaya","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26976","name":"Tonila","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26977","name":"Tototlan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26978","name":"Tuxpan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26979","name":"Union de San Antonio","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26980","name":"Union de Tula","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26981","name":"Usmajac","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26982","name":"Valle de Guadalupe","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26983","name":"Valle de Juarez","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26984","name":"Villa Corona","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26985","name":"Villa Guerrero","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26986","name":"Yahualica","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26987","name":"Zacoalco","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26988","name":"Zapopan","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26989","name":"Zapote","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26990","name":"Zapotiltic","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26991","name":"Zapotlanejo","city_id":"2373","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26992","name":"Acahualco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26993","name":"Acambay","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26994","name":"Acazulco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26995","name":"Acolman","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26996","name":"Acuautla","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26997","name":"Acutzilapan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26998","name":"Ajoloapan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"26999","name":"Alborada","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27000","name":"Almaya","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27001","name":"Almoloya del Rio","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27002","name":"Amanalco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27003","name":"Amecameca","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27004","name":"Ameyalco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27005","name":"Apaxco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27006","name":"Atarasquillo","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27007","name":"Atenco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27008","name":"Atizapan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27009","name":"Atlacomulco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27010","name":"Atlatlahuca","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27011","name":"Atlatongo","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27012","name":"Atlautla","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27013","name":"Atlazalpan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27014","name":"Autopan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27015","name":"Axapusco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27016","name":"Ayotuzco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27017","name":"Ayotzingo","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27018","name":"Azcatepec","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27019","name":"Balderas","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27020","name":"Bocanegra","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27021","name":"Boreje","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27022","name":"Cacalomacan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27023","name":"Cahuacan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27024","name":"Calimaya","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27025","name":"Calixtlahuaca","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27026","name":"Capulhuac","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27027","name":"Carbon","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27028","name":"Cautzingo","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27029","name":"Chalco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27030","name":"Chapultepec","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27031","name":"Chiautla","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27032","name":"Chicoloapan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27033","name":"Chiconautla","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27034","name":"Chiconcuac","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27035","name":"Chimalhuacan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27036","name":"Chimalpa","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27037","name":"Cholula","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27038","name":"Citendeje","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27039","name":"Coacalco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27040","name":"Coachochitlan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27041","name":"Coacomulco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27042","name":"Coapango","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27043","name":"Coatepec","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27044","name":"Coatepec Harinas","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27045","name":"Coatlinchan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27046","name":"Cocotitlan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27047","name":"Colorines","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27048","name":"Concepcion Jolalpan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27049","name":"Coyotepec","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27050","name":"Cuauhtenco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27051","name":"Cuautitlan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27052","name":"Cuautitlan Izcalli","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27053","name":"Cuautlalpan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27054","name":"Cuaxustenco","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27055","name":"Cuexontitlan","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27056","name":"Cuijingo","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27057","name":"Ecatepec","city_id":"2374","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"is_activated":"1"}, +{"id":"27058","name":"Ecatzingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27059","name":"Ejido Cahuacan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27060","name":"Ejido Veinte de Noviembre la C","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27061","name":"Ejido de la Y Seccion Siete a ","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27062","name":"El Coporo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27063","name":"El Oro","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27064","name":"Enchisi","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27065","name":"Enthavi","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27066","name":"Fuentes del Valle","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27067","name":"Huehuetoca","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27068","name":"Huexoculco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27069","name":"Hueypoxtla","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27070","name":"Huilango","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27071","name":"Huitzilzingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27072","name":"Huixquilucan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27073","name":"Huixquilucan de Degollado","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27074","name":"Huixtoco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27075","name":"Ixlahuaca","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27076","name":"Ixtacalco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27077","name":"Ixtapaluca","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27078","name":"Ixtapan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27079","name":"Ixtlahuatzingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27080","name":"Jajalpa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27081","name":"Jaltenco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27082","name":"Jaltepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27083","name":"Jesus del Monte","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27084","name":"Jicaltepec Autopan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27085","name":"Jilotepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27086","name":"Jilotzingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27087","name":"Jocotitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27088","name":"Joquicingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27089","name":"Jorge Jimenez Cantu","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27090","name":"Juchitepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27091","name":"La Concepcion los Banos","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27092","name":"La Constitucion","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27093","name":"La Magdalema","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27094","name":"Lerma","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27095","name":"Loma de Juarez","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27096","name":"Lomas de Zacamulpa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27097","name":"Lopez Mateos","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27098","name":"Los Esparragos","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27099","name":"Los Reyes Acozac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27100","name":"Luvianos","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27101","name":"Malinalco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27102","name":"Melchor Ocampo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27103","name":"Metepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27104","name":"Mexicaltzingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27105","name":"Mextepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27106","name":"Montecillo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27107","name":"Nativitas","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27108","name":"Naucalpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27109","name":"Nexquipayac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27110","name":"Nextlalpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27111","name":"Nezahualcoyotl","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27112","name":"Nicolas Romero","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27113","name":"Nopaltepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27114","name":"Ocotitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27115","name":"Ocoyoacac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27116","name":"Ojo de Agua","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27117","name":"Otumba","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27118","name":"Otzacatipan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27119","name":"Oyamel","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27120","name":"Oztolotepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27121","name":"Ozumba","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27122","name":"Papalotla","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27123","name":"Progreso Industrial","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27124","name":"Rio Frio","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27125","name":"Salitrillo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27126","name":"San Antonio Buenavista","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27127","name":"San Antonio La Isla","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27128","name":"San Bartolo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27129","name":"San Bartolo del Llano","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27130","name":"San Bernardino","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27131","name":"San Felipe del Progreso","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27132","name":"San Jose Guadalupe","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27133","name":"San Jose el Vidrio","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27134","name":"San Juan Tilapa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27135","name":"San Juan de las Huertas","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27136","name":"San Juan y San Pedro Tezompa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27137","name":"San Lorenzo Cuauhtenco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27138","name":"San Martin de las Piramides","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27139","name":"San Miguel la Labor","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27140","name":"San Nicolas Guadalupe","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27141","name":"San Nicolas Tolentino","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27142","name":"San Pablo de las Salinas","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27143","name":"San Pedro Abajo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27144","name":"San Pedro Arriba","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27145","name":"San Pedro el Alto","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27146","name":"San Pedro los Banos","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27147","name":"San Simon de la Laguna","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27148","name":"Santa Catarina del Monte","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27149","name":"Santa Cruz del Monte","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27150","name":"Santa Gertrudis","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27151","name":"Santa Maria del Monte","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27152","name":"Santo Domingo de Guzman","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27153","name":"Soyaniquilpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27154","name":"Sultepec","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27155","name":"Tecalco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27156","name":"Tecamac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27157","name":"Techuchulco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27158","name":"Tecuahutitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27159","name":"Tehuixtitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27160","name":"Tejupilco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27161","name":"Temamatla","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27162","name":"Temascalapa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27163","name":"Temascalcingo","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27164","name":"Temoaya","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27165","name":"Tenango de Arista","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27166","name":"Tenango del Aire","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27167","name":"Tenochtitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27168","name":"Teoloyucan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27169","name":"Teotihuacan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27170","name":"Tepeolulco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27171","name":"Tepetitlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27172","name":"Tepetlaoxtoc","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27173","name":"Tepetlixpa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27174","name":"Tepexpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27175","name":"Tepotzotlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27176","name":"Tequexquinahuac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27177","name":"Tequisistlan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27178","name":"Tequixquiac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27179","name":"Texcalyacac","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27180","name":"Texcoco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27181","name":"Teyahualco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27182","name":"Tezoquipan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27183","name":"Tezoyuca","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27184","name":"Tianguistenco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27185","name":"Tilapa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27186","name":"Tlachaloya Segunda Seccion","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27187","name":"Tlachihualpa","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27188","name":"Tlaixpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27189","name":"Tlalcilalcalli","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27190","name":"Tlalcilalcalpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27191","name":"Tlalmanalco","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27192","name":"Tlalmimilolpan","city_id":"2374","created_at":"2024-01-21 12:07:46","updated_at":"2024-01-21 12:07:46","translations":null,"is_activated":"1"}, +{"id":"27193","name":"Tlalnepantla","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27194","name":"Tlaltelulco","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27195","name":"Tlaltizapan","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27196","name":"Tlanisco","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27197","name":"Toluca","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27198","name":"Tonanitla","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27199","name":"Tonatico","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27200","name":"Totocuitlapilco","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27201","name":"Totoltepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27202","name":"Tulantongo","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27203","name":"Tultepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27204","name":"Tultitlan","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27205","name":"Valle de Bravo","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27206","name":"Xalatlaco","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27207","name":"Xalpa","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27208","name":"Xico","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27209","name":"Xochimanca","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27210","name":"Xolalpa","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27211","name":"Xoloc","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27212","name":"Xometla","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27213","name":"Xonacatlan","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27214","name":"Yachihuacaltepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27215","name":"Yancuitlalpan","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27216","name":"Zacacalco","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27217","name":"Zacamulpa","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27218","name":"Zictepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27219","name":"Zinacantepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27220","name":"Zolotepec","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27221","name":"Zumpahuacan","city_id":"2374","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27222","name":"Acuitzio","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27223","name":"Aguililla","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27224","name":"Angahuan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27225","name":"Angamacutiro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27226","name":"Angangueo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27227","name":"Antunez","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27228","name":"Apatzingan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27229","name":"Ario","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27230","name":"Brisenas","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27231","name":"Caltzontzin","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27232","name":"Capacuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27233","name":"Capula","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27234","name":"Caracuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27235","name":"Charapan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27236","name":"Charo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27237","name":"Chavinda","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27238","name":"Cheran","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27239","name":"Chilchota","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27240","name":"Churintzio","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27241","name":"Churumuco","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27242","name":"Coahuayana","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27243","name":"Coalcoman","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27244","name":"Coeneo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27245","name":"Cojumatlan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27246","name":"Comachuen","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27247","name":"Contepec","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27248","name":"Copandaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27249","name":"Cotija","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27250","name":"Cuanajo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27251","name":"Cuitareo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27252","name":"Ecuandureo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27253","name":"Huandacareo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27254","name":"Huetamo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27255","name":"Indaparapeo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27256","name":"Irimbo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27257","name":"Jacona","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27258","name":"Jiquilpan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27259","name":"Jungapeo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27260","name":"La Huacana","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27261","name":"La Mira","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27262","name":"La Orilla","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27263","name":"La Piedad","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27264","name":"La Ruana","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27265","name":"Las Guacamayas","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27266","name":"Lombardia","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27267","name":"Madero","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27268","name":"Maya","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27269","name":"Morelos","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27270","name":"Nahuatzen","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27271","name":"Nocupetaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27272","name":"Nueva Italia de Ruiz","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27273","name":"Nuevo San Juan Parangaricutiro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27274","name":"Numaran","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27275","name":"Opopeo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27276","name":"Pajacuaran","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27277","name":"Panindicuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27278","name":"Paracho","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27279","name":"Pastor Ortiz","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27280","name":"Patzcuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27281","name":"Penjamillo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27282","name":"Periban","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27283","name":"Pichataro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27284","name":"Purepero","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27285","name":"Puruandiro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27286","name":"Puruaran","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27287","name":"Querendaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27288","name":"Quiroga","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27289","name":"Rincon de Nicolas Romero","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27290","name":"Riva Palacio","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27291","name":"Sahuayo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27292","name":"San Matias Grande","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27293","name":"Santa Clara de Valladares","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27294","name":"Santa Clara del Cobre","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27295","name":"Santa Fe de la Laguna","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27296","name":"Tacambaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27297","name":"Tancitaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27298","name":"Tangamandapio","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27299","name":"Tangancicuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27300","name":"Tanhuato","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27301","name":"Tarecuato","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27302","name":"Taretan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27303","name":"Tarimbaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27304","name":"Tejaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27305","name":"Tepalcatepec","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27306","name":"Tingambato","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27307","name":"Tinguindin","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27308","name":"Tiquicheo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27309","name":"Tlalpujahua","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27310","name":"Tlazazalca","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27311","name":"Tungareo","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27312","name":"Tzintzuntzan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27313","name":"Uruapan","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27314","name":"Villa Jimenez","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27315","name":"Villachuato","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27316","name":"Villamar","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27317","name":"Yurecuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27318","name":"Zacapu","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27319","name":"Zamora","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27320","name":"Zinapecuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27321","name":"Zitacuaro","city_id":"2375","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27322","name":"Alpuyeca","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27323","name":"Amacuzac","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27324","name":"Amayuca","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27325","name":"Anenecuilco","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27326","name":"Apatlaco","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27327","name":"Atlatlahucan","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27328","name":"Axochiapan","city_id":"2376","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"is_activated":"1"}, +{"id":"27329","name":"Ayala","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27330","name":"Calera Chica","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27331","name":"Coatetelco","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27332","name":"Cocoyoc","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27333","name":"Cuautla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27334","name":"Cuernavaca","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27335","name":"Higueron","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27336","name":"Hueyapan","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27337","name":"Huiztilac","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27338","name":"Jantetelco","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27339","name":"Jiutepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27340","name":"Jojutla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27341","name":"Jonacatepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27342","name":"Juan Morales","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27343","name":"La Joya","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27344","name":"Los Arcos","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27345","name":"Mazatepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27346","name":"Miacatlan","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27347","name":"Oaxtepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27348","name":"Ocuituco","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27349","name":"Pedro Amaro","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27350","name":"Puente de Ixtla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27351","name":"San Jose Vista Hermosa","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27352","name":"San Nicolas Galeana","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27353","name":"Santa Catarina","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27354","name":"Santa Rosa Treinta","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27355","name":"Tehuixtla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27356","name":"Telixtac","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27357","name":"Temixco","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27358","name":"Temoac","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27359","name":"Tenextepango","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27360","name":"Tepalcingo","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27361","name":"Tepoztlan","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27362","name":"Tetecala","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27363","name":"Tetela del Volcan","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27364","name":"Tilzapotla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27365","name":"Tlaquiltenango","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27366","name":"Tlatenchi","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27367","name":"Tlayacapan","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27368","name":"Tres Marias","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27369","name":"Unidad Habitacional Jose Maria","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27370","name":"Xochitepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27371","name":"Xoxocotla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27372","name":"Yautepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27373","name":"Yecapixtla","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27374","name":"Zacatepec","city_id":"2376","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27375","name":"Acaponeta","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27376","name":"Ahuacatlan","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27377","name":"Amatlan","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27378","name":"Aztatan","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27379","name":"Bucerias","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27380","name":"Cerralvo","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27381","name":"Compostela","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27382","name":"Ixcuintla","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27383","name":"Ixtlan del Rio","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27384","name":"Jala","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27385","name":"Jalcocotan","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27386","name":"La Penita de Jaltemba","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27387","name":"La Presa","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27388","name":"Lagunillas","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27389","name":"Las Jarretaderas","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27390","name":"Las Varas","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27391","name":"Puga","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27392","name":"Rosamorada","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27393","name":"Ruiz","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27394","name":"San Blas","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27395","name":"San Jose del Valle","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27396","name":"San Juan de Abajo","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27397","name":"Tecuala","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27398","name":"Tepic","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27399","name":"Valle de Banderas","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27400","name":"Xalisco","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27401","name":"Yago","city_id":"2377","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27402","name":"Amilpas","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27403","name":"Amuzgos","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27404","name":"Asuncion Ixtaltepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27405","name":"Asuncion Nochixtlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27406","name":"Asuncion Ocotlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27407","name":"Atempa","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27408","name":"Atzompa","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27409","name":"Ayautla","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27410","name":"Ayoquezco","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27411","name":"Ayotzintepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27412","name":"Bajos de Chila","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27413","name":"Brisas de Zicatela","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27414","name":"Cacahuatepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27415","name":"Cacaotepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27416","name":"Chahuites","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27417","name":"Chichicapam","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27418","name":"Chiltepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27419","name":"Cienaga de Zimatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27420","name":"Coatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27421","name":"Comitancillo","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27422","name":"Cosolapa","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27423","name":"Crucecita","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27424","name":"Cuicatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27425","name":"Cuilapam","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27426","name":"Ejutla de Crespo","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27427","name":"El Espinal","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27428","name":"Etla","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27429","name":"Fraccionamiento el Rosario","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27430","name":"Guelavia","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27431","name":"Guichicovi","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27432","name":"Huajuapan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27433","name":"Huatulco","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27434","name":"Huaxpaltepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27435","name":"Huayapam","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27436","name":"Huazolotitlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27437","name":"Huitzo","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27438","name":"Huixtepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27439","name":"Ingenio","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27440","name":"Ixcatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27441","name":"Ixtepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27442","name":"Jamiltepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27443","name":"Jicayan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27444","name":"Juchitan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27445","name":"Juquila","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27446","name":"Juxtlahuaca","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27447","name":"Loma Bonita","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27448","name":"Magdalena Teitipac","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27449","name":"Magdalena Tequisistlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27450","name":"Matatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27451","name":"Matias Romero","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27452","name":"Mechoacan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27453","name":"Miahuatlan","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27454","name":"Mitla","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27455","name":"Mixtepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27456","name":"Mixtequilla","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27457","name":"Nazareno Etla","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27458","name":"Niltepec","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27459","name":"Oaxaca","city_id":"2379","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"is_activated":"1"}, +{"id":"27460","name":"Ojitlan","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27461","name":"Palomares","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27462","name":"Panixtlahuaca","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27463","name":"Pinotepa Nacional","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27464","name":"Pinotepa de Don Luis","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27465","name":"Pochutla","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27466","name":"Putla","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27467","name":"Quetzaltepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27468","name":"Rincon Viejo","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27469","name":"Rio Grande","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27470","name":"Salina Cruz","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27471","name":"San Agustin de las Juntas","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27472","name":"San Antonio Castillo Velasco","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27473","name":"San Antonio de la Cal","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27474","name":"San Dionisio del Mar","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27475","name":"San Francisco del Mar","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27476","name":"San Jose del Progreso","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27477","name":"San Juan Colorado","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27478","name":"San Mateo del Mar","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27479","name":"Santa Lucia del Camino","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27480","name":"Santa Maria del Tule","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27481","name":"Santiago Apostol","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27482","name":"Santos Reyes Nopala","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27483","name":"Soyaltepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27484","name":"Suchilquitongo","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27485","name":"Tamazulapam","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27486","name":"Tapanatepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27487","name":"Tehuantepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27488","name":"Teitipac","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27489","name":"Telixtlahuaca","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27490","name":"Teotitlan","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27491","name":"Teotitlan den Valle","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27492","name":"Tilquiapam","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27493","name":"Tlacolula","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27494","name":"Tlalixtac","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27495","name":"Tlaxiaco","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27496","name":"Tutla","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27497","name":"Tuxtepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27498","name":"Union Hidalgo","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27499","name":"Usila","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27500","name":"Valle Nacional","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27501","name":"Vicente Camalote","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27502","name":"Xadani","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27503","name":"Xitla","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27504","name":"Xoxocotlan","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27505","name":"Yaitepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27506","name":"Yatareni","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27507","name":"Zaachila","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27508","name":"Zanatepec","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27509","name":"Zimatlan","city_id":"2379","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27510","name":"Acajete","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27511","name":"Acateno","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27512","name":"Acatzingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27513","name":"Actipan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27514","name":"Acuexcomac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27515","name":"Ahuatempan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27516","name":"Ajalpan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27517","name":"Aljojuca","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27518","name":"Almecatla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27519","name":"Alseseca","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27520","name":"Altepexi","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27521","name":"Amecac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27522","name":"Amozoc","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27523","name":"Aparicio","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27524","name":"Atempan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27525","name":"Atencingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27526","name":"Atlixco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27527","name":"Atoyatempan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27528","name":"Atzitzintla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27529","name":"Azumiatla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27530","name":"Cacaloxuchitl","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27531","name":"Calipan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27532","name":"Calmeca","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27533","name":"Calpan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27534","name":"Caltenco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27535","name":"Canada","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27536","name":"Canoa","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27537","name":"Caxhuacan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27538","name":"Chalchihuapan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27539","name":"Chapulco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27540","name":"Chautla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27541","name":"Chiautzingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27542","name":"Chiconquiac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27543","name":"Chietla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27544","name":"Chignahuapan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27545","name":"Chignautla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27546","name":"Chilac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27547","name":"Chilchotla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27548","name":"Citlaltepetl","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27549","name":"Coronango","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27550","name":"Coxcatlan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27551","name":"Cuacnopalan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27552","name":"Cuanala","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27553","name":"Cuapiaxtla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27554","name":"Cuautlancingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27555","name":"Cuayucatepec","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27556","name":"Cuetzalan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27557","name":"Domingo Arenas","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27558","name":"Escape","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27559","name":"Huaquechula","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27560","name":"Huauchinango","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27561","name":"Huehuetlan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27562","name":"Huejotzingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27563","name":"Hueyotlipan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27564","name":"Hueytamalco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27565","name":"Huixcolotla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27566","name":"Ixcaquixtla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27567","name":"Ixtiyucan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27568","name":"Izucar","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27569","name":"Jolalpan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27570","name":"La Galarza","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27571","name":"La Resureccion","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27572","name":"Libres","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27573","name":"Los Ranchos","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27574","name":"Los Reyes de Juarez","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27575","name":"Malacatepec","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27576","name":"Metlaltoyuca","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27577","name":"Mihuacan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27578","name":"Momoxpan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27579","name":"Moyotzingo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27580","name":"Nealtican","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27581","name":"Necaxa","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27582","name":"Nopalucan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27583","name":"Ocoyucan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27584","name":"Oriental","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27585","name":"Pahuatlan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27586","name":"Palmar de Bravo","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27587","name":"Puebla","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27588","name":"Quecholac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27589","name":"Raboso","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27590","name":"Rafael Lara Grajales","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27591","name":"San Gabriel Casa Blanca","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27592","name":"San Lucas el Grande","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27593","name":"San Salvador el Seco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27594","name":"San Sebastian Villanueva","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27595","name":"Sanctorum","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27596","name":"Santa Maria la Alta","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27597","name":"Serdan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27598","name":"Soltepec","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27599","name":"Tatoxcac","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27600","name":"Tecali","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27601","name":"Tecamachalco","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27602","name":"Tehuacan","city_id":"2380","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"is_activated":"1"}, +{"id":"27603","name":"Tehuitzingo","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27604","name":"Tenango de las Flores","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27605","name":"Tenextatiloyan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27606","name":"Teontepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27607","name":"Teopantlan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27608","name":"Teotlalcingo","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27609","name":"Tepango","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27610","name":"Tepatlaxco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27611","name":"Tepeaca","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27612","name":"Tepeojuma","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27613","name":"Tepexi","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27614","name":"Tepulco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27615","name":"Tetela Morelos","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27616","name":"Tetela de Ocampo","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27617","name":"Teteles","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27618","name":"Tetzoyocan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27619","name":"Texmelucan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27620","name":"Teziutlan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27621","name":"Tianguismanalco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27622","name":"Tlachichuca","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27623","name":"Tlacoyalco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27624","name":"Tlahuapan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27625","name":"Tlalancaleca","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27626","name":"Tlaltenango","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27627","name":"Tlanalapan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27628","name":"Tlancualpican","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27629","name":"Tlanepantla","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27630","name":"Tlapanala","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27631","name":"Tlatlauquitepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27632","name":"Tlaxcalancingo","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27633","name":"Tlaxco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27634","name":"Tochapan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27635","name":"Tochimilco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27636","name":"Tochtepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27637","name":"Tulcingo","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27638","name":"Tuxco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27639","name":"Xalmimilulco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27640","name":"Xaltepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27641","name":"Xicotepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27642","name":"Xiutetelco","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27643","name":"Xochiltenango","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27644","name":"Xochitlan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27645","name":"Xonatepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27646","name":"Xoxtla","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27647","name":"Yaonahuac","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27648","name":"Yehualtepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27649","name":"Zacapechpan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27650","name":"Zacapoaxtla","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27651","name":"Zacatlan","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27652","name":"Zinacatepec","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27653","name":"Zongozotla","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27654","name":"Zozutla","city_id":"2380","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27655","name":"Amazcala","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27656","name":"Amealco","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27657","name":"Cadereyta","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27658","name":"Candiles","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27659","name":"El Colorado","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27660","name":"El Pueblito","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27661","name":"El Sauz","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27662","name":"Ezequiel Montes","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27663","name":"Huimilpan","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27664","name":"Jalpan","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27665","name":"Jauregui","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27666","name":"La Canada","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27667","name":"La Estancia","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27668","name":"La Lira","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27669","name":"La Llave","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27670","name":"Paso de Mata","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27671","name":"Pedro Escobedo","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27672","name":"Queretaro","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27673","name":"San Jose de los Olvera","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27674","name":"San Jose el Alto","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27675","name":"San Juan del Rio","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27676","name":"San Pedro Martir","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27677","name":"Santa Maria Magdalena","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27678","name":"Tequisquiapan","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27679","name":"Tlacote el Bajo","city_id":"2381","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27680","name":"Adolfo Ruiz Cortines","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27681","name":"Agua Verde","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27682","name":"Ahome","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27683","name":"Badiraguato","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27684","name":"Bagojo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27685","name":"Campo Gobierno","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27686","name":"Choix","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27687","name":"Compuertas","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27688","name":"Constancia","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27689","name":"Costa Rica","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27690","name":"Culiacan","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27691","name":"Culiacancito","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27692","name":"El Burrion","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27693","name":"El Carrizo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27694","name":"El Diez","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27695","name":"El Estero","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27696","name":"El Fuerte","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27697","name":"El Tamarindo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27698","name":"Escuinapa","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27699","name":"Estacion Naranjo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27700","name":"Estancia Bamoa","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27701","name":"Gabriel Leyva Solano","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27702","name":"Guamuchil","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27703","name":"Guasave","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27704","name":"Higuera","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27705","name":"Isla del Bosque","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27706","name":"Jahuara Segundo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27707","name":"Juan Jose Rios","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27708","name":"La Reforma","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27709","name":"La Trinidad","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27710","name":"Los Mochis","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27711","name":"Mochicahui","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27712","name":"Mocorito","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27713","name":"Navolato","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27714","name":"Pericos","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27715","name":"Pueblos Unidos","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27716","name":"Quila","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27717","name":"Sinaloa","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27718","name":"Teacapan","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27719","name":"Topolobampo","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27720","name":"Zapotitlan","city_id":"2384","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27721","name":"Agua Prieta","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27722","name":"Alamos","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27723","name":"Altar","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27724","name":"Bacobampo","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27725","name":"Bacum","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27726","name":"Bahia de Kino","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27727","name":"Benjamin Hill","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27728","name":"Caborca","city_id":"2385","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"is_activated":"1"}, +{"id":"27729","name":"Campo Sesenta","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27730","name":"Cananea","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27731","name":"Carbo","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27732","name":"Cocorit","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27733","name":"Cumpas","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27734","name":"Empalme","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27735","name":"Esqueda","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27736","name":"Etchojoa","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27737","name":"Etchoropo","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27738","name":"Guaymas","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27739","name":"Hermosillo","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27740","name":"Huatabampo","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27741","name":"Imuris","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27742","name":"Kino","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27743","name":"La Doce","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27744","name":"Moctezuma","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27745","name":"Naco","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27746","name":"Nacozari","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27747","name":"Navajoa","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27748","name":"Obregon","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27749","name":"Pitiquito","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27750","name":"Potam","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27751","name":"Puerto Penasco","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27752","name":"Rio Muerto","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27753","name":"Sahuaripa","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27754","name":"San Jose de Bacum","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27755","name":"San Luis Rio Colorado","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27756","name":"Sonoita","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27757","name":"Tobarito","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27758","name":"Ures","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27759","name":"Vicam","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27760","name":"Yaqui","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27761","name":"Yavaros","city_id":"2385","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27762","name":"Aquiles Serdan","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27763","name":"Ayapa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27764","name":"Balancan","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27765","name":"Barra de Santa Ana","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27766","name":"Bosque de Saloya","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27767","name":"Campo Magellanes","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27768","name":"Chichicapa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27769","name":"Chontalpa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27770","name":"Comalcalco","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27771","name":"Cunduacan","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27772","name":"Fraccionamiento la Selva","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27773","name":"Huimanguillo","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27774","name":"Jalpa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27775","name":"Jonuta","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27776","name":"La Curva","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27777","name":"La Venta","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27778","name":"Luis Gil Perez","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27779","name":"Macultepec","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27780","name":"Macuspana","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27781","name":"Magana","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27782","name":"Miguel Hidalgo","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27783","name":"Nacajuca","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27784","name":"Ocuiltzapotlan","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27785","name":"Once de Febrero","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27786","name":"Parrilla","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27787","name":"Pemex","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27788","name":"Playas del Rosario","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27789","name":"Simon Sarlat","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27790","name":"Tacotalpa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27791","name":"Tamulte","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27792","name":"Teapa","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27793","name":"Tecolutilla","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27794","name":"Tenosique","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27795","name":"Villa Aldama","city_id":"2386","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27796","name":"Antiguo Morelos","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27797","name":"El Mante","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27798","name":"Estacion Manuel","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27799","name":"Graciano Sanchez","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27800","name":"Guerrero","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27801","name":"Gustavo Diaz Ordaz","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27802","name":"Jaumave","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27803","name":"Llerca","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27804","name":"Los Guerra","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27805","name":"Mier","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27806","name":"Miguel Aleman","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27807","name":"Nuevo Laredo","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27808","name":"Reynosa","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27809","name":"Rio Bravo","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27810","name":"Santa Engracia","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27811","name":"Santander Jimenez","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27812","name":"Soto la Marina","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27813","name":"Tampico","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27814","name":"Valle Hermoso","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27815","name":"Xicotencatl","city_id":"2387","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27816","name":"Ahuashuatepec","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27817","name":"Altzayanca","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27818","name":"Amaxac","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27819","name":"Apetatitlan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27820","name":"Apizaco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27821","name":"Apizaquito","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27822","name":"Atexcatzingo","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27823","name":"Axocomanitla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27824","name":"Ayometla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27825","name":"Buen Suceso","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27826","name":"Calpulalpan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27827","name":"Chiautempan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27828","name":"Contla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27829","name":"Huactzinco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27830","name":"Huamantla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27831","name":"Huiloac","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27832","name":"Ixtacuixtla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27833","name":"Ixtenco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27834","name":"Mazatecochco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27835","name":"Nanacamilpa","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27836","name":"Panotla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27837","name":"Quilehtla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27838","name":"Teacalco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27839","name":"Teolocholco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27840","name":"Tepetitla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27841","name":"Tepeyanco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27842","name":"Tequixquitla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27843","name":"Terrenate","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27844","name":"Tetla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27845","name":"Tetlanohcan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27846","name":"Tetlatlahuca","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27847","name":"Texcalac","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27848","name":"Texoloc","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27849","name":"Tlaxcala","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27850","name":"Tocatlan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27851","name":"Totolac","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27852","name":"Villa Alta","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27853","name":"Xaloztoc","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27854","name":"Xaltocan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27855","name":"Xicohtzinco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27856","name":"Xiloxoxtla","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27857","name":"Yauhquemecan","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27858","name":"Zacatelco","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27859","name":"Zitlaltepec","city_id":"2388","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"is_activated":"1"}, +{"id":"27860","name":"Acayucan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27861","name":"Acultzingo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27862","name":"Agua Dulce","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27863","name":"Alamo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27864","name":"Alto Lucero","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27865","name":"Altotonga","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27866","name":"Anton Lizardo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27867","name":"Atzacan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27868","name":"Azueta","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27869","name":"Banderilla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27870","name":"Boca del Monte","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27871","name":"Boca del Rio","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27872","name":"Cabada","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27873","name":"Cabezas","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27874","name":"Carrillo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27875","name":"Castillo de Teayo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27876","name":"Catemaco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27877","name":"Cazones","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27878","name":"Cerro Azul","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27879","name":"Chacaltianguis","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27880","name":"Chicontepec","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27881","name":"Chinameca","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27882","name":"Chinampa","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27883","name":"Chocaman","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27884","name":"Coacoatzintla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27885","name":"Coacotla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27886","name":"Coatzacoalcos","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27887","name":"Coatzintla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27888","name":"Comoapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27889","name":"Corral Nuevo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27890","name":"Cosamaloapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27891","name":"Cosautlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27892","name":"Coscomatepec","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27893","name":"Cosoleacaque","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27894","name":"Covarrubias","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27895","name":"Coxquihui","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27896","name":"Coyutla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27897","name":"Cuautlapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27898","name":"Cuichapa","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27899","name":"Cuitlahuac","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27900","name":"El Higo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27901","name":"El Naranjito","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27902","name":"Emilio Carranza","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27903","name":"Estacion Juanita","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27904","name":"Estacion del Idolo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27905","name":"Filomeno Mata","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27906","name":"Fortin","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27907","name":"Gabino Barreda","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27908","name":"Gutierrez Zamora","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27909","name":"Hidalgotitlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27910","name":"Huatusco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27911","name":"Huayacoctla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27912","name":"Huiloapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27913","name":"Ignacio de la Llave","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27914","name":"Isla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27915","name":"Ixcatepec","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27916","name":"Ixhuatlan del Cafe","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27917","name":"Ixhuatlan del Sureste","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27918","name":"Ixhuatlancillo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27919","name":"Ixtaczoquitlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27920","name":"Jalacingo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27921","name":"Jalapilla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27922","name":"Jaltipan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27923","name":"Jamapa","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27924","name":"Jesus Carranza","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27925","name":"La Antigua","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27926","name":"La Estanzuela","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27927","name":"La Perla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27928","name":"La Poza","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27929","name":"Las Amapolas","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27930","name":"Las Choapas","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27931","name":"Lomas de Barillas","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27932","name":"Los Altos","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27933","name":"Los Mangos","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27934","name":"Maltrata","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27935","name":"Mariano Escobedo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27936","name":"Martinez","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27937","name":"Mecatlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27938","name":"Mecayapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27939","name":"Misantla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27940","name":"Monte Blanco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27941","name":"Moralillo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27942","name":"Motzorongo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27943","name":"Mundo Nuevo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27944","name":"Nanchital","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27945","name":"Naolinco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27946","name":"Naranjos","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27947","name":"Nautla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27948","name":"Oluta","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27949","name":"Omealca","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27950","name":"Orizaba","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27951","name":"Otatitlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27952","name":"Oteapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27953","name":"Ozuluama","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27954","name":"Pajapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27955","name":"Papantla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27956","name":"Paraje Nuevo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27957","name":"Paso de Ovejas","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27958","name":"Paso del Macho","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27959","name":"Paso del Toro","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27960","name":"Penuela","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27961","name":"Perote","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27962","name":"Platon Sanchez","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27963","name":"Playa Vicente","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27964","name":"Potrero Nuevo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27965","name":"Potrero del Llano","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27966","name":"Poza Rica","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27967","name":"Puntilla Aldama","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27968","name":"Rafael Delgado","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27969","name":"Rafael Lucio","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27970","name":"Saltabarranca","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27971","name":"San Juan Evangelista","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27972","name":"San Roman","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27973","name":"Santiago Tuxtla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27974","name":"Soconusco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27975","name":"Soteapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27976","name":"Tamalin","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27977","name":"Tamiahua","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27978","name":"Tantoyuca","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27979","name":"Tatahuicapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27980","name":"Tecolutla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27981","name":"Tempoal","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27982","name":"Tenango de Rio Blanco","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27983","name":"Teocelo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27984","name":"Tepetzintla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27985","name":"Tetelzingo","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27986","name":"Texistepec","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27987","name":"Tezonapa","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27988","name":"Tihuatlan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27989","name":"Tlacojalpan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27990","name":"Tlacotalpan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27991","name":"Tlaltetela","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27992","name":"Tlapacoyan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27993","name":"Tocuila","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27994","name":"Totula","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27995","name":"Tres Valles","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27996","name":"Tuxpam","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27997","name":"Tuxtla","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27998","name":"Tuzamapan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"27999","name":"Union y Progreso","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"28000","name":"Ursulo Galvan","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"28001","name":"Valente Diaz","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"28002","name":"Vega de Alatorre","city_id":"2389","created_at":"2024-01-21 12:07:52","updated_at":"2024-01-21 12:07:52","translations":null,"is_activated":"1"}, +{"id":"28003","name":"Veracruz","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28004","name":"Xalapa","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28005","name":"Xocotla","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28006","name":"Yanga","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28007","name":"Yecuatla","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28008","name":"Zongolica","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28009","name":"Zozocolco","city_id":"2389","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28010","name":"Acanceh","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28011","name":"Akil","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28012","name":"Baca","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28013","name":"Buctzotz","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28014","name":"Cacalchen","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28015","name":"Cansahcab","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28016","name":"Caucel","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28017","name":"Celestun","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28018","name":"Cenotillo","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28019","name":"Chemax","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28020","name":"Chichimila","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28021","name":"Chicxulub","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28022","name":"Chochola","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28023","name":"Cholul","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28024","name":"Chumayel","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28025","name":"Conkal","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28026","name":"Cuzama","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28027","name":"Dzan","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28028","name":"Dzemul","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28029","name":"Dzidzantun","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28030","name":"Dzilam Gonzalez","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28031","name":"Dzitas","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28032","name":"Espita","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28033","name":"Halacho","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28034","name":"Hocaba","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28035","name":"Hoctun","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28036","name":"Homun","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28037","name":"Huhi","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28038","name":"Hunucma","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28039","name":"Itzincab","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28040","name":"Ixil","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28041","name":"Izamal","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28042","name":"Kanasin","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28043","name":"Kantunil","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28044","name":"Kinchil","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28045","name":"Mama","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28046","name":"Maxcanu","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28047","name":"Merida","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28048","name":"Motul","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28049","name":"Muna","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28050","name":"Opichen","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28051","name":"Oxkutzcab","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28052","name":"Panaba","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28053","name":"Peto","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28054","name":"Piste","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28055","name":"Sacalum","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28056","name":"Seye","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28057","name":"Sotuta","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28058","name":"Sucila","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28059","name":"Tahmek","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28060","name":"Teabo","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28061","name":"Tecoh","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28062","name":"Tekanto","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28063","name":"Tekax","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28064","name":"Tekit","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28065","name":"Telchac","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28066","name":"Temax","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28067","name":"Temozon","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28068","name":"Tetiz","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28069","name":"Ticul","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28070","name":"Timucuy","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28071","name":"Tixkokob","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28072","name":"Tixpehual","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28073","name":"Tizimin","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28074","name":"Tunkas","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28075","name":"Tzucacab","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28076","name":"Uman","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28077","name":"Valladolid","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28078","name":"X-Can","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28079","name":"Yucatan","city_id":"2390","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28080","name":"Apozol","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28081","name":"Banon","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28082","name":"Canitas","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28083","name":"Chalchihuites","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28084","name":"Concepcion del Oro","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28085","name":"Cos","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28086","name":"Estrada","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28087","name":"Fresnillo","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28088","name":"Garcia","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28089","name":"Gonzalez Ortega","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28090","name":"Jerez","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28091","name":"Juchipila","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28092","name":"Luis Moya","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28093","name":"Miguel Auza","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28094","name":"Monte Escobedo","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28095","name":"Natera","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28096","name":"Nieves","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28097","name":"Nochistlan","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28098","name":"Ojo Caliente","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28099","name":"Piedra Gorda","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28100","name":"Pinos","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28101","name":"Plateros","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28102","name":"Pozo de Gamboa","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28103","name":"Sain Alto","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28104","name":"Sombrerete","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28105","name":"Tabasco","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28106","name":"Tacoaleche","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28107","name":"Tepechitlan","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28108","name":"Teul","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28109","name":"Trancoso","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28110","name":"Victor Rosales","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28111","name":"Villa Gonzalez Ortega","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28112","name":"Zacatecas","city_id":"2391","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28113","name":"Tol","city_id":"2392","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28114","name":"Weno","city_id":"2392","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28115","name":"Lelu","city_id":"2393","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28116","name":"Kolonia","city_id":"2394","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28117","name":"Palikir","city_id":"2394","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28118","name":"Colonia","city_id":"2395","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"is_activated":"1"}, +{"id":"28119","name":"Balti","city_id":"2396","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28120","name":"Falesti","city_id":"2396","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28121","name":"Glodeni","city_id":"2396","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28122","name":"Rascani","city_id":"2396","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28123","name":"Cahul","city_id":"2397","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28124","name":"Straseni","city_id":"2398","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28125","name":"Briceni","city_id":"2400","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28126","name":"Donduseni","city_id":"2400","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28127","name":"Edinet","city_id":"2400","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28128","name":"Ocnita","city_id":"2400","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28129","name":"Ciadar Lunga","city_id":"2401","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28130","name":"Comrat","city_id":"2401","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28131","name":"Vulcanesti","city_id":"2401","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28132","name":"Basarabeasca","city_id":"2402","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28133","name":"Cimislia","city_id":"2402","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28134","name":"Hancesti","city_id":"2402","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28135","name":"Leova","city_id":"2402","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28136","name":"Orhei","city_id":"2403","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28137","name":"Rezina","city_id":"2403","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28138","name":"Telenesti","city_id":"2403","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28139","name":"Drochia","city_id":"2404","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28140","name":"Floresti","city_id":"2404","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28141","name":"Soroca","city_id":"2404","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28142","name":"Taraclia","city_id":"2405","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28143","name":"Causani","city_id":"2406","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28144","name":"Camenca","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28145","name":"Dnestrovsc","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28146","name":"Dubasari","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28147","name":"Griguriopol","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28148","name":"Rabnita","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28149","name":"Slobozia","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28150","name":"Tighina","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28151","name":"Tiraspol ","city_id":"2407","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28152","name":"Calarasi","city_id":"2408","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28153","name":"Nisporeni","city_id":"2408","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28154","name":"Ungheni","city_id":"2408","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28155","name":"Fontvieille","city_id":"2409","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28156","name":"Monaco-Ville","city_id":"2411","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28157","name":"Cecerleg","city_id":"2413","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28158","name":"Olgij","city_id":"2414","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28159","name":"Bajanhongor","city_id":"2415","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28160","name":"Bulgan","city_id":"2416","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28161","name":"Darhan","city_id":"2417","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28162","name":"Chojbalsan","city_id":"2418","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"is_activated":"1"}, +{"id":"28163","name":"Sajnshand","city_id":"2419","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28164","name":"Mandalgovi","city_id":"2420","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28165","name":"Altaj","city_id":"2421","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28166","name":"Chojr","city_id":"2422","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28167","name":"Ondorhaan","city_id":"2423","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28168","name":"Hovd","city_id":"2424","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28169","name":"Moron","city_id":"2425","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28170","name":"Dalanzadgad","city_id":"2426","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28171","name":"Erdenet","city_id":"2427","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28172","name":"Arvajheer","city_id":"2428","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28173","name":"Suhbaatar","city_id":"2429","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28174","name":"Zuunharaa","city_id":"2429","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28175","name":"Baruun-Urt","city_id":"2430","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28176","name":"Nalajh","city_id":"2431","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28177","name":"Zuunmod","city_id":"2431","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28178","name":"Ulaanbaatar","city_id":"2432","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28179","name":"Ulaangom","city_id":"2433","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28180","name":"Tosoncengel","city_id":"2434","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28181","name":"Uliastaj","city_id":"2434","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28182","name":"Montserrat","city_id":"2435","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28183","name":"Agadir","city_id":"2436","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28184","name":"Mohammedia","city_id":"2437","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28185","name":"ad-Dar-al-Bayda","city_id":"2437","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28186","name":"Bin Sulayman","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28187","name":"Bir Rashid","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28188","name":"Bu-al-Jad","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28189","name":"Buznika","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28190","name":"Khuribghah","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28191","name":"Sattat","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28192","name":"Wad Zam","city_id":"2438","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28193","name":"Asfi","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28194","name":"Azimur","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28195","name":"Sidi Binnur","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28196","name":"Sidi Isma il","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28197","name":"Yussufiyah","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28198","name":"al-Jadidah","city_id":"2439","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28199","name":"Fas","city_id":"2440","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28200","name":"Fes","city_id":"2440","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28201","name":"Safru","city_id":"2440","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"is_activated":"1"}, +{"id":"28202","name":"Ghulimim","city_id":"2442","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28203","name":"Sidi Ifni","city_id":"2442","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28204","name":"Tafraut","city_id":"2442","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28205","name":"Tantan","city_id":"2442","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28206","name":"Kenitra","city_id":"2443","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28207","name":"Amalu Ighriban","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28208","name":"Azru","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28209","name":"Jama at-al-Marirt","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28210","name":"Khanifrah","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28211","name":"Meknes","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28212","name":"Midalt","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28213","name":"Miknas","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28214","name":"Mulay Idris","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28215","name":"al-Hajab","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28216","name":"ar-Rasidiyah","city_id":"2445","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28217","name":"Ahfir","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28218","name":"Bin Ansar","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28219","name":"Birkan","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28220","name":"Fijij","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28221","name":"Jaradah","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28222","name":"Tawrirt","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28223","name":"Ujdah","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28224","name":"Zayu","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28225","name":"al-Arwi","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28226","name":"al-Ayun Sidi Malluk","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28227","name":"an-Nadur","city_id":"2446","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28228","name":"Oujda","city_id":"2447","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28229","name":"Khamissat","city_id":"2449","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28230","name":"Sakhirat","city_id":"2449","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28231","name":"Tiflat","city_id":"2449","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28232","name":"ar-Ribat","city_id":"2449","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28233","name":"Settat","city_id":"2451","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28234","name":"Bani Mallal","city_id":"2453","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28235","name":"Beni Mellal","city_id":"2453","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28236","name":"Qasbat Tadlah","city_id":"2453","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28237","name":"Suq Sabt Awlat Nama","city_id":"2453","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28238","name":"al-Faqih Bin Salah","city_id":"2453","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28239","name":"Asilah","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28240","name":"Finidiq","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28241","name":"Martil","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28242","name":"Midiq","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28243","name":"Shifshawn","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28244","name":"Tangier","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28245","name":"Tanjah","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28246","name":"Tittawin","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28247","name":"Titwan","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28248","name":"al- Ara ish","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28249","name":"al-Qasr-al-Kabir","city_id":"2454","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28250","name":"Chibuto","city_id":"1751","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28251","name":"Chidenguele","city_id":"1751","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28252","name":"Chokwe","city_id":"1751","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"is_activated":"1"}, +{"id":"28253","name":"Chongoene","city_id":"1751","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28254","name":"Guija","city_id":"1751","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28255","name":"Macia","city_id":"1751","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28256","name":"Manjacaze","city_id":"1751","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28257","name":"Xai-Xai","city_id":"1751","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28258","name":"Homoine","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28259","name":"Inhambane","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28260","name":"Inharrime","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28261","name":"Jangamo","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28262","name":"Maxixe","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28263","name":"Panda","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28264","name":"Quissico","city_id":"2459","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28265","name":"Chimoio","city_id":"2460","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28266","name":"Manica","city_id":"2460","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28267","name":"Maputo","city_id":"2461","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28268","name":"Angoche","city_id":"2463","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28269","name":"Lumbo","city_id":"2463","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28270","name":"Mocambique","city_id":"2463","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28271","name":"Nacala","city_id":"2463","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28272","name":"Nampula","city_id":"2463","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28273","name":"Cuamba","city_id":"2464","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28274","name":"Lichinga","city_id":"2464","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28275","name":"Mandimba","city_id":"2464","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28276","name":"Maniamba","city_id":"2464","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28277","name":"Marrupa","city_id":"2464","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28278","name":"Beira","city_id":"2465","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28279","name":"Dondo","city_id":"2465","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28280","name":"Tete","city_id":"2466","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28281","name":"Zumbo","city_id":"2466","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28282","name":"Garue","city_id":"2467","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28283","name":"Mocuba","city_id":"2467","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28284","name":"Quelimane","city_id":"2467","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28285","name":"Bogale","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28286","name":"Henzada","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28287","name":"Kyaiklat","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28288","name":"Labutta","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28289","name":"Maubin","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28290","name":"Moulmeingyun","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28291","name":"Myanaung","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28292","name":"Pathein","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28293","name":"Pyapon","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28294","name":"Wakema","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28295","name":"Yandoon","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28296","name":"Ye","city_id":"2468","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28297","name":"Bago","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28298","name":"Letpadan","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28299","name":"Nyaunglebin","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28300","name":"Paungde","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28301","name":"Pyay","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28302","name":"Pyu","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28303","name":"Thanatpin","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28304","name":"Tharrawaddy","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28305","name":"Toungoo","city_id":"2469","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28306","name":"Falam","city_id":"2470","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28307","name":"Banmo","city_id":"2471","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28308","name":"Myitkyina","city_id":"2471","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28309","name":"Loikaw","city_id":"2472","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28310","name":"Hpa-an","city_id":"2473","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28311","name":"Allanmyo","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28312","name":"Chauk","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28313","name":"Magway","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28314","name":"Minbu","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28315","name":"Pakokku","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28316","name":"Taungdwingyi","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28317","name":"Thayetmyo","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28318","name":"Yenangyaung","city_id":"2474","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"is_activated":"1"}, +{"id":"28319","name":"Kyaukse","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28320","name":"Mandalay","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28321","name":"Maymyo","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28322","name":"Meiktila","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28323","name":"Mogok","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28324","name":"Myingyan","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28325","name":"Pyinmana","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28326","name":"Yamethin","city_id":"2475","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28327","name":"Kyaikkami","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28328","name":"Kyaikto","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28329","name":"Martaban","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28330","name":"Mawlamyine","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28331","name":"Mudon","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28332","name":"Thaton","city_id":"2476","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28333","name":"Akyab","city_id":"2478","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28334","name":"Arakan","city_id":"2478","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28335","name":"Kalay","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28336","name":"Katha","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28337","name":"Mawlaik","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28338","name":"Monywa","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28339","name":"Sagaing","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28340","name":"Shwebo","city_id":"2479","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28341","name":"Keng Tung","city_id":"2480","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28342","name":"Lashio","city_id":"2480","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28343","name":"Taunggyi","city_id":"2480","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28344","name":"Dawei","city_id":"2481","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28345","name":"Mergui","city_id":"2481","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28346","name":"Kanbe","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28347","name":"Kayan","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28348","name":"Syriam","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28349","name":"Thongwa","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28350","name":"Twante","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28351","name":"Yangon","city_id":"2482","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28352","name":"Katima Mulilo","city_id":"2483","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28353","name":"Henties Bay","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28354","name":"Karibib","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28355","name":"Kuisebmond","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28356","name":"Omaruru","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28357","name":"Otjimbingwe","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28358","name":"Swakopmund","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28359","name":"Usakos","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28360","name":"Walvis Bay","city_id":"2484","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28361","name":"Aranos","city_id":"2485","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28362","name":"Maltahohe","city_id":"2485","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28363","name":"Mariental","city_id":"2485","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28364","name":"Rehoboth","city_id":"2485","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28365","name":"Bethanien","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28366","name":"Karasburg","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28367","name":"Keetmanshoop","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28368","name":"Luderitz","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28369","name":"Oranjemund","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28370","name":"Warmbad","city_id":"2486","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28371","name":"Rundu","city_id":"2487","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28372","name":"Windhoek","city_id":"2488","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28373","name":"Arandis","city_id":"2489","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28374","name":"Khorixas","city_id":"2489","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28375","name":"Opuwo","city_id":"2489","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28376","name":"Outjo","city_id":"2489","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28377","name":"Oshikango","city_id":"2490","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28378","name":"Gobabis","city_id":"2491","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28379","name":"Leonardville","city_id":"2491","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28380","name":"Ongandjera","city_id":"2492","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28381","name":"Ongwediva","city_id":"2493","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28382","name":"Oshakati","city_id":"2493","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"is_activated":"1"}, +{"id":"28383","name":"Ondangwa","city_id":"2494","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28384","name":"Otavi","city_id":"2494","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28385","name":"Tsumeb","city_id":"2494","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28386","name":"Grootfontein","city_id":"2495","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28387","name":"Okahandja","city_id":"2495","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28388","name":"Okakarara","city_id":"2495","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28389","name":"Otjiwarongo","city_id":"2495","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28390","name":"Yaren","city_id":"2496","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28391","name":"Banepa","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28392","name":"Bhaktapur","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28393","name":"Bidur","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28394","name":"Bishalter","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28395","name":"Dhulikhel","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28396","name":"Kathmandu","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28397","name":"Kirtipur","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28398","name":"Madhyapur Thimi","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28399","name":"Panauti","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28400","name":"Tribuvannagar","city_id":"2497","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28401","name":"Birendranagar","city_id":"2498","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28402","name":"Narayan","city_id":"2498","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28403","name":"Nepalganj","city_id":"2498","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28404","name":"Surkhet","city_id":"2498","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28405","name":"Baglung","city_id":"2499","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28406","name":"Weni","city_id":"2499","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28407","name":"Byas","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28408","name":"Leknath","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28409","name":"Pokhara","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28410","name":"Prithivinarayan","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28411","name":"Putalibazar","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28412","name":"Waling","city_id":"2500","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28413","name":"Bhimeshwar","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28414","name":"Jaleshwar","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28415","name":"Janakpur","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28416","name":"Kamalamai","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28417","name":"Malangwa","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28418","name":"Sinduli Marhi","city_id":"2501","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28419","name":"Jumla","city_id":"2502","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28420","name":"Biratnagar","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28421","name":"Dhankuta","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28422","name":"Dharan","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28423","name":"Inaruwa","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28424","name":"Itahari","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28425","name":"Khandbari","city_id":"2503","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28426","name":"Butwal","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28427","name":"Kapilwastu","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28428","name":"Ramgram","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28429","name":"Sidharthanagar","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28430","name":"Tansen","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28431","name":"Wahadurganj","city_id":"2504","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28432","name":"Amargadhi","city_id":"2505","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28433","name":"Dashrathchand","city_id":"2505","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28434","name":"Mahendranagar","city_id":"2505","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28435","name":"Bhadrapur","city_id":"2506","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28436","name":"Damak","city_id":"2506","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28437","name":"Mechinagar","city_id":"2506","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28438","name":"Birganj","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28439","name":"Chitwan","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28440","name":"Gaur","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28441","name":"Hetauda","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28442","name":"Kalaiya","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28443","name":"Ratnanagar","city_id":"2507","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28444","name":"Lahan","city_id":"2509","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28445","name":"Rajbiraj","city_id":"2509","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28446","name":"Siraha","city_id":"2509","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28447","name":"Triyuga","city_id":"2509","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28448","name":"Dhangadi","city_id":"2510","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28449","name":"Dipayal","city_id":"2510","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28450","name":"Tikapur","city_id":"2510","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"is_activated":"1"}, +{"id":"28451","name":"SchipolRijk","city_id":"1274","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28452","name":"Amstelveen","city_id":"2511","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28453","name":"Aa en Hunze","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28454","name":"Assen","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28455","name":"Borger-Odoorn","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28456","name":"Coevorden","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28457","name":"De Wolden","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28458","name":"Den Oever","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28459","name":"Emmen","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28460","name":"Gasteren","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28461","name":"Hoogeveen","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28462","name":"Menterwolde","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28463","name":"Meppel","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28464","name":"Midden-Drenthe","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28465","name":"Noordenveld","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28466","name":"Stadskanaal","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28467","name":"Tynaarlo","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28468","name":"Veenoord","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28469","name":"Westerveld","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28470","name":"Zuidlaren","city_id":"2512","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28471","name":"Almere","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28472","name":"Dronten","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28473","name":"Lelystad","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28474","name":"Noordoostpolder","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28475","name":"Urk","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28476","name":"Zeewolde","city_id":"2513","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28477","name":"Achtkarspelen","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28478","name":"Ameland","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28479","name":"Boarnsterhim","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28480","name":"Bolsward","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28481","name":"Dantumadeel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28482","name":"Dongeradeel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28483","name":"Drachten","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28484","name":"Ferwerderadiel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28485","name":"Franekeradeel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28486","name":"Gaasterlan-Sleat","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28487","name":"Gorredijk","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28488","name":"Harlingen","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28489","name":"Heerenveen","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28490","name":"Het Bildt","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28491","name":"Kollumerland","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28492","name":"Leeuwarden","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28493","name":"Leeuwarderadeel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28494","name":"Lemsterland","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28495","name":"Littenseradiel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28496","name":"Menaldumadeel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28497","name":"Nijefurd","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28498","name":"Oostrum","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28499","name":"Ooststellingwerf","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28500","name":"Opsterland","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28501","name":"Schiermonnikoog","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28502","name":"Skasterlan","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28503","name":"Smallingerland","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28504","name":"Sneek","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28505","name":"Terschelling","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28506","name":"Tytsjerksteradiel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28507","name":"Ureterp","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28508","name":"Weststellingwerf","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28509","name":"Wolvega","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28510","name":"Wunseradiel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28511","name":"Wymbritseradiel","city_id":"2514","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28512","name":"Aalten","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28513","name":"Angerlo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28514","name":"Apeldoorn","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28515","name":"Appeldoorn","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28516","name":"Arnhem","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28517","name":"Barneveld","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28518","name":"Bemmel","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28519","name":"Bergh","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28520","name":"Beuningen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28521","name":"Borculo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28522","name":"Brummen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28523","name":"Culemborg","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28524","name":"Delden","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28525","name":"Didam","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28526","name":"Dieren","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28527","name":"Dinxperlo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28528","name":"Dodewaard","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28529","name":"Doesburg","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28530","name":"Doetinchem","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28531","name":"Druten","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28532","name":"Duiven","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28533","name":"Ede","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28534","name":"Eerbeek","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28535","name":"Eibergen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28536","name":"Elburg","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28537","name":"Epe","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28538","name":"Ermelo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28539","name":"Geldermalsen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28540","name":"Gendringen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28541","name":"Giesbeek","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28542","name":"Gorssel","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28543","name":"Groenlo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28544","name":"Groesbeek","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28545","name":"Harderwijk","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28546","name":"Hattem","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28547","name":"Heerde","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28548","name":"Hengelo","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28549","name":"Heumen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28550","name":"Huisen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28551","name":"Hummelo en Keppel","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28552","name":"Kesteren","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28553","name":"Kootwijkerbroek","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28554","name":"Leerdam","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28555","name":"Leeuwen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28556","name":"Lichtenvoorde","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28557","name":"Lingewaal","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28558","name":"Lochem","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28559","name":"Loppersum","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28560","name":"Maasdriel","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28561","name":"Malden","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28562","name":"Millingen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28563","name":"Molenhoek","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28564","name":"Neede","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28565","name":"Neerijnen","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28566","name":"Nijkerk","city_id":"2515","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"is_activated":"1"}, +{"id":"28567","name":"Nijmegen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28568","name":"Nunspeet","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28569","name":"Oldebroek","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28570","name":"Oosterbeek","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28571","name":"Overbetuwe","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28572","name":"Putten","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28573","name":"Renkum","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28574","name":"Rheden","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28575","name":"Rijnwaarden","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28576","name":"Rozendaal","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28577","name":"Ruurlo","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28578","name":"Scherpenzeel","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28579","name":"Steenderen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28580","name":"Terborg","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28581","name":"Tiel","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28582","name":"Twello","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28583","name":"Ubbergen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28584","name":"Vaassen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28585","name":"Varsseveld","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28586","name":"Voorst","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28587","name":"Vorden","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28588","name":"Waardenburg","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28589","name":"Wageningen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28590","name":"Warmsveld","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28591","name":"Wehl","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28592","name":"Westervoort","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28593","name":"Wijchen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28594","name":"Winterswijk","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28595","name":"Wisch","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28596","name":"Zaltbommel","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28597","name":"Zelhem","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28598","name":"Zevenaar","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28599","name":"Zutphen","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28600","name":"s-Heerenberg","city_id":"2515","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28601","name":"Appingedam","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28602","name":"Bedum","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28603","name":"Bellingwedde","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28604","name":"De Marne","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28605","name":"Delfzijl","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28606","name":"Eemsmond","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28607","name":"Groningen","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28608","name":"Grootegast","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28609","name":"Hoogezand-Sappemeer","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28610","name":"Leek","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28611","name":"Marum","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28612","name":"Midwolda","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28613","name":"Muntendam","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28614","name":"Pekela","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28615","name":"Reiderland","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28616","name":"Scheemda","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28617","name":"Slochteren","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28618","name":"Ten Boer","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28619","name":"Tolbert","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28620","name":"Veendam","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28621","name":"Vlagtwedde","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28622","name":"Winschoten","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28623","name":"Winsum","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28624","name":"Zuidhorn","city_id":"2516","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28625","name":"Ambt Montfort","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28626","name":"Arcen en Velden","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28627","name":"Beek","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28628","name":"Beesel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28629","name":"Blerick","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28630","name":"Brunssum","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28631","name":"Echt","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28632","name":"Eijsden","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28633","name":"Gennep","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28634","name":"Gulpen-Wittem","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28635","name":"Haelen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28636","name":"Heel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28637","name":"Heerlen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28638","name":"Helden","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28639","name":"Heythuysen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28640","name":"Horst","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28641","name":"Hunsel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28642","name":"Kerkrade","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28643","name":"Kessel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28644","name":"Landgraaf","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28645","name":"Maasbracht","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28646","name":"Maasbree","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28647","name":"Maastricht","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28648","name":"Margraten","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28649","name":"Meerlo-Wanssum","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28650","name":"Meerssen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28651","name":"Meijel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28652","name":"Mook en Middelaar","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28653","name":"Nederweert","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28654","name":"Nuth","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28655","name":"Onderbanken","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28656","name":"Roerdalen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28657","name":"Roermond","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28658","name":"Roggel","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28659","name":"Roggel en Neer","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28660","name":"Schinnen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28661","name":"Sevenum","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28662","name":"Simpelveld","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28663","name":"Sittard","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28664","name":"Sittard-Geleen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28665","name":"Stramproy","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28666","name":"Susteren","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28667","name":"Swalmen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28668","name":"Tegelen","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28669","name":"Thorn","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28670","name":"Vaals","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28671","name":"Valkenburg","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28672","name":"Venlo","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28673","name":"Venray","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28674","name":"Vilt Limburg","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28675","name":"Voerendaal","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28676","name":"Weert","city_id":"428","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28677","name":" s-Hertogenbosch","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28678","name":"Aalburg","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28679","name":"Alphen-Chaam","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28680","name":"Baarle-Nassau","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28681","name":"Bergeijk","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28682","name":"Bergen op Zoom","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28683","name":"Berghem","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28684","name":"Bernheze","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28685","name":"Bernisse","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28686","name":"Best","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28687","name":"Bladel","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28688","name":"Boekel","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28689","name":"Boxmeer","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28690","name":"Boxtel","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28691","name":"Breda","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28692","name":"Budel","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28693","name":"Cranendonck","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28694","name":"Cuijk","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28695","name":"Den Bosch","city_id":"2517","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"is_activated":"1"}, +{"id":"28696","name":"Den Dungen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28697","name":"Dongen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28698","name":"Drimmelen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28699","name":"Drunen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28700","name":"Duizel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28701","name":"Eersel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28702","name":"Eindhoven","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28703","name":"Etten-Leur","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28704","name":"Geertruidenberg","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28705","name":"Geldrop","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28706","name":"Gemert-Bakel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28707","name":"Gilze en Rijen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28708","name":"Goirle","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28709","name":"Grave","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28710","name":"Haaren","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28711","name":"Halderberge","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28712","name":"Heeze-Leende","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28713","name":"Heijningen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28714","name":"Helmond","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28715","name":"Heusden","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28716","name":"Hilvarenbeek","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28717","name":"Hoeven","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28718","name":"Hoogerheide","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28719","name":"Kaatsheuvel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28720","name":"Korendijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28721","name":"Laarbeek","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28722","name":"Landerd","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28723","name":"Lith","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28724","name":"Loon op Zand","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28725","name":"Maarheeze","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28726","name":"Maasdonk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28727","name":"Mierlo","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28728","name":"Mill en Sint Hubert","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28729","name":"Moerdijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28730","name":"Nieuwkuijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28731","name":"Nuenen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28732","name":"Oirschot","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28733","name":"Oisterwijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28734","name":"Oosterhout","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28735","name":"Oss","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28736","name":"Raamsdonksveer","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28737","name":"Ravenstein","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28738","name":"Reusel-De Mierden","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28739","name":"Roosendaal","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28740","name":"Rosmalen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28741","name":"Rucphen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28742","name":"Schaijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28743","name":"Schijndel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28744","name":"Sint Anthonis","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28745","name":"Sint Willebrord","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28746","name":"Sint-Michielsgestel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28747","name":"Sint-Oedenrode","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28748","name":"Sleeuwijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28749","name":"Someren","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28750","name":"Son en Breugel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28751","name":"Steenbergen","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28752","name":"Tilburg","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28753","name":"Uden","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28754","name":"Valkenswaard","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28755","name":"Veghel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28756","name":"Veldhoven","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28757","name":"Vinkel","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28758","name":"Vught","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28759","name":"Waalre","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28760","name":"Waalwijk","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28761","name":"Werkendam","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28762","name":"Woensdrecht","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28763","name":"Woudrichem","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28764","name":"Zundert","city_id":"2517","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28765","name":"Aalsmeer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28766","name":"Alkmaar","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28767","name":"Amsterdam","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28768","name":"Andijk","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28769","name":"Ankeveen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28770","name":"Anna Paulowna","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28771","name":"Assendelft","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28772","name":"Badhoevedorp","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28773","name":"Beemster","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28774","name":"Bennebroek","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28775","name":"Beverwijk","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28776","name":"Blaricum","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28777","name":"Bloemendaal","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28778","name":"Bovenkarspel","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28779","name":"Bussum","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28780","name":"Castricum","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28781","name":"Den Helder","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28782","name":"Diemen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28783","name":"Drechterland","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28784","name":"Edam-Volendam","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28785","name":"Enkhuizen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28786","name":"Graft-De Rijp","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28787","name":"Haarlem","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28788","name":"Haarlemmerliede","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28789","name":"Haarlemmermeer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28790","name":"Harenkarspel","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28791","name":"Heemskerk","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28792","name":"Heemstede","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28793","name":"Heerhugowaard","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28794","name":"Heiloo","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28795","name":"Hillegom","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28796","name":"Hilversum","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28797","name":"Hoofddorp","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28798","name":"Hoorn","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28799","name":"Huizen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28800","name":"Ijmuiden","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28801","name":"Katwijk","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28802","name":"Krommenie","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28803","name":"Landsmeer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28804","name":"Langedijk","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28805","name":"Laren","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28806","name":"Loosdrecht","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28807","name":"Medemblik","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28808","name":"Muiden","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28809","name":"Naarden","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28810","name":"Niedorp","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28811","name":"Nieuw-Vennep","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28812","name":"Noorder-Koggenland","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28813","name":"Obdam","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28814","name":"Oostzaan","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28815","name":"Opmeer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28816","name":"Oude Meer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28817","name":"Ouder-Amstel","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28818","name":"Oudkarspel","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28819","name":"Purmerend","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28820","name":"Rozenburg","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28821","name":"Schagen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28822","name":"Schermer","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28823","name":"Stede Broec","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28824","name":"Texel","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28825","name":"Tuitjenhorn","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28826","name":"Uitgeest","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28827","name":"Uithoorn","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28828","name":"Velsen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28829","name":"Venhuizen","city_id":"1337","created_at":"2024-01-21 12:08:02","updated_at":"2024-01-21 12:08:02","translations":null,"is_activated":"1"}, +{"id":"28830","name":"Vijfhuizen","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28831","name":"Waarland","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28832","name":"Waterland","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28833","name":"Weesp","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28834","name":"Wervershoof","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28835","name":"Wester-Koggenland","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28836","name":"Westwoud","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28837","name":"Wieringen","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28838","name":"Wieringermeer","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28839","name":"Wognum","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28840","name":"Wormer","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28841","name":"Wormerland","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28842","name":"Wormerveer","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28843","name":"Zaandam","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28844","name":"Zaanstad","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28845","name":"Zandvoort","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28846","name":"Zeevang","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28847","name":"Zwaag","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28848","name":"Zwanenburg","city_id":"1337","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28849","name":"Almelo","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28850","name":"Bathmen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28851","name":"Borne","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28852","name":"Dalfsen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28853","name":"Dedemsvaart","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28854","name":"Denekamp","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28855","name":"Deventer","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28856","name":"Diepenheim","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28857","name":"Enschede","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28858","name":"Genemuiden","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28859","name":"Haaksbergen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28860","name":"Hardenberg","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28861","name":"Hellendoorn","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28862","name":"Hof van Twente","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28863","name":"IJsselmuiden","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28864","name":"Kampen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28865","name":"Lemelerveld","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28866","name":"Losser","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28867","name":"Nieuwleusen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28868","name":"Nijverdal","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28869","name":"Oldenzaal","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28870","name":"Olst","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28871","name":"Ommen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28872","name":"Ootmarsum","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28873","name":"Raalte","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28874","name":"Rijssen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28875","name":"Staphorst","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28876","name":"Steenwijk","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28877","name":"Tubbergen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28878","name":"Vriezenveen","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28879","name":"Vroomshoop","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28880","name":"Weerselo","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28881","name":"Wierden","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28882","name":"Zwartewaterland","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28883","name":"Zwolle","city_id":"2518","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28884","name":"Abcoude","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28885","name":"Amerongen","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28886","name":"Amersfoort","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28887","name":"Baarn","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28888","name":"Benschop","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28889","name":"Breukelen","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28890","name":"Bunnik","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28891","name":"Bunschoten","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28892","name":"De Bilt","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28893","name":"De Ronde Venen","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28894","name":"Den Dolder","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28895","name":"Doorn","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28896","name":"Driebergen-Rijsenburg","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28897","name":"Eemnes","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28898","name":"Houten","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28899","name":"IJsselstein","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28900","name":"Kockengen","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28901","name":"Leersum","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28902","name":"Leusden","city_id":"2520","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"is_activated":"1"}, +{"id":"28903","name":"Loenen","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28904","name":"Lopik","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28905","name":"Maarn","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28906","name":"Maarsen","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28907","name":"Mijdrecht","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28908","name":"Montfoort","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28909","name":"Nieuwegein","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28910","name":"Nigtevecht","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28911","name":"Odijk","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28912","name":"Oudewater","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28913","name":"Renswoude","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28914","name":"Rhenen","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28915","name":"Soesterberg","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28916","name":"Utrecht","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28917","name":"Veenendaal","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28918","name":"Vianen","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28919","name":"Wijdemeren","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28920","name":"Wijk","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28921","name":"Wilnis","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28922","name":"Woerden","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28923","name":"Woudenberg","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28924","name":"Zeist","city_id":"2520","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28925","name":"Axel","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28926","name":"Borsele","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28927","name":"Goes","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28928","name":"Hontenisse","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28929","name":"Hulst","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28930","name":"Kapelle","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28931","name":"Middelburg","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28932","name":"Noord-Beveland","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28933","name":"Oostburg","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28934","name":"Reimerswaal","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28935","name":"Sas van Gent","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28936","name":"Schouwen-Duiveland","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28937","name":"Sluis-Aardenburg","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28938","name":"Terneuzen","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28939","name":"Tholen","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28940","name":"Veere","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28941","name":"Vlissingen","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28942","name":"Zierikzee","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28943","name":"Zijpe","city_id":"2521","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28944","name":" s-Gravendeel","city_id":"2522","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28945","name":" s-Gravenhage","city_id":"2522","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28946","name":" s-Gravenzande","city_id":"2522","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"is_activated":"1"}, +{"id":"28947","name":"Alblasserdam","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28948","name":"Albrandswaard","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28949","name":"Alkemade","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28950","name":"Alphen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28951","name":"Alphen aan den Rijn","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28952","name":"Barendrecht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28953","name":"Bergambacht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28954","name":"Bergschenhoek","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28955","name":"Berkel en Rodenrijs","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28956","name":"Binnenmaas","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28957","name":"Bleiswijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28958","name":"Bodegraven","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28959","name":"Boskoop","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28960","name":"Brielle","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28961","name":"Capelle","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28962","name":"Cromstrijen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28963","name":"De Lier","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28964","name":"Delft","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28965","name":"Dirksland","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28966","name":"Dordrecht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28967","name":"Giessenlanden","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28968","name":"Goedereede","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28969","name":"Gorinchem","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28970","name":"Gouda","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28971","name":"Graafstroom","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28972","name":"Hardinxveld-Giessendam","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28973","name":"Heerjansdam","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28974","name":"Hellevoetsluis","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28975","name":"Hendrik-Ido-Ambacht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28976","name":"Jacobswoude","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28977","name":"Kinderdijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28978","name":"Krimpen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28979","name":"Leiden","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28980","name":"Leiderdorp","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28981","name":"Leidschendam-Voorburg","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28982","name":"Liemeer","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28983","name":"Liesveld","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28984","name":"Lisse","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28985","name":"Maasland","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28986","name":"Maassluis","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28987","name":"Middelharnis","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28988","name":"Monster","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28989","name":"Moordrecht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28990","name":"Naaldwijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28991","name":"Nederlek","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28992","name":"Nieuw-Lekkerland","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28993","name":"Nieuwekerk aan den IJssel","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28994","name":"Nieuwkoop","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28995","name":"Noordwijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28996","name":"Noordwijkerhout","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28997","name":"Oegestgeest","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28998","name":"Oostflakkee","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"28999","name":"Oud-Beijerland","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29000","name":"Ouderkerk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29001","name":"Papendrecht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29002","name":"Pijnacker-Nootdorp","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29003","name":"Reeuwijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29004","name":"Ridderkerk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29005","name":"Rijnsburg","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29006","name":"Rijnwoude","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29007","name":"Rijswijk","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29008","name":"Rotterdam","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29009","name":"Sassenheim","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29010","name":"Schiedam","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29011","name":"Schipluiden","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29012","name":"Schoonhoven","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29013","name":"Sliedrecht","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29014","name":"Spijkenisse","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29015","name":"Strijen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29016","name":"Ter Aar","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29017","name":"The Hague","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29018","name":"Vierpolders","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29019","name":"Vlaardingen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29020","name":"Vlist","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29021","name":"Voorhout","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29022","name":"Voorschoten","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29023","name":"Waddinxveen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29024","name":"Warmond","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29025","name":"Wassenaar","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29026","name":"Wateringen","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29027","name":"West Maas en Waal","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29028","name":"Westvoorne","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29029","name":"Zederik","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29030","name":"Zevenhuizen-Moerkapelle","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29031","name":"Zoetermeer","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29032","name":"Zoeterwoude","city_id":"2522","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29033","name":"Belep","city_id":"2523","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29034","name":"Fayaoue","city_id":"2523","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29035","name":"Tadine","city_id":"2523","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29036","name":"We","city_id":"2523","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29037","name":"Canala","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29038","name":"Hienghene","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29039","name":"Houailu","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29040","name":"Kaala Gomen","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29041","name":"Kone","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29042","name":"Koumac","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29043","name":"Ouegoa","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29044","name":"Poindimie","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29045","name":"Ponerihouen","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29046","name":"Pouebo","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29047","name":"Pouembout","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29048","name":"Poum","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29049","name":"Poya","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29050","name":"Touho","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29051","name":"Voh","city_id":"651","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29052","name":"Bouloupari","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29053","name":"Bourail","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29054","name":"Dumbea","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29055","name":"Farino","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29056","name":"La Foa","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29057","name":"Moindou","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29058","name":"Mont-Dore","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29059","name":"Noumea","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29060","name":"Paita","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29061","name":"Sarramea","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29062","name":"Thio","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29063","name":"Yate","city_id":"655","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"is_activated":"1"}, +{"id":"29064","name":"Auckland","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29065","name":"Helensville","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29066","name":"Hillsborough","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29067","name":"Lynfield","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29068","name":"Manukau","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29069","name":"Manurewa","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29070","name":"Mt. Roskill","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29071","name":"North Shore","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29072","name":"Onehunga","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29073","name":"Orewa","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29074","name":"Otahuhu","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29075","name":"Panmure","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29076","name":"Papakura","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29077","name":"Papatoetoe","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29078","name":"Ponsonby","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29079","name":"Royal Oak","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29080","name":"Snells Beach","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29081","name":"Takanini","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29082","name":"Waiheke","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29083","name":"Waitakere","city_id":"221","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29084","name":"Amberley","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29085","name":"Ashburton","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29086","name":"Christchurch","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29087","name":"Fairlie","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29088","name":"Geraldine","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29089","name":"Kaikoura","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29090","name":"Leeston","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29091","name":"Lyttelton","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29092","name":"Oamaru","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29093","name":"Rangiora","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29094","name":"Temuka","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29095","name":"Timaru","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29096","name":"Waimate","city_id":"2526","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29097","name":"Gisborne","city_id":"2528","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29098","name":"Dannevirke","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29099","name":"Feilding","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29100","name":"Foxton","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29101","name":"Levin","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29102","name":"Marton","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29103","name":"Palmerston North","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29104","name":"Taumarunui","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29105","name":"Wanganui","city_id":"2530","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29106","name":"Nelson","city_id":"2532","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29107","name":"Dargaville","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29108","name":"Kaikohe","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29109","name":"Kaitaia","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29110","name":"Kerikeri","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29111","name":"Maungatapere","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29112","name":"Whangarei","city_id":"2533","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29113","name":"Alexandra","city_id":"2534","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29114","name":"Balclutha","city_id":"2534","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29115","name":"Dunedin","city_id":"2534","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29116","name":"Wanaka","city_id":"2534","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29117","name":"Warkworth","city_id":"2535","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29118","name":"Invercargill","city_id":"2536","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29119","name":"Hawera","city_id":"2537","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29120","name":"Inglewood","city_id":"2537","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29121","name":"New Plymouth","city_id":"2537","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29122","name":"Oakura","city_id":"2537","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29123","name":"Waitara","city_id":"2537","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29124","name":"Motueka","city_id":"2538","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29125","name":"Coromandel","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29126","name":"Hillcrest","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29127","name":"Huntly","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29128","name":"Matamata","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29129","name":"Morrinsville","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29130","name":"Ngaruawahia","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29131","name":"Otorohanga","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29132","name":"Paeroa","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29133","name":"Pukekohe","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29134","name":"Putaruru","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29135","name":"Taupo","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29136","name":"Te Aroha","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29137","name":"Te Awamutu","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29138","name":"Te Kuiti","city_id":"2539","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"is_activated":"1"}, +{"id":"29139","name":"Thames","city_id":"2539","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29140","name":"Tokoroa","city_id":"2539","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29141","name":"Waiuku","city_id":"2539","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29142","name":"Whangamata","city_id":"2539","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29143","name":"Whitianga","city_id":"2539","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29144","name":"Carterton","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29145","name":"Kapiti","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29146","name":"Lower Hutt","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29147","name":"Martinborough","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29148","name":"Masterton","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29149","name":"Otaki","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29150","name":"Paraparaumu","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29151","name":"Porirua","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29152","name":"Upper Hutt","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29153","name":"Wairarapa","city_id":"2540","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29154","name":"Boaco","city_id":"2544","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29155","name":"Camoapa","city_id":"2544","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29156","name":"Diriamba","city_id":"2545","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29157","name":"Jinotepe","city_id":"2545","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29158","name":"Masatepe","city_id":"2545","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29159","name":"Chichigalpa","city_id":"2546","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29160","name":"Chinandega","city_id":"2546","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29161","name":"El Viejo","city_id":"2546","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29162","name":"Puerto Morazan","city_id":"2546","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29163","name":"Somotillo","city_id":"2546","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29164","name":"Acoyapa","city_id":"2547","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29165","name":"Juigalpa","city_id":"2547","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29166","name":"Villa Sandino","city_id":"2547","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29167","name":"Condega","city_id":"2548","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29168","name":"Esteli","city_id":"2548","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29169","name":"Diriomo","city_id":"2549","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29170","name":"Nandaime","city_id":"2549","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29171","name":"Jinotega","city_id":"2550","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29172","name":"Wiwili","city_id":"2550","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29173","name":"El Sauce","city_id":"2551","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29174","name":"La Paz Centro","city_id":"2551","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29175","name":"Larreynaga","city_id":"2551","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29176","name":"Nagarote","city_id":"2551","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29177","name":"Telica","city_id":"2551","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29178","name":"Somoto","city_id":"2552","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29179","name":"Managua","city_id":"2553","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29180","name":"Mateare","city_id":"2553","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29181","name":"San Rafael del Sur","city_id":"2553","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29182","name":"Ticuantepe","city_id":"2553","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29183","name":"Tipitapa","city_id":"2553","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29184","name":"La Concepcion","city_id":"2554","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29185","name":"Masaya","city_id":"2554","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29186","name":"Nandasmo","city_id":"2554","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29187","name":"Nindiri","city_id":"2554","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29188","name":"Niquinohomo","city_id":"2554","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29189","name":"Ciudad Dario","city_id":"2555","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29190","name":"Matagalpa","city_id":"2555","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29191","name":"Matiguas","city_id":"2555","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29192","name":"Rio Blanco","city_id":"2555","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29193","name":"Sebaco","city_id":"2555","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29194","name":"Rivas","city_id":"2558","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29195","name":"San Jorge","city_id":"2558","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29196","name":"San Juan del Sur","city_id":"2558","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"is_activated":"1"}, +{"id":"29197","name":"Agadez","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29198","name":"Arlit","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29199","name":"Bilma","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29200","name":"Fachi","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29201","name":"Ingall","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29202","name":"Tchirozerine","city_id":"2559","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29203","name":"Diffa","city_id":"2560","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29204","name":"Maine-Soroa","city_id":"2560","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29205","name":"N Guigmi","city_id":"2560","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29206","name":"Birni N Gaoure","city_id":"2561","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29207","name":"Boboye","city_id":"2561","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29208","name":"Dogondoutchi","city_id":"2561","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29209","name":"Dosso","city_id":"2561","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29210","name":"Loga","city_id":"2561","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29211","name":"Aguie","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29212","name":"Dakoro","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29213","name":"Gazaoua","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29214","name":"Guidan Roumdji","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29215","name":"Madarounfa","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29216","name":"Maradi","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29217","name":"Mayahi","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29218","name":"Tessaoua","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29219","name":"Tibiri","city_id":"2562","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29220","name":"Niamey","city_id":"2563","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29221","name":"Birni N Konni","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29222","name":"Bouza","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29223","name":"Illela","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29224","name":"Keita","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29225","name":"Madaoua","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29226","name":"Malbaza uzine","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29227","name":"Tahoua","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29228","name":"Tchintabaraden","city_id":"2564","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29229","name":"Ayorou","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29230","name":"Filingue","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29231","name":"Kollo","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29232","name":"Ouallam","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29233","name":"Say","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29234","name":"Tera","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29235","name":"Tillabery","city_id":"2565","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29236","name":"Goure","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29237","name":"Kantche","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29238","name":"Magaria","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29239","name":"Matameye","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29240","name":"Mirriah","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29241","name":"Tanout","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29242","name":"Zinder","city_id":"2566","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29243","name":"Amaigbo","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29244","name":"Arochukwu","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29245","name":"Bende","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29246","name":"Ohafia","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29247","name":"Okwe","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29248","name":"Umuahia","city_id":"2567","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29249","name":"Demsa","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29250","name":"Ganye","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29251","name":"Girei","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29252","name":"Gombi","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29253","name":"Jada","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29254","name":"Jimeta","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29255","name":"Lamurde","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29256","name":"Madagala","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29257","name":"Maiha","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29258","name":"Mubi","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29259","name":"Ngurore","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29260","name":"Numan","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29261","name":"Shelleng","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29262","name":"Song","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29263","name":"Toungo","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29264","name":"Yola","city_id":"2569","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29265","name":"Aguata","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29266","name":"Agulu","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29267","name":"Anambra","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29268","name":"Awka","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29269","name":"Enugu Ukwu","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29270","name":"Igbo Ukwu","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29271","name":"Ihiala","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29272","name":"Nkpor","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29273","name":"Nnewi","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29274","name":"Obosi","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29275","name":"Okija","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29276","name":"Okpoko","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29277","name":"Onitsha","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29278","name":"Ozubulu","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29279","name":"Uga","city_id":"2571","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29280","name":"Alkaleri","city_id":"2572","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"is_activated":"1"}, +{"id":"29281","name":"Azare","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29282","name":"Bauchi","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29283","name":"Bogoro","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29284","name":"Bununu Dass","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29285","name":"Darazo","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29286","name":"Gamawa","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29287","name":"Ganjuwa","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29288","name":"Jamari","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29289","name":"Katagum","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29290","name":"Misau","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29291","name":"Tafawa Balewa","city_id":"2572","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29292","name":"Brass","city_id":"2573","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29293","name":"Ekeremor","city_id":"2573","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29294","name":"Nembe","city_id":"2573","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29295","name":"Yenagoa","city_id":"2573","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29296","name":"Aliade","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29297","name":"Gboko","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29298","name":"Katsina-Ala","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29299","name":"Makurdi","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29300","name":"Otukpo","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29301","name":"Ukum","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29302","name":"Zaki Biam","city_id":"2574","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29303","name":"Askira","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29304","name":"Bama","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29305","name":"Biu","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29306","name":"Chibok","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29307","name":"Damboa","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29308","name":"Dikwa","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29309","name":"Gamboru","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29310","name":"Gubio","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29311","name":"Gwoza","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29312","name":"Kala","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29313","name":"Konduga","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29314","name":"Kukawa","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29315","name":"Mafa","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29316","name":"Magumeri","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29317","name":"Maiduguri","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29318","name":"Marte","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29319","name":"Monguno","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29320","name":"Ngala","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29321","name":"Shani","city_id":"2575","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29322","name":"Agbor","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29323","name":"Bomadi","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29324","name":"Burutu","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29325","name":"Okpe","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29326","name":"Patani","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29327","name":"Sapele","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29328","name":"Ughelli","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29329","name":"Warri","city_id":"2577","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29330","name":"Abakaliki","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29331","name":"Afikpo","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29332","name":"Effium","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29333","name":"Ezza","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29334","name":"Ishieke","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29335","name":"Uburu","city_id":"2578","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29336","name":"Auchi","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29337","name":"Benin","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29338","name":"Ekpoma","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29339","name":"Igarra","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29340","name":"Ikpoba","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29341","name":"Irrua","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29342","name":"Sabongida","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29343","name":"Ubiaja","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29344","name":"Uromi","city_id":"2579","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29345","name":"Ado","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29346","name":"Aramoko","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29347","name":"Efon Alaye","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29348","name":"Emure","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29349","name":"Igbara Odo","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29350","name":"Igede","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29351","name":"Ijero","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29352","name":"Ikere","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29353","name":"Ikole","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29354","name":"Ilawe","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29355","name":"Ipoti","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29356","name":"Omuo","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29357","name":"Osi","city_id":"2580","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29358","name":"Agwa","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29359","name":"Aku","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29360","name":"Awgu","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29361","name":"Eha Amufu","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29362","name":"Enugu","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29363","name":"Enugu Ezike","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29364","name":"Enugu Ngwo","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29365","name":"Ezeagu","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29366","name":"Mberubu","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29367","name":"Nsukka","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29368","name":"Udi","city_id":"2581","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29369","name":"Deba","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29370","name":"Duku","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29371","name":"Garko","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29372","name":"Gombe","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29373","name":"Kaltungo","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29374","name":"Kumo","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29375","name":"Nafada","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29376","name":"Pindiga","city_id":"2582","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"is_activated":"1"}, +{"id":"29377","name":"Aboh","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29378","name":"Etiti","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29379","name":"Ihite","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29380","name":"Nkwerre","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29381","name":"Oguta","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29382","name":"Okigwe","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29383","name":"Owerri","city_id":"2583","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29384","name":"Babura","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29385","name":"Birnin Kudu","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29386","name":"Buji","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29387","name":"Dutse","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29388","name":"Garki","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29389","name":"Gumel","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29390","name":"Gwaram","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29391","name":"Gwiwa","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29392","name":"Hadejia","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29393","name":"Jahun","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29394","name":"Kaugama","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29395","name":"Kazaure","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29396","name":"Keffin Hausa","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29397","name":"Kiyawa","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29398","name":"Maigatari","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29399","name":"Malammaduri","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29400","name":"Ringim","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29401","name":"Sule Tankarkar","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29402","name":"Taura","city_id":"2584","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29403","name":"Birnin Gwari","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29404","name":"Doka","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29405","name":"Giwa","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29406","name":"Gwagwada","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29407","name":"Hunkuyi","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29408","name":"Igabi","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29409","name":"Ikara","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29410","name":"Jemaa","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29411","name":"Kachia","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29412","name":"Kaduna","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29413","name":"Kafanchan","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29414","name":"Kagarko","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29415","name":"Kagoro","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29416","name":"Kaura","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29417","name":"Kudan","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29418","name":"Makarfi","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29419","name":"Sabon Birnin Gwari","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29420","name":"Sabongari","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29421","name":"Sanga","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29422","name":"Soba","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29423","name":"Tudun Wada","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29424","name":"Zangon Katab","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29425","name":"Zaria","city_id":"2585","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29426","name":"Ajingi","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29427","name":"Albasu","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29428","name":"Bagwai","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29429","name":"Bebeji","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29430","name":"Bichi","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29431","name":"Bunkure","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29432","name":"Dambarta","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29433","name":"Dawakin Tofe","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29434","name":"Fagge","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29435","name":"Garun Mallam","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29436","name":"Gezawa","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29437","name":"Gwarzo","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29438","name":"Kano","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29439","name":"Karaye","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29440","name":"Kibiya","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29441","name":"Kiru","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29442","name":"Kumbotso","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29443","name":"Kunchi","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29444","name":"Kura","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29445","name":"Madobi","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29446","name":"Makoda","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29447","name":"Nassarawa","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29448","name":"Rano","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29449","name":"Rimin Gado","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29450","name":"Shanono","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29451","name":"Sumaila","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29452","name":"Takai","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29453","name":"Tofa","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29454","name":"Wudil","city_id":"2586","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29455","name":"Bakori","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29456","name":"Batsari","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29457","name":"Bindawa","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29458","name":"Cheranchi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29459","name":"Dan Dume","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29460","name":"Danja","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29461","name":"Daura","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29462","name":"Dutsi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29463","name":"Dutsin Ma","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29464","name":"Faskari","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29465","name":"Funtua","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29466","name":"Ingawa","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29467","name":"Jibiya","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29468","name":"Kangiwa","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29469","name":"Kankara","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29470","name":"Kankiya","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29471","name":"Katsina","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29472","name":"Kurfi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29473","name":"Malumfashi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29474","name":"Mashi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29475","name":"Musawa","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29476","name":"Rimi","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29477","name":"Sandamu","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29478","name":"Zango","city_id":"2587","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29479","name":"Argungu","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29480","name":"Augie","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29481","name":"Bagudo","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29482","name":"Birnin Kebbi","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29483","name":"Birnin Yauri","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29484","name":"Bunza","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29485","name":"Fakai","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29486","name":"Gwandu","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29487","name":"Jega","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29488","name":"Kalgo","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29489","name":"Koko","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29490","name":"Maiyema","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29491","name":"Sakaba","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29492","name":"Shanga","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29493","name":"Suru","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29494","name":"Wasagu","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29495","name":"Zuru","city_id":"2588","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"is_activated":"1"}, +{"id":"29496","name":"Ajaokuta","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29497","name":"Ankpa","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29498","name":"Dekina","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29499","name":"Idah","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29500","name":"Kabba","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29501","name":"Koton-Karifi","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29502","name":"Kuroro","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29503","name":"Lokoja","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29504","name":"Mopa","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29505","name":"Ogaminana","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29506","name":"Okene","city_id":"2589","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29507","name":"Ajasse","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29508","name":"Ilorin","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29509","name":"Jebba","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29510","name":"Kaiama","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29511","name":"Lafiagi","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29512","name":"Offa","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29513","name":"Pategi","city_id":"2590","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29514","name":"Apapa","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29515","name":"Badagri","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29516","name":"Ibeju","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29517","name":"Iganmi","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29518","name":"Ikeja","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29519","name":"Ikorodu","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29520","name":"Lagos","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29521","name":"Ojo","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29522","name":"Surulere","city_id":"2591","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29523","name":"Akwanga","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29524","name":"Awe","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29525","name":"Doma","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29526","name":"Keana","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29527","name":"Keffi","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29528","name":"Lafia","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29529","name":"Obi","city_id":"2592","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29530","name":"Agale","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29531","name":"Babana","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29532","name":"Bida","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29533","name":"Bosso","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29534","name":"Chanchaga","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29535","name":"Gbako","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29536","name":"Kontagora","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29537","name":"Lapai","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29538","name":"Minna","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29539","name":"Mokwa","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29540","name":"New Bussa","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29541","name":"Rijau","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29542","name":"Shiroro","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29543","name":"Suleja","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29544","name":"Wushishi","city_id":"2593","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29545","name":"Abeokuta","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29546","name":"Ado Odo","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29547","name":"Agbara","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29548","name":"Aiyetoro","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29549","name":"Ewekoro","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29550","name":"Ifo","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29551","name":"Ijebu Igbo","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29552","name":"Ijebu Ode","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29553","name":"Ikene","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29554","name":"Ilaro","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29555","name":"Ipokia","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29556","name":"Odogbolu","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29557","name":"Owode","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29558","name":"Sango Ota","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29559","name":"Shagamu","city_id":"2594","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29560","name":"Akure","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29561","name":"Idanre","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29562","name":"Ikare","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29563","name":"Irele","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29564","name":"Odigbo","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29565","name":"Oka","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29566","name":"Okitipupa","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29567","name":"Ondo","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29568","name":"Owo","city_id":"2595","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29569","name":"Apomu","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29570","name":"Ejigbo","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29571","name":"Erin-Oshogbo","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29572","name":"Gbongan","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29573","name":"Ife","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29574","name":"Ifon Osun","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29575","name":"Ijesha","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29576","name":"Ikire","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29577","name":"Ikirun","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29578","name":"Ila","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29579","name":"Ilesha","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29580","name":"Ilobu","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29581","name":"Inisa","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29582","name":"Iwo","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29583","name":"Modakeke","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29584","name":"Oke-Mesi","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29585","name":"Olorunda","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29586","name":"Olupona","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29587","name":"Ore","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29588","name":"Orolu","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29589","name":"Oshogbo","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29590","name":"Oyan","city_id":"2596","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29591","name":"Akinyele","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29592","name":"Egbeda","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29593","name":"Eruwa","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29594","name":"Fiditi","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29595","name":"Ibadan","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29596","name":"Ibeto","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29597","name":"Igbo Ora","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29598","name":"Igboho","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29599","name":"Iseyin","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29600","name":"Kajola","city_id":"2597","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"is_activated":"1"}, +{"id":"29601","name":"Kishi","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29602","name":"Lalupon","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29603","name":"Ogbomosho","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29604","name":"Ogo","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29605","name":"Oke-Iho","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29606","name":"Oyo","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29607","name":"Shaki","city_id":"2597","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29608","name":"Barakin","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29609","name":"Bassa","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29610","name":"Bokkos","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29611","name":"Bukuru","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29612","name":"Jos","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29613","name":"Langtang","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29614","name":"Pankshin","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29615","name":"Riyom","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29616","name":"Shendam","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29617","name":"Vom","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29618","name":"Wase","city_id":"453","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29619","name":"Abonnema","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29620","name":"Abua","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29621","name":"Ahoada","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29622","name":"Bonny","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29623","name":"Bugama","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29624","name":"Degema","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29625","name":"Egbema","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29626","name":"Ogu","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29627","name":"Okrika","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29628","name":"Omoko","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29629","name":"Opobo","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29630","name":"Oyigbo","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29631","name":"Port Harcourt","city_id":"2598","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29632","name":"Binji","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29633","name":"Bodinga","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29634","name":"Dange","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29635","name":"Gada","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29636","name":"Goronyo","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29637","name":"Gwadabawa","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29638","name":"Kebbe","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29639","name":"Kware","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29640","name":"Rabah","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29641","name":"Raka","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29642","name":"Sabon Birni","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29643","name":"Sokoto","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29644","name":"Tambawel","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29645","name":"Tureta","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29646","name":"Wamako","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29647","name":"Wurno","city_id":"2599","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29648","name":"Gashaka","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29649","name":"Gassol","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29650","name":"Ibi","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29651","name":"Jalingo","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29652","name":"Lau","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29653","name":"Takum","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29654","name":"Wukari","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29655","name":"Yorro","city_id":"2600","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29656","name":"Damaturu","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29657","name":"Fika","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29658","name":"Gashua","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29659","name":"Geidam","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29660","name":"Gorgoram","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29661","name":"Gujba","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29662","name":"Gulani","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29663","name":"Jakusko","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29664","name":"Matsena","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29665","name":"Nguru","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29666","name":"Potiskum","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29667","name":"Yusufari","city_id":"2601","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29668","name":"Anka","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29669","name":"Bungudu","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29670","name":"Chafe","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29671","name":"Gummi","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29672","name":"Gusau","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29673","name":"Isa","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29674","name":"Kaura Namoda","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29675","name":"Maradun","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29676","name":"Maru","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29677","name":"Shinkafe","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29678","name":"Talata Mafara","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29679","name":"Zurmi","city_id":"2602","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29680","name":"Niue","city_id":"2603","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29681","name":"Songsong","city_id":"2606","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29682","name":"Capital Hill","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29683","name":"Chalan Kanoa","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29684","name":"Dandan","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29685","name":"Garapan","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29686","name":"Gualo Rai","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29687","name":"Kagman","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29688","name":"Koblerville","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29689","name":"Susupe","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29690","name":"Tanapag","city_id":"2607","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"is_activated":"1"}, +{"id":"29691","name":"Asker","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29692","name":"Billingstad","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29693","name":"Haslum","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29694","name":"Hosle","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29695","name":"Kjeller","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29696","name":"Lillestrom","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29697","name":"Lorenskog","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29698","name":"Lysaker","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29699","name":"Lørenskog","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29700","name":"Rud","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29701","name":"Sandvika","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29702","name":"Strommen","city_id":"2609","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29703","name":"Kokstad","city_id":"2611","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29704","name":"Drammen","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29705","name":"Hokksund","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29706","name":"Honefoss","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29707","name":"Kongsberg","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29708","name":"Lyngdal","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29709","name":"Nærsnes","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29710","name":"Vestby","city_id":"2612","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29711","name":"Baatsfjord","city_id":"2613","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29712","name":"Hammerfest","city_id":"2613","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29713","name":"Brumunddal","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29714","name":"Elverum","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29715","name":"Hamar","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29716","name":"Ilseng","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29717","name":"Rena","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29718","name":"Trysil","city_id":"2614","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29719","name":"Høylandsbygd","city_id":"2615","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29720","name":"Lonevag","city_id":"2615","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29721","name":"Straume","city_id":"2615","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29722","name":"Tysnes","city_id":"2615","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29723","name":"Voss","city_id":"2615","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29724","name":"Bodo","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29725","name":"Mosjoen","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29726","name":"Narvik","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29727","name":"Nesna","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29728","name":"Saltdal","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29729","name":"Sortland","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29730","name":"Steigen","city_id":"2618","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29731","name":"Askim","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29732","name":"Fredrikstad","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29733","name":"Halden","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29734","name":"Hovik","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29735","name":"Moss","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29736","name":"Mysen","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29737","name":"Sarpsborg","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29738","name":"Tistedal","city_id":"2619","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29739","name":"Lena","city_id":"2620","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29740","name":"Lillehammer","city_id":"2620","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29741","name":"Oslo","city_id":"2621","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29742","name":"Skedsmo","city_id":"2621","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29743","name":"Skjetten","city_id":"2621","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29744","name":"Egersund","city_id":"2622","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29745","name":"Haugesund","city_id":"2622","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29746","name":"Kleppe","city_id":"2622","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29747","name":"Sandnes","city_id":"2622","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29748","name":"Stavanger","city_id":"2622","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29749","name":"Stavern","city_id":"2625","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"is_activated":"1"}, +{"id":"29750","name":"Sykkylven","city_id":"2626","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29751","name":"Notodden","city_id":"2627","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29752","name":"Skien","city_id":"2627","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29753","name":"Harstad","city_id":"2628","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29754","name":"Troms","city_id":"2628","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29755","name":"Tromsø","city_id":"2628","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29756","name":"Horten","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29757","name":"Husøysund","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29758","name":"Larvik","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29759","name":"Rygge","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29760","name":"Sandefjord","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29761","name":"Tønsberg","city_id":"2630","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29762","name":"Salalah","city_id":"2633","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29763","name":"Azaiba","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29764","name":"Bawshar","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29765","name":"Madinat Qabus","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29766","name":"Masqat","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29767","name":"Matrah","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29768","name":"Muscat","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29769","name":"Muttrah","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29770","name":"Qurayyat","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29771","name":"Qurm","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29772","name":"Ruwi","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29773","name":"Wadi Al Kabir","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29774","name":"as-Sib","city_id":"2634","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29775","name":"Khasab","city_id":"2635","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29776","name":"Rusayl","city_id":"2636","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29777","name":"Bahla ","city_id":"2638","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29778","name":"Nizwa","city_id":"2638","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29779","name":"Sumayl","city_id":"2638","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29780","name":" Ibri","city_id":"2639","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29781","name":"al-Buraymi","city_id":"2639","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29782","name":"Al khuwair","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29783","name":"Barkah","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29784","name":"Shinas","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29785","name":"Suhar","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29786","name":"al-Khaburah","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29787","name":"al-Masna ah","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29788","name":"ar-Rustaq","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29789","name":"as-Suwayq","city_id":"2640","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29790","name":"Ibra","city_id":"1037","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29791","name":"al-Mudaybi","city_id":"1037","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29792","name":"Barkhan","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29793","name":"Bhag","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29794","name":"Chaman","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29795","name":"Chitkan","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29796","name":"Dalbandin","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29797","name":"Dera Allah Yar","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29798","name":"Dera Bugti","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29799","name":"Dera Murad Jamali","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29800","name":"Dhadar","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29801","name":"Duki","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29802","name":"Gaddani","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29803","name":"Gwadar","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29804","name":"Harnai","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29805","name":"Hub","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29806","name":"Jiwani","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29807","name":"Kalat","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29808","name":"Kharan","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29809","name":"Khuzdar","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29810","name":"Kohlu","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29811","name":"Loralai","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29812","name":"Mach","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29813","name":"Mastung","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29814","name":"Nushki","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29815","name":"Ormara","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29816","name":"Pasni","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29817","name":"Pishin","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29818","name":"Quetta","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29819","name":"Sibi","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29820","name":"Sohbatpur","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29821","name":"Surab","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29822","name":"Turbat","city_id":"2641","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"is_activated":"1"}, +{"id":"29823","name":"Usta Muhammad","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29824","name":"Uthal","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29825","name":"Wadh","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29826","name":"Winder","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29827","name":"Zehri","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29828","name":"Zhob","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29829","name":"Ziarat","city_id":"2641","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29830","name":" Abdul Hakim","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29831","name":"Ahmadpur East","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29832","name":"Ahmadpur Lumma","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29833","name":"Ahmadpur Sial","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29834","name":"Alipur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29835","name":"Alipur Chatha","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29836","name":"Arifwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29837","name":"Attock","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29838","name":"Baddomalhi","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29839","name":"Bahawalnagar","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29840","name":"Bahawalpur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29841","name":"Bai Pheru","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29842","name":"Basirpur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29843","name":"Begowala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29844","name":"Bhakkar","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29845","name":"Bhalwal","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29846","name":"Bhawana","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29847","name":"Bhera","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29848","name":"Bhopalwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29849","name":"Burewala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29850","name":"Chak Azam Sahu","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29851","name":"Chak Jhumra","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29852","name":"Chak Sarwar Shahid","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29853","name":"Chakwal","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29854","name":"Chawinda","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29855","name":"Chichawatni","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29856","name":"Chiniot","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29857","name":"Chishtian Mandi","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29858","name":"Choa Saidan Shah","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29859","name":"Chuhar Kana","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29860","name":"Chunian","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29861","name":"Dajal","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29862","name":"Darya Khan","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29863","name":"Daska","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29864","name":"Daud Khel","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29865","name":"Daultala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29866","name":"Dera Din Panah","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29867","name":"Dera Ghazi Khan","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29868","name":"Dhanote","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29869","name":"Dhonkal","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29870","name":"Dijkot","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29871","name":"Dina","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29872","name":"Dinga","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29873","name":"Dipalpur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29874","name":"Dullewala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29875","name":"Dunga Bunga","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29876","name":"Dunyapur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29877","name":"Eminabad","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29878","name":"Faisalabad","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29879","name":"Faqirwali","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29880","name":"Faruka","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29881","name":"Fateh Jang","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29882","name":"Fazalpur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29883","name":"Ferozwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29884","name":"Fort Abbas","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29885","name":"Garh Maharaja","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29886","name":"Ghakar","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29887","name":"Ghurgushti","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29888","name":"Gojra","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29889","name":"Gujar Khan","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29890","name":"Gujranwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29891","name":"Gujrat","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29892","name":"Hadali","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29893","name":"Hafizabad","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29894","name":"Harnoli","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29895","name":"Harunabad","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29896","name":"Hasan Abdal","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29897","name":"Hasilpur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29898","name":"Haveli","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29899","name":"Hazro","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29900","name":"Hujra Shah Muqim","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29901","name":"Isa Khel","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29902","name":"Jahanian","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29903","name":"Jalalpur Bhattian","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29904","name":"Jalalpur Jattan","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29905","name":"Jalalpur Pirwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29906","name":"Jalla Jeem","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29907","name":"Jamke Chima","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29908","name":"Jampur","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29909","name":"Jand","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29910","name":"Jandanwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29911","name":"Jandiala Sherkhan","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29912","name":"Jaranwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29913","name":"Jatoi","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29914","name":"Jauharabad","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29915","name":"Jhang","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29916","name":"Jhawarian","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29917","name":"Jhelum","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29918","name":"Kabirwala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29919","name":"Kahna Nau","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29920","name":"Kahror Pakka","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29921","name":"Kahuta","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29922","name":"Kalabagh","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29923","name":"Kalaswala","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29924","name":"Kaleke","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29925","name":"Kalur Kot","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29926","name":"Kamalia","city_id":"1623","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"is_activated":"1"}, +{"id":"29927","name":"Kamar Mashani","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29928","name":"Kamir","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29929","name":"Kamoke","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29930","name":"Kamra","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29931","name":"Kanganpur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29932","name":"Karampur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29933","name":"Karor Lal Esan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29934","name":"Kasur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29935","name":"Khairpur Tamewali","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29936","name":"Khanewal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29937","name":"Khangah Dogran","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29938","name":"Khangarh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29939","name":"Kharian","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29940","name":"Khewra","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29941","name":"Khundian","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29942","name":"Khurianwala","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29943","name":"Khushab","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29944","name":"Kot Abdul Malik","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29945","name":"Kot Addu","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29946","name":"Kot Mithan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29947","name":"Kot Moman","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29948","name":"Kot Radha Kishan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29949","name":"Kot Samaba","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29950","name":"Kotli Loharan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29951","name":"Kundian","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29952","name":"Kunjah","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29953","name":"Lahore","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29954","name":"Lalamusa","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29955","name":"Lalian","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29956","name":"Liaqatabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29957","name":"Liaqatpur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29958","name":"Lieah","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29959","name":"Liliani","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29960","name":"Lodhran","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29961","name":"Ludhewala Waraich","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29962","name":"Mailsi","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29963","name":"Makhdumpur Rashid","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29964","name":"Malakwal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29965","name":"Mamu Kanjan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29966","name":"Mananwala Jodh Singh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29967","name":"Mandi Bahauddin","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29968","name":"Mandi Sadiq Ganj","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29969","name":"Mangat","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29970","name":"Mangla","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29971","name":"Mankera","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29972","name":"Mian Channun","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29973","name":"Miani","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29974","name":"Mianwali","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29975","name":"Minchinabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29976","name":"Mitha Tiwana","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29977","name":"Multan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29978","name":"Muridke","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29979","name":"Murree","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29980","name":"Muzaffargarh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29981","name":"Nankana Sahib","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29982","name":"Narang","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29983","name":"Narowal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29984","name":"Noorpur Thal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29985","name":"Nowshera","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29986","name":"Nowshera Virkan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29987","name":"Okara","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29988","name":"Pakpattan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29989","name":"Pasrur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29990","name":"Pattoki","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29991","name":"Phalia","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29992","name":"Phularwan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29993","name":"Pind Dadan Khan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29994","name":"Pindi Bhattian","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29995","name":"Pindi Gheb","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29996","name":"Pirmahal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29997","name":"Qadirabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29998","name":"Qadirpur Ran","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"29999","name":"Qila Disar Singh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30000","name":"Qila Sobha Singh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30001","name":"Quaidabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30002","name":"Rabwah","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30003","name":"Rahim Yar Khan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30004","name":"Raiwind","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30005","name":"Raja Jang","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30006","name":"Rajanpur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30007","name":"Rasulnagar","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30008","name":"Rawalpindi","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30009","name":"Renala Khurd","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30010","name":"Rojhan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30011","name":"Saddar Gogera","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30012","name":"Sadiqabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30013","name":"Safdarabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30014","name":"Sahiwal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30015","name":"Samasatta","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30016","name":"Sambrial","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30017","name":"Sammundri","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30018","name":"Sangala Hill","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30019","name":"Sanjwal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30020","name":"Sarai Alamgir","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30021","name":"Sarai Sidhu","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30022","name":"Sargodha","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30023","name":"Shadiwal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30024","name":"Shahpur City","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30025","name":"Shahpur Saddar","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30026","name":"Shakargarh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30027","name":"Sharqpur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30028","name":"Shehr Sultan","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30029","name":"Shekhupura","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30030","name":"Shujaabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30031","name":"Sialkot","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30032","name":"Sillanwali","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30033","name":"Sodhra","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30034","name":"Sohawa","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30035","name":"Sukheke","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30036","name":"Talagang","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30037","name":"Tandlianwala","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30038","name":"Taunsa","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30039","name":"Taxila","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30040","name":"Tibba Sultanpur","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30041","name":"Toba Tek Singh","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30042","name":"Tulamba","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30043","name":"Uch","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30044","name":"Vihari","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30045","name":"Wah","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30046","name":"Warburton","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30047","name":"Wazirabad","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30048","name":"Yazman","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30049","name":"Zafarwal","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30050","name":"Zahir Pir","city_id":"1623","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30051","name":"Adilpur","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30052","name":"Badah","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30053","name":"Badin","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30054","name":"Bagarji","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30055","name":"Bakshshapur","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30056","name":"Bandhi","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30057","name":"Berani","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30058","name":"Bhan","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30059","name":"Bhiria City","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30060","name":"Bhiria Road","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30061","name":"Bhit Shah","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30062","name":"Bozdar","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30063","name":"Bulri","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30064","name":"Chak","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30065","name":"Chambar","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30066","name":"Chohar Jamali","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30067","name":"Chor","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30068","name":"Dadu","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30069","name":"Daharki","city_id":"2646","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"is_activated":"1"}, +{"id":"30070","name":"Daro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30071","name":"Darya Khan Mari","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30072","name":"Daur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30073","name":"Dhoronaro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30074","name":"Digri","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30075","name":"Diplo","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30076","name":"Dokri","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30077","name":"Faqirabad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30078","name":"Gambat","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30079","name":"Garello","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30080","name":"Garhi Khairo","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30081","name":"Garhi Yasin","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30082","name":"Gharo","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30083","name":"Ghauspur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30084","name":"Ghotki","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30085","name":"Golarchi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30086","name":"Guddu","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30087","name":"Gulistan-E-Jauhar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30088","name":"Hala","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30089","name":"Hingorja","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30090","name":"Islamkot","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30091","name":"Jacobabad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30092","name":"Jam Nawaz Ali","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30093","name":"Jam Sahib","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30094","name":"Jati","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30095","name":"Jhol","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30096","name":"Jhudo","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30097","name":"Johi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30098","name":"Kadhan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30099","name":"Kambar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30100","name":"Kandhra","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30101","name":"Kandiari","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30102","name":"Kandiaro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30103","name":"Karachi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30104","name":"Kario Ghanwar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30105","name":"Karoondi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30106","name":"Kashmor","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30107","name":"Kazi Ahmad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30108","name":"Keti Bandar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30109","name":"Khadro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30110","name":"Khairpur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30111","name":"Khairpur Nathan Shah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30112","name":"Khandh Kot","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30113","name":"Khipro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30114","name":"Khoski","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30115","name":"Khuhra","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30116","name":"Khyber","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30117","name":"Kot Diji","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30118","name":"Kot Ghulam Mohammad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30119","name":"Kotri","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30120","name":"Kumb","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30121","name":"Kunri","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30122","name":"Lakhi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30123","name":"Larkana","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30124","name":"Madeji","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30125","name":"Matiari","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30126","name":"Matli","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30127","name":"Mehar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30128","name":"Mehrabpur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30129","name":"Miro Khan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30130","name":"Mirpur Bathoro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30131","name":"Mirpur Khas","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30132","name":"Mirpur Mathelo","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30133","name":"Mirpur Sakro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30134","name":"Mirwah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30135","name":"Mithi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30136","name":"Moro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30137","name":"Nabisar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30138","name":"Nasarpur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30139","name":"Naudero","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30140","name":"Naukot","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30141","name":"Naushahro Firoz","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30142","name":"Nawabshah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30143","name":"Oderolal Station","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30144","name":"Pacca Chang","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30145","name":"Padidan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30146","name":"Pano Aqil","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30147","name":"Perumal","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30148","name":"Phulji","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30149","name":"Pirjo Goth","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30150","name":"Piryaloi","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30151","name":"Pithoro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30152","name":"Radhan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30153","name":"Rajo Khanani","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30154","name":"Ratodero","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30155","name":"Rohri","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30156","name":"Rustam","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30157","name":"Saeedabad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30158","name":"Sakrand","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30159","name":"Samaro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30160","name":"Sanghar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30161","name":"Sann","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30162","name":"Sarhari","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30163","name":"Sehwan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30164","name":"Setharja","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30165","name":"Shah Dipalli","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30166","name":"Shahdadkot","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30167","name":"Shahdadpur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30168","name":"Shahpur Chakar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30169","name":"Shahpur Jahania","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30170","name":"Sinjhoro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30171","name":"Sita Road","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30172","name":"Sobhodero","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30173","name":"Sujawal","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30174","name":"Sukkur","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30175","name":"Talhar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30176","name":"Tando Adam","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30177","name":"Tando Allah Yar","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30178","name":"Tando Bagho","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30179","name":"Tando Ghulam Ali","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30180","name":"Tando Jam","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30181","name":"Tando Jan Mohammad","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30182","name":"Tando Mitha Khan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30183","name":"Tando Muhammad Khan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30184","name":"Tangwani","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30185","name":"Thano Bula Khan","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30186","name":"Thari Mirwah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30187","name":"Tharushah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30188","name":"Thatta","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30189","name":"Ther I","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30190","name":"Ther I Mohabat","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30191","name":"Thul","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30192","name":"Ubauro","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30193","name":"Warah","city_id":"2646","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30194","name":"Ulimang","city_id":"2647","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30195","name":"Airai","city_id":"2648","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30196","name":"Ngaramash","city_id":"2649","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"is_activated":"1"}, +{"id":"30197","name":"Hatohobei","city_id":"2650","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30198","name":"Kayangel","city_id":"2651","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30199","name":"Koror","city_id":"2652","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30200","name":"Meyungs","city_id":"2652","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30201","name":"Melekeok","city_id":"2653","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30202","name":"Ngermechau","city_id":"2654","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30203","name":"Chol","city_id":"2655","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30204","name":"Ollei","city_id":"2656","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30205","name":"Oikul","city_id":"2657","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30206","name":"Ngerkeai","city_id":"2658","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30207","name":"Imeong","city_id":"2659","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30208","name":"Ngetkip","city_id":"2660","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30209","name":"Kloulklubed","city_id":"2661","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30210","name":"Dongosaru","city_id":"2662","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30211","name":"Ariha","city_id":"2663","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30212","name":"Beit Jala","city_id":"1749","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30213","name":"Dayr-al-Balah","city_id":"2665","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30214","name":"al-Burayj","city_id":"2665","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30215","name":"al-Insayrat","city_id":"2665","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30216","name":"al-Maghazi","city_id":"2665","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30217","name":"Ghazzah","city_id":"2666","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30218","name":"Janin","city_id":"2668","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30219","name":"Qabatiyah","city_id":"2668","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30220","name":"Nabulus","city_id":"2670","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30221","name":"Qalqilyah","city_id":"2671","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30222","name":"Rafah","city_id":"2672","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30223","name":"Tall as-Sultan","city_id":"2672","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30224","name":"Salfit","city_id":"2674","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"is_activated":"1"}, +{"id":"30225","name":"Tubas","city_id":"2675","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30226","name":"Tulkarm","city_id":"2676","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30227","name":"Dura","city_id":"2677","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30228","name":"Halhul","city_id":"2677","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30229","name":"Yattah","city_id":"2677","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30230","name":"ad-Dahiriyah","city_id":"2677","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30231","name":"al-Khalil","city_id":"2677","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30232","name":"Ma ale Adummim","city_id":"2678","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30233","name":"al-Quds","city_id":"2678","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30234","name":"Alanje","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30235","name":"Bajo Boquete","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30236","name":"Boqueron","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30237","name":"Bugaba","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30238","name":"David","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30239","name":"Dolega","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30240","name":"Gualaca","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30241","name":"Horconcitos","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30242","name":"Las Lajas","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30243","name":"Puerto Armuelles","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30244","name":"Rio Sereno","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30245","name":"Tole","city_id":"2680","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30246","name":"Aguadulce","city_id":"2681","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30247","name":"Anton","city_id":"2681","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30248","name":"Nata","city_id":"2681","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30249","name":"Ola","city_id":"2681","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30250","name":"Penonome","city_id":"2681","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30251","name":"Miguel de la Borda","city_id":"1546","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30252","name":"Nuevo Chagres","city_id":"1546","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30253","name":"Portobelo","city_id":"1546","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30254","name":"El Real de Santa Maria","city_id":"2682","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30255","name":"Cirilo Guainora","city_id":"2683","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30256","name":"Rio Sabalo","city_id":"2683","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30257","name":"Chitre","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30258","name":"Las Minas","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30259","name":"Los Pozos","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30260","name":"Ocu","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30261","name":"Parita","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30262","name":"Pese","city_id":"2684","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30263","name":"Arraijan","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30264","name":"Capira","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30265","name":"Chame","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30266","name":"Chepo","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30267","name":"Chiman","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30268","name":"La Chorrera","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30269","name":"Panama","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30270","name":"San Miguelito","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30271","name":"Taboga","city_id":"2688","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30272","name":"Atalaya","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30273","name":"Calobre","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30274","name":"Canazas","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30275","name":"Las Palmas","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30276","name":"Montijo","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30277","name":"Rio de Jesus","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30278","name":"Santa Fe","city_id":"2689","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30279","name":"Laiagam","city_id":"2693","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30280","name":"Porgera","city_id":"2693","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30281","name":"Wabag","city_id":"2693","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"is_activated":"1"}, +{"id":"30282","name":"Kerema","city_id":"2695","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30283","name":"Finschhafen","city_id":"2696","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30284","name":"Madang","city_id":"2696","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30285","name":"Lorengau","city_id":"2697","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30286","name":"Bulolo","city_id":"2699","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30287","name":"Kokoda","city_id":"2703","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30288","name":"Popondetta","city_id":"2703","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30289","name":"Vanimo","city_id":"2704","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30290","name":"Kundiawa","city_id":"2705","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30291","name":"Bella Vista","city_id":"2711","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30292","name":"Capitan Bado","city_id":"2711","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30293","name":"Pedro Juan Caballero","city_id":"2711","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30294","name":"Doctor Pedro P. Pena","city_id":"2713","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30295","name":"Marechal Estigarribia","city_id":"2713","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30296","name":"Menno","city_id":"2713","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30297","name":"Neuland","city_id":"2713","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30298","name":"Caaguazu","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30299","name":"Carayao","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30300","name":"Coronel Oviedo","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30301","name":"Doctor Cecilio Baez","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30302","name":"Doctor Eulogio Estigarribia","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30303","name":"Doctor Juan Manuel Frutos","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30304","name":"Jose Ocampos","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30305","name":"La Pastoria","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30306","name":"Marechal Francisco Solano Lope","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30307","name":"Mbutuy","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30308","name":"Nueva Londres","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30309","name":"Raul Arsenio Oviedo","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30310","name":"Repatriacion","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30311","name":"San Jose de los Arroyos","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30312","name":"Simon Bolivar","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30313","name":"Tres Corrales","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30314","name":"Tres de Febrero","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30315","name":"Vaqueria","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30316","name":"Yhu","city_id":"2714","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30317","name":"Abai","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30318","name":"Buena Vista","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30319","name":"Caazapa","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30320","name":"Doctor Moises Bertoni","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30321","name":"General Higinio Morinigo","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30322","name":"Maciel","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30323","name":"Tavai","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30324","name":"Yegros","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30325","name":"Yuty","city_id":"2715","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30326","name":"Corpus Christi","city_id":"2716","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"is_activated":"1"}, +{"id":"30327","name":"Curuguaty","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30328","name":"General Francisco Alvarez","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30329","name":"Itanara","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30330","name":"Katuete","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30331","name":"La Paloma","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30332","name":"Nueva Esperanza","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30333","name":"Salto del Guaira","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30334","name":"Ygatimi","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30335","name":"Ypehu","city_id":"2716","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30336","name":"Aregua","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30337","name":"Capiata","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30338","name":"Fernando de la Mora","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30339","name":"Guarambare","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30340","name":"Ita","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30341","name":"Itaugua","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30342","name":"Juan Augusto Saldivar","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30343","name":"Lambare","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30344","name":"Limpio","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30345","name":"Luque","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30346","name":"Nemby","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30347","name":"Nueva Italia","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30348","name":"Villa Elisa","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30349","name":"Ypacarai","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30350","name":"Ypane","city_id":"1102","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30351","name":"Horqueta","city_id":"2717","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30352","name":"San Lazaro","city_id":"2717","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30353","name":"Arroyos y Esteros","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30354","name":"Atyra","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30355","name":"Caacupe","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30356","name":"Caraguatay","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30357","name":"Emboscada","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30358","name":"Eusebio Ayala","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30359","name":"Isla Pucu","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30360","name":"Itacurubi de la Cordillera","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30361","name":"Juan de Mena","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30362","name":"Loma Grande","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30363","name":"Mbocayty del Yhaguy","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30364","name":"Nueva Colombia","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30365","name":"Piribebuy","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30366","name":"Primero de Marzo","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30367","name":"San Jose Obrero","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30368","name":"Tobati","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30369","name":"Valenzuela","city_id":"2718","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30370","name":"Borja","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30371","name":"Capitan Mauricio Jose Troche","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30372","name":"Coronel Martinez","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30373","name":"Doctor Botrell","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30374","name":"Felix Perez Cardozo","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30375","name":"General Eugenio Alejandrino Ga","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30376","name":"Itape","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30377","name":"Iturbe","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30378","name":"Jose Fasardi","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30379","name":"Mbocayaty","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30380","name":"Natalicio Talavera","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30381","name":"Numi","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30382","name":"Paso Yobai","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30383","name":"San Salvador","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30384","name":"Yataity","city_id":"2719","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30385","name":"Alto Vera","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30386","name":"Cambyreta","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30387","name":"Capitan Meza","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30388","name":"Capitan Miranda","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30389","name":"Carlos Antonio Lopez","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30390","name":"Carmen del Parana","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30391","name":"Coronel Bogado","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30392","name":"Edelira","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30393","name":"Fram","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30394","name":"General Artigas","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30395","name":"General Delgado","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30396","name":"Hohenau","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30397","name":"Itapua Poty","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30398","name":"Jesus","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30399","name":"Leandro Oviedo","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30400","name":"Mayor Otano","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30401","name":"Natalio","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30402","name":"Nueva Alborada","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30403","name":"Obligado","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30404","name":"Pirapo","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30405","name":"San Cosme y Damian","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30406","name":"San Juan del Parana","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30407","name":"San Pedro del Parana","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30408","name":"San Rafael del Parana","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30409","name":"Tomas Romero Pereira","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30410","name":"Yatytay","city_id":"2720","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30411","name":"Ayolas","city_id":"197","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30412","name":"San Juan Bautista","city_id":"197","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30413","name":"Villa Florida","city_id":"197","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30414","name":"Yabebyry","city_id":"197","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30415","name":"Alberdi","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30416","name":"Desmochados","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30417","name":"General Jose Eduvigis Diaz","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30418","name":"Guazu Cua","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30419","name":"Isla Umbu","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30420","name":"Laureles","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30421","name":"Mayor Jose Dejesus Martinez","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30422","name":"Paso de Patria","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30423","name":"San Juan Bautista de Neembucu","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30424","name":"Tacuaras","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30425","name":"Villa Franca","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30426","name":"Villa Oliva","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30427","name":"Villalbin","city_id":"2721","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30428","name":"Acahay","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30429","name":"Caapucu","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30430","name":"Carapegua","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30431","name":"Escobar","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30432","name":"General Bernardino Caballero","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30433","name":"La Colmena","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30434","name":"Mbuyapey","city_id":"2722","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"is_activated":"1"}, +{"id":"30435","name":"Paraguari","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30436","name":"Pirayu","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30437","name":"Quiindy","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30438","name":"Quyquyho","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30439","name":"San Roque Gonzalez de Santa Cr","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30440","name":"Sapucai","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30441","name":"Tebicuarymi","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30442","name":"Yaguaron","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30443","name":"Ybycui","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30444","name":"Ybytimi","city_id":"2722","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30445","name":"Bagua Grande","city_id":"511","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30446","name":"Cajaruro","city_id":"511","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30447","name":"Chachapoyas","city_id":"511","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30448","name":"Jazan","city_id":"511","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30449","name":"La Peca","city_id":"511","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30450","name":"Ancash","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30451","name":"Caraz","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30452","name":"Carhuaz","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30453","name":"Casma","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30454","name":"Chimbote","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30455","name":"Choishco","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30456","name":"Huallanca","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30457","name":"Huaraz","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30458","name":"Huari","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30459","name":"Huarmey","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30460","name":"Pomabamba","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30461","name":"Santa","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30462","name":"Yungay","city_id":"2725","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30463","name":"Abancay","city_id":"2726","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30464","name":"Andahuaylas","city_id":"2726","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30465","name":"Talavera","city_id":"2726","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30466","name":"Acari","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30467","name":"Arequipa","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30468","name":"Camana","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30469","name":"Chivay","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30470","name":"Cocachacra","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30471","name":"Dean Valdivia","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30472","name":"Lluta","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30473","name":"Mollendo","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30474","name":"Nicolas de Pierola","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30475","name":"Orcopampa","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30476","name":"Punta de Bombon","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30477","name":"Yura","city_id":"2727","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30478","name":"Ayacucho","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30479","name":"Ayna","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30480","name":"Coracora","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30481","name":"Huanta","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30482","name":"Puquio","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30483","name":"Tambo","city_id":"2728","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30484","name":"Bambamarca","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30485","name":"Cajabamba","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30486","name":"Celendin","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30487","name":"Chota","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30488","name":"Cutervo","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30489","name":"Jaen","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30490","name":"Pedro Galvez","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30491","name":"Pucara","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30492","name":"Yonan","city_id":"2729","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30493","name":"Anta","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30494","name":"Calca","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30495","name":"Cusco","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30496","name":"Espinar","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30497","name":"Oropesa","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30498","name":"Quillabamba","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30499","name":"Sicuani","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30500","name":"Urcos","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30501","name":"Urubamba","city_id":"2730","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30502","name":"Huancavelica","city_id":"2731","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30503","name":"Lircay","city_id":"2731","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30504","name":"Pampas","city_id":"2731","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30505","name":"Ambos","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30506","name":"Huanuco","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30507","name":"Jose Crespo y Castillo","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30508","name":"Llata","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30509","name":"Rupa-Rupa","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30510","name":"San Miguel de Cauri","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30511","name":"Tingo Maria","city_id":"2732","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30512","name":"Chincha Alta","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30513","name":"Ica","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30514","name":"Los Aquijes","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30515","name":"Marcona","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30516","name":"Nazca","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30517","name":"Pachacutec","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30518","name":"Palpa","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30519","name":"Pisco","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30520","name":"Salas","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30521","name":"Subtanjalla","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30522","name":"Tupac Amaru Inca","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30523","name":"Vista Alegre","city_id":"2733","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"is_activated":"1"}, +{"id":"30524","name":"Acobamba","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30525","name":"Acolla","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30526","name":"Carhuamayo","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30527","name":"Chanchamayo","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30528","name":"Chupaca","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30529","name":"Huancayo","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30530","name":"Huasahuasi","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30531","name":"Huayucachi","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30532","name":"Jauja","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30533","name":"La Oroya","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30534","name":"Mazamari","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30535","name":"Morococha","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30536","name":"Orcotuna","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30537","name":"Pangoa","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30538","name":"Perene","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30539","name":"Pichanaqui","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30540","name":"Pilcomayo","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30541","name":"San Jeronimo de Tunan","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30542","name":"San Pedro de Cajas","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30543","name":"Santa Rosa de Saco","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30544","name":"Satipo","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30545","name":"Sicaya","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30546","name":"Tarma","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30547","name":"Yauli","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30548","name":"Yauya","city_id":"2734","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30549","name":"Chiclayo","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30550","name":"Chongoyape","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30551","name":"Eten","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30552","name":"Ferrenafe","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30553","name":"Illimo","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30554","name":"Jayanca","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30555","name":"Lagunas","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30556","name":"Lambayeque","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30557","name":"Manuel Mesones Muro","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30558","name":"Mochumi","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30559","name":"Monsefu","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30560","name":"Morrope","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30561","name":"Motupe","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30562","name":"Olmos","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30563","name":"Oyotun","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30564","name":"Picsi","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30565","name":"Reque","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30566","name":"Sana","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30567","name":"Tucume","city_id":"2735","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30568","name":"Barranca","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30569","name":"Contamana","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30570","name":"Fernando Lores","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30571","name":"Iquitos","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30572","name":"Nauta","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30573","name":"Paucarpata","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30574","name":"Ramon Castilla","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30575","name":"Requena","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30576","name":"Saquena","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30577","name":"Vargas Guerra","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30578","name":"Yurimaguas","city_id":"2737","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30579","name":"Ilo","city_id":"2739","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30580","name":"Moquegua","city_id":"2739","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30581","name":"Pacocha","city_id":"2739","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30582","name":"Torata","city_id":"2739","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30583","name":"Cerro de Pasco","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30584","name":"Chaupimarca","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30585","name":"Oxapampa","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30586","name":"Paucartambo","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30587","name":"Tinyahuarco","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30588","name":"Yanacancha","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30589","name":"Yanahuanca","city_id":"2740","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30590","name":"Ayabaca","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30591","name":"Bernal","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30592","name":"Catacaos","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30593","name":"Chulucanas","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30594","name":"Colan","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30595","name":"Cura Mori","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30596","name":"El Alto","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30597","name":"Huancabamba","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30598","name":"Ignacio Escudero","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30599","name":"La Arena","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30600","name":"La Brea","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30601","name":"La Huaca","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30602","name":"La Matanza","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30603","name":"Las Lomas","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30604","name":"Los Organos","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30605","name":"Mancora","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30606","name":"Marcavelica","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30607","name":"Morropon","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30608","name":"Piura","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30609","name":"Querecotillo","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30610","name":"Salitral","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30611","name":"San Juan de Bigote","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30612","name":"Sechura","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30613","name":"Sullana","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30614","name":"Talara","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30615","name":"Tamarindo","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30616","name":"Tambo Grande","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30617","name":"Vice","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30618","name":"Vichayal","city_id":"2741","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30619","name":"Ayaviri","city_id":"2742","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"is_activated":"1"}, +{"id":"30620","name":"Azangaro","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30621","name":"Desaguadero","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30622","name":"Huancane","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30623","name":"Ilave","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30624","name":"Juli","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30625","name":"Juliaca","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30626","name":"Macusani","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30627","name":"Nunoa","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30628","name":"Puno","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30629","name":"Putina","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30630","name":"Yanahuara","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30631","name":"Yunguyo","city_id":"2742","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30632","name":"Ilabaya","city_id":"2744","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30633","name":"Tacna","city_id":"2744","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30634","name":"Aguas Verdes","city_id":"2745","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30635","name":"Papayal","city_id":"2745","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30636","name":"Tumbes","city_id":"2745","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30637","name":"Zarumilla","city_id":"2745","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30638","name":"Zorritos","city_id":"2745","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30639","name":"Campoverde","city_id":"2746","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30640","name":"Padre Abad","city_id":"2746","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30641","name":"Pucallpa","city_id":"2746","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30642","name":"Raymondi","city_id":"2746","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30643","name":"Albay","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30644","name":"Daet","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30645","name":"Iriga","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30646","name":"Legaspi","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30647","name":"Naga","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30648","name":"Sorsogon","city_id":"2748","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30649","name":"Bulacan","city_id":"2749","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30650","name":"Marilao","city_id":"2749","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30651","name":"Cagayan de Oro","city_id":"2750","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30652","name":"Tuguegarao","city_id":"2750","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30653","name":"Bislig","city_id":"2751","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30654","name":"Butuan","city_id":"2751","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30655","name":"Surigao","city_id":"2751","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30656","name":"Baguio","city_id":"2718","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30657","name":"Bangued","city_id":"2718","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30658","name":"Davao","city_id":"2755","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30659","name":"Dagupan","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30660","name":"Laoag","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30661","name":"Manaoag","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30662","name":"Mangaldan","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30663","name":"Urdaneta","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30664","name":"Vigan","city_id":"2758","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30665","name":"Binan","city_id":"2759","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30666","name":"Pangil","city_id":"2759","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30667","name":"Manila","city_id":"2760","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30668","name":"Marikina","city_id":"2760","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30669","name":"Mactan","city_id":"2761","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"is_activated":"1"}, +{"id":"30670","name":"Fabryczna","city_id":"2771","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30671","name":"Bielawa","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30672","name":"Bogatynia","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30673","name":"Boguszow-Gorce","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30674","name":"Boleslawiec","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30675","name":"Brzeg Dolny","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30676","name":"Bystrzyca Klodzka","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30677","name":"Chojnow","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30678","name":"Dzierzoniow","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30679","name":"Glogow","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30680","name":"Gora","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30681","name":"Jawor","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30682","name":"Jelcz-Laskowice","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30683","name":"Jelenia Gora","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30684","name":"Kamienna Gora","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30685","name":"Klodzko","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30686","name":"Kowary","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30687","name":"Kudowa-Zdroj","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30688","name":"Legnica","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30689","name":"Luban","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30690","name":"Lubin","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30691","name":"Lwowek Slaski","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30692","name":"Milicz","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30693","name":"Nowa Ruda","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30694","name":"Olawa","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30695","name":"Olesnica","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30696","name":"Piechowice","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30697","name":"Pieszyce","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30698","name":"Polkowice","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30699","name":"Strzegom","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30700","name":"Strzelin","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30701","name":"Swidnica","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30702","name":"Swiebodzice","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30703","name":"Sycow","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30704","name":"Trzebnica","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30705","name":"Walbrzych","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30706","name":"Wolow","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30707","name":"Wroclaw","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30708","name":"Zabkowice Slaskie","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30709","name":"Zgorzelec","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30710","name":"Ziebice","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30711","name":"Zlotoryja","city_id":"2772","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30712","name":"Hopowo","city_id":"2774","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30713","name":"Chwaszczyno","city_id":"2775","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30714","name":"Smigiel","city_id":"2776","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30715","name":"Jerzmanowice","city_id":"2777","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30716","name":"Zabierzow","city_id":"2777","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30717","name":"Aleksandrow Kujawski","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30718","name":"Brodnica","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30719","name":"Bydgoszcz","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30720","name":"Chelmno","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30721","name":"Chelmza","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30722","name":"Ciechocinek","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30723","name":"Golub-Dobrzyn","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30724","name":"Grudziadz","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30725","name":"Inowroclaw","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30726","name":"Janikowo","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30727","name":"Koronowo","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30728","name":"Kruszwica","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30729","name":"Lipno","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30730","name":"Mogilno","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30731","name":"Naklo nad Notecia","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30732","name":"Radziejow","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30733","name":"Rypin","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30734","name":"Sepolno Krajenskie","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30735","name":"Solec Kujawski","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30736","name":"Swiecie","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30737","name":"Szubin","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30738","name":"Torun","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30739","name":"Tuchola","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30740","name":"Wabrzezno","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30741","name":"Wloclawek","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30742","name":"Znin","city_id":"2778","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"is_activated":"1"}, +{"id":"30743","name":"Aleksandrow Lodzki","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30744","name":"Belchatow","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30745","name":"Bratoszewice","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30746","name":"Brzeziny","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30747","name":"Glowno","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30748","name":"Koluszki","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30749","name":"Konstantynow Lodzki","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30750","name":"Kutno","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30751","name":"Lask","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30752","name":"Leczyca","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30753","name":"Lodz","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30754","name":"Lowicz","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30755","name":"Opoczno","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30756","name":"Ozorkow","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30757","name":"Pabianice","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30758","name":"Piotrkow Trybunalski","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30759","name":"Radomsko","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30760","name":"Rawa Mazowiecka","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30761","name":"Sieradz","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30762","name":"Skierniewice","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30763","name":"Tomaszow Mazowiecki","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30764","name":"Tuszyn","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30765","name":"Wielun","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30766","name":"Zdunska Wola","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30767","name":"Zgierz","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30768","name":"Zychlin","city_id":"2779","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30769","name":"Biala Podlaska","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30770","name":"Bilgoraj","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30771","name":"Chelm","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30772","name":"Deblin","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30773","name":"Hrubieszow","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30774","name":"Janow Lubelski","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30775","name":"Krasnik","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30776","name":"Krasnystaw","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30777","name":"Leczna","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30778","name":"Lubartow","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30779","name":"Lublin","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30780","name":"Lukow","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30781","name":"Miedzyrzec Podlaski","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30782","name":"Opole Lubelskie","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30783","name":"Parczew","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30784","name":"Poniatowa","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30785","name":"Pulawy","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30786","name":"Radzyn Podlaski","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30787","name":"Ryki","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30788","name":"Swidnik","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30789","name":"Tomaszow Lubelski","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30790","name":"Wlodawa","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30791","name":"Zamosc","city_id":"2780","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30792","name":"Drezdenko","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30793","name":"Gorzow Wielkopolski","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30794","name":"Gubin","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30795","name":"Kostrzyn","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30796","name":"Kozuchow","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30797","name":"Krosno Odrzanskie","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30798","name":"Lubsko","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30799","name":"Miedzyrzecz","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30800","name":"Nowa Sol","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30801","name":"Skwierzyna","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30802","name":"Slubice","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30803","name":"Strzelce Krajenskie","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30804","name":"Sulechow","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30805","name":"Sulecin","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30806","name":"Swiebodzin","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30807","name":"Szprotawa","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30808","name":"Wschowa","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30809","name":"Zagan","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30810","name":"Zary","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30811","name":"Zielona Gora","city_id":"2781","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30812","name":"Malomice","city_id":"2782","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30813","name":"Andrychow","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30814","name":"Bochnia","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30815","name":"Brzesko","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30816","name":"Brzeszcze","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30817","name":"Bukowno","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30818","name":"Chelmek","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30819","name":"Chrzanow","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30820","name":"Dabrowa Tarnowska","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30821","name":"Gorlice","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30822","name":"Kety","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30823","name":"Krakow","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30824","name":"Krynica","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30825","name":"Krzeszowice","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30826","name":"Libiaz","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30827","name":"Limanowa","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30828","name":"Miechow","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30829","name":"Myslenice","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30830","name":"Nowy Sacz","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30831","name":"Nowy Targ","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30832","name":"Olkusz","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30833","name":"Oswiecim","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30834","name":"Poronin","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30835","name":"Rabka","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30836","name":"Skawina","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30837","name":"Stary Sacz","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30838","name":"Sucha Beskidzka","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30839","name":"Tarnow","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30840","name":"Trzebinia","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30841","name":"Wadowice","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30842","name":"Wieliczka","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30843","name":"Wolbrom","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30844","name":"Zakopane","city_id":"2783","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30845","name":"Blonie","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30846","name":"Brwinow","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30847","name":"Ciechanow","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30848","name":"Garwolin","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30849","name":"Gora Kalwaria","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30850","name":"Gostynin","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30851","name":"Grodzisk Mazowiecki","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30852","name":"Grojec","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30853","name":"Jozefow","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30854","name":"Karczew","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30855","name":"Kobylka","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30856","name":"Konstancin-Jeziorna","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30857","name":"Kozienice","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30858","name":"Legionowo","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30859","name":"Lomianki","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30860","name":"Makow Mazowiecki","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30861","name":"Marki","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30862","name":"Milanowek","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30863","name":"Minsk Mazowiecki","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30864","name":"Mlawa","city_id":"2784","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"is_activated":"1"}, +{"id":"30865","name":"Nowy Dwor Mazowiecki","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30866","name":"Ostroleka","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30867","name":"Ostrow Mazowiecka","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30868","name":"Otwock","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30869","name":"Piaseczno","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30870","name":"Piastow","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30871","name":"Pionki","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30872","name":"Plock","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30873","name":"Plonsk","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30874","name":"Pruszkow","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30875","name":"Przasnysz","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30876","name":"Pultusk","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30877","name":"Radom","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30878","name":"Siedlce","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30879","name":"Sierpc","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30880","name":"Sochaczew","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30881","name":"Sokolow Podlaski","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30882","name":"Sulejowek","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30883","name":"Szydlowiec","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30884","name":"Warka","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30885","name":"Warszawa","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30886","name":"Wegrow","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30887","name":"Wesola","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30888","name":"Wolomin","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30889","name":"Wyszkow","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30890","name":"Zabki","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30891","name":"Zielonka","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30892","name":"Zyrardow","city_id":"2784","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30893","name":"Dlugoteka","city_id":"2785","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30894","name":"Brzeg","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30895","name":"Glubczyce","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30896","name":"Glucholazy","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30897","name":"Grodkow","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30898","name":"Kedzierzyn-Kozle","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30899","name":"Kluczbork","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30900","name":"Krapkowice","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30901","name":"Namyslow","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30902","name":"Niemodlin","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30903","name":"Nysa","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30904","name":"Olesno","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30905","name":"Opole","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30906","name":"Ozimek","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30907","name":"Prudnik","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30908","name":"Strzelce Opolskie","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30909","name":"Zawadzkie","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30910","name":"Zdzieszowice","city_id":"2786","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30911","name":"Cmielow","city_id":"2787","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30912","name":"Debica","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30913","name":"Jaroslaw","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30914","name":"Jaslo","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30915","name":"Krosno","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30916","name":"Lancut","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30917","name":"Lezajsk","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30918","name":"Lubaczow","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30919","name":"Mielec","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30920","name":"Nisko","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30921","name":"Nowa Deba","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30922","name":"Przemysl","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30923","name":"Przeworsk","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30924","name":"Ropczyce","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30925","name":"Rzeszow","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30926","name":"Sanok","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30927","name":"Stalowa Wola","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30928","name":"Tarnobrzeg","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30929","name":"Ustrzyki Dolne","city_id":"2788","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30930","name":"Augustow","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30931","name":"Bialystok","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30932","name":"Bielsk Podlaski","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30933","name":"Czarna Bialostocka","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30934","name":"Grajewo","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30935","name":"Hajnowka","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30936","name":"Kolno","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30937","name":"Lapy","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30938","name":"Lomza","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30939","name":"Monki","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30940","name":"Siemiatycze","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30941","name":"Sokolka","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30942","name":"Suwalki","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30943","name":"Wysokie Mazowieckie","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30944","name":"Zambrow","city_id":"2789","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30945","name":"Bogumilowice","city_id":"2790","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30946","name":"Bytow","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30947","name":"Chojnice","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30948","name":"Czersk","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30949","name":"Czluchow","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30950","name":"Gdansk","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30951","name":"Gdynia","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30952","name":"Kartuzy","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30953","name":"Koscierzyna","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30954","name":"Kwidzyn","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30955","name":"Lebork","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30956","name":"Malbork","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30957","name":"Miastko","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30958","name":"Nowy Dwor Gdanski","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30959","name":"Pruszcz Gdanski","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30960","name":"Puck","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30961","name":"Reda","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30962","name":"Rumia","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30963","name":"Slupsk","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30964","name":"Starogard Gdanski","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30965","name":"Sztum","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30966","name":"Tczew","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30967","name":"Ustka","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30968","name":"Wejherowo","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30969","name":"Wladyslawowo","city_id":"2791","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"is_activated":"1"}, +{"id":"30970","name":"Komorniki","city_id":"2792","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30971","name":"Steszew","city_id":"2792","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30972","name":"Raszyn","city_id":"2793","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30973","name":"Rymanowska","city_id":"2794","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30974","name":"Glogow Malopolski","city_id":"2795","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30975","name":"Bedzin","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30976","name":"Bielsko-Biala","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30977","name":"Bierun","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30978","name":"Blachowania","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30979","name":"Bytom","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30980","name":"Chorzow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30981","name":"Cieszyn","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30982","name":"Czechowice-Dziedzice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30983","name":"Czeladz","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30984","name":"Czerwionka-Leszczyny","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30985","name":"Czestochowa","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30986","name":"Dabrowa Gornicza","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30987","name":"Gliwice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30988","name":"Jastrzebie-Zdroj","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30989","name":"Jaworzno","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30990","name":"Kalety","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30991","name":"Katowice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30992","name":"Klobuck","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30993","name":"Knurow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30994","name":"Laziska Gorne","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30995","name":"Ledziny","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30996","name":"Lubliniec","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30997","name":"Mikolow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30998","name":"Myslowice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"30999","name":"Myszkow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31000","name":"Orzesze","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31001","name":"Piekary Slaskie","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31002","name":"Poreba","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31003","name":"Pszczyna","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31004","name":"Pszow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31005","name":"Pyskowice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31006","name":"Raciborz","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31007","name":"Radlin","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31008","name":"Radzionkow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31009","name":"Ruda Slaska","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31010","name":"Rybnik","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31011","name":"Rydultowy","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31012","name":"Siemianowice Slaskie","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31013","name":"Skoczow","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31014","name":"Sosnowiec","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31015","name":"Swietochlowice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31016","name":"Tarnowskie Gory","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31017","name":"Tychy","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31018","name":"Ustron","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31019","name":"Wisla","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31020","name":"Wodzislaw Slaski","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31021","name":"Wojkowice","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31022","name":"Zabrze","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31023","name":"Zawiercie","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31024","name":"Zory","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31025","name":"Zywiec","city_id":"2796","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31026","name":"Busko-Zdroj","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31027","name":"Jedrzejow","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31028","name":"Kielce","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31029","name":"Konskie","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31030","name":"Ostrowiec Swietokrzyski","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31031","name":"Pinczow","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31032","name":"Polaniec","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31033","name":"Sandomierz","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31034","name":"Skarzysko-Kamienna","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31035","name":"Starachowice","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31036","name":"Staszow","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31037","name":"Suchedniow","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31038","name":"Wloszczowa","city_id":"2798","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31039","name":"Bartoszyce","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31040","name":"Biskupiec","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31041","name":"Braniewo","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31042","name":"Dobre Miasto","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31043","name":"Dzialdowo","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31044","name":"Elblag","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31045","name":"Elk","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31046","name":"Gizycko","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31047","name":"Goldap","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31048","name":"Ilawa","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31049","name":"Ketrzyn","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31050","name":"Lidzbark Warminski","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31051","name":"Lubawa","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31052","name":"Morag","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31053","name":"Mragowo","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31054","name":"Nidzica","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31055","name":"Nowe Miasto Lubawskie","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31056","name":"Olecko","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31057","name":"Olsztyn","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31058","name":"Orneta","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31059","name":"Ostroda","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31060","name":"Paslek","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31061","name":"Pisz","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31062","name":"Szczytno","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31063","name":"Wegorzewo","city_id":"2799","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31064","name":"Nadarzyn","city_id":"2800","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31065","name":"Szemud","city_id":"2800","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31066","name":"Warsaw","city_id":"2800","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31067","name":"Goscicino","city_id":"2801","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"is_activated":"1"}, +{"id":"31068","name":"Chodziez","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31069","name":"Czarnkow","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31070","name":"Gniezno","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31071","name":"Gostyn","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31072","name":"Grodzisk Wielkopolski","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31073","name":"Jarocin","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31074","name":"Kalisz","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31075","name":"Kepno","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31076","name":"Kolo","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31077","name":"Konin","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31078","name":"Koscian","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31079","name":"Krotoszyn","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31080","name":"Leszno","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31081","name":"Lubon","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31082","name":"Miedzychod","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31083","name":"Mosina","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31084","name":"Murowana Goslina","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31085","name":"Nowy Tomysl","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31086","name":"Oborniki","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31087","name":"Opalenica","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31088","name":"Ostrow Wielkopolski","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31089","name":"Ostrzeszow","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31090","name":"Pila","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31091","name":"Pleszew","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31092","name":"Poznan","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31093","name":"Rawicz","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31094","name":"Rogozno","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31095","name":"Slupca","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31096","name":"Srem","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31097","name":"Sroda Wielkopolska","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31098","name":"Swarzedz","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31099","name":"Szamotuly","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31100","name":"Trzcianka","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31101","name":"Tuliszkow","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31102","name":"Turek","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31103","name":"Wagrowiec","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31104","name":"Wolsztyn","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31105","name":"Wronki","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31106","name":"Wrzesnia","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31107","name":"Zlotow","city_id":"2802","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31108","name":"Borowa","city_id":"2803","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31109","name":"Barlinek","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31110","name":"Bialogard","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31111","name":"Choszczno","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31112","name":"Darlowo","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31113","name":"Debno","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31114","name":"Drawsko Pomorskie","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31115","name":"Goleniow","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31116","name":"Gryfice","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31117","name":"Gryfino","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31118","name":"Kamien Pomorski","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31119","name":"Kolobrzeg","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31120","name":"Koszalin","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31121","name":"Lobez","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31122","name":"Mysliborz","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31123","name":"Nowogard","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31124","name":"Polczyn-Zdroj","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31125","name":"Police","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31126","name":"Pyrzyce","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31127","name":"Slawno","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31128","name":"Stargard Szczecinski","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31129","name":"Swidwin","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31130","name":"Swinoujscie","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31131","name":"Szczecin","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31132","name":"Szczecinek","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31133","name":"Trzebiatow","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31134","name":"Walcz","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31135","name":"Zlocieniec","city_id":"2804","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31136","name":"Zukowskie","city_id":"2805","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31137","name":"Tramagal","city_id":"2806","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31138","name":"Angra","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31139","name":"Arrifes","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31140","name":"Faja de Baixo","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31141","name":"Horta","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31142","name":"Lagoa","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31143","name":"Ponta Delgada","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31144","name":"Praia da Vitoria","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31145","name":"Rabo de Peixe","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31146","name":"Ribeira Grande","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31147","name":"Rosto do Cao","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31148","name":"Vila Franca do Campo","city_id":"2807","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31149","name":"Alcacer do Sal","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31150","name":"Aljustrel","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31151","name":"Beja","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31152","name":"Caia e Sao Pedro","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31153","name":"Castro Verde","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31154","name":"Cercal","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31155","name":"Elvas","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31156","name":"Estremoz","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31157","name":"Evora","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31158","name":"Ferreira do Alentejo","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31159","name":"Grandola","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31160","name":"Montemor-o-Novo","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31161","name":"Moura","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31162","name":"Odemira","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31163","name":"Ponte de Sor","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31164","name":"Portalegre","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31165","name":"Redondo","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31166","name":"Reguengos de Monsaraz","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31167","name":"Santiago do Cacem","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31168","name":"Santo Andre","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31169","name":"Sao Teotonio","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31170","name":"Serpa","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31171","name":"Sines","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31172","name":"Vendas Novas","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31173","name":"Vila Nova de Milfontes","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31174","name":"Vila Vicosa","city_id":"2808","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31175","name":"Albufeira","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31176","name":"Aljezur","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31177","name":"Almancil","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31178","name":"Alvor","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31179","name":"Armacao de Pera","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31180","name":"Boliqueime","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31181","name":"Castro Marim","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31182","name":"Estombar","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31183","name":"Faro","city_id":"2809","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"is_activated":"1"}, +{"id":"31184","name":"Ferreiras","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31185","name":"Guia","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31186","name":"Loule","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31187","name":"Luz","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31188","name":"Moncarapacho","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31189","name":"Monchique","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31190","name":"Monte Gordo","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31191","name":"Olhao","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31192","name":"Portimao","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31193","name":"Quarteira","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31194","name":"Santa Barbara de Nexe","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31195","name":"Sao Bartolomeu de Messines","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31196","name":"Sao Bras de Alportel","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31197","name":"Silves","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31198","name":"Tavira","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31199","name":"Vila Real de Santo Antonio","city_id":"2809","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31200","name":"Fafe","city_id":"2810","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31201","name":"Forjaes","city_id":"2810","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31202","name":"Vianna do Castello","city_id":"2810","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31203","name":"Abraveses","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31204","name":"Aguada de Cima","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31205","name":"Agueda","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31206","name":"Albergaria-A-Velha","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31207","name":"Alcains","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31208","name":"Alhadas","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31209","name":"Amor","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31210","name":"Aradas","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31211","name":"Arazede","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31212","name":"Arcos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31213","name":"Arganil","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31214","name":"Avanca","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31215","name":"Aveiro","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31216","name":"Beduido","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31217","name":"Branca","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31218","name":"Buarcos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31219","name":"Campo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31220","name":"Caranguejeira","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31221","name":"Castanheira de Pera","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31222","name":"Castelo Branco","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31223","name":"Castro Daire","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31224","name":"Coimbra","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31225","name":"Condeixa-A-Nova","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31226","name":"Cortegaca","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31227","name":"Covilha","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31228","name":"Eixo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31229","name":"Esmoriz","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31230","name":"Figueira da Foz","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31231","name":"Fundao","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31232","name":"Gafanha da Encarnacao","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31233","name":"Gafanha da Nazare","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31234","name":"Guarda","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31235","name":"Ilhavo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31236","name":"Lavos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31237","name":"Leiria","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31238","name":"Lorvao","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31239","name":"Lourical","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31240","name":"Lousa","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31241","name":"Maceira","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31242","name":"Mangualde","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31243","name":"Marinha Grande","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31244","name":"Mealhada","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31245","name":"Mira de Aire","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31246","name":"Miranda do Corvo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31247","name":"Monte Redondo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31248","name":"Nelas","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31249","name":"Oia","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31250","name":"Oliveira do Bairro","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31251","name":"Oliveira do Hospital","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31252","name":"Oliveirinha","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31253","name":"Ovar","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31254","name":"Pampilhosa","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31255","name":"Pardilho","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31256","name":"Poiares","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31257","name":"Porto de Mos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31258","name":"Proenca-A-Nova","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31259","name":"Rio de Loba","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31260","name":"Salreu","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31261","name":"Sangalhos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31262","name":"Santa Catarina da Serra","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31263","name":"Sao Pedro do Sul","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31264","name":"Satao","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31265","name":"Seia","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31266","name":"Serta","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31267","name":"Souto da Carpalhosa","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31268","name":"Tavarede","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31269","name":"Teixoso","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31270","name":"Tondela","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31271","name":"Tortosendo","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31272","name":"Vagos","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31273","name":"Valega","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31274","name":"Valongo do Vouga","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31275","name":"Vieira de Leiria","city_id":"2811","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31276","name":"Camacha","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31277","name":"Camara de Lobos","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31278","name":"Campanario","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31279","name":"Canico","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31280","name":"Funchal","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31281","name":"Machico","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31282","name":"Ponta do Sol","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31283","name":"Porto Santo","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31284","name":"Ribeira Brava","city_id":"2817","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31285","name":"A Ver-o-Mar","city_id":"2818","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31286","name":"Adaufe","city_id":"2818","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31287","name":"Aguas Santas","city_id":"2818","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31288","name":"Agucadoura","city_id":"2818","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31289","name":"Alfena","city_id":"2818","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"is_activated":"1"}, +{"id":"31290","name":"Alpendurada e Matos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31291","name":"Antas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31292","name":"Apulia","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31293","name":"Arcozelo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31294","name":"Areosa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31295","name":"Argoncilhe","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31296","name":"Aroes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31297","name":"Arrifana","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31298","name":"Arvore","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31299","name":"Aves","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31300","name":"Avintes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31301","name":"Baguim do Monte","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31302","name":"Baltar","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31303","name":"Barrosas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31304","name":"Bougado","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31305","name":"Braga","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31306","name":"Brito","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31307","name":"Caldas de Vizela","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31308","name":"Caldelas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31309","name":"Calendario","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31310","name":"Candoso","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31311","name":"Canedo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31312","name":"Canelas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31313","name":"Canidelo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31314","name":"Carvalhosa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31315","name":"Casteloes de Cepeda","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31316","name":"Chaves","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31317","name":"Coronado","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31318","name":"Couto","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31319","name":"Custoias","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31320","name":"Darque","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31321","name":"Ermesinde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31322","name":"Espinho","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31323","name":"Fanzeres","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31324","name":"Feira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31325","name":"Ferreira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31326","name":"Ferreiros","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31327","name":"Fiaes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31328","name":"Figueiro","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31329","name":"Foz do Sousa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31330","name":"Frazao","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31331","name":"Freamunde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31332","name":"Galegos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31333","name":"Gandra","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31334","name":"Gemunde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31335","name":"Godim","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31336","name":"Gondomar","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31337","name":"Grijo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31338","name":"Gueifaes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31339","name":"Guifoes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31340","name":"Guimaraes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31341","name":"Gulpilhares","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31342","name":"Joane","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31343","name":"Jovim","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31344","name":"Lamego","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31345","name":"Lavra","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31346","name":"Leca da Palmeira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31347","name":"Leca do Bailio","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31348","name":"Lobao","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31349","name":"Lordelo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31350","name":"Lourosa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31351","name":"Lustosa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31352","name":"Macedo de Cavaleiros","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31353","name":"Macieira de Cambra","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31354","name":"Madalena","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31355","name":"Maia","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31356","name":"Margaride","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31357","name":"Marinhas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31358","name":"Matosinhos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31359","name":"Meadela","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31360","name":"Meinedo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31361","name":"Milheiros","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31362","name":"Milheiros de Poiares","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31363","name":"Mirandela","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31364","name":"Mogadouro","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31365","name":"Moreira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31366","name":"Moreira de Conegos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31367","name":"Mozelos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31368","name":"Negrelos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31369","name":"Nogueira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31370","name":"Nogueira da Regedoura","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31371","name":"Olival","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31372","name":"Oliveira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31373","name":"Oliveira de Azemeis","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31374","name":"Oliveira do Douro","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31375","name":"Pacos de Brandao","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31376","name":"Pacos de Ferreira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31377","name":"Pedroso","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31378","name":"Pedroucos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31379","name":"Penafiel","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31380","name":"Perafita","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31381","name":"Perozinho","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31382","name":"Peso da Regua","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31383","name":"Ponte","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31384","name":"Povoa de Lanhoso","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31385","name":"Povoa de Varzim","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31386","name":"Real","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31387","name":"Rebordosa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31388","name":"Recarei","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31389","name":"Refojos de Basto","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31390","name":"Rio Meao","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31391","name":"Ronfe","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31392","name":"Sande","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31393","name":"Sandim","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31394","name":"Santa Cruz do Bispo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31395","name":"Santa Maria de Lamas","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31396","name":"Santiago da Riba-Ul","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31397","name":"Santo Tirso","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31398","name":"Sao Felix da Marinha","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31399","name":"Sao Joao da Madeira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31400","name":"Sao Joao de Ver","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31401","name":"Sao Mamede de Infesta","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31402","name":"Sao Pedro da Cova","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31403","name":"Sao Pedro de Casteloes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31404","name":"Sao Roque","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31405","name":"Selho","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31406","name":"Senhora da Hora","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31407","name":"Seroa","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31408","name":"Serzedelo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31409","name":"Serzedo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31410","name":"Silvalde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31411","name":"Sobrado","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31412","name":"Sobreira","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31413","name":"Souto","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31414","name":"Teloes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31415","name":"Urgezes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31416","name":"Valadares","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31417","name":"Valbom","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31418","name":"Valongo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31419","name":"Valpacos","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31420","name":"Viana do Castelo","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31421","name":"Vila Cha","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31422","name":"Vila Frescainha","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31423","name":"Vila Nova da Telha","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31424","name":"Vila Nova de Famalicao","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31425","name":"Vila Nova de Gaia","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31426","name":"Vila Praia de Ancora","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31427","name":"Vila Real","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31428","name":"Vila Verde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31429","name":"Vila de Cucujaes","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31430","name":"Vila de Prado","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31431","name":"Vila do Conde","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31432","name":"Vilar de Andorinho","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31433","name":"Vilar do Paraiso","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31434","name":"Vilarinho","city_id":"2818","created_at":"2024-01-21 12:45:53","updated_at":"2024-01-21 12:45:53","translations":null,"is_activated":"1"}, +{"id":"31435","name":"Vilela","city_id":"2818","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31436","name":"Vizela","city_id":"2818","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31437","name":"Paivas","city_id":"2819","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31438","name":"Arecibo","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31439","name":"Barceloneta","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31440","name":"Camuy","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31441","name":"Dorado","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31442","name":"Isabela","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31443","name":"Vega Alta","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31444","name":"Vega Baja","city_id":"2820","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31445","name":"Bayamon","city_id":"2821","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31446","name":"Catano","city_id":"2821","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31447","name":"Guaynabo","city_id":"2821","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31448","name":"Levittown","city_id":"2821","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31449","name":"Canovanas","city_id":"2822","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31450","name":"Trujillo Alto","city_id":"2822","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31451","name":"Aibonito","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31452","name":"Arroyo","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31453","name":"Barranquitas","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31454","name":"Cayey","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31455","name":"Coamo","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31456","name":"Guayama","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31457","name":"Juana Diaz","city_id":"2824","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31458","name":"Aguas Buenas","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31459","name":"Caguas","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31460","name":"Culebra","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31461","name":"Fajardo","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31462","name":"Gurabo","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31463","name":"Humacao","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31464","name":"Juncos","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31465","name":"Vieques","city_id":"2825","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31466","name":"Aguadilla","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31467","name":"Anasco","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31468","name":"Cabo Rojo","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31469","name":"Hormigueros","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31470","name":"Mayaguez","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31471","name":"San German","city_id":"2826","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31472","name":"Adjuntas","city_id":"2827","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31473","name":"Guanica","city_id":"2827","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31474","name":"Ponce","city_id":"2827","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31475","name":"Utuado","city_id":"2827","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31476","name":"Yauco","city_id":"2827","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31477","name":"Doha","city_id":"2829","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31478","name":"Umm Bab","city_id":"2830","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31479","name":"al-Ghuwayriyah","city_id":"2833","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31480","name":"Dukhan","city_id":"2834","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31481","name":"al-Jumayliyah","city_id":"2834","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31482","name":"al-Khawr","city_id":"2835","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31483","name":"Musay id","city_id":"2836","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31484","name":"al-Wakrah","city_id":"2836","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31485","name":"al-Wukayr","city_id":"2836","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31486","name":"ar-Rayyan","city_id":"2837","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31487","name":"ash-Shahaniyah","city_id":"2837","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"is_activated":"1"}, +{"id":"31488","name":"ar-Ruways","city_id":"2104","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31489","name":"Bras-Panon","city_id":"2838","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31490","name":"Saint-Andre","city_id":"2838","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31491","name":"Saint-Benoit","city_id":"2838","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31492","name":"Salazie","city_id":"2838","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31493","name":"La Possession","city_id":"2839","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31494","name":"Le Port","city_id":"2839","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31495","name":"Sainte-Suzanne","city_id":"2839","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31496","name":"L Etang-Sale","city_id":"2840","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31497","name":"Les Aviron","city_id":"2840","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31498","name":"Les Trois-Bassins","city_id":"2840","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31499","name":"Saint-Leu","city_id":"2840","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31500","name":"Saint-Paul","city_id":"2840","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31501","name":"Cilaos","city_id":"2332","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31502","name":"Entre-Deux","city_id":"2332","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31503","name":"Le Tampon","city_id":"2332","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31504","name":"Petite-Ile","city_id":"2332","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31505","name":"Saint-Philippe","city_id":"2332","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31506","name":"Abrud","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31507","name":"Aiud","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31508","name":"Alba Iulia","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31509","name":"Albac","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31510","name":"Almasu Mare","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31511","name":"Arieseni","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31512","name":"Avram Iancu","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31513","name":"Baia de Aries","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31514","name":"Berghin","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31515","name":"Bistra","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31516","name":"Blaj","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31517","name":"Blandiana","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31518","name":"Bucium","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31519","name":"Calnic","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31520","name":"Campeni","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31521","name":"Cenade","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31522","name":"Cergau","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31523","name":"Ceru-Bacainti","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31524","name":"Cetatea de Balta","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31525","name":"Ciugud","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31526","name":"Ciuruleasa","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31527","name":"Craciunelu de Jos","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31528","name":"Cricau","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31529","name":"Cugir","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31530","name":"Daia Romana","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31531","name":"Dostat","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31532","name":"Farau","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31533","name":"Galda de Jos","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31534","name":"Garbova","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31535","name":"Garda de Sus","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31536","name":"Hoparta","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31537","name":"Horea","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31538","name":"Ighiu","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31539","name":"Intregalde","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31540","name":"Jidvei","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31541","name":"Livezile","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31542","name":"Lopadea Noua","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31543","name":"Lunca Muresului","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31544","name":"Lupsa","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31545","name":"Metes","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31546","name":"Mihalt","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31547","name":"Miraslau","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31548","name":"Mogos","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31549","name":"Noslac","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31550","name":"Ocna Mures","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31551","name":"Ocolis","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31552","name":"Ohaba","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31553","name":"Pianu","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31554","name":"Poiana Vadului","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31555","name":"Ponor","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31556","name":"Posaga","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31557","name":"Radesti","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31558","name":"Ramet","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31559","name":"Rimetea","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31560","name":"Rosia Montana","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31561","name":"Rosia de Secas","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31562","name":"Salciua","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31563","name":"Salistea","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31564","name":"Sancel","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31565","name":"Santimbru","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31566","name":"Sasciori","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31567","name":"Scarisoara","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31568","name":"Sebes","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31569","name":"Sibot","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31570","name":"Sohodol","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31571","name":"Spring","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31572","name":"Stremt","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31573","name":"Sugag","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31574","name":"Teius","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31575","name":"Unirea","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31576","name":"Vadu Motilor","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31577","name":"Valea Lunga","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31578","name":"Vidra","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31579","name":"Vintu de Jos","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31580","name":"Zlatna","city_id":"2841","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31581","name":"Almas","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31582","name":"Apateu","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31583","name":"Arad","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31584","name":"Archis","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31585","name":"Barsa","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31586","name":"Barzava","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31587","name":"Beliu","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31588","name":"Birchis","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31589","name":"Bocsig","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31590","name":"Brazii","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31591","name":"Buteni","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31592","name":"Carand","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31593","name":"Cermei","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31594","name":"Chisindia","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31595","name":"Chisineu Cris","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31596","name":"Conop","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31597","name":"Covasint","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31598","name":"Craiva","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31599","name":"Curtici","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31600","name":"Dezna","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31601","name":"Dieci","city_id":"2842","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"is_activated":"1"}, +{"id":"31602","name":"Dorgos","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31603","name":"Fantanele","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31604","name":"Felnac","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31605","name":"Ghioroc","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31606","name":"Graniceri","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31607","name":"Gurahont","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31608","name":"Halmagel","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31609","name":"Halmagiu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31610","name":"Hasmas","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31611","name":"Ignesti","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31612","name":"Ineu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31613","name":"Iratosu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31614","name":"Lipova","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31615","name":"Livada","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31616","name":"Macea","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31617","name":"Masca","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31618","name":"Moneasa","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31619","name":"Nadlac","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31620","name":"Olari","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31621","name":"Pancota","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31622","name":"Paulis","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31623","name":"Pecica","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31624","name":"Peregu Mare","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31625","name":"Petris","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31626","name":"Pilu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31627","name":"Plescuta","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31628","name":"Sagu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31629","name":"Savarsin","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31630","name":"Sebis","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31631","name":"Secusigiu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31632","name":"Seitin","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31633","name":"Seleus","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31634","name":"Semlac","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31635","name":"Sepreus","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31636","name":"Sicula","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31637","name":"Silindia","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31638","name":"Simand","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31639","name":"Sintea Mare","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31640","name":"Siria","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31641","name":"Sistarovat","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31642","name":"Socodor","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31643","name":"Sofronea","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31644","name":"Tarnova","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31645","name":"Taut","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31646","name":"Varadia de Mures","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31647","name":"Varfurile","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31648","name":"Vinga","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31649","name":"Vladimirescu","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31650","name":"Zabrani","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31651","name":"Zerind","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31652","name":"Zimandu Nou","city_id":"2842","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31653","name":"Albesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31654","name":"Albestii-Pamanteni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31655","name":"Albota","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31656","name":"Aninoasa","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31657","name":"Arefu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31658","name":"Baiculesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31659","name":"Balilesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31660","name":"Barla","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31661","name":"Bascov","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31662","name":"Beleti-Negresti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31663","name":"Berevoesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31664","name":"Bogati","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31665","name":"Boteni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31666","name":"Botesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31667","name":"Bradu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31668","name":"Bradulet","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31669","name":"Budeasa","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31670","name":"Bughea de Jos","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31671","name":"Buzoesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31672","name":"Caldararu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31673","name":"Calinesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31674","name":"Campulung","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31675","name":"Cateasca","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31676","name":"Cepari","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31677","name":"Cetateni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31678","name":"Cicanesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31679","name":"Ciofrangeni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31680","name":"Ciomagesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31681","name":"Cocu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31682","name":"Corbeni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31683","name":"Corbi","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31684","name":"Cosesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31685","name":"Costesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31686","name":"Cotmeana","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31687","name":"Cuca","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31688","name":"Curtea de Arges","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31689","name":"Dambovicioara","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31690","name":"Darmanesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31691","name":"Davidesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31692","name":"Dobresti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31693","name":"Domnesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31694","name":"Draganu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31695","name":"Dragoslavele","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31696","name":"Godeni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31697","name":"Harsesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31698","name":"Hartiesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31699","name":"Izvoru","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31700","name":"Leordeni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31701","name":"Leresti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31702","name":"Lunca Corbului","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31703","name":"Malureni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31704","name":"Maracineni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31705","name":"Merisani","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31706","name":"Micesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31707","name":"Mihaesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31708","name":"Mioarele","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31709","name":"Mioveni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31710","name":"Mirosi","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31711","name":"Moraresti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31712","name":"Mosoaia","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31713","name":"Mozaceni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31714","name":"Musatesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31715","name":"Negrasi","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31716","name":"Nucsoara","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31717","name":"Oarja","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31718","name":"Pietrosani","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31719","name":"Pitesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31720","name":"Poenari","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31721","name":"Poiana Lacului","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31722","name":"Popesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31723","name":"Priboieni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31724","name":"Ratesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31725","name":"Recea","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31726","name":"Rociu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31727","name":"Rucar","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31728","name":"Salatrucu","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31729","name":"Sapata","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31730","name":"Schitu-Golesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31731","name":"Stalpeni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31732","name":"Stefan cel Mare","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31733","name":"Stefanesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31734","name":"Stoenesti","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31735","name":"Stolnici","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31736","name":"Suici","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31737","name":"Suseni","city_id":"2843","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"is_activated":"1"}, +{"id":"31738","name":"Teiu","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31739","name":"Tigveni","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31740","name":"Titesti","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31741","name":"Topoloveni","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31742","name":"Uda","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31743","name":"Valea Danului","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31744","name":"Valea Iasului","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31745","name":"Valea Mare-Pravat","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31746","name":"Vedea","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31747","name":"Vladesti","city_id":"2843","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31748","name":"Agas","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31749","name":"Ardeoani","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31750","name":"Asau","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31751","name":"Bacau","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31752","name":"Balcani","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31753","name":"Barsanesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31754","name":"Beresti-Bistrita","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31755","name":"Beresti-Tazlau","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31756","name":"Berzunti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31757","name":"Blagesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31758","name":"Bogdanesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31759","name":"Brusturoasa","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31760","name":"Buhoci","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31761","name":"Buhusi","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31762","name":"Caiuti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31763","name":"Casin","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31764","name":"Cleja","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31765","name":"Colonesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31766","name":"Comanesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31767","name":"Corbasca","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31768","name":"Cotofanesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31769","name":"Damienesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31770","name":"Dealu Morii","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31771","name":"Dofteana","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31772","name":"Faraoani","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31773","name":"Filipeni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31774","name":"Filipesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31775","name":"Gaiceana","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31776","name":"Garleni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31777","name":"Ghimes-Faget","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31778","name":"Glavanesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31779","name":"Gura Vaii","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31780","name":"Helegiu","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31781","name":"Hemeius","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31782","name":"Horgesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31783","name":"Huruesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31784","name":"Izvoru Berheciului","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31785","name":"Letea Veche","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31786","name":"Livezi","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31787","name":"Luizi-Calugara","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31788","name":"Magiresti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31789","name":"Manastirea Casin","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31790","name":"Margineni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31791","name":"Moinesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31792","name":"Motoseni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31793","name":"Negri","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31794","name":"Nicolae Balcescu","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31795","name":"Oituz","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31796","name":"Oncesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31797","name":"Onesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31798","name":"Orbeni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31799","name":"Palanca","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31800","name":"Pancesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31801","name":"Parava","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31802","name":"Pargaresti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31803","name":"Parincea","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31804","name":"Parjol","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31805","name":"Plopana","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31806","name":"Podu Turcului","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31807","name":"Poduri","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31808","name":"Racaciuni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31809","name":"Rachitoasa","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31810","name":"Racova","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31811","name":"Rosiori","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31812","name":"Sanduleni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31813","name":"Sascut","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31814","name":"Saucesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31815","name":"Scorteni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31816","name":"Secuieni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31817","name":"Slanic-Moldova","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31818","name":"Solont","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31819","name":"Stanisesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31820","name":"Strugari","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31821","name":"Targu Ocna","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31822","name":"Targu-Trotus","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31823","name":"Tatarasti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31824","name":"Traian","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31825","name":"Ungureni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31826","name":"Urechesti","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31827","name":"Valea Seaca","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31828","name":"Vultureni","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31829","name":"Zemes","city_id":"2844","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31830","name":"Abram","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31831","name":"Abramut","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31832","name":"Alesd","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31833","name":"Astileu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31834","name":"Auseu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31835","name":"Balc","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31836","name":"Batar","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31837","name":"Beius","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31838","name":"Biharia","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31839","name":"Boianu Mare","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31840","name":"Borod","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31841","name":"Bors","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31842","name":"Bratca","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31843","name":"Brusturi","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31844","name":"Budureasa","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31845","name":"Buduslau","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31846","name":"Bulz","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31847","name":"Buntesti","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31848","name":"Cabesti","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31849","name":"Campani","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31850","name":"Capalna","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31851","name":"Carpinet","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31852","name":"Cefa","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31853","name":"Ceica","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31854","name":"Cetariu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31855","name":"Cherechiu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31856","name":"Chislaz","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31857","name":"Ciuhoiu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31858","name":"Ciumeghiu","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31859","name":"Cociuba Mare","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31860","name":"Copacel","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31861","name":"Cristioru de Jos","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31862","name":"Curatele","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31863","name":"Curtuiseni","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31864","name":"Derna","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31865","name":"Diosig","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31866","name":"Draganesti","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31867","name":"Dragesti","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31868","name":"Finis","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31869","name":"Girisu de Cris","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31870","name":"Hidiselu de Sus","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31871","name":"Holod","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31872","name":"Husasau de Tinca","city_id":"2845","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"is_activated":"1"}, +{"id":"31873","name":"Lazareni","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31874","name":"Lazuri de Beius","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31875","name":"Lugasu de Jos","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31876","name":"Lunca","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31877","name":"Magesti","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31878","name":"Marghita","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31879","name":"Nojorid","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31880","name":"Nucet","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31881","name":"Olcea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31882","name":"Oradea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31883","name":"Osorheiu","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31884","name":"Pietroasa","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31885","name":"Pocola","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31886","name":"Pomezeu","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31887","name":"Rabagani","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31888","name":"Remetea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31889","name":"Rieni","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31890","name":"Rosia","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31891","name":"Sacadat","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31892","name":"Sacueni","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31893","name":"Salacea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31894","name":"Salard","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31895","name":"Salonta","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31896","name":"Sambata","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31897","name":"Sanmartin","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31898","name":"Santandrei","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31899","name":"Sarbi","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31900","name":"Simian","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31901","name":"Sinteu","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31902","name":"Soimi","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31903","name":"Spinus","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31904","name":"Stei","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31905","name":"Suncuius","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31906","name":"Suplacu de Barcau","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31907","name":"Tarcaia","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31908","name":"Tarcea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31909","name":"Tauteu","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31910","name":"Tetchea","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31911","name":"Tileagd","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31912","name":"Tinca","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31913","name":"Tulca","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31914","name":"Uileacu de Beius","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31915","name":"Vadu Crisului","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31916","name":"Valea lui Mihai","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31917","name":"Varciorog","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31918","name":"Vascau","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31919","name":"Viisoara","city_id":"2845","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31920","name":"Beclean","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31921","name":"Bistrita","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31922","name":"Bistrita Bargaului","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31923","name":"Branistea","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31924","name":"Budacu de Jos","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31925","name":"Budesti","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31926","name":"Caianu Mic","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31927","name":"Cetate","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31928","name":"Chiochis","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31929","name":"Chiuza","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31930","name":"Ciceu-Giurgesti","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31931","name":"Cosbuc","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31932","name":"Dumitra","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31933","name":"Feldru","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31934","name":"Galatii Bistritei","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31935","name":"Ilva Mare","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31936","name":"Ilva Mica","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31937","name":"Josenii Bargaului","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31938","name":"Lechinta","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31939","name":"Lesu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31940","name":"Lunca Ilvei","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31941","name":"Magura Ilvei","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31942","name":"Maieru","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31943","name":"Mariselu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31944","name":"Matei","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31945","name":"Micestii de Campie","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31946","name":"Milas","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31947","name":"Nasaud","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31948","name":"Nimigea","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31949","name":"Nuseni","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31950","name":"Parva","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31951","name":"Petru Rares","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31952","name":"Prundu Bargaului","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31953","name":"Rebra","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31954","name":"Rebrisoara","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31955","name":"Rodna","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31956","name":"Romuli","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31957","name":"Salva","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31958","name":"Sangeorz-Bai","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31959","name":"Sanmihaiu de Campie","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31960","name":"Sant","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31961","name":"Sieu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31962","name":"Sieu-Magherus","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31963","name":"Sieu-Odorhei","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31964","name":"Sieut","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31965","name":"Silvasu de Campie","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31966","name":"Sintereag","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31967","name":"Spermezeu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31968","name":"Tarlisua","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31969","name":"Teaca","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31970","name":"Telciu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31971","name":"Tiha Bargaului","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31972","name":"Uriu","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31973","name":"Urmenis","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31974","name":"Zagra","city_id":"2846","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31975","name":"Avrameni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31976","name":"Baluseni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31977","name":"Botosani","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31978","name":"Braesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31979","name":"Broscauti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31980","name":"Bucecea","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31981","name":"Concesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31982","name":"Copalau","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31983","name":"Cordareni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31984","name":"Corlateni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31985","name":"Corni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31986","name":"Cotusca","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31987","name":"Cristesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31988","name":"Cristinesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31989","name":"Curtesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31990","name":"Dangeni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31991","name":"Darabani","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31992","name":"Dersca","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31993","name":"Dobarceni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31994","name":"Dorohoi","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31995","name":"Draguseni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31996","name":"Durnesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31997","name":"Flamanzi","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31998","name":"Frumusica","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"31999","name":"George Enescu","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32000","name":"Gorbanesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32001","name":"Hanesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32002","name":"Havarna","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32003","name":"Hiliseu-Horia","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32004","name":"Hlipiceni","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32005","name":"Hudesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32006","name":"Ibanesti","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32007","name":"Leorda","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32008","name":"Manoleasa","city_id":"2847","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"is_activated":"1"}, +{"id":"32009","name":"Mihail Eminescu","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32010","name":"Mihaileni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32011","name":"Mihalaseni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32012","name":"Mileanca","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32013","name":"Mitoc","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32014","name":"Nicseni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32015","name":"Paltinis","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32016","name":"Pomarla","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32017","name":"Prajeni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32018","name":"Rachiti","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32019","name":"Radauti-Prut","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32020","name":"Rauseni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32021","name":"Ripiceni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32022","name":"Romanesti","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32023","name":"Santa-Maria","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32024","name":"Saveni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32025","name":"Sendriceni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32026","name":"Stauceni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32027","name":"Stiubieni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32028","name":"Suharau","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32029","name":"Sulita","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32030","name":"Todireni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32031","name":"Trusesti","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32032","name":"Tudora","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32033","name":"Unteni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32034","name":"Vaculesti","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32035","name":"Varfu Campului","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32036","name":"Vladeni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32037","name":"Vlasinesti","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32038","name":"Vorniceni","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32039","name":"Vorona","city_id":"2847","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32040","name":"Baraganul","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32041","name":"Bertestii de Jos","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32042","name":"Bordei Verde","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32043","name":"Braila","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32044","name":"Chiscani","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32045","name":"Ciocile","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32046","name":"Ciresu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32047","name":"Dudesti","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32048","name":"Faurei","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32049","name":"Frecatei","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32050","name":"Galbenu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32051","name":"Gemenele","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32052","name":"Gradistea","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32053","name":"Gropeni","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32054","name":"Ianca","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32055","name":"Insuratei","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32056","name":"Jirlau","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32057","name":"Marasu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32058","name":"Maxineni","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32059","name":"Mircea Voda","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32060","name":"Movila Miresei","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32061","name":"Racovita","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32062","name":"Ramnicelu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32063","name":"Romanu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32064","name":"Salcia Tudor","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32065","name":"Scortaru Nou","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32066","name":"Silistea","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32067","name":"Stancuta","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32068","name":"Surdila-Gaiseanca","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32069","name":"Surdila-Greci","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32070","name":"Sutesti","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32071","name":"Tichilesti","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32072","name":"Tudor Vladimirescu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32073","name":"Tufesti","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32074","name":"Ulmu","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32075","name":"Vadeni","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32076","name":"Visani","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32077","name":"Viziru","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32078","name":"Zavoaia","city_id":"2848","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32079","name":"Apata","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32080","name":"Bod","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32081","name":"Bran","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32082","name":"Brasov","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32083","name":"Budila","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32084","name":"Bunesti","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32085","name":"Cata","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32086","name":"Cincu","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32087","name":"Codlea","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32088","name":"Comana","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32089","name":"Cristian","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32090","name":"Dumbravita","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32091","name":"Fagaras","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32092","name":"Feldioara","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32093","name":"Fundata","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32094","name":"Ghimbav","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32095","name":"Halchiu","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32096","name":"Harman","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32097","name":"Harseni","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32098","name":"Hoghiz","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32099","name":"Homorod","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32100","name":"Jibert","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32101","name":"Lisa","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32102","name":"Maierus","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32103","name":"Moeciu","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32104","name":"Ormenis","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32105","name":"Parau","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32106","name":"Poiana Marului","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32107","name":"Predeal","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32108","name":"Prejmer","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32109","name":"Racos","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32110","name":"Rasnov","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32111","name":"Rupea","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32112","name":"Sacele","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32113","name":"Sanpetru","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32114","name":"Sercaia","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32115","name":"Sinca","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32116","name":"Soars","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32117","name":"Tarlungeni","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32118","name":"Teliu","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32119","name":"Ticusul","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32120","name":"Ucea","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32121","name":"Ungra","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32122","name":"Vama Buzaului","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32123","name":"Vistea","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32124","name":"Voila","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32125","name":"Zarnesti","city_id":"2849","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"is_activated":"1"}, +{"id":"32126","name":"Bucharest","city_id":"2850","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32127","name":"Bucuresti","city_id":"2850","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32128","name":"Balaceanu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32129","name":"Balta Alba","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32130","name":"Beceni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32131","name":"Berca","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32132","name":"Bisoca","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32133","name":"Blajani","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32134","name":"Boldu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32135","name":"Bozioru","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32136","name":"Bradeanu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32137","name":"Breaza","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32138","name":"Buda","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32139","name":"Buzau","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32140","name":"Calvini","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32141","name":"Canesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32142","name":"Catina","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32143","name":"Cernatesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32144","name":"Chiliile","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32145","name":"Chiojdu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32146","name":"Cilibia","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32147","name":"Cislau","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32148","name":"Cochirleanca","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32149","name":"Colti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32150","name":"Constantin Rosetti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32151","name":"Cozieni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32152","name":"Galbinasi","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32153","name":"Gheraseni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32154","name":"Ghergheasa","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32155","name":"Glodeanu-Silistea","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32156","name":"Glodeanul Sarat","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32157","name":"Grebanu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32158","name":"Gura Teghii","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32159","name":"Largu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32160","name":"Lopatari","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32161","name":"Luciu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32162","name":"Manzalesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32163","name":"Margaritesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32164","name":"Merei","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32165","name":"Mihailesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32166","name":"Movila Banului","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32167","name":"Murgesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32168","name":"Naeni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32169","name":"Nehoiu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32170","name":"Odaile","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32171","name":"Padina","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32172","name":"Panatau","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32173","name":"Pardosi","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32174","name":"Parscov","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32175","name":"Patarlagele","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32176","name":"Pietroasele","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32177","name":"Podgoria","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32178","name":"Pogoanele","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32179","name":"Posta Calnau","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32180","name":"Puiesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32181","name":"Racoviteni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32182","name":"Ramnicu Sarat","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32183","name":"Robeasca","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32184","name":"Rusetu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32185","name":"Sageata","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32186","name":"Sahateni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32187","name":"Sapoca","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32188","name":"Sarulesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32189","name":"Scortoasa","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32190","name":"Scutelnici","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32191","name":"Siriu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32192","name":"Smeeni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32193","name":"Stalpu","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32194","name":"Tintesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32195","name":"Tisau","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32196","name":"Topliceni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32197","name":"Ulmeni","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32198","name":"Vadu Pasii","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32199","name":"Valcelele","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32200","name":"Valea Ramnicului","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32201","name":"Valea Salciei","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32202","name":"Vernesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32203","name":"Vintila Voda","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32204","name":"Viperesti","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32205","name":"Ziduri","city_id":"2851","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32206","name":"Alexandru Odobescu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32207","name":"Belciugatele","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32208","name":"Borcea","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32209","name":"Cascioarele","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32210","name":"Chirnogi","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32211","name":"Chiselet","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32212","name":"Ciocanesti","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32213","name":"Curcani","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32214","name":"Cuza Voda","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32215","name":"Dichiseni","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32216","name":"Dor Marunt","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32217","name":"Dorobantu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32218","name":"Dragalina","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32219","name":"Dragos Voda","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32220","name":"Frasinet","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32221","name":"Frumusani","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32222","name":"Fundeni","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32223","name":"Fundulea","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32224","name":"Gurbanesti","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32225","name":"Ileana","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32226","name":"Independenta","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32227","name":"Jegalia","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32228","name":"Lehliu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32229","name":"Lehliu-Gara","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32230","name":"Luica","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32231","name":"Lupsanu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32232","name":"Manastirea","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32233","name":"Mitreni","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32234","name":"Modelu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32235","name":"Nana","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32236","name":"Oltenita","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32237","name":"Perisoru","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32238","name":"Plataresti","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32239","name":"Radovanu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32240","name":"Roseti","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32241","name":"Sohatu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32242","name":"Soldanu","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32243","name":"Spantov","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32244","name":"Stefan Voda","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32245","name":"Tamadau Mare","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32246","name":"Valea Argovei","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32247","name":"Vasilati","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32248","name":"Vlad Tepes","city_id":"2852","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32249","name":"Anina","city_id":"2853","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32250","name":"Armenis","city_id":"2853","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32251","name":"Baile Herculane","city_id":"2853","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32252","name":"Bania","city_id":"2853","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"is_activated":"1"}, +{"id":"32253","name":"Bautar","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32254","name":"Berliste","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32255","name":"Berzasca","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32256","name":"Berzovia","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32257","name":"Bocsa","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32258","name":"Bolvasnita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32259","name":"Bozovici","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32260","name":"Brebu","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32261","name":"Brebu Nou","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32262","name":"Buchin","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32263","name":"Bucosnita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32264","name":"Caransebes","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32265","name":"Carasova","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32266","name":"Carbunari","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32267","name":"Ciclova Romana","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32268","name":"Ciuchici","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32269","name":"Ciudanovita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32270","name":"Constantin Daicoviciu","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32271","name":"Copacele","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32272","name":"Cornea","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32273","name":"Cornereva","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32274","name":"Coronini","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32275","name":"Dalboset","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32276","name":"Doclin","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32277","name":"Dognecea","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32278","name":"Domasnea","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32279","name":"Eftimie Murgu","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32280","name":"Ezeris","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32281","name":"Farliug","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32282","name":"Forotic","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32283","name":"Garnic","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32284","name":"Glimboca","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32285","name":"Goruia","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32286","name":"Gradinari","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32287","name":"Iablanita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32288","name":"Lapusnicel","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32289","name":"Lapusnicu Mare","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32290","name":"Luncavita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32291","name":"Lupac","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32292","name":"Marga","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32293","name":"Maureni","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32294","name":"Mehadia","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32295","name":"Mehadica","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32296","name":"Moldova Noua","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32297","name":"Naidas","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32298","name":"Obreja","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32299","name":"Ocna de Fier","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32300","name":"Oravita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32301","name":"Otelu Rosu","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32302","name":"Pojejena","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32303","name":"Prigor","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32304","name":"Racasdia","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32305","name":"Ramna","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32306","name":"Resita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32307","name":"Rusca Montana","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32308","name":"Sacu","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32309","name":"Sasca Montana","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32310","name":"Sichevita","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32311","name":"Slatina-Timis","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32312","name":"Socol","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32313","name":"Sopotu Nou","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32314","name":"Teregova","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32315","name":"Ticvaniu Mare","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32316","name":"Toplet","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32317","name":"Turnu Ruieni","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32318","name":"Valiug","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32319","name":"Varadia","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32320","name":"Vermes","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32321","name":"Vrani","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32322","name":"Zavoi","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32323","name":"Zorlentu Mare","city_id":"2853","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32324","name":"Aghiresu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32325","name":"Aiton","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32326","name":"Alunis","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32327","name":"Apahida","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32328","name":"Aschileu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32329","name":"Baciu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32330","name":"Baisoara","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32331","name":"Belis","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32332","name":"Bobalna","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32333","name":"Bontida","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32334","name":"Borsa","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32335","name":"Buza","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32336","name":"Caianu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32337","name":"Calatele","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32338","name":"Camarasu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32339","name":"Campia Turzii","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32340","name":"Capusu Mare","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32341","name":"Caseiu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32342","name":"Catcau","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32343","name":"Ceanu Mare","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32344","name":"Chinteni","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32345","name":"Chiuiesti","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32346","name":"Ciucea","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32347","name":"Ciurila","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32348","name":"Cluj-Napoca","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32349","name":"Cojocna","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32350","name":"Cornesti","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32351","name":"Cuzdrioara","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32352","name":"Dabaca","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32353","name":"Dej","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32354","name":"Feleacu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32355","name":"Fizesu Gherlii","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32356","name":"Frata","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32357","name":"Garbau","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32358","name":"Geaca","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32359","name":"Gherla","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32360","name":"Gilau","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32361","name":"Huedin","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32362","name":"Iara","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32363","name":"Iclod","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32364","name":"Izvoru Crisului","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32365","name":"Jichisu de Jos","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32366","name":"Jucu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32367","name":"Luna","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32368","name":"Maguri-Racatau","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32369","name":"Manastireni","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32370","name":"Margau","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32371","name":"Marisel","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32372","name":"Mica","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32373","name":"Mihai Viteazu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32374","name":"Mintiu Gherlii","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32375","name":"Mociu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32376","name":"Moldovenesti","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32377","name":"Palatca","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32378","name":"Panticeu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32379","name":"Petrestii de Jos","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32380","name":"Ploscos","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32381","name":"Poieni","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32382","name":"Rasca","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32383","name":"Recea Cristur","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32384","name":"Sacuieu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32385","name":"Sancraiu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32386","name":"Sandulesti","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32387","name":"Sanpaul","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32388","name":"Savadisla","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32389","name":"Sic","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32390","name":"Suatu","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32391","name":"Taga","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32392","name":"Tritenii de Jos","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32393","name":"Turda","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32394","name":"Tureni","city_id":"2854","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"is_activated":"1"}, +{"id":"32395","name":"Unguras","city_id":"2854","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32396","name":"Vad","city_id":"2854","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32397","name":"Valea Ierii","city_id":"2854","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32398","name":"Adamclisi","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32399","name":"Agigea","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32400","name":"Aliman","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32401","name":"Amzacea","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32402","name":"Baneasa","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32403","name":"Basarabi","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32404","name":"Castelu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32405","name":"Cerchezu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32406","name":"Cernavoda","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32407","name":"Chirnogeni","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32408","name":"Ciobanu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32409","name":"Ciocarlia","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32410","name":"Cobadin","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32411","name":"Cogealac","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32412","name":"Constanta","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32413","name":"Corbu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32414","name":"Costinesti","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32415","name":"Crucea","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32416","name":"Cumpana","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32417","name":"Deleni","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32418","name":"Dobromir","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32419","name":"Douazeci si Trei August","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32420","name":"Dumbraveni","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32421","name":"Eforie","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32422","name":"Garliciu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32423","name":"Ghindaresti","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32424","name":"Harsova","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32425","name":"Horia","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32426","name":"Ion Corvin","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32427","name":"Istria","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32428","name":"Limanu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32429","name":"Lipnita","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32430","name":"Lumina","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32431","name":"Mangalia","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32432","name":"Medgidia","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32433","name":"Mereni","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32434","name":"Mihail Kogalniceanu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32435","name":"Navodari","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32436","name":"Negru Voda","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32437","name":"Oltina","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32438","name":"Ovidiu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32439","name":"Pantelimon","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32440","name":"Pecineaga","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32441","name":"Pestera","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32442","name":"Poarta Alba","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32443","name":"Rasova","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32444","name":"Saraiu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32445","name":"Seimeni","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32446","name":"Targusor","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32447","name":"Techirghiol","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32448","name":"Topalu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32449","name":"Topraisar","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32450","name":"Tortoman","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32451","name":"Tuzla","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32452","name":"Valu lui Traian","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32453","name":"Vulturu","city_id":"2855","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32454","name":"Aita Mare","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32455","name":"Baraolt","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32456","name":"Barcani","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32457","name":"Batani","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32458","name":"Belin","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32459","name":"Bodoc","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32460","name":"Borosneu Mare","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32461","name":"Bradut","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32462","name":"Brates","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32463","name":"Bretcu","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32464","name":"Catalina","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32465","name":"Cernat","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32466","name":"Chichis","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32467","name":"Comandau","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32468","name":"Covasna","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32469","name":"Dobarlau","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32470","name":"Ghelinta","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32471","name":"Ghidfalau","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32472","name":"Haghig","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32473","name":"Ilieni","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32474","name":"Intorsura Buzaului","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32475","name":"Lemnia","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32476","name":"Malnas","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32477","name":"Moacsa","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32478","name":"Ojdula","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32479","name":"Ozun","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32480","name":"Poian","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32481","name":"Reci","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32482","name":"Sanzieni","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32483","name":"Sfantu Gheorghe","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32484","name":"Sita Buzaului","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32485","name":"Targu Secuiesc","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32486","name":"Turia","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32487","name":"Valcele","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32488","name":"Valea Crisului","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32489","name":"Valea Mare","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32490","name":"Varghis","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32491","name":"Zabala","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32492","name":"Zagon","city_id":"2856","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32493","name":"Baleni","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32494","name":"Barbuletu","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32495","name":"Bezdead","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32496","name":"Bilciuresti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32497","name":"Branesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32498","name":"Brezoaiele","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32499","name":"Buciumeni","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32500","name":"Bucsani","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32501","name":"Butimanu","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32502","name":"Candesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32503","name":"Cobia","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32504","name":"Cojasca","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32505","name":"Comisani","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32506","name":"Contesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32507","name":"Corbii Mari","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32508","name":"Cornatelu","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32509","name":"Costestii din Vale","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32510","name":"Crangurile de Sus","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32511","name":"Crevedia","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32512","name":"Dobra","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32513","name":"Doicesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32514","name":"Dragodana","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32515","name":"Dragomiresti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32516","name":"Edera de Jos","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32517","name":"Fieni","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32518","name":"Finta","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32519","name":"Gaesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32520","name":"Gura Foii","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32521","name":"Gura Ocnitei","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32522","name":"Gura Sutii","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32523","name":"Hulubesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32524","name":"Ion luca Caragiale","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32525","name":"Lucieni","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32526","name":"Ludesti","city_id":"2857","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"is_activated":"1"}, +{"id":"32527","name":"Lunguletu","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32528","name":"Malu cu Flori","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32529","name":"Manesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32530","name":"Matasaru","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32531","name":"Mogosani","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32532","name":"Moreni","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32533","name":"Moroeni","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32534","name":"Morteni","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32535","name":"Motaeni","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32536","name":"Niculesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32537","name":"Odobesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32538","name":"Petresti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32539","name":"Pietrosita","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32540","name":"Poiana","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32541","name":"Potlogi","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32542","name":"Produlesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32543","name":"Pucheni","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32544","name":"Pucioasa","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32545","name":"Racari","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32546","name":"Razvad","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32547","name":"Runcu","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32548","name":"Salcioara","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32549","name":"Selaru","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32550","name":"Slobozia Moara","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32551","name":"Sotanga","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32552","name":"Targoviste","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32553","name":"Tartasesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32554","name":"Tatarani","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32555","name":"Titu","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32556","name":"Uliesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32557","name":"Ulmi","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32558","name":"Vacaresti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32559","name":"Valeni-Dambovita","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32560","name":"Varfuri","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32561","name":"Visina","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32562","name":"Visinesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32563","name":"Voinesti","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32564","name":"Vulcana Bai","city_id":"2857","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32565","name":"Afumati","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32566","name":"Almajiu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32567","name":"Amarastii de Jos","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32568","name":"Amarastii de Sus","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32569","name":"Apele Vii","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32570","name":"Argetoaia","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32571","name":"Bailesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32572","name":"Barca","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32573","name":"Bechet","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32574","name":"Bistret","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32575","name":"Botosesti-Paia","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32576","name":"Brabova","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32577","name":"Bradesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32578","name":"Bralostita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32579","name":"Bratovoesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32580","name":"Breasta","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32581","name":"Bucovat","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32582","name":"Bulzesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32583","name":"Calafat","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32584","name":"Calopar","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32585","name":"Caraula","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32586","name":"Carpen","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32587","name":"Castra-Nova","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32588","name":"Celaru","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32589","name":"Ceratu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32590","name":"Cioroiasiu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32591","name":"Ciupercenii Noi","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32592","name":"Cosoveni","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32593","name":"Cotofenii din Dos","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32594","name":"Craiova","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32595","name":"Dabuleni","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32596","name":"Daneti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32597","name":"Desa","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32598","name":"Diosti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32599","name":"Dragotesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32600","name":"Dranic","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32601","name":"Farcasu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32602","name":"Filiasi","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32603","name":"Galicea Mare","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32604","name":"Gangiova","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32605","name":"Ghercesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32606","name":"Gighera","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32607","name":"Giubega","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32608","name":"Giurgita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32609","name":"Gogosu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32610","name":"Goicea","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32611","name":"Goiesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32612","name":"Grecesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32613","name":"Isalnita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32614","name":"Izvoare","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32615","name":"Leu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32616","name":"Lipovu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32617","name":"Macesu de Jos","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32618","name":"Macesu de Sus","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32619","name":"Maglavit","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32620","name":"Malu Mare","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32621","name":"Marsani","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32622","name":"Melinesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32623","name":"Mischii","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32624","name":"Motatei","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32625","name":"Murgasi","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32626","name":"Negoi","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32627","name":"Orodel","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32628","name":"Ostroveni","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32629","name":"Perisor","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32630","name":"Pielesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32631","name":"Piscu Vechi","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32632","name":"Plenita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32633","name":"Podari","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32634","name":"Poiana Mare","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32635","name":"Predesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32636","name":"Radovan","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32637","name":"Rastu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32638","name":"Robanesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32639","name":"Sadova","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32640","name":"Salcuta","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32641","name":"Scaesti","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32642","name":"Seaca de Camp","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32643","name":"Seaca de Padure","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32644","name":"Secu","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32645","name":"Segarcea","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32646","name":"Silistea Crucii","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32647","name":"Simnicu de Sus","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32648","name":"Teasc","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32649","name":"Terpezita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32650","name":"Teslui","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32651","name":"Tuglui","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32652","name":"Urzicuta","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32653","name":"Valea Stanciului","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32654","name":"Vartop","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32655","name":"Varvoru","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32656","name":"Vela","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32657","name":"Verbita","city_id":"2858","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"is_activated":"1"}, +{"id":"32658","name":"Balabanesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32659","name":"Balasesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32660","name":"Barcea","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32661","name":"Beresti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32662","name":"Beresti-Sat","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32663","name":"Brahasesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32664","name":"Cavadinesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32665","name":"Certesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32666","name":"Corod","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32667","name":"Cosmesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32668","name":"Costache Negri","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32669","name":"Cudalbi","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32670","name":"Fartanesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32671","name":"Foltesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32672","name":"Frumusita","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32673","name":"Galati","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32674","name":"Ghidigeni","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32675","name":"Gohor","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32676","name":"Grivita","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32677","name":"Ivesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32678","name":"Jorasti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32679","name":"Liesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32680","name":"Mastacani","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32681","name":"Matca","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32682","name":"Movileni","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32683","name":"Munteni","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32684","name":"Namoloasa","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32685","name":"Nicoresti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32686","name":"Oancea","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32687","name":"Pechea","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32688","name":"Piscu","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32689","name":"Priponesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32690","name":"Rediu","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32691","name":"Scanteiesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32692","name":"Schela","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32693","name":"Sendreni","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32694","name":"Slobozia-Conachi","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32695","name":"Smardan","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32696","name":"Smulti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32697","name":"Suceveni","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32698","name":"Targu Bujor","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32699","name":"Tecuci","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32700","name":"Tepu","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32701","name":"Tulucesti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32702","name":"Umbraresti","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32703","name":"Valea Marului","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32704","name":"Vanatori","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32705","name":"Varlezi","city_id":"2859","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32706","name":"Adunatii-Copaceni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32707","name":"Bolintin Deal","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32708","name":"Bolintinu-din-Vale","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32709","name":"Bulbucata","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32710","name":"Buturugeni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32711","name":"Calugareni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32712","name":"Clejani","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32713","name":"Colibasi","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32714","name":"Crevedia Mare","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32715","name":"Daia","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32716","name":"Floresti-Stoenesti","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32717","name":"Fratesti","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32718","name":"Gaiseni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32719","name":"Gaujani","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32720","name":"Ghimpati","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32721","name":"Giurgiu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32722","name":"Gogosari","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32723","name":"Gostinari","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32724","name":"Gostinu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32725","name":"Greaca","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32726","name":"Hotarele","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32727","name":"Iepuresti","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32728","name":"Izvoarele","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32729","name":"Joita","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32730","name":"Letca Noua","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32731","name":"Marsa","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32732","name":"Mihai Bravu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32733","name":"Ogrezeni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32734","name":"Oinacu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32735","name":"Prundu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32736","name":"Putineiu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32737","name":"Rasuceni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32738","name":"Roata de Jos","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32739","name":"Schitu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32740","name":"Singureni","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32741","name":"Stanesti","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32742","name":"Toporu","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32743","name":"Valea Dragului","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32744","name":"Vanatorii Mici","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32745","name":"Varasti","city_id":"2860","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32746","name":"Albeni","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32747","name":"Alimpesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32748","name":"Arcani","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32749","name":"Baia de Fier","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32750","name":"Balanesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32751","name":"Balesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32752","name":"Balteni","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32753","name":"Barbatesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32754","name":"Bengesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32755","name":"Berlesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32756","name":"Bolbosi","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32757","name":"Borascu","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32758","name":"Bumbesti-Jiu","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32759","name":"Bumbesti-Piticu","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32760","name":"Bustuchin","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32761","name":"Capreni","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32762","name":"Catunele","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32763","name":"Ciuperceni","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32764","name":"Crasna","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32765","name":"Crusetu","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32766","name":"Danciulesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32767","name":"Danesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32768","name":"Dragutesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32769","name":"Farcasesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32770","name":"Glogova","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32771","name":"Godinesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32772","name":"Hurezani","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32773","name":"Ionesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32774","name":"Jupanesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32775","name":"Lelesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32776","name":"Licuriciu","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32777","name":"Logresti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32778","name":"Matasari","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32779","name":"Motru","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32780","name":"Musetesti","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32781","name":"Negomiru","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32782","name":"Pades","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32783","name":"Pestisani","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32784","name":"Plopsoru","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32785","name":"Polovragi","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32786","name":"Prigoria","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32787","name":"Rosia de Amaradia","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32788","name":"Rovinari","city_id":"2861","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"is_activated":"1"}, +{"id":"32789","name":"Sacelu","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32790","name":"Samarinesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32791","name":"Saulesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32792","name":"Scoarta","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32793","name":"Slivilesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32794","name":"Stejari","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32795","name":"Stoina","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32796","name":"Tantareni","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32797","name":"Targu Carbunesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32798","name":"Targu Jiu","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32799","name":"Telesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32800","name":"Ticleni","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32801","name":"Tismana","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32802","name":"Turburea","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32803","name":"Turceni","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32804","name":"Turcinesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32805","name":"Urdari","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32806","name":"Vagiulesti","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32807","name":"Vladimir","city_id":"2861","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32808","name":"Atid","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32809","name":"Avramesti","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32810","name":"Baile Tusnad","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32811","name":"Balan","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32812","name":"Bilbor","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32813","name":"Borsec","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32814","name":"Capalnita","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32815","name":"Carta","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32816","name":"Ciucsangeorgiu","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32817","name":"Ciumani","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32818","name":"Corund","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32819","name":"Cristuru Secuiesc","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32820","name":"Darjiu","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32821","name":"Dealu","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32822","name":"Ditrau","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32823","name":"Feliceni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32824","name":"Frumoasa","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32825","name":"Galautas","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32826","name":"Gheorgheni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32827","name":"Joseni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32828","name":"Lazarea","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32829","name":"Lueta","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32830","name":"Lunca de Jos","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32831","name":"Lunca de Sus","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32832","name":"Lupeni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32833","name":"Martinis","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32834","name":"Meresti","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32835","name":"Miercurea-Ciuc","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32836","name":"Mugeni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32837","name":"Ocland","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32838","name":"Odorheiu Secuiesc","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32839","name":"Pauleni-Ciuc","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32840","name":"Plaiesii-de-Jos","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32841","name":"Praid","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32842","name":"Sacel","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32843","name":"Sancraieni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32844","name":"Sandominic","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32845","name":"Sansimion","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32846","name":"Sarmas","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32847","name":"Siculeni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32848","name":"Simonesti","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32849","name":"Subcetate","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32850","name":"Toplita","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32851","name":"Tulghes","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32852","name":"Tusnad","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32853","name":"Ulies","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32854","name":"Varsag","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32855","name":"Vlahita","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32856","name":"Voslobeni","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32857","name":"Zetea","city_id":"2862","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32858","name":"Bacia","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32859","name":"Baia de Cris","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32860","name":"Baita","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32861","name":"Balsa","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32862","name":"Banita","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32863","name":"Baru","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32864","name":"Batrana","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32865","name":"Beriu","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32866","name":"Berthelot","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32867","name":"Blajeni","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32868","name":"Bosorod","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32869","name":"Brad","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32870","name":"Branisca","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32871","name":"Bretea Romana","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32872","name":"Buces","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32873","name":"Bucuresci","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32874","name":"Bunila","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32875","name":"Burjuc","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32876","name":"Calan","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32877","name":"Carjiti","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32878","name":"Cerbal","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32879","name":"Certeju de Sus","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32880","name":"Criscior","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32881","name":"Densus","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32882","name":"Deva","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32883","name":"Geoagiu","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32884","name":"Ghelari","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32885","name":"Gurasada","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32886","name":"Harau","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32887","name":"Hateg","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32888","name":"Hunedoara","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32889","name":"Ilia","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32890","name":"Lapugiu de Jos","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32891","name":"Lelese","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32892","name":"Lunca Cernii de Jos","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32893","name":"Luncoiu de Jos","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32894","name":"Martinesti","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32895","name":"Orastie","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32896","name":"Orastioara de Sus","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32897","name":"Pestisu Mic","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32898","name":"Petrila","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32899","name":"Petrosani","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32900","name":"Pui","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32901","name":"Rachitova","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32902","name":"Rapoltu Mare","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32903","name":"Rau de Mori","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32904","name":"Ribita","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32905","name":"Romos","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32906","name":"Salasu de Sus","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32907","name":"Santamaria Orlea","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32908","name":"Sarmizegetusa","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32909","name":"Simeria","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32910","name":"Soimus","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32911","name":"Teliucu Inferior","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32912","name":"Tomesti","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32913","name":"Totesti","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32914","name":"Turdas","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32915","name":"Uricani","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32916","name":"Valisoara","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32917","name":"Vata de Jos","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32918","name":"Vetel","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32919","name":"Vorta","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32920","name":"Zam","city_id":"2863","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"is_activated":"1"}, +{"id":"32921","name":"Adancata","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32922","name":"Alexeni","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32923","name":"Amara","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32924","name":"Andrasesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32925","name":"Armasesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32926","name":"Axintele","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32927","name":"Balaciu","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32928","name":"Barcanesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32929","name":"Bordusani","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32930","name":"Bucu","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32931","name":"Cazanesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32932","name":"Ciochina","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32933","name":"Ciulnita","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32934","name":"Cocora","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32935","name":"Cosambesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32936","name":"Cosereni","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32937","name":"Dragoesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32938","name":"Dridu","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32939","name":"Facaeni","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32940","name":"Fetesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32941","name":"Fierbinti-Targ","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32942","name":"Garbovi","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32943","name":"Gheorghe Doja","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32944","name":"Gheorghe Lazar","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32945","name":"Giurgeni","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32946","name":"Grindu","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32947","name":"Ion Roata","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32948","name":"Jilavele","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32949","name":"Manasia","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32950","name":"Milosesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32951","name":"Movila","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32952","name":"Movilita","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32953","name":"Munteni Buzau","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32954","name":"Perieti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32955","name":"Reviga","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32956","name":"Scanteia","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32957","name":"Sinesti","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32958","name":"Stelnica","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32959","name":"Suditi","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32960","name":"Tandarei","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32961","name":"Urziceni","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32962","name":"Valea Ciorii","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32963","name":"Valea Macrisului","city_id":"2864","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32964","name":"Alexandru Ioan Cuza","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32965","name":"Andrieseni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32966","name":"Aroneanu","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32967","name":"Baltati","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32968","name":"Barnova","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32969","name":"Belcesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32970","name":"Bivolari","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32971","name":"Butea","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32972","name":"Ceplenita","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32973","name":"Ciortesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32974","name":"Ciurea","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32975","name":"Coarnele Caprei","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32976","name":"Comarna","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32977","name":"Costuleni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32978","name":"Cotnari","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32979","name":"Cozmesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32980","name":"Cucuteni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32981","name":"Dagata","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32982","name":"Dobrovat","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32983","name":"Dolhesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32984","name":"Dumesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32985","name":"Erbiceni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32986","name":"Focuri","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32987","name":"Golaesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32988","name":"Gorban","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32989","name":"Grajduri","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32990","name":"Gropnita","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32991","name":"Grozesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32992","name":"Halaucesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32993","name":"Harlau","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32994","name":"Helesteni Harmaneasa","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32995","name":"Holboca","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32996","name":"Horlesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32997","name":"Iasi","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32998","name":"Ipatele","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"32999","name":"Lespezi","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33000","name":"Letcani","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33001","name":"Lungani","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33002","name":"Madarjac","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33003","name":"Mircesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33004","name":"Mironeasa","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33005","name":"Miroslava","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33006","name":"Miroslovesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33007","name":"Mogosesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33008","name":"Mogosesti-Siret","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33009","name":"Mosna","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33010","name":"Motca","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33011","name":"Oteleni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33012","name":"Pascani","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33013","name":"Plugari","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33014","name":"Podu Iloaiei","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33015","name":"Popricani","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33016","name":"Prisacani","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33017","name":"Probota","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33018","name":"Raducaneni","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33019","name":"Ruginoasa","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33020","name":"Scheia","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33021","name":"Schitu-Duca","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33022","name":"Scobinti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33023","name":"Sipote","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33024","name":"Siretel","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33025","name":"Stolniceni-Prajescu","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33026","name":"Strunga","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33027","name":"Tansa","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33028","name":"Targu Gangiulesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33029","name":"Tatarusi","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33030","name":"Tibanesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33031","name":"Tiganasi","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33032","name":"Todiresti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33033","name":"Trifesti","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33034","name":"Tutora","city_id":"2865","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33035","name":"Balotesti","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33036","name":"Berceni","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33037","name":"Bragadiru","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33038","name":"Buftea","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33039","name":"Cernica","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33040","name":"Chiajna","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33041","name":"Chitila","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33042","name":"Ciolpani","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33043","name":"Ciorogarla","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33044","name":"Clinceni","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33045","name":"Corbeanca","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33046","name":"Cornetu","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33047","name":"Darasti-Ilfov","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33048","name":"Dascalu","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33049","name":"Dobroesti","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33050","name":"Dragomiresti-Vale","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33051","name":"Ganeasa","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33052","name":"Gruiu","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33053","name":"Jilava","city_id":"2866","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"is_activated":"1"}, +{"id":"33054","name":"Magurele","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33055","name":"Moara Vlasiei","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33056","name":"Mogosoaia","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33057","name":"Nuci","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33058","name":"Otopeni","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33059","name":"Peris","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33060","name":"Petrachioaia","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33061","name":"Popesti-Leordeni","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33062","name":"Prim Decembrie","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33063","name":"Snagov","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33064","name":"Stefanestii de Jos","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33065","name":"Tunari","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33066","name":"Voluntari","city_id":"2866","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33067","name":"Ardusat","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33068","name":"Arinis","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33069","name":"Asuaju de Sus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33070","name":"Baia Mare","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33071","name":"Baia-Sprie","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33072","name":"Baita de sub Codru","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33073","name":"Baiut","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33074","name":"Basesti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33075","name":"Bicaz","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33076","name":"Bocicoiu Mare","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33077","name":"Bogdan Voda","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33078","name":"Boiu Mare","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33079","name":"Botiza","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33080","name":"Campulung la Tisa","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33081","name":"Cavnic","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33082","name":"Cernesti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33083","name":"Cicarlau","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33084","name":"Copalnic Manastur","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33085","name":"Coroieni","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33086","name":"Cupseni","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33087","name":"Desesti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33088","name":"Farcasa","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33089","name":"Giulesti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33090","name":"Grosi","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33091","name":"Ieud","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33092","name":"Lapus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33093","name":"Leordina","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33094","name":"Miresu Mare","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33095","name":"Moisei","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33096","name":"Oarta de Jos","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33097","name":"Ocna Sugatag","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33098","name":"Petrova","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33099","name":"Poienile Izei","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33100","name":"Poienile de sub Munte","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33101","name":"Remetea Chioarului","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33102","name":"Remeti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33103","name":"Repedea","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33104","name":"Rona de Jos","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33105","name":"Rona de Sus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33106","name":"Rozavlea","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33107","name":"Ruscova","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33108","name":"Sacalaseni","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33109","name":"Salistea de Sus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33110","name":"Salsig","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33111","name":"Sapanta","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33112","name":"Sarasau","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33113","name":"Sasar","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33114","name":"Satulung","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33115","name":"Seini","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33116","name":"Sighetu Marmatiei","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33117","name":"Sisesti","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33118","name":"Somcuta Mare","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33119","name":"Stramtura","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33120","name":"Suciu de Sus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33121","name":"Targu-Lapus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33122","name":"Tautii Margheraus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33123","name":"Vadu Izei","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33124","name":"Valea Chioarului","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33125","name":"Vima Mica","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33126","name":"Viseu de Jos","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33127","name":"Viseu de Sus","city_id":"2867","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33128","name":"Baclesu","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33129","name":"Baia de Arama","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33130","name":"Bala","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33131","name":"Balacita","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33132","name":"Balta","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33133","name":"Balvanesti","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33134","name":"Breznita Ocol","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33135","name":"Breznita-Motru","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33136","name":"Brosteni","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33137","name":"Burila Mare","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33138","name":"Butoiesti","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33139","name":"Corcova","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33140","name":"Corlatel","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33141","name":"Cujmir","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33142","name":"Darvari","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33143","name":"Devesel","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33144","name":"Drobeta-Turnu Severin","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33145","name":"Dubova","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33146","name":"Dumbrava","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33147","name":"Eselnita","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33148","name":"Garla Mare","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33149","name":"Godeanu","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33150","name":"Greci","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33151","name":"Gruia","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33152","name":"Hinova","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33153","name":"Husnicioara","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33154","name":"Ilovat","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33155","name":"Ilovita","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33156","name":"Isverna","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33157","name":"Izvoru Barzii","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33158","name":"Jiana","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33159","name":"Malovat","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33160","name":"Obarsia Noua","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33161","name":"Obarsia-Closani","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33162","name":"Oprisor","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33163","name":"Orsova","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33164","name":"Patulele","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33165","name":"Podeni","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33166","name":"Ponoarele","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33167","name":"Poroina Mare","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33168","name":"Pristol","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33169","name":"Prunisor","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33170","name":"Punghina","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33171","name":"Rogova","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33172","name":"Salcia","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33173","name":"Sovarna","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33174","name":"Stangaceaua","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33175","name":"Strehaia","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33176","name":"Svinita","city_id":"2868","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"is_activated":"1"}, +{"id":"33177","name":"Tamna","city_id":"2868","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33178","name":"Vanju Mare","city_id":"2868","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33179","name":"Vanjulet","city_id":"2868","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33180","name":"Vladaia","city_id":"2868","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33181","name":"Voloiac","city_id":"2868","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33182","name":"Acatari","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33183","name":"Adamus","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33184","name":"Apold","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33185","name":"Atintis","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33186","name":"Bagaciu","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33187","name":"Bahnea","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33188","name":"Balauseri","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33189","name":"Batos","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33190","name":"Beica de Jos","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33191","name":"Bichis","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33192","name":"Bogata","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33193","name":"Brancovenesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33194","name":"Ceuasul-de Campie","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33195","name":"Chetani","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33196","name":"Chiheru de Jos","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33197","name":"Coroisanmartin","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33198","name":"Cozma","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33199","name":"Craciunesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33200","name":"Craiesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33201","name":"Cucerdea","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33202","name":"Cuci","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33203","name":"Danes","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33204","name":"Deda","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33205","name":"Eremitu","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33206","name":"Ernei","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33207","name":"Faragau","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33208","name":"Galesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33209","name":"Ganesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33210","name":"Ghindari","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33211","name":"Gornesti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33212","name":"Grebenisu de Campie","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33213","name":"Gurghiu","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33214","name":"Hodac","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33215","name":"Hodosa","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33216","name":"Iclanzel","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33217","name":"Ideciu de Jos","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33218","name":"Iernut","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33219","name":"Livezeni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33220","name":"Ludus","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33221","name":"Lunca Bradului","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33222","name":"Magherani","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33223","name":"Miercurea Nirajului","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33224","name":"Mihesu de Campie","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33225","name":"Nades","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33226","name":"Neaua","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33227","name":"Ogra","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33228","name":"Panet","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33229","name":"Papiu Ilarian","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33230","name":"Pasareni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33231","name":"Petelea","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33232","name":"Pogaceaua","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33233","name":"Raciu","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33234","name":"Rastolita","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33235","name":"Reghin","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33236","name":"Rusii Munti","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33237","name":"Sancraiul-de-Mures","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33238","name":"Sangeorg-de Mures","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33239","name":"Sangeorgiu-de-Padure","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33240","name":"Sanger","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33241","name":"Sanpetru-de-Campie","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33242","name":"Santana-de-Mures","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33243","name":"Sarmasu","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33244","name":"Saschiz","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33245","name":"Saulia","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33246","name":"Sighisoara","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33247","name":"Sincai","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33248","name":"Solovastru","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33249","name":"Sovata","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33250","name":"Stanceni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33251","name":"Suplac","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33252","name":"Targu-Mures","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33253","name":"Tarnaveni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33254","name":"Taureni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33255","name":"Valea Larga","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33256","name":"Vargata","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33257","name":"Vatava","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33258","name":"Vetca","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33259","name":"Voivodeni","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33260","name":"Zagar","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33261","name":"Zau de Campie","city_id":"2869","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33262","name":"Agapia","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33263","name":"Bahna","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33264","name":"Baltatesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33265","name":"Bara","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33266","name":"Bargaoani","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33267","name":"Bicaz Chei","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33268","name":"Bicazu Ardelean","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33269","name":"Bodesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33270","name":"Borca","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33271","name":"Borlesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33272","name":"Bozieni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33273","name":"Brusturi-Draganesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33274","name":"Ceahlau","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33275","name":"Cordun","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33276","name":"Costisa","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33277","name":"Cracaoani","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33278","name":"Damuc","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33279","name":"Dobreni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33280","name":"Doljesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33281","name":"Dulcesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33282","name":"Dumbrava Rosie","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33283","name":"Garcina","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33284","name":"Gheraesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33285","name":"Girov","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33286","name":"Grinties","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33287","name":"Grumazesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33288","name":"Icusesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33289","name":"Ion Creanga","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33290","name":"Moldoveni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33291","name":"Oniceni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33292","name":"Pangarati","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33293","name":"Pastraveni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33294","name":"Petricani","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33295","name":"Piatra Neamt","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33296","name":"Piatra Soimului","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33297","name":"Pipirig","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33298","name":"Podoleni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33299","name":"Poiana Teiului","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33300","name":"Poienari","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33301","name":"Raucesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33302","name":"Razboieni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33303","name":"Romani","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33304","name":"Roznov","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33305","name":"Sabaoani","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33306","name":"Sagna","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33307","name":"Savinesti","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33308","name":"Stanita","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33309","name":"Tamaseni","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33310","name":"Tarcau","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33311","name":"Targu-Neamt","city_id":"2870","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"is_activated":"1"}, +{"id":"33312","name":"Tasca","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33313","name":"Tazlau","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33314","name":"Tibucani","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33315","name":"Timisesti","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33316","name":"Tupilati","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33317","name":"Urecheni","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33318","name":"Valea Ursului","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33319","name":"Vanatori-Neamt","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33320","name":"Zanesti","city_id":"2870","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33321","name":"Babiciu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33322","name":"Baldovinesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33323","name":"Bals","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33324","name":"Barasti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33325","name":"Barza","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33326","name":"Bobicesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33327","name":"Brancoveni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33328","name":"Brastavatu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33329","name":"Brebeni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33330","name":"Bucinisu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33331","name":"Caracal","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33332","name":"Carlogani","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33333","name":"Cezieni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33334","name":"Cilieni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33335","name":"Corabia","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33336","name":"Coteana","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33337","name":"Crampoaia","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33338","name":"Cungrea","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33339","name":"Curtisoara","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33340","name":"Daneasa","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33341","name":"Deveselu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33342","name":"Dobretu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33343","name":"Dobrosloveni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33344","name":"Dobroteasa","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33345","name":"Dobrun","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33346","name":"Draganesti-Olt","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33347","name":"Draghiceni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33348","name":"Fagetelu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33349","name":"Falcoiu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33350","name":"Farcasele","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33351","name":"Garcovu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33352","name":"Giuvarasti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33353","name":"Gostavatu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33354","name":"Grojdibodu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33355","name":"Iancu Jianu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33356","name":"Icoana","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33357","name":"Izbiceni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33358","name":"Leleasca","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33359","name":"Maruntei","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33360","name":"Milcov","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33361","name":"Morunglav","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33362","name":"Nicolae Titulescu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33363","name":"Obarsia","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33364","name":"Oboga","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33365","name":"Oporelu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33366","name":"Optasi","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33367","name":"Orlea","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33368","name":"Osica de Sus","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33369","name":"Parscoveni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33370","name":"Piatra Olt","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33371","name":"Plesoiu","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33372","name":"Poboru","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33373","name":"Potcoava","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33374","name":"Priseaca","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33375","name":"Radomiresti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33376","name":"Redea","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33377","name":"Rotunda","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33378","name":"Rusanesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33379","name":"Samburesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33380","name":"Scornicesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33381","name":"Seaca","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33382","name":"Serbanesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33383","name":"Slatioara","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33384","name":"Spineni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33385","name":"Sprancenata","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33386","name":"Stoicanesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33387","name":"Strejesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33388","name":"Studina","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33389","name":"Tatulesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33390","name":"Tia Mare","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33391","name":"Topana","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33392","name":"Tufeni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33393","name":"Urzica","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33394","name":"Vadastra","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33395","name":"Vadastrita","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33396","name":"Valeni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33397","name":"Verguleasa","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33398","name":"Vitomiresti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33399","name":"Vladila","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33400","name":"Voineasa","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33401","name":"Vulpeni","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33402","name":"Vulturesti","city_id":"2871","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33403","name":"Adunati","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33404","name":"Albesti-Paleologu","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33405","name":"Apostolache","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33406","name":"Aricestii-Rahtivani","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33407","name":"Aricestii-Zeletin","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33408","name":"Azuga","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33409","name":"Baba Ana","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33410","name":"Baicoi","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33411","name":"Balta Doamnei","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33412","name":"Baltesti","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33413","name":"Banesti","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33414","name":"Bertea","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33415","name":"Blejoi","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33416","name":"Boldesti","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33417","name":"Boldesti-Scaeni","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33418","name":"Brazi","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33419","name":"Bucov","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33420","name":"Busteni","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33421","name":"Campina","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33422","name":"Carbunesti","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33423","name":"Ceptura","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33424","name":"Cerasu","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33425","name":"Chiojdeanca","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33426","name":"Ciorani","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33427","name":"Cocorastii-Misli","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33428","name":"Colceag","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33429","name":"Comarnic","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33430","name":"Cornu","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33431","name":"Cosminele","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33432","name":"Doftana","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33433","name":"Drajna","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33434","name":"Dumbravesti","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33435","name":"Filipestii de Padure","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33436","name":"Filipestii de Targ","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33437","name":"Fulga","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33438","name":"Gherghita","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33439","name":"Gorgota","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33440","name":"Gornet","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33441","name":"Gornet-Cricov","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33442","name":"Gura Vadului","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33443","name":"Gura Vitioarei","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33444","name":"Iordacheanu","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33445","name":"Jugureni","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33446","name":"Lapos","city_id":"2872","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"is_activated":"1"}, +{"id":"33447","name":"Lipanesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33448","name":"Magureni","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33449","name":"Maneciu","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33450","name":"Mizil","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33451","name":"Pacureti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33452","name":"Paulesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33453","name":"Ploiesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33454","name":"Plopeni","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33455","name":"Plopu","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33456","name":"Podenii Noi","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33457","name":"Poenarii-Burchi","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33458","name":"Poiana Campina","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33459","name":"Posesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33460","name":"Predeal-Sarari","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33461","name":"Provita de Jos","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33462","name":"Provita de Sus","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33463","name":"Puchenii Mari","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33464","name":"Rafov","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33465","name":"Salciile","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33466","name":"Sangeru","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33467","name":"Secaria","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33468","name":"Sinaia","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33469","name":"Sirna","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33470","name":"Slanic","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33471","name":"Soimari","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33472","name":"Sotrile","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33473","name":"Starchiojd","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33474","name":"Stefesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33475","name":"Surani","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33476","name":"Talea","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33477","name":"Targsorul-Vechi","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33478","name":"Tataru","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33479","name":"Teisani","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33480","name":"Telega","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33481","name":"Tinosu","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33482","name":"Tomsani","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33483","name":"Urlati","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33484","name":"Valcanesti","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33485","name":"Valea Calugareasca","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33486","name":"Valenii de Munte","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33487","name":"Varbilau","city_id":"2872","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33488","name":"Agrij","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33489","name":"Almasu","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33490","name":"Babeni","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33491","name":"Banisor","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33492","name":"Benesat","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33493","name":"Buciumi","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33494","name":"Camar","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33495","name":"Carastelec","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33496","name":"Cehu Silvaniei","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33497","name":"Chiesd","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33498","name":"Cizer","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33499","name":"Coseiu","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33500","name":"Creaca","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33501","name":"Criseni","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33502","name":"Cristolt","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33503","name":"Cuzaplac","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33504","name":"Dobrin","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33505","name":"Dragu","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33506","name":"Fildu de Jos","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33507","name":"Galgau","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33508","name":"Garbou","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33509","name":"Halmasd","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33510","name":"Hereclean","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33511","name":"Hida","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33512","name":"Horoatu Crasnei","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33513","name":"Ileanda","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33514","name":"Ip","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33515","name":"Jibou","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33516","name":"Letca","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33517","name":"Lozna","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33518","name":"Maeriste","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33519","name":"Marca","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33520","name":"Mesesenii de Jos","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33521","name":"Mirsid","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33522","name":"Napradea","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33523","name":"Nusfalau","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33524","name":"Periceiu","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33525","name":"Plopis","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33526","name":"Poiana Blenchii","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33527","name":"Romanasi","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33528","name":"Rus","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33529","name":"Sag","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33530","name":"Salatig","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33531","name":"Samsud","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33532","name":"Sanmihaiul-Almasului","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33533","name":"Sarmasag","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33534","name":"Simleu Silvaniei","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33535","name":"Somes-Odorhei","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33536","name":"Surduc","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33537","name":"Treznea","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33538","name":"Valcau de Jos","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33539","name":"Varsolt","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33540","name":"Zalau","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33541","name":"Zalha","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33542","name":"Zimbor","city_id":"2873","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33543","name":"Agnita","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33544","name":"Altina","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33545","name":"Apoldu de Jos","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33546","name":"Arpasu de Jos","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33547","name":"Atel","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33548","name":"Avrig","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33549","name":"Axente Sever","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33550","name":"Barghis","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33551","name":"Bazna","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33552","name":"Biertan","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33553","name":"Blajel","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33554","name":"Bradeni","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33555","name":"Brateiu","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33556","name":"Bruiu","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33557","name":"Cartisoara","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33558","name":"Chirpar","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33559","name":"Cisnadie","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33560","name":"Copsa Mica","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33561","name":"Darlos","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33562","name":"Gura Raului","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33563","name":"Hoghilag","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33564","name":"Iacobeni","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33565","name":"Jina","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33566","name":"Laslea","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33567","name":"Loamnes","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33568","name":"Ludos","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33569","name":"Marpod","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33570","name":"Medias","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33571","name":"Merghindeal","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33572","name":"Micasasa","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33573","name":"Miercurea Sibiului","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33574","name":"Nocrich","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33575","name":"Ocna Sibiului","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33576","name":"Orlat","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33577","name":"Pauca","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33578","name":"Poiana Sibiului","city_id":"2875","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"is_activated":"1"}, +{"id":"33579","name":"Poplaca","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33580","name":"Porumbacu de Jos","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33581","name":"Rasinari","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33582","name":"Rau Sadului","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33583","name":"Sadu","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33584","name":"Saliste","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33585","name":"Seica Mare","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33586","name":"Seica Mica","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33587","name":"Selimbar","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33588","name":"Sibiu","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33589","name":"Slimnic","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33590","name":"Sura Mare","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33591","name":"Sura Mica","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33592","name":"Talmaciu","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33593","name":"Tarnava","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33594","name":"Tilisca","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33595","name":"Turnu Rosu","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33596","name":"Valea Viilor","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33597","name":"Vurpar","city_id":"2875","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33598","name":"Sondelor","city_id":"2876","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33599","name":"Arbore","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33600","name":"Baia","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33601","name":"Balcauti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33602","name":"Bilca","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33603","name":"Boroaia","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33604","name":"Bosanci","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33605","name":"Botosana","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33606","name":"Brodina","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33607","name":"Cacica","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33608","name":"Cajvana","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33609","name":"Calafindesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33610","name":"Campulung Moldovenesc","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33611","name":"Carlibaba","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33612","name":"Ciprian Porumbescu","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33613","name":"Cornu Luncii","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33614","name":"Dolhasca","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33615","name":"Dorna","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33616","name":"Dorna Candrenilor","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33617","name":"Dornesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33618","name":"Falticeni","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33619","name":"Forasti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33620","name":"Frasin","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33621","name":"Fratautii Noi","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33622","name":"Fratautii Vechi","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33623","name":"Frumosu","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33624","name":"Fundu Moldovei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33625","name":"Galanesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33626","name":"Gramesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33627","name":"Granicesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33628","name":"Gura Humorului","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33629","name":"Horodniceni","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33630","name":"Horodnicu","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33631","name":"Ipotesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33632","name":"Izvoarele Sucevei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33633","name":"Liteni","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33634","name":"Malini","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33635","name":"Manastirea Homorului","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33636","name":"Marginea","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33637","name":"Milisauti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33638","name":"Mitocu Dragomirnei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33639","name":"Moara","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33640","name":"Moldova Sulita","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33641","name":"Moldovita","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33642","name":"Musenita","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33643","name":"Ostra","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33644","name":"Paltinoasa","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33645","name":"Panaci","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33646","name":"Partestii de Jos","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33647","name":"Patrauti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33648","name":"Poiana Stampei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33649","name":"Pojorata","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33650","name":"Preutesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33651","name":"Putna","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33652","name":"Radaseni","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33653","name":"Radauti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33654","name":"Salcea","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33655","name":"Saru Dornei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33656","name":"Satu Mare","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33657","name":"Siminicea","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33658","name":"Siret","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33659","name":"Solca","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33660","name":"Straja","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33661","name":"Stroiesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33662","name":"Stulpicani","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33663","name":"Suceava","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33664","name":"Sucevita","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33665","name":"Udesti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33666","name":"Ulma","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33667","name":"Vadu Moldovei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33668","name":"Valea Moldovei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33669","name":"Vama","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33670","name":"Vatra Dornei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33671","name":"Vatra Moldovitei","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33672","name":"Veresti","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33673","name":"Vicovu de Jos","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33674","name":"Vicovu de Sus","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33675","name":"Volovat","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33676","name":"Zamostea","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33677","name":"Zvoristea","city_id":"2877","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33678","name":"Babaita","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33679","name":"Balaci","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33680","name":"Blejesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33681","name":"Bogdana","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33682","name":"Botoroaga","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33683","name":"Branceni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33684","name":"Bujoreni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33685","name":"Bujoru","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33686","name":"Buzescu","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33687","name":"Calmatuiu","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33688","name":"Cervenia","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33689","name":"Ciolanesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33690","name":"Crangeni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33691","name":"Crangu","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33692","name":"Crevenicu","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33693","name":"Didesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33694","name":"Dobrotesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33695","name":"Dracsenei","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33696","name":"Draganesti de Vede","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33697","name":"Draganesti-Vlasca","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33698","name":"Furculesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33699","name":"Galateni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33700","name":"Gratia","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33701","name":"Islaz","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33702","name":"Lita","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33703","name":"Maldaeni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33704","name":"Marzanesti","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33705","name":"Mavrodin","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33706","name":"Mosteni","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33707","name":"Nanov","city_id":"2878","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"is_activated":"1"}, +{"id":"33708","name":"Nasturelu","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33709","name":"Necsesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33710","name":"Olteni","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33711","name":"Orbeasca","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33712","name":"Peretu","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33713","name":"Piatra","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33714","name":"Plopii Slavitesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33715","name":"Plosca","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33716","name":"Poeni","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33717","name":"Poroschia","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33718","name":"Radoiesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33719","name":"Rasmiresti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33720","name":"Rosiori de Vede","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33721","name":"Saceni","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33722","name":"Sarbeni","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33723","name":"Scrioastea","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33724","name":"Scurtu Mare","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33725","name":"Segarcea Vale","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33726","name":"Sfintesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33727","name":"Silistea-Gumesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33728","name":"Slobozia-Mandra","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33729","name":"Smardioasa","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33730","name":"Stejaru","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33731","name":"Storobaneasa","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33732","name":"Suhaia","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33733","name":"Tatarastii de Jos","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33734","name":"Tatarastii de Sus","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33735","name":"Tiganesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33736","name":"Trivalea-Mosteni","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33737","name":"Troianul","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33738","name":"Turnu Magurele","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33739","name":"Vartoapele-de-Jos","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33740","name":"Videle","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33741","name":"Vitanesti","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33742","name":"Zambreasca","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33743","name":"Zimnicea","city_id":"2878","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33744","name":"Balint","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33745","name":"Banloc","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33746","name":"Barna","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33747","name":"Beba Veche","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33748","name":"Becicherecu Mic","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33749","name":"Belint","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33750","name":"Bethausen","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33751","name":"Biled","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33752","name":"Bogda","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33753","name":"Boldur","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33754","name":"Brestovat","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33755","name":"Buzias","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33756","name":"Carpinis","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33757","name":"Cenad","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33758","name":"Cenei","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33759","name":"Cheveresu Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33760","name":"Ciacova","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33761","name":"Comlosu Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33762","name":"Costeiu","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33763","name":"Criciova","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33764","name":"Curtea","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33765","name":"Darova","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33766","name":"Denta","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33767","name":"Deta","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33768","name":"Dudestii Vechi","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33769","name":"Faget","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33770","name":"Fardea","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33771","name":"Foeni","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33772","name":"Gataia","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33773","name":"Gavojdia","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33774","name":"Ghiroda","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33775","name":"Ghizela","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33776","name":"Giarmata","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33777","name":"Giera","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33778","name":"Giroc","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33779","name":"Giulvaz","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33780","name":"Jamu Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33781","name":"Jebel","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33782","name":"Jimbolia","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33783","name":"Lenauheim","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33784","name":"Liebling","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33785","name":"Lovrin","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33786","name":"Lugoj","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33787","name":"Manastiur","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33788","name":"Margina","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33789","name":"Masloc","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33790","name":"Moravita","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33791","name":"Mosnita Noua","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33792","name":"Nadrag","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33793","name":"Nitchidorf","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33794","name":"Ohaba Lunga","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33795","name":"Ortisoara","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33796","name":"Peciu Nou","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33797","name":"Periam","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33798","name":"Pischia","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33799","name":"Recas","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33800","name":"Remetea Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33801","name":"Sacalaz","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33802","name":"Sacosu Turcesc","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33803","name":"Sanandrei","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33804","name":"Sanmihaiu Roman","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33805","name":"Sannicolaul Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33806","name":"Sanpetrul-Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33807","name":"Satchinez","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33808","name":"Secas","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33809","name":"Stiuca","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33810","name":"Teremia Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33811","name":"Timisoara","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33812","name":"Topolovatu Mare","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33813","name":"Tormac","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33814","name":"Traian Vuia","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33815","name":"Uivar","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33816","name":"Varias","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33817","name":"Victor Vlad Delamarina","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33818","name":"Voiteg","city_id":"2879","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33819","name":"Babadag","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33820","name":"Beidaud","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33821","name":"Carcaliu","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33822","name":"Casimcea","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33823","name":"Ceamurlia de Jos","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33824","name":"Ceatalchioi","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33825","name":"Chilia Veche","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33826","name":"Ciucurova","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33827","name":"Crisan","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33828","name":"Daeni","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33829","name":"Hamcearca","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33830","name":"Ion Bratianu","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33831","name":"Isaccea","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33832","name":"Jijila","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33833","name":"Jurilovca","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33834","name":"Macin","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33835","name":"Mahmudia","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33836","name":"Murighiol","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33837","name":"Nalbant","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33838","name":"Niculitel","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33839","name":"Nufaru","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33840","name":"Pardina","city_id":"2880","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"is_activated":"1"}, +{"id":"33841","name":"Peceneaga","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33842","name":"Sarichioi","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33843","name":"Slava Cercheza","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33844","name":"Somova","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33845","name":"Sulina","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33846","name":"Topolog","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33847","name":"Tulcea","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33848","name":"Turcoaia","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33849","name":"Valea Nucarilor","city_id":"2880","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33850","name":"Alunu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33851","name":"Amarasti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33852","name":"Baile Govora","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33853","name":"Baile Olanesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33854","name":"Balcesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33855","name":"Berbesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33856","name":"Berislavesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33857","name":"Boisoara","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33858","name":"Brezoi","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33859","name":"Caineni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33860","name":"Calimanesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33861","name":"Cernisoara","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33862","name":"Copaceni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33863","name":"Creteni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33864","name":"Daesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33865","name":"Danicei","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33866","name":"Dragasani","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33867","name":"Fartatesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33868","name":"Fauresti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33869","name":"Francesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33870","name":"Galicea","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33871","name":"Ghioroiu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33872","name":"Glavile","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33873","name":"Golesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33874","name":"Gusoeni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33875","name":"Horezu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33876","name":"Ladesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33877","name":"Lalosu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33878","name":"Lapusata","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33879","name":"Lungesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33880","name":"Maciuca","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33881","name":"Madulari","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33882","name":"Malaia","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33883","name":"Maldaresti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33884","name":"Mateesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33885","name":"Milcoiu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33886","name":"Muereasca","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33887","name":"Ocnele Mari","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33888","name":"Olanu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33889","name":"Orlesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33890","name":"Otesani","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33891","name":"Pausesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33892","name":"Pausesti-Maglasi","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33893","name":"Perisani","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33894","name":"Pesceana","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33895","name":"Pietrari","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33896","name":"Prundeni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33897","name":"Ramnicu Valcea","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33898","name":"Roesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33899","name":"Rosiile","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33900","name":"Salatrucel","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33901","name":"Scundu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33902","name":"Sirineasa","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33903","name":"Stoilesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33904","name":"Stroesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33905","name":"Susani","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33906","name":"Tetoiu","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33907","name":"Vaideeni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33908","name":"Voicesti","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33909","name":"Zatreni","city_id":"2881","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33910","name":"Alexandru Vlahuta","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33911","name":"Arsura","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33912","name":"Bacani","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33913","name":"Bacesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33914","name":"Banca","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33915","name":"Barlad","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33916","name":"Berezeni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33917","name":"Bogdanita","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33918","name":"Codaesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33919","name":"Coroiesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33920","name":"Cretesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33921","name":"Delesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33922","name":"Dimitrie Cantemir","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33923","name":"Dranceni Sat","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33924","name":"Duda","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33925","name":"Epureni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33926","name":"Falciu","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33927","name":"Gagesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33928","name":"Garceni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33929","name":"Gherghesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33930","name":"Hoceni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33931","name":"Husi","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33932","name":"Iana","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33933","name":"Ivanesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33934","name":"Laza","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33935","name":"Lipovat","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33936","name":"Lunca Banului","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33937","name":"Malusteni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33938","name":"Miclesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33939","name":"Muntenii de Jos","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33940","name":"Murgeni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33941","name":"Negresti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33942","name":"Oltenesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33943","name":"Osesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33944","name":"Padureni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33945","name":"Perieni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33946","name":"Pogana","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33947","name":"Poienesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33948","name":"Pungesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33949","name":"Rebricea","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33950","name":"Rosiesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33951","name":"Solesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33952","name":"Stanilesti","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33953","name":"Suletea","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33954","name":"Tacuta","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33955","name":"Tanacu","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33956","name":"Tutova","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33957","name":"Vaslui","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33958","name":"Vetrisoaia","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33959","name":"Vinderei","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33960","name":"Vutcani","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33961","name":"Zapodeni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33962","name":"Zorleni","city_id":"2882","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33963","name":"Adjud","city_id":"2883","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33964","name":"Andreiasu de Jos","city_id":"2883","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33965","name":"Barsesti","city_id":"2883","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33966","name":"Boghesti","city_id":"2883","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"is_activated":"1"}, +{"id":"33967","name":"Bolotesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33968","name":"Bordesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33969","name":"Campineanca","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33970","name":"Campuri","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33971","name":"Carligele","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33972","name":"Chiojdeni","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33973","name":"Ciorasti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33974","name":"Corbita","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33975","name":"Cotesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33976","name":"Dumitresti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33977","name":"Fitionesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33978","name":"Focsani","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33979","name":"Garoafa","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33980","name":"Gugesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33981","name":"Gura Calitei","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33982","name":"Homocea","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33983","name":"Jaristea","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33984","name":"Jitia","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33985","name":"Maicanesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33986","name":"Marasesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33987","name":"Milcovul","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33988","name":"Nanesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33989","name":"Naruja","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33990","name":"Nereju","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33991","name":"Nistoresti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33992","name":"Paltin","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33993","name":"Panciu","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33994","name":"Paunesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33995","name":"Poiana Cristei","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33996","name":"Pufesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33997","name":"Racoasa","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33998","name":"Reghiu","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"33999","name":"Ruginesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34000","name":"Sihlea","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34001","name":"Slobozia Bradului","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34002","name":"Slobozia-Ciorasti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34003","name":"Soveja","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34004","name":"Straoane","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34005","name":"Suraia","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34006","name":"Tamboesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34007","name":"Tanasoaia","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34008","name":"Tataranu","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34009","name":"Tifesti","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34010","name":"Tulnici","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34011","name":"Valea Sarii","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34012","name":"Vartescoiu","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34013","name":"Vintileasca","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34014","name":"Vizantea","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34015","name":"Vrancioaia","city_id":"2883","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34016","name":"Adygejsk","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34017","name":"Enem","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34018","name":"Jablonovskij","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34019","name":"Kamennomostskij","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34020","name":"Majkop","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34021","name":"Tulskij","city_id":"2884","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34022","name":"Aginskoje","city_id":"2885","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34023","name":"Alagir","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34024","name":"Ardon","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34025","name":"Beslan","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34026","name":"Digora","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34027","name":"Mozdok","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34028","name":"Vladikavkaz","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34029","name":"Zavodskoj","city_id":"2886","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34030","name":"Alejsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34031","name":"Barnaul","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34032","name":"Belojarsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34033","name":"Belokuriha","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34034","name":"Bijsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34035","name":"Blagoveshchenka","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34036","name":"Gornjak","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34037","name":"Jarovoe","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34038","name":"Juzhnyj","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34039","name":"Kamen-na-Obi","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34040","name":"Novoaltajsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34041","name":"Novosilikatnyj","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34042","name":"Rubcovsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34043","name":"Sibirskiy","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34044","name":"Slavgorod","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34045","name":"Talmenka","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34046","name":"Zarinsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34047","name":"Zmeinogorsk","city_id":"2887","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34048","name":"Arhara","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34049","name":"Belogorsk","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34050","name":"Blagoveshchensk","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34051","name":"Jerofej Pavlovich","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34052","name":"Magdagachi","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34053","name":"Novoburejskij","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34054","name":"Progress","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34055","name":"Rajchihinsk","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34056","name":"Seryshevo","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34057","name":"Shimanovsk","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34058","name":"Skovorodino","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34059","name":"Svobodnyj","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34060","name":"Tynda","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34061","name":"Urusha","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34062","name":"Zavitinsk","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34063","name":"Zeja","city_id":"2888","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34064","name":"Arhangelsk","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34065","name":"Jemca","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34066","name":"Jercevo","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34067","name":"Kargopol","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34068","name":"Konosha","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34069","name":"Korjazhma","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34070","name":"Kotlas","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34071","name":"Kuloj","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34072","name":"Maloshujka","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34073","name":"Mirnyj","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34074","name":"Njandoma","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34075","name":"Novodvinsk","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34076","name":"Obozjorskij","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34077","name":"Oktjabrskij","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34078","name":"Onega","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34079","name":"Plesetsk","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34080","name":"Podjuga","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34081","name":"Puksoozero","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34082","name":"Samoded","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34083","name":"Savinskij","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34084","name":"Severodvinsk","city_id":"2889","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"is_activated":"1"}, +{"id":"34085","name":"Shenkursk","city_id":"2889","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34086","name":"Udimskij","city_id":"2889","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34087","name":"Urdoma","city_id":"2889","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34088","name":"Velsk","city_id":"2889","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34089","name":"Vychegodskij","city_id":"2889","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34090","name":"Ahtubinsk","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34091","name":"Astrahan","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34092","name":"Harabali","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34093","name":"Kamyzjak","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34094","name":"Kapustin Jar","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34095","name":"Liman","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34096","name":"Narimanov","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34097","name":"Verhnij Baskunchak","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34098","name":"Volodarskij","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34099","name":"Znamensk","city_id":"2890","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34100","name":"Agidel","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34101","name":"Bajmak","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34102","name":"Belebej","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34103","name":"Beloreck","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34104","name":"Birsk","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34105","name":"Chishmy","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34106","name":"Davlekanovo","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34107","name":"Djurtjuli","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34108","name":"Iglino","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34109","name":"Ishimbaj","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34110","name":"Janaul","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34111","name":"Jermolajevo","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34112","name":"Kandry","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34113","name":"Krasnousolskij","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34114","name":"Kumertau","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34115","name":"Meleuz","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34116","name":"Mezhgorje","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34117","name":"Neftekamsk","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34118","name":"Oktyabrsky","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34119","name":"Prijutovo","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34120","name":"Rajevskij","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34121","name":"Salavat","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34122","name":"Serafimovskij","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34123","name":"Sibaj","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34124","name":"Sterlitamak","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34125","name":"Tujmazy","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34126","name":"Uchaly","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34127","name":"Ufa","city_id":"2891","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34128","name":"Aleksejevka","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34129","name":"Belgorod","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34130","name":"Borisovka","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34131","name":"Chernjanka","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34132","name":"Grajvoron","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34133","name":"Gubkin","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34134","name":"Novyj Oskol","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34135","name":"Rakitnoe","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34136","name":"Razumnoe","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34137","name":"Shebekino","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34138","name":"Staryj Oskol","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34139","name":"Stroitel","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34140","name":"Tomarovka","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34141","name":"Valujki","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34142","name":"Volokonovka","city_id":"2892","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34143","name":"Belye Berega","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34144","name":"Brjansk","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34145","name":"Djatkovo","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34146","name":"Fokino","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34147","name":"Karachev","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34148","name":"Kletnja","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34149","name":"Klimovo","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34150","name":"Klincy","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34151","name":"Lokot","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34152","name":"Navlja","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34153","name":"Novozybkov","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34154","name":"Pochjop","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34155","name":"Pogar","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34156","name":"Selco","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34157","name":"Starodub","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34158","name":"Surazh","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34159","name":"Suzjomka","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34160","name":"Trubchjovsk","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34161","name":"Unecha","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34162","name":"Zhukovka","city_id":"2893","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34163","name":"Gusinoozjorsk","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34164","name":"Kamensk","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34165","name":"Kjahta","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34166","name":"Novyj Uojan","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34167","name":"Onohoj","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34168","name":"Selenginsk","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34169","name":"Severobajkalsk","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34170","name":"Taksimo","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34171","name":"Ulan-Ude","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34172","name":"Zakamensk","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34173","name":"Zarechnyj","city_id":"2894","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34174","name":"Groznyj","city_id":"2895","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34175","name":"Gudermes","city_id":"2895","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34176","name":"Malgobek","city_id":"2895","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34177","name":"Urus-Martan","city_id":"2895","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34178","name":"Asha","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34179","name":"Bakal","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34180","name":"Bazhovo","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34181","name":"Berdjaush","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34182","name":"Chebarkul","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34183","name":"Cheljabinsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34184","name":"Chelyabinsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34185","name":"Jemanzhelinsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34186","name":"Jurjuzan","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34187","name":"Juznouralsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34188","name":"Karabash","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34189","name":"Kartaly","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34190","name":"Kasli","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34191","name":"Katav-Ivanovsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34192","name":"Kopejsk","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34193","name":"Korkino","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34194","name":"Krasnogorskij","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34195","name":"Kusa","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34196","name":"Kyshtym","city_id":"2896","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"is_activated":"1"}, +{"id":"34197","name":"Lokomotivnyj","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34198","name":"Magnitka","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34199","name":"Magnitogorsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34200","name":"Miass","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34201","name":"Minjar","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34202","name":"Njazepetrovsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34203","name":"Novosineglazovskij","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34204","name":"Ozjorsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34205","name":"Pervomajskij","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34206","name":"Plast","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34207","name":"Satka","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34208","name":"Sim","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34209","name":"Snezhinsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34210","name":"Starokamyshinsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34211","name":"Trjohgornij","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34212","name":"Troick","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34213","name":"Ust-Katav","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34214","name":"Verhneuralsk","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34215","name":"Verhnij Ufalej","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34216","name":"Zlatoust","city_id":"2896","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34217","name":"Atamanovka","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34218","name":"Balej","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34219","name":"Borzja","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34220","name":"Bukachacha","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34221","name":"Chernyshevsk","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34222","name":"Darasun","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34223","name":"Gornyy","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34224","name":"Hilok","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34225","name":"Karymskoje","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34226","name":"Krasnokamensk","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34227","name":"Mogocha","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34228","name":"Nerchinsk","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34229","name":"Novaja Chara","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34230","name":"Novokruchuninskij","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34231","name":"Olovjannaja","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34232","name":"Petrovsk-Zabajkalskij","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34233","name":"Sherlovaja Gora","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34234","name":"Shilka","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34235","name":"Sretensk","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34236","name":"Vershino-Darasunskij","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34237","name":"Zabajkalsk","city_id":"2897","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34238","name":"Anadyr","city_id":"2898","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34239","name":"Bilibino","city_id":"2898","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34240","name":"Pevek","city_id":"2898","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34241","name":"Ugolnyje Kopi","city_id":"2898","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34242","name":"Alatyr","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34243","name":"Cheboksary","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34244","name":"Civilsk","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34245","name":"Ibresi","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34246","name":"Jadrin","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34247","name":"Kanash","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34248","name":"Kozlovka","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34249","name":"Kugesy","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34250","name":"Mariinskij Posad","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34251","name":"Novocheboksarsk","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34252","name":"Shumerlja","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34253","name":"Vurnary","city_id":"2899","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34254","name":"Belidzhi","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34255","name":"Bujnaksk","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34256","name":"Dagestanskije Ogni","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34257","name":"Derbent","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34258","name":"Hasavjurt","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34259","name":"Izberbash","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34260","name":"Juzhno-Suhokumsk","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34261","name":"Kaspijsk","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34262","name":"Kiziljurt","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34263","name":"Kizljar","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34264","name":"Mahackala","city_id":"2900","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34265","name":"Gorno-Altajsk","city_id":"2902","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34266","name":"Amursk","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34267","name":"Bikin","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34268","name":"Chegdomyn","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34269","name":"Cherdomyn","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34270","name":"Habarovsk","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34271","name":"Hor","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34272","name":"Jelban","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34273","name":"Komsomolsk-na-Amure","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34274","name":"Litovko","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34275","name":"Nikolajevsk-na-Amure","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34276","name":"Ohotsk","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34277","name":"Perejaslavka","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34278","name":"Solnechnyj","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34279","name":"Sovetskaja Gavan","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34280","name":"Uglegorsk","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34281","name":"Vanino","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34282","name":"Vjazemskij","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34283","name":"Zavety Iljicha","city_id":"2903","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34284","name":"Abakan","city_id":"2904","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34285","name":"Abaza","city_id":"2904","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34286","name":"Cherjomushki","city_id":"2904","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34287","name":"Chernogorsk","city_id":"2904","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"is_activated":"1"}, +{"id":"34288","name":"Sajanogorsk","city_id":"2904","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34289","name":"Shira","city_id":"2904","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34290","name":"Sorsk","city_id":"2904","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34291","name":"Ust-Abakan","city_id":"2904","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34292","name":"Belojarskij","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34293","name":"Belyj Jar","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34294","name":"Fjodorovskij","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34295","name":"Hanty-Mansijsk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34296","name":"Igrim","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34297","name":"Izluchinsk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34298","name":"Jugorsk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34299","name":"Kogalym","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34300","name":"Langepas","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34301","name":"Ljantor","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34302","name":"Megion","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34303","name":"Mezhdurechenskij","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34304","name":"Neftejugansk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34305","name":"Nizhnevartovsk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34306","name":"Njagan","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34307","name":"Novoagansk","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34308","name":"Pojkovskij","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34309","name":"Pokachi","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34310","name":"Raduzhnyj","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34311","name":"Sovetskij","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34312","name":"Surgut","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34313","name":"Uraj","city_id":"2905","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34314","name":"Nazran","city_id":"2906","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34315","name":"Angarsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34316","name":"Bajkalsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34317","name":"Balagansk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34318","name":"Birjusinsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34319","name":"Bodajbo","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34320","name":"Bratsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34321","name":"Cheremhovo","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34322","name":"Chunskij","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34323","name":"Irkutsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34324","name":"Kirensk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34325","name":"Kujtun","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34326","name":"Mihajlovka","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34327","name":"Nizhneudinsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34328","name":"Novaja Igirma","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34329","name":"Sajansk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34330","name":"Shelehov","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34331","name":"Sljudjanka","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34332","name":"Svirsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34333","name":"Tajshet","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34334","name":"Tulun","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34335","name":"Usolje-Sibirskoje","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34336","name":"Ust-Ilimsk","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34337","name":"Ust-Kut","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34338","name":"Vihorevka","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34339","name":"Zalari","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34340","name":"Zheleznodorozhnyj","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34341","name":"Zheleznogorsk-Ilimskij","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34342","name":"Zima","city_id":"2907","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34343","name":"Furmanov","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34344","name":"Ivanovo","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34345","name":"Jurjevec","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34346","name":"Juzha","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34347","name":"Kineshma","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34348","name":"Kohma","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34349","name":"Komsomolsk","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34350","name":"Lezhnjovo","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34351","name":"Navoloki","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34352","name":"Privolzhsk","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34353","name":"Puchezh","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34354","name":"Rodniki","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34355","name":"Shuja","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34356","name":"Tejkovo","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34357","name":"Vichuga","city_id":"2908","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34358","name":"Gubkinskij","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34359","name":"Korotchajevo","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34360","name":"Labytnangi","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34361","name":"Muravlenko","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34362","name":"Nadym","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34363","name":"Nojabrsk","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34364","name":"Novyj Urengoj","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34365","name":"Pangody","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34366","name":"Salehard","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34367","name":"Tarko-Sale","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34368","name":"Urengoj","city_id":"2909","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34369","name":"Danilov","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34370","name":"Gavrilov-Jam","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34371","name":"Jaroslavl","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34372","name":"Pereslavl-Zalesskij","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34373","name":"Rostov","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34374","name":"Rybinsk","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34375","name":"Tutajev","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34376","name":"Uglich","city_id":"2910","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34377","name":"Birakan","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34378","name":"Birobidzhan","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34379","name":"Imeni Telmana","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34380","name":"Izvestkovyj","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34381","name":"Londoko","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34382","name":"Obluchje","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34383","name":"Teploozjorsk","city_id":"2911","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34384","name":"Baksan","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34385","name":"Chegem Pervyj","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34386","name":"Majskij","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34387","name":"Nalchik","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34388","name":"Nartkala","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34389","name":"Prohladnyj","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34390","name":"Terek","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34391","name":"Tyrnyauz","city_id":"2912","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34392","name":"Bagrationovsk","city_id":"2913","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34393","name":"Baltijsk","city_id":"2913","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"is_activated":"1"}, +{"id":"34394","name":"Chernjahovsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34395","name":"Gurjevsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34396","name":"Gusev","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34397","name":"Gvardejsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34398","name":"Kaliningrad","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34399","name":"Mamonovo","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34400","name":"Neman","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34401","name":"Nesterov","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34402","name":"Pionerskij","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34403","name":"Sovetsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34404","name":"Svetlogorsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34405","name":"Svetlyj","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34406","name":"Zeljenogradsk","city_id":"2913","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34407","name":"Elista","city_id":"2914","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34408","name":"Gorodovikovsk","city_id":"2914","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34409","name":"Lagan","city_id":"2914","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34410","name":"Balabanovo","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34411","name":"Belousovo","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34412","name":"Borovsk","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34413","name":"Jermolino","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34414","name":"Kaluga","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34415","name":"Kondrovo","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34416","name":"Kozelsk","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34417","name":"Kremenki","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34418","name":"Ljudinovo","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34419","name":"Malojaroslavec","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34420","name":"Obninsk","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34421","name":"Sosenskij","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34422","name":"Suhinichi","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34423","name":"Tarusa","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34424","name":"Tovarkovo","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34425","name":"Zhukov","city_id":"2915","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34426","name":"Jelizovo","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34427","name":"Kljuchi","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34428","name":"Mohovaja","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34429","name":"Petropavlovsk-Kamchatskij","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34430","name":"Ust-Kamchatsk","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34431","name":"Viljuchinsk","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34432","name":"Vulkannyj","city_id":"2916","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34433","name":"Cherkessk","city_id":"2917","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34434","name":"Karachajevsk","city_id":"2917","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34435","name":"Ust-Dzheguta","city_id":"2917","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34436","name":"Belomorsk","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34437","name":"Kem","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34438","name":"Kondopoga","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34439","name":"Kostomuksha","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34440","name":"Lahdenpohja","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34441","name":"Medvezhjegorsk","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34442","name":"Nadvoicy","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34443","name":"Olonec","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34444","name":"Petrozavodsk","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34445","name":"Pitkjaranta","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34446","name":"Pudozh","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34447","name":"Segezha","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34448","name":"Sortavala","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34449","name":"Suojarvi","city_id":"2918","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34450","name":"Anzhero-Sudzhensk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34451","name":"Bachatskij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34452","name":"Berjozovskij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34453","name":"Gramoteino","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34454","name":"Inskoj","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34455","name":"Jashkino","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34456","name":"Jurga","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34457","name":"Kaltan","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34458","name":"Kedrovka","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34459","name":"Kemerovo","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34460","name":"Kiseljovsk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34461","name":"Krasnobrodskij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34462","name":"Leninsk-Kuzneckij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34463","name":"Malinovka","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34464","name":"Mariinsk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34465","name":"Mezhdurechensk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34466","name":"Myski","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34467","name":"Novokuzneck","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34468","name":"Novokuznetsk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34469","name":"Novyj Gorodok","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34470","name":"Osinniki","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34471","name":"Polsaevo","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34472","name":"Prokopjevsk","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34473","name":"Promyshlennaja","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34474","name":"Promyshlennovskij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34475","name":"Salair","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34476","name":"Starobachaty","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34477","name":"Tajga","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34478","name":"Tajzhina","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34479","name":"Tashtagol","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34480","name":"Tisul","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34481","name":"Tjazhinskij","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34482","name":"Topki","city_id":"2919","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34483","name":"Belaja Holunica","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34484","name":"Jaransk","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34485","name":"Jurja","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34486","name":"Kirovo-Chepeck","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34487","name":"Kirs","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34488","name":"Kotelnich","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34489","name":"Ljangasovo","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34490","name":"Luza","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34491","name":"Malmyzh","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34492","name":"Murashi","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34493","name":"Nolinsk","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34494","name":"Omutninsk","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34495","name":"Orichi","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34496","name":"Orlov","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34497","name":"Peskovka","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34498","name":"Slobodskoj","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34499","name":"Urzhum","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34500","name":"Vahrushi","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34501","name":"Vjatskije Poljany","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34502","name":"Zujevka","city_id":"2921","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"is_activated":"1"}, +{"id":"34503","name":"Blagoevo","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34504","name":"Inta","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34505","name":"Jarega","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34506","name":"Jeletskij","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34507","name":"Jemva","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34508","name":"Komsomolskij","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34509","name":"Krasnozatonskij","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34510","name":"Mikun","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34511","name":"Nizhnij Odes","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34512","name":"Pechora","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34513","name":"Promyshlennyj","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34514","name":"Severnyj","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34515","name":"Sosnogorsk","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34516","name":"Syktyvkar","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34517","name":"Troicko-Pechorsk","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34518","name":"Uhta","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34519","name":"Usinsk","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34520","name":"Usogorsk","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34521","name":"Vorgashor","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34522","name":"Vorkuta","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34523","name":"Vuktyl","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34524","name":"Zheshart","city_id":"2922","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34525","name":"Kudymkar","city_id":"2923","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34526","name":"Palana","city_id":"2924","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34527","name":"Galich","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34528","name":"Kostroma","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34529","name":"Makarjev","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34530","name":"Manturovo","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34531","name":"Neja","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34532","name":"Nerehta","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34533","name":"Sharja","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34534","name":"Vetluzhskij","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34535","name":"Volgorechensk","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34536","name":"Zavolzhsk","city_id":"2925","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34537","name":"Abinsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34538","name":"Achujevo","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34539","name":"Afipskij","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34540","name":"Ahtyrskij","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34541","name":"Anapa","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34542","name":"Apsheronsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34543","name":"Belorechensk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34544","name":"Gelendzhik","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34545","name":"Gorjachi Kljuch","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34546","name":"Gulkevichi","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34547","name":"Hadyzhensk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34548","name":"Ilskij","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34549","name":"Jejsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34550","name":"Kalinino","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34551","name":"Korenovsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34552","name":"Krasnodar","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34553","name":"Kropotkin","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34554","name":"Krymsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34555","name":"Kurganinsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34556","name":"Labinsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34557","name":"Mostovskoj","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34558","name":"Neftegorsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34559","name":"Novokubansk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34560","name":"Novomihajlovskij","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34561","name":"Novorossijsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34562","name":"Pashkovskij","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34563","name":"Primorsko-Ahtarsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34564","name":"Psebaj","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34565","name":"Slavjansk-na-Kubani","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34566","name":"Sochi","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34567","name":"Srednjaja Ahtuba","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34568","name":"Temrjuk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34569","name":"Tihoreck","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34570","name":"Timashevsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34571","name":"Tuapse","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34572","name":"Ust-Labinsk","city_id":"2926","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34573","name":"Aban","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34574","name":"Achinsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34575","name":"Artjomovsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34576","name":"Bogotol","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34577","name":"Borodino","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34578","name":"Divnogorsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34579","name":"Dubinino","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34580","name":"Igarka","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34581","name":"Ilanskij","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34582","name":"Jemeljanovo","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34583","name":"Jenisejsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34584","name":"Kajerkan","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34585","name":"Kansk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34586","name":"Kedrovyj","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34587","name":"Kodinsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34588","name":"Krasnojarsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34589","name":"Kuragino","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34590","name":"Lesosibirsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34591","name":"Minusinsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34592","name":"Nazarovo","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34593","name":"Nizhnjaja Pojma","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34594","name":"Norilsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34595","name":"Podgornyj","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34596","name":"Sharypovo","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34597","name":"Shushenskoe","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34598","name":"Sosnovoborsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34599","name":"Talnah","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34600","name":"Ujar","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34601","name":"Uzhur","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34602","name":"Zaozjornyj","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34603","name":"Zelenogorsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34604","name":"Zheleznogorsk","city_id":"2927","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34605","name":"Dalmatovo","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34606","name":"Kargapolje","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34607","name":"Katajsk","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34608","name":"Kurgan","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34609","name":"Kurtamysh","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34610","name":"Makushino","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34611","name":"Petuhovo","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34612","name":"Shadrinsk","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34613","name":"Shumiha","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34614","name":"Vargashi","city_id":"2929","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"is_activated":"1"}, +{"id":"34615","name":"Dmitriev Lgovskij","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34616","name":"Imeni Karla Libknehta","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34617","name":"Kurchatov","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34618","name":"Kursk","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34619","name":"Lgov","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34620","name":"Obojan","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34621","name":"Rylsk","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34622","name":"Shchigry","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34623","name":"Shchuchje","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34624","name":"Sudzha","city_id":"2930","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34625","name":"Boksitogorsk","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34626","name":"Dubrovka","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34627","name":"Gatchina","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34628","name":"Imeni Morozova","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34629","name":"Ivangorod","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34630","name":"Kingisepp","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34631","name":"Kirishi","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34632","name":"Kirovsk","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34633","name":"Kolpino","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34634","name":"Kommunar","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34635","name":"Kuzmolovskiy","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34636","name":"Lodejnoje Pole","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34637","name":"Luga","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34638","name":"Nikolskoe","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34639","name":"Novaja Ladoga","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34640","name":"Otradnoe","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34641","name":"Pikaljovo","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34642","name":"Podporozhje","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34643","name":"Priozjorsk","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34644","name":"Sertolovo","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34645","name":"Shlisselburg","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34646","name":"Siverskij","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34647","name":"Sjasstroj","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34648","name":"Slancy","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34649","name":"Sosnovyj Bor","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34650","name":"Svetogorsk","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34651","name":"Tihvin","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34652","name":"Tosno","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34653","name":"Uljanovka","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34654","name":"Volhov","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34655","name":"Volosovo","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34656","name":"Vsevolozhsk","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34657","name":"Vyborg","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34658","name":"Vyrica","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34659","name":"Zarskoje Selo","city_id":"2931","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34660","name":"Chaplygin","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34661","name":"Dankov","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34662","name":"Dobrinka","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34663","name":"Grjazi","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34664","name":"Jelec","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34665","name":"Lebedjan","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34666","name":"Lipeck","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34667","name":"Usman","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34668","name":"Zadonsk","city_id":"2932","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34669","name":"Jagodnoje","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34670","name":"Magadan","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34671","name":"Omsukchan","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34672","name":"Palatka","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34673","name":"Sinegorje","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34674","name":"Susuman","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34675","name":"Ust-Omchug","city_id":"2933","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34676","name":"Ardatov","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34677","name":"Chamzinka","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34678","name":"Insar","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34679","name":"Kovylkino","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34680","name":"Krasnoslobodsk","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34681","name":"Luhovka","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34682","name":"Romodanovo","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34683","name":"Ruzajevka","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34684","name":"Saransk","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34685","name":"Temnikov","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34686","name":"Torbeevo","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34687","name":"Zubova Poljana","city_id":"2935","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34688","name":"Moscow","city_id":"2936","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34689","name":"Moskva","city_id":"2939","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34690","name":"Vostochnyj","city_id":"2939","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34691","name":"Zeljenograd","city_id":"2939","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34692","name":"Apatity","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34693","name":"Gadzhievo","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34694","name":"Kandalaksha","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34695","name":"Kola","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34696","name":"Kovdor","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34697","name":"Monchegorsk","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34698","name":"Murmansk","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34699","name":"Murmashi","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34700","name":"Nikel","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34701","name":"Olenegorsk","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34702","name":"Ostrovnoj","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34703","name":"Poljarnye Zory","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34704","name":"Poljarnyj","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34705","name":"Revda","city_id":"2940","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"is_activated":"1"}, +{"id":"34706","name":"Severomorsk","city_id":"2940","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34707","name":"Snezhnogorsk","city_id":"2940","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34708","name":"Zaozjorsk","city_id":"2940","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34709","name":"Zapoljarnyj","city_id":"2940","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34710","name":"Zeljenoborskij","city_id":"2940","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34711","name":"Narjan-Mar","city_id":"2941","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34712","name":"Borovichi","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34713","name":"Chudovo","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34714","name":"Krestcy","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34715","name":"Malaja Vishera","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34716","name":"Okulovka","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34717","name":"Pestovo","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34718","name":"Proletarij","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34719","name":"Solcy","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34720","name":"Staraja Russa","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34721","name":"Uglovka","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34722","name":"Valdaj","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34723","name":"Velikij Novgorod","city_id":"2943","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34724","name":"Novokusnezk","city_id":"2944","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34725","name":"Barabinsk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34726","name":"Berdsk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34727","name":"Bolotnoe","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34728","name":"Chany","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34729","name":"Cherepanovo","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34730","name":"Chulym","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34731","name":"Iskitim","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34732","name":"Karasuk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34733","name":"Kargat","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34734","name":"Kochenjovo","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34735","name":"Kolcovo","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34736","name":"Kolyvan","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34737","name":"Krasnoobsk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34738","name":"Krasnozerskoe","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34739","name":"Kujbyshev","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34740","name":"Kupino","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34741","name":"Linjovo","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34742","name":"Masljanino","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34743","name":"Novosibirsk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34744","name":"Ob","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34745","name":"Suzun","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34746","name":"Tatarsk","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34747","name":"Toguchin","city_id":"2945","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34748","name":"Bolsherechje","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34749","name":"Cherlak","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34750","name":"Isilkul","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34751","name":"Kalachinsk","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34752","name":"Kormilovka","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34753","name":"Ljubinskij","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34754","name":"Moskaljoni","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34755","name":"Muromcevo","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34756","name":"Nazyvajevsk","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34757","name":"Omsk","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34758","name":"Tara","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34759","name":"Tavricheskoje","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34760","name":"Tjukalinsk","city_id":"2946","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34761","name":"Abdulino","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34762","name":"Buguruslan","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34763","name":"Buzuluk","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34764","name":"Jasnyj","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34765","name":"Komarovskiy","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34766","name":"Kuvandyk","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34767","name":"Mednogorsk","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34768","name":"Novotroick","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34769","name":"Orenburg","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34770","name":"Orsk","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34771","name":"Sol-Ileck","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34772","name":"Sorochinsk","city_id":"2947","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34773","name":"Bolhov","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34774","name":"Gaj","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34775","name":"Livny","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34776","name":"Mcensk","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34777","name":"Orjol","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34778","name":"Znamenka","city_id":"2948","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34779","name":"Bashmakovo","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34780","name":"Bekovo","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34781","name":"Belinskiy","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34782","name":"Kamenka","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34783","name":"Kolyshlej","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34784","name":"Kuzneck","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34785","name":"Mokshan","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34786","name":"Nikolsk","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34787","name":"Nizhnij Lomov","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34788","name":"Pachelma","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34789","name":"Penza","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34790","name":"Serdobsk","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34791","name":"Sursk","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34792","name":"Zemetchino","city_id":"2949","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34793","name":"Aleksandrovsk","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34794","name":"Berezniki","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34795","name":"Chajkovskij","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34796","name":"Chermoz","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34797","name":"Chernushka","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34798","name":"Chusovoj","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34799","name":"Dobrjanka","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34800","name":"Gornozavodsk","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34801","name":"Gremjachinsk","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34802","name":"Gubaha","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34803","name":"Jajva","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34804","name":"Kizel","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34805","name":"Komsomolsky","city_id":"2950","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"is_activated":"1"}, +{"id":"34806","name":"Krasnokamsk","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34807","name":"Krasnovishersk","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34808","name":"Kungur","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34809","name":"Lysva","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34810","name":"Novye Ljady","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34811","name":"Nytva","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34812","name":"Ocher","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34813","name":"Osa","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34814","name":"Pashija","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34815","name":"Perm","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34816","name":"Polazna","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34817","name":"Skalnyj","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34818","name":"Solikamsk","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34819","name":"Ugleuralskij","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34820","name":"Uralskij","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34821","name":"Usolje","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34822","name":"Vereshchagino","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34823","name":"Zvjozdnyj","city_id":"2950","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34824","name":"Arsenjev","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34825","name":"Artjom","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34826","name":"Artjomovskij","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34827","name":"Bolshoj Kamen","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34828","name":"Dalnegorsk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34829","name":"Dalnerechensk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34830","name":"Dunaj","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34831","name":"Jaroslavskij","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34832","name":"Kavalerovo","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34833","name":"Kirovskiy","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34834","name":"Lesozavodsk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34835","name":"Lipovcy","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34836","name":"Livadija","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34837","name":"Luchegorsk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34838","name":"Nahodka","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34839","name":"Novoshahtinskij","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34840","name":"Partizansk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34841","name":"Pogranichnyj","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34842","name":"Preobrazhenie","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34843","name":"Putjatin","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34844","name":"Sibircevo","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34845","name":"Slavjanka","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34846","name":"Spassk-Dalnij","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34847","name":"Tavrichanka","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34848","name":"Trudovoe","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34849","name":"Uglekamensk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34850","name":"Uglovoe","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34851","name":"Ussurijsk","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34852","name":"Vladivostok","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34853","name":"Vrangel","city_id":"2951","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34854","name":"Dedovichi","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34855","name":"Dno","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34856","name":"Nevel","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34857","name":"Novosokolniki","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34858","name":"Opochka","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34859","name":"Pechory","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34860","name":"Porhov","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34861","name":"Pskov","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34862","name":"Sebezh","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34863","name":"Strugi-Krasnye","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34864","name":"Velikije Luki","city_id":"2952","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34865","name":"Kasimov","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34866","name":"Korablino","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34867","name":"Mihajlov","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34868","name":"Novomichurinsk","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34869","name":"Rjazan","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34870","name":"Rjazhsk","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34871","name":"Rybnoje","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34872","name":"Sasovo","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34873","name":"Shilovo","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34874","name":"Skopin","city_id":"2954","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34875","name":"Ajutinskij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34876","name":"Aksaj","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34877","name":"Azov","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34878","name":"Batajsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34879","name":"Belaja Kalitva","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34880","name":"Cimljansk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34881","name":"Doneck","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34882","name":"Donskoj","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34883","name":"Gigant","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34884","name":"Glubokij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34885","name":"Gornjackij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34886","name":"Gukovo","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34887","name":"Kamenolomni","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34888","name":"Kamensk-Shahtinskij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34889","name":"Konstantinovsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34890","name":"Krasnyj Sulin","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34891","name":"Lihovskoj","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34892","name":"Millerovo","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34893","name":"Morozovsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34894","name":"Novocherkassk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34895","name":"Novoshahtinsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34896","name":"Proletarsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34897","name":"Rostov-na-Donu","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34898","name":"Salsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34899","name":"Semikarakorsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34900","name":"Shahty","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34901","name":"Sholohovskij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34902","name":"Sinegorskij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34903","name":"Sokolovo","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34904","name":"Taganrog","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34905","name":"Ust-Doneckij","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34906","name":"Volgodonsk","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34907","name":"Zernograd","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34908","name":"Zhirnov","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34909","name":"Zverevo","city_id":"2955","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34910","name":"Ajhan","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34911","name":"Aldan","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34912","name":"Cherskij","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34913","name":"Chulman","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34914","name":"Deputatskij","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34915","name":"Jakutsk","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34916","name":"Lensk","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34917","name":"Marha","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34918","name":"Nerjungri","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34919","name":"Njurba","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34920","name":"Oljokminsk","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34921","name":"Pokrovsk","city_id":"2956","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"is_activated":"1"}, +{"id":"34922","name":"Sangar","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34923","name":"Serebrjanyj Bor","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34924","name":"Tiksi","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34925","name":"Tommot","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34926","name":"Udachnyj","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34927","name":"Ust-Nera","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34928","name":"Verhojansk","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34929","name":"Viljujsk","city_id":"2956","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34930","name":"Aleksandrovsk-Sahalinskij","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34931","name":"Dolinsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34932","name":"Holmsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34933","name":"Juzhno-Sahalinsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34934","name":"Korsakov","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34935","name":"Makarov","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34936","name":"Nevelsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34937","name":"Nogliki","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34938","name":"Oha","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34939","name":"Poronajsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34940","name":"Shahtjorsk","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34941","name":"Tymovskoje","city_id":"2957","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34942","name":"Bezenchuk","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34943","name":"Chapajevsk","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34944","name":"Fjodorovka","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34945","name":"Kinel","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34946","name":"Novokujbyshevsk","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34947","name":"Novosemejkino","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34948","name":"Oktjabrsk","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34949","name":"Otradnyj","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34950","name":"Pohvistnevo","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34951","name":"Povolzhskij","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34952","name":"Pribrezhnyj","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34953","name":"Roscinskij","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34954","name":"Smyshljaevka","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34955","name":"Suhodol","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34956","name":"Syzran","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34957","name":"Timashjovo","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34958","name":"Toljatti","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34959","name":"Zhigulevsk","city_id":"2958","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34960","name":"Togliatti","city_id":"2959","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34961","name":"Saint Petersburg","city_id":"2960","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34962","name":"Sankt Peterburg","city_id":"2960","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34963","name":"Arkadak","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34964","name":"Atkarsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34965","name":"Balakovo","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34966","name":"Balashov","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34967","name":"Bazarnyj Karabulak","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34968","name":"Dergachi","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34969","name":"Engels","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34970","name":"Hvalynsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34971","name":"Jershov","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34972","name":"Kalininsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34973","name":"Krasnoarmejsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34974","name":"Krasnyj Kut","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34975","name":"Marks","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34976","name":"Novouzensk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34977","name":"Ozinki","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34978","name":"Petrovsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34979","name":"Privolzhskij","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34980","name":"Pugachjov","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34981","name":"Rtishchevo","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34982","name":"Saratov","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34983","name":"Shihany","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34984","name":"Stepnoe","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34985","name":"Tatishchevo","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34986","name":"Volsk","city_id":"2961","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34987","name":"Demidov","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34988","name":"Desnogorsk","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34989","name":"Dorogobuzh","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34990","name":"Gagarin","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34991","name":"Hislavichi","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34992","name":"Jarcevo","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34993","name":"Jelnja","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34994","name":"Pochinok","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34995","name":"Roslavl","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34996","name":"Rudnja","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34997","name":"Safonovo","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34998","name":"Smolensk","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"34999","name":"Verhnedneprovskij","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35000","name":"Vjazma","city_id":"2962","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35001","name":"Blagodarnyj","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35002","name":"Budjonnovsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35003","name":"Georgijevsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35004","name":"Gorjachevodskij","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35005","name":"Inozemcevo","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35006","name":"Ipatovo","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35007","name":"Izobilnyj","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35008","name":"Jessentuki","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35009","name":"Kislovodsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35010","name":"Lermontov","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35011","name":"Mihajlovsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35012","name":"Mineralnyje Vody","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35013","name":"Neftekumsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35014","name":"Nevinnomyssk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35015","name":"Novoaleksandrovsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35016","name":"Novopavlovsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35017","name":"Pjatigorsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35018","name":"Solnechnodolsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35019","name":"Stavropol","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35020","name":"Svetlograd","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35021","name":"Svobody","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35022","name":"Zeljenokumsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35023","name":"Zheleznovodsk","city_id":"2963","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35024","name":"Alapajevsk","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35025","name":"Aramil","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35026","name":"Arti","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35027","name":"Asbest","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35028","name":"Baranchinskij","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35029","name":"Bisert","city_id":"2964","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"is_activated":"1"}, +{"id":"35030","name":"Bogdanovich","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35031","name":"Bulanash","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35032","name":"Degtjarsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35033","name":"Ekaterinburg","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35034","name":"Irbit","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35035","name":"Ivdel","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35036","name":"Izumrud","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35037","name":"Jekaterinburg","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35038","name":"Kachkanar","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35039","name":"Kamensk-Uralskij","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35040","name":"Kamyshlov","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35041","name":"Karpinsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35042","name":"Kirovgrad","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35043","name":"Krasnoturinsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35044","name":"Krasnoufimsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35045","name":"Krasnouralsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35046","name":"Kushva","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35047","name":"Lesnoj","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35048","name":"Leviha","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35049","name":"Lobva","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35050","name":"Malysheva","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35051","name":"Monetnyj","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35052","name":"Nevjansk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35053","name":"Nizhnie Sergi","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35054","name":"Nizhnij Tagil","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35055","name":"Nizhnjaja Salda","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35056","name":"Nizhnjaja Tura","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35057","name":"Novaja Ljalja","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35058","name":"Novouralsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35059","name":"Pervouralsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35060","name":"Polevskoj","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35061","name":"Pyshma","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35062","name":"Pyt-Jah","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35063","name":"Reftinskij","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35064","name":"Rezh","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35065","name":"Serov","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35066","name":"Severouralsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35067","name":"Sosva","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35068","name":"Sredneuralsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35069","name":"Suhoj Log","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35070","name":"Sysert","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35071","name":"Talica","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35072","name":"Tavda","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35073","name":"Troickij","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35074","name":"Turinsk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35075","name":"Verhnij Tagil","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35076","name":"Verhnjaja Pyshma","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35077","name":"Verhnjaja Salda","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35078","name":"Verhnjaja Sinyachiha","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35079","name":"Verhnjaja Tura","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35080","name":"Verhoturje","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35081","name":"Volchansk","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35082","name":"Yekaterinburg","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35083","name":"Zjuzelskij","city_id":"2964","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35084","name":"Dudinka","city_id":"2965","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35085","name":"Dmitrievka","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35086","name":"Inzhavino","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35087","name":"Kirsanov","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35088","name":"Kotovsk","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35089","name":"Michurinsk","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35090","name":"Morshansk","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35091","name":"Rasskazovo","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35092","name":"Tambov","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35093","name":"Uvarovo","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35094","name":"Zherdevka","city_id":"2966","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35095","name":"Agryz","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35096","name":"Aksubajevo","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35097","name":"Aktjubinskij","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35098","name":"Aleksejevskoje","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35099","name":"Almetjevsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35100","name":"Arsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35101","name":"Aznakajevo","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35102","name":"Bavly","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35103","name":"Bugulma","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35104","name":"Buinsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35105","name":"Chistopol","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35106","name":"Dzhalil","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35107","name":"Jelabuga","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35108","name":"Kamskie Poljany","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35109","name":"Kazan","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35110","name":"Kukmor","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35111","name":"Leninogorsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35112","name":"Mamadysh","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35113","name":"Mendelejevsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35114","name":"Menzelinsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35115","name":"Naberezhnyje Chelny","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35116","name":"Nizhnekamsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35117","name":"Niznjaja Maktama","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35118","name":"Nurlat","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35119","name":"Tetjushi","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35120","name":"Urussu","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35121","name":"Vasiljevo","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35122","name":"Zainsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35123","name":"Zeljonodolsk","city_id":"2967","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35124","name":"Bogandinskij","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35125","name":"Borovskij","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35126","name":"Golyshmanovo","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35127","name":"Ishim","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35128","name":"Jalutorovosk","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35129","name":"Tjumen","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35130","name":"Tobolsk","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35131","name":"Vinzili","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35132","name":"Zavodoukovsk","city_id":"2968","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35133","name":"Asino","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35134","name":"Jaja","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35135","name":"Kolpashevo","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35136","name":"Seversk","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35137","name":"Strezhevoj","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35138","name":"Tomsk","city_id":"2969","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"is_activated":"1"}, +{"id":"35139","name":"Agejevo","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35140","name":"Aleksin","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35141","name":"Beljov","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35142","name":"Bogoroditsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35143","name":"Bolohovo","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35144","name":"Dubovka","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35145","name":"Jasnogorsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35146","name":"Jefremov","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35147","name":"Kimovsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35148","name":"Kirejevsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35149","name":"Kosaja Gora","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35150","name":"Leninskij","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35151","name":"Lipki","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35152","name":"Mendelejevskij","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35153","name":"Novomoskovsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35154","name":"Plavsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35155","name":"Severo-Zadonsk","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35156","name":"Shchjokino","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35157","name":"Skuratovskij","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35158","name":"Sokolniki","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35159","name":"Suvorov","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35160","name":"Tovarkovskij","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35161","name":"Uzlovaja","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35162","name":"Venjov","city_id":"2970","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35163","name":"Andreapol","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35164","name":"Bezheck","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35165","name":"Bologoe","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35166","name":"Kaljazin","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35167","name":"Kashin","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35168","name":"Kimry","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35169","name":"Konakovo","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35170","name":"Kuvshinovo","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35171","name":"Lihoslavl","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35172","name":"Maksatiha","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35173","name":"Ostashkov","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35174","name":"Ozjornyj","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35175","name":"Pelidovo","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35176","name":"Rameshki","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35177","name":"Redkino","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35178","name":"Rzhev","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35179","name":"Starica","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35180","name":"Toropec","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35181","name":"Torzhok","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35182","name":"Tver","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35183","name":"Udomlja","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35184","name":"Vyshnij Volochok","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35185","name":"Zapadnaja Dvina","city_id":"2971","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35186","name":"Ak-Dovurak","city_id":"2972","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35187","name":"Kyzyl","city_id":"2972","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35188","name":"Balezino","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35189","name":"Glazov","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35190","name":"Igra","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35191","name":"Izhevsk","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35192","name":"Kambarka","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35193","name":"Kez","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35194","name":"Kizner","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35195","name":"Mozhga","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35196","name":"Sarapul","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35197","name":"Uva","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35198","name":"Votkinsk","city_id":"2973","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35199","name":"Barysh","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35200","name":"Cherdakly","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35201","name":"Isheevka","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35202","name":"Novospasskoe","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35203","name":"Novouljanovsk","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35204","name":"Sengilej","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35205","name":"Uljanovsk","city_id":"2974","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35206","name":"Ust-Ordynskij","city_id":"2976","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35207","name":"Aleksandrov","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35208","name":"Balakirevo","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35209","name":"Gorohovec","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35210","name":"Gus-Hrustalnyj","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35211","name":"Jurjev Polskij","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35212","name":"Kameshkovo","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35213","name":"Karabanovo","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35214","name":"Kirzhach","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35215","name":"Kolchugino","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35216","name":"Kosterovo","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35217","name":"Kovrov","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35218","name":"Krasnaja Gorbatka","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35219","name":"Krasnyj Oktjabr","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35220","name":"Lakinsk","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35221","name":"Melenki","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35222","name":"Murom","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35223","name":"Novovjazniki","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35224","name":"Pokrov","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35225","name":"Sobinka","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35226","name":"Strunino","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35227","name":"Sudogda","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35228","name":"Suzdal","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35229","name":"Vjazniki","city_id":"2977","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35230","name":"Frolovo","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35231","name":"Gorkovskij","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35232","name":"Gorodishche","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35233","name":"Ilovlja","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35234","name":"Jelan","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35235","name":"Kalach-na-Donu","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35236","name":"Kamyshin","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35237","name":"Kotelnikovo","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35238","name":"Kotovo","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35239","name":"Leninsk","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35240","name":"Nikolajevsk","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35241","name":"Nizhny Novgorod","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35242","name":"Novoanninskij","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35243","name":"Novonikolajevskij","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35244","name":"Pallasovka","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35245","name":"Petrov Val","city_id":"2978","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"is_activated":"1"}, +{"id":"35246","name":"Serafimovich","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35247","name":"Surovikino","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35248","name":"Svetlyj Jar","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35249","name":"Urjupinsk","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35250","name":"Volgograd","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35251","name":"Volzhskij","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35252","name":"Zhirnovsk","city_id":"2978","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35253","name":"Babajevo","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35254","name":"Belozjorsk","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35255","name":"Cherepovec","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35256","name":"Grjazovec","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35257","name":"Harovsk","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35258","name":"Kaduj","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35259","name":"Krasavino","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35260","name":"Sheksna","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35261","name":"Sokol","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35262","name":"Totma","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35263","name":"Velikij Ustjug","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35264","name":"Vologda","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35265","name":"Vytegra","city_id":"2979","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35266","name":"Bobrov","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35267","name":"Boguchar","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35268","name":"Borisoglebsk","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35269","name":"Buturlinovka","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35270","name":"Ertil","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35271","name":"Gribanovskij","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35272","name":"Kalach","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35273","name":"Kantemirovka","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35274","name":"Liski","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35275","name":"Novohopjorsk","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35276","name":"Novovoronezh","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35277","name":"Ostrogozhsk","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35278","name":"Pavlovsk","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35279","name":"Povorino","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35280","name":"Pridonskij","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35281","name":"Rossosh","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35282","name":"Semiluki","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35283","name":"Somovo","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35284","name":"Talovaja","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35285","name":"Voronezh","city_id":"2980","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35286","name":"Butare","city_id":"2981","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35287","name":"Nyanza","city_id":"2981","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35288","name":"Byumba","city_id":"2982","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35289","name":"Cyangugu","city_id":"2983","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35290","name":"Gikongoro","city_id":"2984","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35291","name":"Gisenyi","city_id":"2985","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35292","name":"Gitarama","city_id":"2986","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35293","name":"Kibungo","city_id":"2987","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35294","name":"Rwamagana","city_id":"2987","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35295","name":"Kibuye","city_id":"2988","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35296","name":"Kigali","city_id":"2989","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35297","name":"Ruhengeri","city_id":"2990","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"is_activated":"1"}, +{"id":"35298","name":"Anse-la-Raye","city_id":"3009","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35299","name":"Canaries","city_id":"3010","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35300","name":"Castries","city_id":"3011","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35301","name":"Choc","city_id":"3011","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35302","name":"Choiseul","city_id":"3012","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35303","name":"Dennery","city_id":"3013","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35304","name":"Laborie","city_id":"3015","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35305","name":"Micoud","city_id":"3016","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35306","name":"Soufriere","city_id":"3017","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35307","name":"Miquelon","city_id":"3019","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35308","name":"Biabou","city_id":"3020","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35309","name":"Byera","city_id":"3020","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35310","name":"Dovers","city_id":"3021","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35311","name":"Port Elizabeth","city_id":"3021","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35312","name":"Falelatai","city_id":"3022","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35313","name":"Mulifanua","city_id":"3023","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35314","name":"Solosolo","city_id":"3024","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"is_activated":"1"}, +{"id":"35315","name":"Safotulafai","city_id":"3025","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35316","name":"Samalae ulu","city_id":"3026","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35317","name":"A opo","city_id":"3027","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35318","name":"Gautavai","city_id":"3029","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35319","name":"Samamea","city_id":"3031","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35320","name":"Neiafu","city_id":"3032","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35321","name":"Acquaviva","city_id":"3033","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35322","name":"Chiesanuova","city_id":"3035","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35323","name":"Domagnano","city_id":"3036","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35324","name":"Faetano","city_id":"3037","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35325","name":"Fiorentino","city_id":"3038","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35326","name":"Montegiardino","city_id":"3039","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35327","name":"Serravalle","city_id":"3041","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35328","name":"Neves","city_id":"3044","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35329","name":"Santo Antonio","city_id":"3047","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35330","name":"Mahayel","city_id":"3049","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35331","name":"Abha","city_id":"3051","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35332","name":"Abu Aris","city_id":"3051","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35333","name":"Khamis Mushayt","city_id":"3051","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35334","name":"Qal at Bishah","city_id":"3051","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"is_activated":"1"}, +{"id":"35335","name":"Ha il","city_id":"3054","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35336","name":"Jawf","city_id":"3055","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35337","name":"Sakakah","city_id":"3055","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35338","name":"Jizan","city_id":"3056","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35339","name":"Sabya","city_id":"3056","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35340","name":"Makkah","city_id":"3057","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35341","name":"Rabig","city_id":"3057","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35342","name":"al-Hawiyah","city_id":"3057","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35343","name":"at-Ta if","city_id":"3057","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35344","name":"Dar iyah","city_id":"3058","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35345","name":"Najran","city_id":"3058","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35346","name":"Sharurah","city_id":"3058","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35347","name":" Unayzah","city_id":"3059","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35348","name":"Buraydah","city_id":"3059","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35349","name":"ar-Rass","city_id":"3059","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35350","name":"Tabuk","city_id":"3060","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35351","name":"Umm Lajj","city_id":"3060","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35352","name":"al-Bahah","city_id":"3062","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35353","name":"Ara ar","city_id":"3063","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35354","name":"Rafha","city_id":"3063","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35355","name":"Turayf","city_id":"3063","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35356","name":"al-Qurayyat","city_id":"3063","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35357","name":"Yanbu","city_id":"3064","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35358","name":"al-Madinah","city_id":"3064","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35359","name":" Afif","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35360","name":"ad-Dawadimi","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35361","name":"ad-Dilam","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35362","name":"al-Kharj","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35363","name":"al-Majma ah","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35364","name":"ar-Riyad","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35365","name":"az-Zulfi","city_id":"3065","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35366","name":"Dakar","city_id":"3066","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35367","name":"Bambey","city_id":"3067","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35368","name":"Diourbel","city_id":"3067","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35369","name":"Mbacke","city_id":"3067","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35370","name":"Diofior","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35371","name":"Fatick","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35372","name":"Foundiougne","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35373","name":"Gossas","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35374","name":"Guinguineo","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35375","name":"Kahone","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35376","name":"Sokone","city_id":"3068","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35377","name":"Gandiaye","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35378","name":"Kaffrine","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35379","name":"Kaolack","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35380","name":"Koungheul","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35381","name":"Ndoffane Lagheme","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35382","name":"Nioro du Rip","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35383","name":"Toubakouta","city_id":"3069","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35384","name":"Dabo","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35385","name":"Goudomp","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35386","name":"Kolda","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35387","name":"Marsassoum","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35388","name":"Medina Gounas","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35389","name":"Sedhiou","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35390","name":"Velingara","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35391","name":"Wassadou","city_id":"3070","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35392","name":"Dahra","city_id":"3071","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35393","name":"Kebemer","city_id":"3071","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35394","name":"Linguere","city_id":"3071","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35395","name":"Louga","city_id":"3071","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"is_activated":"1"}, +{"id":"35396","name":"Dagana","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35397","name":"Gollere","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35398","name":"Kanel","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35399","name":"Matam","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35400","name":"Ndioum","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35401","name":"Ourossogui","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35402","name":"Podor","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35403","name":"Richard Toll","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35404","name":"Semme","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35405","name":"Thilogne","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35406","name":"Waounde","city_id":"3072","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35407","name":"Bakel","city_id":"3073","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35408","name":"Kedougou","city_id":"3073","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35409","name":"Tambacounda","city_id":"3073","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35410","name":"Joal-Fadiouth","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35411","name":"Kayar","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35412","name":"Khombole","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35413","name":"Mbour","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35414","name":"Meckhe","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35415","name":"Nguekhokh","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35416","name":"Pout","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35417","name":"Thiadiaye","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35418","name":"Thies","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35419","name":"Tivaouane","city_id":"3074","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35420","name":"Bignona","city_id":"3075","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35421","name":"Oussouye","city_id":"3075","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35422","name":"Thionck-Essyl","city_id":"3075","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35423","name":"Ziguinchor","city_id":"3075","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35424","name":"Cascade","city_id":"3081","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35425","name":"Takamaka","city_id":"3082","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35426","name":"Biama","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35427","name":"Daru","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35428","name":"Kailahun","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35429","name":"Kenema","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35430","name":"Koidu","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35431","name":"Koindu","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35432","name":"Pendembu","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35433","name":"Sefadu","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35434","name":"Segbwema","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35435","name":"Yengema","city_id":"140","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35436","name":"Kambia","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35437","name":"Lungi","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35438","name":"Lunsar","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35439","name":"Magburaka","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35440","name":"Makeni","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35441","name":"Mambolo","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35442","name":"Moyamba","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35443","name":"Pepel","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35444","name":"Port Loko","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35445","name":"Yele","city_id":"1103","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35446","name":"Binkolo","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35447","name":"Bo","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35448","name":"Bonthe","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35449","name":"Bumpe","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35450","name":"Matru","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35451","name":"Pujehun","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35452","name":"Taiama","city_id":"1089","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35453","name":"York","city_id":"143","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35454","name":"Singapore","city_id":"3083","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35455","name":"Banska Bystrica","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35456","name":"Banska Shtiavnica","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35457","name":"Brezno","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35458","name":"Chierny Balog","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35459","name":"Detva","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35460","name":"Fil akovo","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35461","name":"Hnusht a","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35462","name":"Hrinova","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35463","name":"Kremnica","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35464","name":"Krupina","city_id":"3084","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"is_activated":"1"}, +{"id":"35465","name":"Luchenec","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35466","name":"Nova Bana","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35467","name":"Podbrezova","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35468","name":"Poltar","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35469","name":"Revuca","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35470","name":"Rimavska Sobota","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35471","name":"Sliach","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35472","name":"Tisovec","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35473","name":"Tornal a","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35474","name":"Vel ky Krtish","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35475","name":"Vlkanova","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35476","name":"Zharnovica","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35477","name":"Zhiar","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35478","name":"Ziar nad Hronom","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35479","name":"Zvolen","city_id":"3084","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35480","name":"Bernolakovo","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35481","name":"Bratislava","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35482","name":"Ivanka pri Dunaji","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35483","name":"Malacky","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35484","name":"Modra","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35485","name":"Pezinok","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35486","name":"Senec","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35487","name":"Shenkvice","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35488","name":"Stupava","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35489","name":"Svaty Jur","city_id":"3085","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35490","name":"Chana","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35491","name":"Chierna nad Tisou","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35492","name":"Dobshina","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35493","name":"Gelnica","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35494","name":"Kosice","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35495","name":"Kral ovsky Chlmec","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35496","name":"Krompachy","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35497","name":"Medzev","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35498","name":"Michalovce","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35499","name":"Moldava nad Bodvou","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35500","name":"Pavlovce nad Uhom","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35501","name":"Rozhnava","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35502","name":"Sechovce","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35503","name":"Smizhany","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35504","name":"Sobrance","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35505","name":"Strazhske","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35506","name":"Trebishov","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35507","name":"Vel ke Kapushany","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35508","name":"Vranov","city_id":"3086","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35509","name":"Dvory nad Zhitavou","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35510","name":"Hurbanovo","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35511","name":"Kolarovo","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35512","name":"Komarno","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35513","name":"Komjatice","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35514","name":"Levice","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35515","name":"Levocha","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35516","name":"Mocenok","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35517","name":"Nesvady","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35518","name":"Nitra","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35519","name":"Nove Zamky","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35520","name":"Palarikovo","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35521","name":"Shahy","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35522","name":"Shal a","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35523","name":"Shturovo","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35524","name":"Shurany","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35525","name":"Svodin","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35526","name":"Tlmache","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35527","name":"Tvrdoshovce","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35528","name":"Vrable","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35529","name":"Zlate Moravce","city_id":"3087","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35530","name":"Bardejov","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35531","name":"Giraltovce","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35532","name":"Humenne","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35533","name":"Jarovnice","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35534","name":"Kezhmarok","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35535","name":"Lipany","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35536","name":"Medzilaborce","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35537","name":"Podolinec","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35538","name":"Poprad","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35539","name":"Preshov","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35540","name":"Presov","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35541","name":"Sabinov","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35542","name":"Snina","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35543","name":"Spishska Bela","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35544","name":"Spishska Nova Ves","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35545","name":"Spishske Podhradie","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35546","name":"Stara L ubovna","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35547","name":"Stropkov","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35548","name":"Svidnik","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35549","name":"Svit","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35550","name":"Vel ky Sharish","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35551","name":"Vysoke Tatry","city_id":"3088","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35552","name":"Banovce","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35553","name":"Belusha","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35554","name":"Bojnice","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35555","name":"Boshany","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35556","name":"Dubnica","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35557","name":"Handlova","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35558","name":"Ilava","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35559","name":"Lednicke Rovne","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35560","name":"Lendak","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35561","name":"Myjava","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35562","name":"Nemshova","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35563","name":"Nova Dubnica","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35564","name":"Novaky","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35565","name":"Nove Mesto","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35566","name":"Partizanske","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35567","name":"Povazhska Bystrica","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35568","name":"Prievidza","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35569","name":"Puchov","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35570","name":"Stara Tura","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35571","name":"Topol chany","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35572","name":"Trenchianske Teplice","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35573","name":"Trenchin","city_id":"3089","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35574","name":"Brezova pod Bradlom","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35575","name":"Dunajska Streda","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35576","name":"Gabchikovo","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35577","name":"Galanta","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35578","name":"Gbely","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35579","name":"Hlohovec","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35580","name":"Holich","city_id":"3090","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"is_activated":"1"}, +{"id":"35581","name":"Kuty","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35582","name":"Leopoldov","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35583","name":"Piesht any","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35584","name":"Piestany","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35585","name":"Senica","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35586","name":"Sered ","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35587","name":"Shamorin","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35588","name":"Shashtin-Strazhe","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35589","name":"Shoporna","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35590","name":"Skalica","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35591","name":"Sladkovichovo","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35592","name":"Trnava","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35593","name":"Vel ke Ul any","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35594","name":"Vel ky Meder","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35595","name":"Vrbove","city_id":"3090","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35596","name":"Bytcha","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35597","name":"Chadca","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35598","name":"Chierne","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35599","name":"Dolny Kubin","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35600","name":"Krasno nad Kysucou","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35601","name":"Kysucke Nove Mesto","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35602","name":"Liptovsky Hradok","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35603","name":"Liptovsky Mikulash","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35604","name":"Namestovo","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35605","name":"Nizhna","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35606","name":"Oshchadnica","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35607","name":"Rabcha","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35608","name":"Rajec","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35609","name":"Rakova","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35610","name":"Ruzhomberok","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35611","name":"Ruzomberok","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35612","name":"Shtiavnik","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35613","name":"Skalite","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35614","name":"Suchany","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35615","name":"Terchova","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35616","name":"Trstena","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35617","name":"Turany","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35618","name":"Turchianske Teplice","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35619","name":"Turzovka","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35620","name":"Tvrdoshin","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35621","name":"Vel ke Rovne","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35622","name":"Vrutky","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35623","name":"Zakamenne","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35624","name":"Zhilina","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35625","name":"Zilina","city_id":"3091","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35626","name":"Semic","city_id":"3092","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35627","name":"Skofljica","city_id":"3092","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35628","name":"Zelezniki","city_id":"3092","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35629","name":"Begunje na Gorenjskem","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35630","name":"Bistrica ob Trzhichu","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35631","name":"Bled","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35632","name":"Blejska Dobrava","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35633","name":"Bohinjska Bistrica","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35634","name":"Britof","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35635","name":"Cerklje na Gorenjskem","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35636","name":"Golnik","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35637","name":"Gorenja Vas","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35638","name":"Hrastje","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35639","name":"Hrushica","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35640","name":"Kokrica","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35641","name":"Koroshka Bela","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35642","name":"Kranj","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35643","name":"Kranjska Gora","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35644","name":"Krizhe","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35645","name":"Kropa","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35646","name":"Lesce","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35647","name":"Mlaka pri Kranju","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35648","name":"Mojstrana","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35649","name":"Preddvor","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35650","name":"Predoslje","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35651","name":"Pristava","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35652","name":"Radovljica","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35653","name":"Shenchur","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35654","name":"Shkofja Loka","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35655","name":"Slovenski Javornik","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35656","name":"Spodnja Besnica","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35657","name":"Spodnje Gorje","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35658","name":"Stara Loka","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35659","name":"Sveti Duh","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35660","name":"Trzhich","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35661","name":"Visoko","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35662","name":"Zasip","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35663","name":"Zgornje Bitnje","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35664","name":"Zhelezniki","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35665","name":"Zhiri","city_id":"3093","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35666","name":"Ajdovshchina","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35667","name":"Bovec","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35668","name":"Branik","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35669","name":"Cerkno","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35670","name":"Deskle","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35671","name":"Idrija","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35672","name":"Kanal","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35673","name":"Kobarid","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35674","name":"Kromberk","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35675","name":"Lokavec","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35676","name":"Miren","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35677","name":"Nova Gorica","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35678","name":"Prvachina","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35679","name":"Renche","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35680","name":"Rozhna Dolina","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35681","name":"Shempas","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35682","name":"Shempeter","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35683","name":"Solkan","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35684","name":"Spodnja Idrija","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35685","name":"Tolmin","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35686","name":"Vipava","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35687","name":"Vrtojba","city_id":"3094","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35688","name":"Chrna na Koroshkem","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35689","name":"Dravograd","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35690","name":"Legen","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35691","name":"Mezhica","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35692","name":"Mislinja","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35693","name":"Muta","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35694","name":"Otishki Vrh","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35695","name":"Pameche","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35696","name":"Prevalje","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35697","name":"Radlje ob Dravi","city_id":"3096","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"is_activated":"1"}, +{"id":"35698","name":"Ravne","city_id":"3096","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35699","name":"Shmartno pri Slovenj Gradcu","city_id":"3096","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35700","name":"Slovenj Gradec","city_id":"3096","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35701","name":"Vuhred","city_id":"3096","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35702","name":"Vuzenica","city_id":"3096","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35703","name":"Cerknica","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35704","name":"Ilirska Bistrica","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35705","name":"Pivka","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35706","name":"Postojna","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35707","name":"Rakek","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35708","name":"Stari trg pri Lozhu","city_id":"3097","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35709","name":"Ankaran","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35710","name":"Bertoki","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35711","name":"Dekani","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35712","name":"Divacha","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35713","name":"Hrvatni","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35714","name":"Izola","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35715","name":"Jagodje","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35716","name":"Koper","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35717","name":"Lucija","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35718","name":"Pareceg","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35719","name":"Piran","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35720","name":"Pobegi","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35721","name":"Portorozh","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35722","name":"Prade","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35723","name":"Secha","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35724","name":"Sezhana","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35725","name":"Spodnje Shkofije","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35726","name":"Sveti Anton","city_id":"3098","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35727","name":"Borovnica","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35728","name":"Brezovica pri Ljubljani","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35729","name":"Dob","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35730","name":"Dobrova","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35731","name":"Domzhale","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35732","name":"Dragomer","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35733","name":"Grosuplje","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35734","name":"Horjul","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35735","name":"Ig","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35736","name":"Ivanchna Gorica","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35737","name":"Kamnik","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35738","name":"Lavrica","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35739","name":"Litija","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35740","name":"Ljubljana","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35741","name":"Log pri Brezovici","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35742","name":"Logatec","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35743","name":"Medvode","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35744","name":"Mekinje","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35745","name":"Mengesh","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35746","name":"Moravche","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35747","name":"Notranje","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35748","name":"Preserje pri Radomljah","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35749","name":"Radomlje","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35750","name":"Rovte","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35751","name":"Shentvid pri Stichni","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35752","name":"Shkofljica","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35753","name":"Shmarca","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35754","name":"Shmartno pri Litiji","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35755","name":"Smarje-Sap","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35756","name":"Trzin","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35757","name":"Verd","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35758","name":"Vishnja Gora","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35759","name":"Vnanje Gorice","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35760","name":"Vrhnika","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35761","name":"Zgornje Pirniche","city_id":"3101","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35762","name":"Bistrica ob Dravi","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35763","name":"Bresternica","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35764","name":"Bukovci","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35765","name":"Dogoshe","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35766","name":"Dornava","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35767","name":"Hotinja Vas","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35768","name":"Kamnica","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35769","name":"Kidrichevo","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35770","name":"Koshaki","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35771","name":"Krchevina pri Vurbergu","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35772","name":"Lenart","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35773","name":"Limbush","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35774","name":"Lovrenc na Pohorju","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35775","name":"Maribor","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35776","name":"Miklavzh na Dravskem Polju","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35777","name":"Ormozh","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35778","name":"Pekre","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35779","name":"Pesnica pri Mariboru","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35780","name":"Pobrezhje","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35781","name":"Podvinci","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35782","name":"Poljchane","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35783","name":"Pragersko","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35784","name":"Ptuj","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35785","name":"Rache","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35786","name":"Radizel","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35787","name":"Razvanje","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35788","name":"Rogoza","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35789","name":"Rushe","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35790","name":"Selnica ob Dravi","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35791","name":"Selnica ob Muri","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35792","name":"Shentilj","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35793","name":"Skoke","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35794","name":"Slovenska Bistrica","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35795","name":"Spodnja Polskava","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35796","name":"Spodnje Hoche","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35797","name":"Spodnji Duplek","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35798","name":"Spuhlja","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35799","name":"Sredishche ob Dravi","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35800","name":"Stojnci","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35801","name":"Zgornja Polskava","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35802","name":"Zgornje Poljchane","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35803","name":"Zgornji Duplek","city_id":"3102","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35804","name":"Bakovci","city_id":"3103","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35805","name":"Beltinci","city_id":"3103","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35806","name":"Chernelavci","city_id":"3103","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35807","name":"Chrenshovci","city_id":"3103","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35808","name":"Dobrovnik","city_id":"3103","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"is_activated":"1"}, +{"id":"35809","name":"Doklezhovje","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35810","name":"Ganchani","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35811","name":"Gornja Radgona","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35812","name":"Izhakovci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35813","name":"Krog","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35814","name":"Lendava","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35815","name":"Lipovci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35816","name":"Ljutomer","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35817","name":"Melinci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35818","name":"Murska Sobota","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35819","name":"Odranci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35820","name":"Petishovci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35821","name":"Radenci","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35822","name":"Rakichan","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35823","name":"Turnishche","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35824","name":"Velika Polana","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35825","name":"Verzej","city_id":"3103","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35826","name":"Breg pri Polzeli","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35827","name":"Celje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35828","name":"Gornji Grad","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35829","name":"Gotovlje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35830","name":"Kasaze","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35831","name":"Lashko","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35832","name":"Ljubechna","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35833","name":"Ljubno ob Savinji","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35834","name":"Loka pri Zusmu","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35835","name":"Lokovica","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35836","name":"Mozirje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35837","name":"Naklo","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35838","name":"Nazarje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35839","name":"Oplotnica","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35840","name":"Petrovche","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35841","name":"Polzela","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35842","name":"Prebold","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35843","name":"Radeche","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35844","name":"Rimske Toplica","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35845","name":"Rogashka Slatina","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35846","name":"Rogatec","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35847","name":"Sentjernej","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35848","name":"Shentjur","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35849","name":"Shkale","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35850","name":"Shmarje pri Jelshah","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35851","name":"Shoshtanj","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35852","name":"Shtore","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35853","name":"Slovenske Konjice","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35854","name":"Topolshica","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35855","name":"Trnovlje pri Celju","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35856","name":"Velenje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35857","name":"Vitanje","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35858","name":"Vojnik","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35859","name":"Zabukovica","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35860","name":"Zadobrova","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35861","name":"Zhalec","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35862","name":"Zreche","city_id":"3104","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35863","name":"Brestanica","city_id":"3106","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35864","name":"Brezhice","city_id":"3106","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35865","name":"Krshko","city_id":"3106","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35866","name":"Leskovac pri Krshkem","city_id":"3106","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35867","name":"Sevnica","city_id":"3106","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35868","name":"Dol pri Hrastniku","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35869","name":"Hrastnik","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35870","name":"Izlake","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35871","name":"Kisovec","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35872","name":"Trbovlje","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35873","name":"Zagorje ob Savi","city_id":"3107","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35874","name":"Tulagi","city_id":"1102","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35875","name":"Taro Island","city_id":"3012","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35876","name":"Honiara","city_id":"3108","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35877","name":"Buala","city_id":"3109","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35878","name":"Auki","city_id":"3111","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35879","name":"Lata","city_id":"3113","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35880","name":"Gizo","city_id":"143","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35881","name":"Borama","city_id":"3114","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35882","name":"Gebilay","city_id":"3114","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35883","name":"Sayla ","city_id":"3114","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35884","name":"Tayeglo","city_id":"3115","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35885","name":"Xuddur","city_id":"3115","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"is_activated":"1"}, +{"id":"35886","name":"Yet","city_id":"3115","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35887","name":"Muqdisho","city_id":"3116","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35888","name":" Alula","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35889","name":"Bandarbeyla","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35890","name":"Bandarmu ayo","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35891","name":"Bargal","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35892","name":"Bereda","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35893","name":"Bosaso","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35894","name":"Iskushuban","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35895","name":"Qandala","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35896","name":"Qardho","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35897","name":"Xafun","city_id":"1777","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35898","name":"Baydhabo","city_id":"3117","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35899","name":"Bur Hakkaba","city_id":"3117","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35900","name":"Dinsor","city_id":"3117","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35901","name":" Elbur","city_id":"3118","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35902","name":" Eldhere","city_id":"3118","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35903","name":"Dhusa Marreb","city_id":"3118","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35904","name":"Bardhere","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35905","name":"Dolaw","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35906","name":"Dujuma","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35907","name":"Garbaharey","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35908","name":"Luq","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35909","name":"Sa o","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35910","name":"Wajid","city_id":"3119","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35911","name":"Bal ad","city_id":"3120","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35912","name":"Beled Weyne","city_id":"3120","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35913","name":"Bulobarde","city_id":"3120","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35914","name":"Jalalassi","city_id":"3120","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35915","name":"Galka yo","city_id":"3123","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35916","name":"Hobyo","city_id":"3123","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35917","name":"Xarardhere","city_id":"3123","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35918","name":"Eyl","city_id":"3124","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35919","name":"Garowe","city_id":"3124","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35920","name":"Las anod","city_id":"3124","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35921","name":" Erigabo","city_id":"3125","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35922","name":"Lasqoray","city_id":"3125","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35923","name":" Ek","city_id":"3128","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35924","name":"Bur o","city_id":"3128","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35925","name":"Odweyne","city_id":"3128","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35926","name":"Alberton","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35927","name":"Alrode","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35928","name":"Benmore","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35929","name":"Benoni","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35930","name":"Boksburg","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35931","name":"Booysens","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35932","name":"Brakpan","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35933","name":"Bronkhorstspruit","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35934","name":"Bryanston","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35935","name":"Carltonville","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35936","name":"Centurion","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35937","name":"Cullinan","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35938","name":"Dainfern","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35939","name":"Edenvale","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35940","name":"Ferndale","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35941","name":"Fourways","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35942","name":"Gardenview","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35943","name":"Gauteng","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35944","name":"Grant Park","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35945","name":"Isando","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35946","name":"Johannesburg","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35947","name":"Kelvin","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35948","name":"Krugersdorp","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35949","name":"Linmeyer","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35950","name":"Maraisburg","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35951","name":"Midrand","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35952","name":"Nigel","city_id":"3132","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"is_activated":"1"}, +{"id":"35953","name":"Northmead","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35954","name":"Petervale","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35955","name":"Pinegowrie","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35956","name":"Pretoria","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35957","name":"Primrose","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35958","name":"Randburg","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35959","name":"Randfontein","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35960","name":"Randvaal","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35961","name":"Rivonia","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35962","name":"Robertville","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35963","name":"Soweto","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35964","name":"Springs","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35965","name":"Temba","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35966","name":"Tembisa","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35967","name":"Troyeville","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35968","name":"Vanderbijlpark","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35969","name":"Vereeniging","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35970","name":"Verwoerdburg","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35971","name":"Vorna Valley","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35972","name":"Wadeville","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35973","name":"Westonaria","city_id":"3132","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35974","name":"Sandton","city_id":"3134","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35975","name":"Bela-Bela","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35976","name":"Dendron","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35977","name":"Duiwelskloof","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35978","name":"Ellisras","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35979","name":"Giyani","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35980","name":"Lebowakgomo","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35981","name":"Louis Trichardt","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35982","name":"Lulekani","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35983","name":"Mankweng","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35984","name":"Mogalakwena","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35985","name":"Mutale","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35986","name":"Nkowakowa","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35987","name":"Nylstroom","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35988","name":"Phalaborwa","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35989","name":"Pietersburg","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35990","name":"Polokwane","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35991","name":"Soekmekaar","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35992","name":"Southdale","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35993","name":"Thabazimbi","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35994","name":"Thohoyandou","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35995","name":"Thulamahashe","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35996","name":"Tzaneen","city_id":"3136","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35997","name":"Botleng","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35998","name":"Ekangala","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"35999","name":"Embalenhle","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36000","name":"Emjindini","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36001","name":"Empuluzi","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36002","name":"Emzinoni","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36003","name":"Ethandakukhanja","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36004","name":"Groblersdal","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36005","name":"Komatipoort","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36006","name":"Kriel","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36007","name":"KwaZanele","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36008","name":"Kwazamokuhle","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36009","name":"Lebohang","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36010","name":"Marblehall","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36011","name":"Mashishing","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36012","name":"Mhluzi","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36013","name":"Nelspruit","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36014","name":"Phola","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36015","name":"Sakhile","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36016","name":"Secunda","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36017","name":"Siyabuswa","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36018","name":"Siyathemba","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36019","name":"Siyathuthuka","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36020","name":"Vukuzakhe","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36021","name":"Witbank","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36022","name":"Witrivier","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36023","name":"eLukwatini","city_id":"3137","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36024","name":"Parow","city_id":"3140","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36025","name":"Umtentweni","city_id":"3142","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36026","name":"Bertamirans","city_id":"3145","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36027","name":"ALbatera","city_id":"3146","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"is_activated":"1"}, +{"id":"36028","name":"Alacant","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36029","name":"Alcoi","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36030","name":"Almoradi","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36031","name":"Altea","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36032","name":"Aspe","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36033","name":"Benidorm","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36034","name":"Benissa","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36035","name":"Callosa de Segura","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36036","name":"Calp","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36037","name":"Cocentaina","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36038","name":"Crevillent","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36039","name":"Denia","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36040","name":"El Campello","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36041","name":"Elda","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36042","name":"Elx","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36043","name":"Guardamar del Segura","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36044","name":"L Alfas del Pi","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36045","name":"La Vila Joiosa","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36046","name":"Monover","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36047","name":"Mutxamel","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36048","name":"Novelda","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36049","name":"Orihuela","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36050","name":"Pedreguer","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36051","name":"Pego","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36052","name":"Petrer","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36053","name":"Pilar de la Horadada","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36054","name":"Pinoso","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36055","name":"Rojales","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36056","name":"Sant Joan d Alacant","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36057","name":"Sant Vicent del Raspeig","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36058","name":"Santa Pola","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36059","name":"Sax","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36060","name":"Teulada","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36061","name":"Torrevieja","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36062","name":"Villena","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36063","name":"Xabia","city_id":"3146","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36064","name":"Amurrio","city_id":"3147","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36065","name":"Llodio","city_id":"3147","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36066","name":"Vitoria","city_id":"3147","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36067","name":"Albacete","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36068","name":"Almansa","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36069","name":"Caudete","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36070","name":"Hellin","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36071","name":"La Roda","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36072","name":"Villarrobledo","city_id":"3148","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36073","name":"Albox","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36074","name":"Almeria","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36075","name":"Berja","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36076","name":"Cuevas del Almanzora","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36077","name":"El Ejido","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36078","name":"Huercal de Almeria","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36079","name":"Huercal-Overa","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36080","name":"Nijar","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36081","name":"Roquetas de Mar","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36082","name":"Vicar","city_id":"3149","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36083","name":"Aller","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36084","name":"Aviles","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36085","name":"C\/ Pena Salon","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36086","name":"Cangas del Narcea","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36087","name":"Carreno","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36088","name":"Castrillon","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36089","name":"Corvera de Asturias","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36090","name":"Gijon","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36091","name":"Gozon","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36092","name":"Grado","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36093","name":"Langreo","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36094","name":"Laviana","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36095","name":"Llanera","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36096","name":"Llanes","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36097","name":"Mieres","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36098","name":"Navia","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36099","name":"Oviedo","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36100","name":"Pilona","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36101","name":"Pravia","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36102","name":"San Martin del Rey Aurelio","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36103","name":"Siero","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36104","name":"Tineo","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36105","name":"Valdes","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36106","name":"Villaviciosa","city_id":"3150","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36107","name":"Avila","city_id":"3151","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36108","name":"Almendralejo","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36109","name":"Azuaga","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36110","name":"Badajoz","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36111","name":"Don Benito","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36112","name":"Jerez de los Caballeros","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36113","name":"Olivenza","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36114","name":"Villafranca de los Barros","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36115","name":"Villanueva de la Serena","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36116","name":"Zafra","city_id":"3152","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36117","name":"Alayor-Menorca","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36118","name":"Alcudia","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36119","name":"Calvia","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36120","name":"Capdepera","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36121","name":"Ciutadella de Menorca","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36122","name":"Eivissa","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36123","name":"Felanitx","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36124","name":"Inca","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36125","name":"Llucmajor","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36126","name":"Mahon","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36127","name":"Manacor","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36128","name":"Marratxi","city_id":"3153","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"is_activated":"1"}, +{"id":"36129","name":"Palma","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36130","name":"Pollenca","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36131","name":"Sa Pobla","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36132","name":"Sant Antoni de Portmany","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36133","name":"Sant Josep de sa Talaia","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36134","name":"Santa Eulalia del Rio","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36135","name":"Santanyi","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36136","name":"Soller","city_id":"3153","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36137","name":"Abrera","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36138","name":"Alella","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36139","name":"Arenys de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36140","name":"Argentona","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36141","name":"Badalona","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36142","name":"Badia del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36143","name":"Barbera del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36144","name":"Barcelona","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36145","name":"Berga","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36146","name":"Cabrera de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36147","name":"Caldes de Montbui","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36148","name":"Calella","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36149","name":"Canet de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36150","name":"Canovelles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36151","name":"Cardedeu","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36152","name":"Castellar del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36153","name":"Castellbisbal","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36154","name":"Castelldefels","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36155","name":"Cerdanyola","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36156","name":"Corbera de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36157","name":"Cornella","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36158","name":"El Masnou","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36159","name":"El Prat de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36160","name":"Esparreguera","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36161","name":"Esplugues de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36162","name":"Gava","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36163","name":"Granollers","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36164","name":"Igualada","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36165","name":"L Hospitalet de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36166","name":"La Garriga","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36167","name":"La Llagosta","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36168","name":"Les Franquesas del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36169","name":"Llica d Amunt","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36170","name":"Malgrat de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36171","name":"Manlleu","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36172","name":"Manresa","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36173","name":"Martorell","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36174","name":"Mataro","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36175","name":"Molins de Rei","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36176","name":"Mollet del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36177","name":"Montcada i Reixac","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36178","name":"Montgat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36179","name":"Montmelo","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36180","name":"Montornes del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36181","name":"Olesa de Montserrat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36182","name":"Palau-solita i Plegamans","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36183","name":"Palleja","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36184","name":"Parets del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36185","name":"Piera","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36186","name":"Pineda de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36187","name":"Premia de Dalt","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36188","name":"Premia de Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36189","name":"Ripollet","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36190","name":"Rubi","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36191","name":"Sabadell","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36192","name":"Sant Adria de Besos","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36193","name":"Sant Andreu de la Barca","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36194","name":"Sant Boi de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36195","name":"Sant Celoni","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36196","name":"Sant Cugat del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36197","name":"Sant Feliu de Llobregat","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36198","name":"Sant Joan Despi","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36199","name":"Sant Joan de Vilatorrada","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36200","name":"Sant Just Desvern","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36201","name":"Sant Pere de Ribes","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36202","name":"Sant Quirze del Valles","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36203","name":"Sant Sadurni d Anoia","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36204","name":"Sant Vicenc dels Horts","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36205","name":"Santa Coloma de Gramenet","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36206","name":"Santa Margarida de Montbui","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36207","name":"Santa Perpetua de Mogoda","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36208","name":"Sitges","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36209","name":"Son Servera","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36210","name":"Terrassa","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36211","name":"Tordera","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36212","name":"Torello","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36213","name":"Vallirana","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36214","name":"Vic","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36215","name":"Viladecans","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36216","name":"Viladecavalls","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36217","name":"Vilafranca del Penedes","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36218","name":"Vilanova del Cami","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36219","name":"Vilanova i la Geltru","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36220","name":"Vilassar del Mar","city_id":"3154","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36221","name":"Aranda de Duero","city_id":"3155","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36222","name":"Burgos","city_id":"3155","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36223","name":"Miranda de Ebro","city_id":"3155","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36224","name":"Coria","city_id":"3156","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36225","name":"Miajadas","city_id":"3156","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36226","name":"Navalmoral de la Mata","city_id":"3156","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36227","name":"Plasencia","city_id":"3156","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36228","name":"Talayuela","city_id":"3156","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36229","name":"Arcos de la Frontera","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36230","name":"Barbate","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36231","name":"Cadiz","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36232","name":"Chiclana","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36233","name":"Chipiona","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36234","name":"Conil","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36235","name":"El Puerto de Santa Maria","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36236","name":"Jimena de la Frontera","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36237","name":"La Linea","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36238","name":"Los Barrios","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36239","name":"Medina-Sidonia","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36240","name":"Olvera","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36241","name":"Puerto Real","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36242","name":"Rota","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36243","name":"Sanlucar de Barrameda","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36244","name":"Tarifa","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36245","name":"Ubrique","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36246","name":"Vejer de la Frontera","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36247","name":"Villamartin","city_id":"3157","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36248","name":"Castro-Urdiales","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36249","name":"El Astillero","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36250","name":"Laredo","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36251","name":"Los Corrales de Buelna","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36252","name":"Pielagos","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36253","name":"Reinosa","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36254","name":"San Felices De Buelna","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36255","name":"Santa Cruz de Bezana","city_id":"3158","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"is_activated":"1"}, +{"id":"36256","name":"Santander","city_id":"3158","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36257","name":"Santona","city_id":"3158","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36258","name":"Torrelavega","city_id":"3158","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36259","name":"Almassora","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36260","name":"Benicarlo","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36261","name":"Benicassim","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36262","name":"Burriana","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36263","name":"Castello","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36264","name":"L Alcora","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36265","name":"La Vall d Uixo","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36266","name":"Nules","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36267","name":"Onda","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36268","name":"Segorbe","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36269","name":"Vila-real","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36270","name":"Vinaros","city_id":"3159","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36271","name":"Ceuta","city_id":"3160","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36272","name":"Aguilar de la Frontera","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36273","name":"Baena","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36274","name":"Bujalance","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36275","name":"Cabra","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36276","name":"Fernan-Nunez","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36277","name":"Fuente Palmera","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36278","name":"La Carlota","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36279","name":"Lucena","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36280","name":"Montilla","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36281","name":"Montoro","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36282","name":"Palma del Rio","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36283","name":"Penarroya-Pueblonuevo","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36284","name":"Pozoblanco","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36285","name":"Priego de Cordoba","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36286","name":"Puente Genil","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36287","name":"Rute","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36288","name":"Villanueva de Cordoba","city_id":"188","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36289","name":"Tarancon","city_id":"3162","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36290","name":"Banyoles","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36291","name":"Blanes","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36292","name":"Empuriabrava","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36293","name":"Figueres","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36294","name":"Girona","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36295","name":"La Bisbal d Emporda","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36296","name":"Lloret de Mar","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36297","name":"Massanet de la Selva","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36298","name":"Olot","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36299","name":"Palafrugell","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36300","name":"Palamos","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36301","name":"Ripoll","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36302","name":"Roses","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36303","name":"Salt","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36304","name":"Sant Feliu de Guixols","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36305","name":"Santa Coloma de Farners","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36306","name":"Torroella de Montgri","city_id":"3163","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36307","name":"Albolote","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36308","name":"Almunecar","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36309","name":"Armilla","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36310","name":"Atarfe","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36311","name":"Baza","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36312","name":"Guadix","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36313","name":"Huescar","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36314","name":"Huetor Tajar","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36315","name":"Huetor Vega","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36316","name":"Illora","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36317","name":"La Zubia","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36318","name":"Las Gabias","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36319","name":"Maracena","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36320","name":"Motril","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36321","name":"Ogijares","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36322","name":"Peligros","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36323","name":"Pinos Puente","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36324","name":"Salobrena","city_id":"2549","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36325","name":"Azuqueca de Henares","city_id":"3164","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36326","name":"Aduna","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36327","name":"Lazakao","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36328","name":"Andoain","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36329","name":"Anoeta","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36330","name":"Arrasate","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36331","name":"Azkoitia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36332","name":"Azpeitia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36333","name":"Beasain","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36334","name":"Bergara","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36335","name":"Donostia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36336","name":"Eibar","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36337","name":"Elgoibar","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36338","name":"Errenteria","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36339","name":"Guipuuzcoa","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36340","name":"Hernani","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36341","name":"Hondarribia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36342","name":"Irun","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36343","name":"Legazpi","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36344","name":"Mendaro","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36345","name":"Mondragon","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36346","name":"Oiartzun","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36347","name":"Onati","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36348","name":"Ordizia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36349","name":"Pasaia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36350","name":"Tolosa","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36351","name":"Zarautz","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36352","name":"Zumaia","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36353","name":"Zumarraga","city_id":"3165","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36354","name":"Aljaraque","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36355","name":"Ayamonte","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36356","name":"Bollullos Par del Condado","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36357","name":"Cartaya","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36358","name":"Gibraleon","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36359","name":"Huelva","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36360","name":"Isla Cristina","city_id":"3166","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"is_activated":"1"}, +{"id":"36361","name":"La Palma del Condado","city_id":"3166","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36362","name":"Lepe","city_id":"3166","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36363","name":"Moguer","city_id":"3166","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36364","name":"Punta Umbria","city_id":"3166","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36365","name":"Valverde del Camino","city_id":"3166","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36366","name":"Barbastro","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36367","name":"Binefar","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36368","name":"Fraga","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36369","name":"Huesca","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36370","name":"Jaca","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36371","name":"Monzon","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36372","name":"Sabinanigo","city_id":"3167","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36373","name":"Alcala la Real","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36374","name":"Alcaudete","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36375","name":"Andujar","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36376","name":"Baeza","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36377","name":"Bailen","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36378","name":"Cazorla","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36379","name":"Jodar","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36380","name":"La Carolina","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36381","name":"Mancha Real","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36382","name":"Martos","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36383","name":"Mengibar","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36384","name":"Torre del Campo","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36385","name":"Torredonjimeno","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36386","name":"Ubeda","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36387","name":"Villacarrillo","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36388","name":"Villanueva del Arzobispo","city_id":"3168","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36389","name":"Bembibre","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36390","name":"La Baneza","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36391","name":"Ponferrada","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36392","name":"San Andres del Rabanedo","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36393","name":"Villablino","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36394","name":"Villaquilambre","city_id":"2551","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36395","name":"Tora","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36396","name":"Balaguer","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36397","name":"La Seu d Urgell","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36398","name":"Lleida","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36399","name":"Mollerussa","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36400","name":"Tarrega","city_id":"3170","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36401","name":"Burela","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36402","name":"Cervo","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36403","name":"Chantada","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36404","name":"Foz","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36405","name":"Monforte de Lemos","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36406","name":"Ribadeo","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36407","name":"Sarria","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36408","name":"Vilalba","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36409","name":"Viveiro","city_id":"3171","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36410","name":"Alcala de Henares","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36411","name":"Alcobendas","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36412","name":"Alcorcon","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36413","name":"Algete","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36414","name":"Alpedrete","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36415","name":"Aranjuez","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36416","name":"Arganda del Rey","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36417","name":"Boadilla del Monte","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36418","name":"Ciempozuelos","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36419","name":"Collado Villalba","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36420","name":"Colmenar Viejo","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36421","name":"Coslada","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36422","name":"El Escorial","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36423","name":"Fuenlabrada","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36424","name":"Galapagar","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36425","name":"Getafe","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36426","name":"Guadarrama","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36427","name":"Humanes de Madrid","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36428","name":"Las Rozas de Madrid","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36429","name":"Leganes","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36430","name":"Majadahonda","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36431","name":"Meco","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36432","name":"Mejorada del Campo","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36433","name":"Mostoles","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36434","name":"Navalcarnero","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36435","name":"Parla","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36436","name":"Pinto","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36437","name":"Pozuelo de Alarcon","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36438","name":"Rivas-Vaciamadrid","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36439","name":"San Fernando de Henares","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36440","name":"San Lorenzo de El Escorial","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36441","name":"San Martin de la Vega","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36442","name":"San Sebastian de los Reyes","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36443","name":"Torrejon de Ardoz","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36444","name":"Torrelodones","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36445","name":"Tres Cantos","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36446","name":"Valdemoro","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36447","name":"Velilla de San Antonio","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36448","name":"Villanueva de la Canada","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36449","name":"Villaviciosa de Odon","city_id":"3172","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36450","name":"Benalmadena","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36451","name":"Alhaurin de la Torre","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36452","name":"Alhaurin el Grande","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36453","name":"Alora","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36454","name":"Antequera","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36455","name":"Cartama","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36456","name":"Coin","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36457","name":"Estepona","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36458","name":"Fuengirola","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36459","name":"Marbella","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36460","name":"Mijas","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36461","name":"Nerja","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36462","name":"Rincon de la Victoria","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36463","name":"Ronda","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36464","name":"Torremolinos","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36465","name":"Torrox","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36466","name":"Velez-Malaga","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36467","name":"maro","city_id":"3173","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"is_activated":"1"}, +{"id":"36468","name":"Melilla","city_id":"3174","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36469","name":"Abaran","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36470","name":"Aguilas","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36471","name":"Alcantarilla","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36472","name":"Alhama de Murcia","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36473","name":"Archena","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36474","name":"Beniel","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36475","name":"Bullas","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36476","name":"Calasparra","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36477","name":"Caravaca de la Cruz","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36478","name":"Cehegin","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36479","name":"Cieza","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36480","name":"Fuente Alamo de Murcia","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36481","name":"Jumilla","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36482","name":"Las Torres de Cotillas","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36483","name":"Lorca","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36484","name":"Los Alcazares","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36485","name":"Mazarron","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36486","name":"Molina de Segura","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36487","name":"Moratella","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36488","name":"Mula","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36489","name":"Murcia","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36490","name":"Puerto Lumbreras","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36491","name":"San Pedro del Pinatar","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36492","name":"Santomera","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36493","name":"Torre Pacheco","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36494","name":"Torre-Pacheco","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36495","name":"Totana","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36496","name":"Yecla","city_id":"3175","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36497","name":"Ansoain","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36498","name":"Atarrabia","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36499","name":"Baranain","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36500","name":"Burlata","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36501","name":"Iruna","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36502","name":"Lizarra","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36503","name":"Navarra","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36504","name":"Orkoien","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36505","name":"Tafalla","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36506","name":"Tudela","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36507","name":"Zizur Nagusia","city_id":"3176","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36508","name":"O Barco de Valdeorras","city_id":"3177","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36509","name":"O Carballino","city_id":"3177","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36510","name":"Ourense","city_id":"3177","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36511","name":"Verin","city_id":"3177","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36512","name":"Xinzo de Limia","city_id":"3177","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36513","name":"Guardo","city_id":"3179","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36514","name":"Palencia","city_id":"3179","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36515","name":"A Estrada","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36516","name":"A Guarda","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36517","name":"Baiona","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36518","name":"Bueu","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36519","name":"Caldas de Reis","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36520","name":"Cambados","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36521","name":"Cangas","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36522","name":"Cangas De Morrazo","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36523","name":"Lalin","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36524","name":"Marin","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36525","name":"Moana","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36526","name":"Mos","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36527","name":"Nigran","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36528","name":"O Grove","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36529","name":"O Porrino","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36530","name":"Poio","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36531","name":"Ponteareas","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36532","name":"Pontevedra","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36533","name":"Redondela","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36534","name":"Salvaterra de Mino","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36535","name":"Sanxenxo","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36536","name":"Silleda","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36537","name":"Tomino","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36538","name":"Tui","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36539","name":"Vigo","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36540","name":"Vilagarcia de Arousa","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36541","name":"Vilanova de Arousa","city_id":"3180","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36542","name":"Bejar","city_id":"3181","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36543","name":"Ciudad Rodrigo","city_id":"3181","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36544","name":"Santa Marta de Tormes","city_id":"3181","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36545","name":"Cuellar","city_id":"3182","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36546","name":"Alcala de Guadaira","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36547","name":"Alcala del Rio","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36548","name":"Arahal","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36549","name":"Bormujos","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36550","name":"Brenes","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36551","name":"Camas","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36552","name":"Cantillana","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36553","name":"Carmona","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36554","name":"Castilleja de la Cuesta","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36555","name":"Coria del Rio","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36556","name":"Dos Hermanas","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36557","name":"Ecija","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36558","name":"El Viso del Alcor","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36559","name":"Estepa","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36560","name":"Gines","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36561","name":"Guillena","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36562","name":"La Algaba","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36563","name":"La Puebla de Cazalla","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36564","name":"La Puebla del Rio","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36565","name":"La Rinconada","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36566","name":"Las Cabezas de San Juan","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36567","name":"Lora del Rio","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36568","name":"Los Palacios y Villafranca","city_id":"3183","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"is_activated":"1"}, +{"id":"36569","name":"Mairena del Alcor","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36570","name":"Mairena del Aljarafe","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36571","name":"Marchena","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36572","name":"Moron de la Frontera","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36573","name":"Olivares","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36574","name":"Osuna","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36575","name":"Pilas","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36576","name":"San Juan de Aznalfarache","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36577","name":"Sanlucar la Mayor","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36578","name":"Tocina","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36579","name":"Tomares","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36580","name":"Utrera","city_id":"3183","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36581","name":"Soria","city_id":"3184","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36582","name":"Alcanar","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36583","name":"Amposta","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36584","name":"Calafell","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36585","name":"Cambrils","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36586","name":"Deltrebe","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36587","name":"El Vendrell","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36588","name":"Reus","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36589","name":"Salou","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36590","name":"Sant Carles de la Rapita","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36591","name":"Tarragona","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36592","name":"Torredembarra","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36593","name":"Tortosa","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36594","name":"Valls","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36595","name":"Vila-seca","city_id":"3185","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36596","name":"Alcaniz","city_id":"3187","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36597","name":"Consuegra","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36598","name":"Illescas","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36599","name":"Madridejos","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36600","name":"Mora","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36601","name":"Pepino","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36602","name":"Quintanar de la Orden","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36603","name":"Sonseca","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36604","name":"Talavera de la Reina","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36605","name":"Torrijos","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36606","name":"Villacanas","city_id":"442","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36607","name":"Agullent","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36608","name":"Alaquas","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36609","name":"Albal","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36610","name":"Alberic","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36611","name":"Alboraya","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36612","name":"Aldaia","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36613","name":"Alfafar","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36614","name":"Algemesi","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36615","name":"Alginet","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36616","name":"Alzira","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36617","name":"Benaguasil","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36618","name":"Benetusser","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36619","name":"Benifaio","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36620","name":"Beniparrell","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36621","name":"Betera","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36622","name":"Bunol","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36623","name":"Burjassot","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36624","name":"Canals","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36625","name":"Carcaixent","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36626","name":"Carlet","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36627","name":"Catarroja","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36628","name":"Chiva","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36629","name":"Cullera","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36630","name":"Elche","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36631","name":"Gandia","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36632","name":"Godella","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36633","name":"L Alcudia","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36634","name":"L Eliana","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36635","name":"La Pobla de Vallbona","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36636","name":"Lliria","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36637","name":"Los Montesinos","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36638","name":"Manises","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36639","name":"Massamagrell","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36640","name":"Meliana","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36641","name":"Mislata","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36642","name":"Moncada","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36643","name":"Oliva","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36644","name":"Ontinyent","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36645","name":"Paiporta","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36646","name":"Paterna","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36647","name":"Picanya","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36648","name":"Picassent","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36649","name":"Pucol","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36650","name":"Quart de Poblet","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36651","name":"Riba-roja de Turia","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36652","name":"Sagunt","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36653","name":"Sedavi","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36654","name":"Sueca","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36655","name":"Tavernes Blanques","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36656","name":"Tavernes de la Valldigna","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36657","name":"Torrent","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36658","name":"Utiel","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36659","name":"Xativa","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36660","name":"Xirivella","city_id":"3188","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36661","name":"Laguna de Duero","city_id":"3189","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36662","name":"Medina del Campo","city_id":"3189","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36663","name":"Tordesillas","city_id":"3189","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36664","name":"Berriatua","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36665","name":"Derio","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36666","name":"Elorio","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36667","name":"Loiu","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36668","name":"Abadiano","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36669","name":"Abanto Zierbena","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36670","name":"Amorebieta","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36671","name":"Arrigorriaga","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36672","name":"Barakaldo","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36673","name":"Basauri","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36674","name":"Bermeo","city_id":"3190","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"is_activated":"1"}, +{"id":"36675","name":"Berriz","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36676","name":"Bilbao","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36677","name":"Erandio","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36678","name":"Ermua","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36679","name":"Etxano","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36680","name":"Galdakao","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36681","name":"Gernika-Lumo","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36682","name":"Getxo","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36683","name":"Igorre","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36684","name":"Leioa","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36685","name":"Mungia","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36686","name":"Ondarroa","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36687","name":"Ortuella","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36688","name":"Portugalete","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36689","name":"Santurtzi","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36690","name":"Sestao","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36691","name":"Sopelana","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36692","name":"Trapagaran","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36693","name":"Zamudio","city_id":"3190","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36694","name":"Benavente","city_id":"3191","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36695","name":"Calatayud","city_id":"3192","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36696","name":"Ejea de los Caballeros","city_id":"3192","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36697","name":"Tarazona","city_id":"3192","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36698","name":"Utebo","city_id":"3192","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36699","name":"Amparai","city_id":"3193","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36700","name":"Galmune","city_id":"3193","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36701","name":"Anuradhapuraya","city_id":"3194","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36702","name":"Badulla","city_id":"3195","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36703","name":"Bandarawela","city_id":"3195","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36704","name":"Haputale","city_id":"3195","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36705","name":"Boralesgamuwa","city_id":"3196","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36706","name":"Battaramulla","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36707","name":"Dehiwala-Mount Lavinia","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36708","name":"Homagama","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36709","name":"Jayawardanapura","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36710","name":"Kolonnawa","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36711","name":"Kotikawatta","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36712","name":"Maharagama","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36713","name":"Moratuwa","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36714","name":"Mulleriyawa","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36715","name":"Ratmalana","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36716","name":"Seethawakapura","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36717","name":"Sri Jayawardanapura","city_id":"3197","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36718","name":"Ambalamgoda","city_id":"3198","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36719","name":"Galla","city_id":"3198","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36720","name":"Daluguma","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36721","name":"Gampaha","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36722","name":"Hendala","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36723","name":"Jaela","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36724","name":"Kandana","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36725","name":"Katunayaka","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36726","name":"Kelaniya","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36727","name":"Migamuwa","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36728","name":"Minuwangoda","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36729","name":"Peliyagoda","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36730","name":"Ragama","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36731","name":"Wattala","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36732","name":"Welesara","city_id":"3199","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36733","name":"Hambantota","city_id":"3200","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36734","name":"Tanggalla","city_id":"3200","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36735","name":"Beruwala","city_id":"3201","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36736","name":"Horana","city_id":"3201","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36737","name":"Kalutara","city_id":"3201","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36738","name":"Keselwatta","city_id":"3201","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36739","name":"Panadraya","city_id":"3201","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36740","name":"Kegalla","city_id":"3202","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36741","name":"Kilinochchi","city_id":"3203","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36742","name":"Kuliyapitiya","city_id":"3204","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36743","name":"Kurunegala","city_id":"3204","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36744","name":"Polgahawela","city_id":"3204","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"is_activated":"1"}, +{"id":"36745","name":"Eravur","city_id":"3205","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36746","name":"Katankudi","city_id":"3205","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36747","name":"Madakalpuwa","city_id":"3205","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36748","name":"Malwana","city_id":"3207","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36749","name":"Mannarama","city_id":"3208","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36750","name":"Dambulla","city_id":"3209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36751","name":"Matale","city_id":"3209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36752","name":"Sigiriya","city_id":"3209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36753","name":"Matara","city_id":"3210","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36754","name":"Weligama","city_id":"3210","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36755","name":"Monaragala","city_id":"3211","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36756","name":"Wattegama","city_id":"3211","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36757","name":"Mullaitivu","city_id":"3212","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36758","name":"Polonnaruwa","city_id":"3216","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36759","name":"Halawata","city_id":"3217","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36760","name":"Puttalama","city_id":"3217","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36761","name":"Balangoda","city_id":"3218","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36762","name":"Ratnapuraya","city_id":"3218","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36763","name":"Tirikunamalaya","city_id":"3220","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36764","name":"Querceta","city_id":"3221","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36765","name":"Vavuniyawa","city_id":"3222","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36766","name":"Chavakachcheri","city_id":"3223","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36767","name":"Peduru Tuduwa","city_id":"3223","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36768","name":"Valvedditturai","city_id":"3223","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36769","name":"Yapanaya","city_id":"3223","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36770","name":"Mahara","city_id":"3224","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36771","name":"Kodok","city_id":"3225","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36772","name":"Malakal","city_id":"3225","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36773","name":"Nasir","city_id":"3225","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36774","name":"ar-Rank","city_id":"3225","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36775","name":"Juba","city_id":"3226","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36776","name":"Yei","city_id":"3226","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"is_activated":"1"}, +{"id":"36777","name":"Maridi","city_id":"3230","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36778","name":"Nzara","city_id":"3230","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36779","name":"Tambura","city_id":"3230","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36780","name":"Yambio","city_id":"3230","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36781","name":"Bur","city_id":"3233","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36782","name":"Aruma","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36783","name":"Halfa al-Jadidah","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36784","name":"Kassala","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36785","name":"Khashm-al-Qirbah","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36786","name":"Wagar","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36787","name":"al-Masnah","city_id":"3234","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36788","name":" Atbarah","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36789","name":"Barbar","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36790","name":"Kabushiyah","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36791","name":"Shandi","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36792","name":"ad-Damir","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36793","name":"al-Bawga","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36794","name":"al-Matammah","city_id":"3235","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36795","name":"Kapoeta","city_id":"3239","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36796","name":"Torit","city_id":"3239","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36797","name":"Abu Hijar","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36798","name":"Galgani","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36799","name":"Hajj Abdallah","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36800","name":"Karkawj","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36801","name":"Mayurnu","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36802","name":"Sinjah","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36803","name":"Sinnar-at-Tagatu","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36804","name":"Umm Shawkah","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36805","name":"ad-Dindar","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36806","name":"as-Suki","city_id":"3240","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36807","name":"Mashra ar-Raqq","city_id":"3241","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36808","name":"Tonj","city_id":"3241","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36809","name":"Warab","city_id":"3241","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36810","name":"Bur Sudan","city_id":"1023","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36811","name":"Gabait","city_id":"1023","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36812","name":"Sawakin","city_id":"1023","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36813","name":"Sinkat","city_id":"1023","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36814","name":"Tawkar","city_id":"1023","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36815","name":"Rumbik","city_id":"3243","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36816","name":"Yirol","city_id":"3243","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36817","name":"Abu Usar","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36818","name":"Arba atun wa Ishrun-al-Qurash","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36819","name":"Maharaybah","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36820","name":"Miallayab","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36821","name":"Rufa a","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36822","name":"Sharafat","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36823","name":"Tabat","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36824","name":"Tambul","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36825","name":"Wad Madani","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36826","name":"Wad Rawah","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36827","name":"al-Hawsh","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36828","name":"al-Hilaliyah","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36829","name":"al-Huda","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36830","name":"al-Husayhisah","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36831","name":"al-Kamilin","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36832","name":"al-Karaymat","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36833","name":"al-Manaqil","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36834","name":"al-Mu sadiyah","city_id":"3244","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"is_activated":"1"}, +{"id":"36835","name":"al-Musallamiyah","city_id":"3244","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36836","name":"Umm Dawm","city_id":"3245","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36837","name":"Umm Durman","city_id":"3245","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36838","name":"al-Khartum","city_id":"3245","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36839","name":"al-Khartum Bahri","city_id":"3245","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36840","name":"Qala -an-Nahl","city_id":"3246","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36841","name":"Shuwak","city_id":"3246","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36842","name":"al-Hawatah","city_id":"3246","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36843","name":"al-Qadarif","city_id":"3246","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36844","name":"Bentiu","city_id":"3247","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36845","name":"Ler","city_id":"3247","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36846","name":"Asalaya","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36847","name":"Bufi","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36848","name":"Gulli","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36849","name":"Kinanah","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36850","name":"Kusti","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36851","name":"Marabba","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36852","name":"Rabak","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36853","name":"Shabashah","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36854","name":"Tandalti","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36855","name":"Umm Jarr","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36856","name":"Wad-az-Zaki","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36857","name":"ad-Duwaym","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36858","name":"al-Jazirah","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36859","name":"al-Kawah","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36860","name":"al-Qutaynah","city_id":"3248","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36861","name":"ad-Damazin","city_id":"3249","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36862","name":"al-Kurumuk","city_id":"3249","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36863","name":"al-Quwaysi","city_id":"3249","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36864","name":"ar-Rusayris","city_id":"3249","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36865","name":"Argu","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36866","name":"Dalqu","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36867","name":"Dunqulah","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36868","name":"Kanisah","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36869","name":"Karmah-an-Nuzul","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36870","name":"Kurti","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36871","name":"Marawi","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36872","name":"Tangasi-ar-Ru ays","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36873","name":"Wadi Halfa","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36874","name":"ad-Dabbah","city_id":"3250","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36875","name":"Brokopondo","city_id":"3251","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36876","name":"Brownsweg","city_id":"3251","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36877","name":"Marienburg","city_id":"3252","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36878","name":"Meerzorg","city_id":"3252","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36879","name":"Nieuw Amsterdam","city_id":"3252","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36880","name":"Totness","city_id":"3253","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36881","name":"Albina","city_id":"3254","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36882","name":"Moengo","city_id":"3254","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36883","name":"Nieuw Nickerie","city_id":"3255","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36884","name":"Onverwacht","city_id":"521","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36885","name":"Paramaribo","city_id":"3256","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36886","name":"Lelydorp","city_id":"3258","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36887","name":"Barentsburg","city_id":"3259","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36888","name":"Hornsund","city_id":"3259","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36889","name":"Isfjord Radio","city_id":"3259","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36890","name":"Longyearbyen","city_id":"3259","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36891","name":"Ny-Alesund","city_id":"3259","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36892","name":"Bulembu","city_id":"3260","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36893","name":"Ezulwini","city_id":"3260","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36894","name":"Mbabane","city_id":"3260","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36895","name":"Ngwenya","city_id":"3260","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36896","name":"Pigg s Peak","city_id":"3260","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"is_activated":"1"}, +{"id":"36897","name":"Big Bend","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36898","name":"Mhlume","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36899","name":"Mpaka","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36900","name":"Nsoko","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36901","name":"Simunye","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36902","name":"Siteki","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36903","name":"Tshaneni","city_id":"3261","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36904","name":"Bhunya","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36905","name":"Kwaluseni","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36906","name":"Lobamba","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36907","name":"Malkerns","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36908","name":"Mankayane","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36909","name":"Manzini","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36910","name":"Matsapha","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36911","name":"Mhlambanyatsi","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36912","name":"Sidvokodvo","city_id":"3262","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36913","name":"Hlatikulu","city_id":"3263","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36914","name":"Hluti","city_id":"3263","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36915","name":"Kubuta","city_id":"3263","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36916","name":"Lavumisa","city_id":"3263","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36917","name":"Nhlangano","city_id":"3263","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36918","name":"Karlshamn","city_id":"3266","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36919","name":"Karlskrona","city_id":"3266","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36920","name":"Ronneby","city_id":"3266","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36921","name":"Stenungsund","city_id":"3267","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36922","name":"Avesta","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36923","name":"Borlange","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36924","name":"Falun","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36925","name":"Hedemora","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36926","name":"Ludvika","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36927","name":"Malung","city_id":"3268","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36928","name":"Bollnas","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36929","name":"Bro","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36930","name":"Gavle","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36931","name":"Hudiksvall","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36932","name":"Sandviken","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36933","name":"Soderhamn","city_id":"3269","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36934","name":"Skara","city_id":"3270","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36935","name":"Visby","city_id":"3270","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36936","name":"Anderstorp","city_id":"3271","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36937","name":"Falkenberg","city_id":"3271","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36938","name":"Halmstad","city_id":"3271","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36939","name":"Ullared","city_id":"3271","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36940","name":"Varberg","city_id":"3271","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36941","name":"Farjestaden","city_id":"3272","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36942","name":"Ostersund","city_id":"3272","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36943","name":"Gislaved","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36944","name":"Jonkoping","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36945","name":"Nassjo","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36946","name":"Tranas","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36947","name":"Varnamo","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36948","name":"Vetlanda","city_id":"3273","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36949","name":"Blomstermala","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36950","name":"Kalmar","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36951","name":"Nybro","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36952","name":"Oskarshamn","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36953","name":"Solna","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36954","name":"Torsas","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36955","name":"Vastervik","city_id":"3274","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36956","name":"Habo","city_id":"3275","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36957","name":"Limhamn","city_id":"3275","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36958","name":"Segeltorp","city_id":"3275","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36959","name":"Svedala","city_id":"3275","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"is_activated":"1"}, +{"id":"36960","name":"Ljungby","city_id":"3276","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36961","name":"Vaxjo","city_id":"3276","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36962","name":"Boden","city_id":"3277","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36963","name":"Kiruna","city_id":"3277","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36964","name":"Lulea","city_id":"3277","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36965","name":"Pitea","city_id":"3277","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36966","name":"Askersund","city_id":"3278","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36967","name":"Karlskoga","city_id":"3278","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36968","name":"Kumla","city_id":"3278","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36969","name":"Orebro","city_id":"3278","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36970","name":"Finspang","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36971","name":"Follinge","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36972","name":"Kisa","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36973","name":"Linkoping","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36974","name":"Mjolby","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36975","name":"Motala","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36976","name":"Norrkoping","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36977","name":"Vadstena","city_id":"3279","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36978","name":"Skarpovagen","city_id":"3280","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36979","name":"Angelholm","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36980","name":"Arlov","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36981","name":"Bastad","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36982","name":"Eslov","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36983","name":"Hassleholm","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36984","name":"Helsingborg","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36985","name":"Hjarup","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36986","name":"Hoganas","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36987","name":"Horby","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36988","name":"Jonstorp","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36989","name":"Klagstorp","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36990","name":"Kristianstad","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36991","name":"Landskrona","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36992","name":"Lund","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36993","name":"Malmo","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36994","name":"Skanor","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36995","name":"Staffanstorp","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36996","name":"Trelleborg","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36997","name":"Ystad","city_id":"3281","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36998","name":"Hillerstorp","city_id":"3282","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"36999","name":"Markaryd","city_id":"3282","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37000","name":"Smalandsstenar","city_id":"3282","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37001","name":"Eskilstuna","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37002","name":"Gnesta","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37003","name":"Katrineholm","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37004","name":"Nacka Strand","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37005","name":"Nykoping","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37006","name":"Strangnas","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37007","name":"Vingaker","city_id":"3283","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37008","name":"Akersberga","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37009","name":"Boo","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37010","name":"Bromma","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37011","name":"Djursholm","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37012","name":"Hallstavik","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37013","name":"Jarfalla","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37014","name":"Johannesfred","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37015","name":"Lidingo","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37016","name":"Marsta","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37017","name":"Norrtalje","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37018","name":"Norsborg","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37019","name":"Nynashamn","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37020","name":"Rosersberg","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37021","name":"Sodertalje","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37022","name":"Sollentuna","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37023","name":"Stockholm","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37024","name":"Sundbyberg","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37025","name":"Taby","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37026","name":"Tumba","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37027","name":"Upplands-Vasby","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37028","name":"Vallentuna","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37029","name":"Vasterhaninge","city_id":"3284","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37030","name":"Balsta","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37031","name":"Enkoping","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37032","name":"Knivsta","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37033","name":"Skyttorp","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37034","name":"Storvreta","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37035","name":"Uppsala","city_id":"3285","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37036","name":"Arvika","city_id":"3286","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37037","name":"Hammaro","city_id":"3286","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37038","name":"Karlstad","city_id":"3286","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37039","name":"Kristinehamn","city_id":"3286","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37040","name":"Skoghall","city_id":"3286","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37041","name":"Robertsfors","city_id":"3287","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37042","name":"Skelleftea","city_id":"3287","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37043","name":"Umea","city_id":"3287","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37044","name":"Gothenburg","city_id":"3288","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37045","name":"Kallered","city_id":"3288","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37046","name":"Kvanum","city_id":"3288","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37047","name":"Timmersdala","city_id":"3288","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"is_activated":"1"}, +{"id":"37048","name":"Harnosand","city_id":"3289","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37049","name":"Ornskoldsvik","city_id":"3289","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37050","name":"Sundsvall","city_id":"3289","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37051","name":"Arboga","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37052","name":"Fagersta","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37053","name":"Hallstahammar","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37054","name":"Koping","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37055","name":"Sala","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37056","name":"Vasteras","city_id":"3290","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37057","name":"Aarau","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37058","name":"Aarburg","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37059","name":"Bevilard","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37060","name":"Bremgarten","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37061","name":"Brugg","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37062","name":"Buchs","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37063","name":"Chevenez","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37064","name":"Fislisbach","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37065","name":"Granichen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37066","name":"Hagglingen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37067","name":"Kaiseraugst","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37068","name":"Kleindoettingen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37069","name":"Klingnau","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37070","name":"Kuttigen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37071","name":"Lenzburg","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37072","name":"Menziken","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37073","name":"Mohlin","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37074","name":"Mumpf","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37075","name":"Neuenhof","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37076","name":"Niederlenz","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37077","name":"Niederwangen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37078","name":"Niederwil","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37079","name":"Oberentfelden","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37080","name":"Obersiggenthal","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37081","name":"Oftringen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37082","name":"Reinach","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37083","name":"Rosshausern","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37084","name":"Rothrist","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37085","name":"Rupperswil","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37086","name":"Schmitten","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37087","name":"Seon","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37088","name":"Spreitenbach","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37089","name":"Suhr","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37090","name":"Trogen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37091","name":"Untersiggenthal","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37092","name":"Villmergen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37093","name":"Wettingen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37094","name":"Windisch","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37095","name":"Wohlen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37096","name":"Wurenlos","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37097","name":"Zofingen","city_id":"3292","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37098","name":"Aesch","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37099","name":"Allschwil","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37100","name":"Arlesheim","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37101","name":"Binningen","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37102","name":"Birsfelden","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37103","name":"Bottmingen","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37104","name":"Ettingen","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37105","name":"Frenkendorf","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37106","name":"Gelterkinden","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37107","name":"Laufen","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37108","name":"Lausen","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37109","name":"Liestal","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37110","name":"Munchenstein","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37111","name":"Muttenz","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37112","name":"Oberwil","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37113","name":"Pratteln","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37114","name":"Sissach","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37115","name":"Therwil","city_id":"3295","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37116","name":"Basel","city_id":"3296","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37117","name":"Riehen","city_id":"3296","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37118","name":"Belp","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37119","name":"Bern","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37120","name":"Biel","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37121","name":"Biel-Bienne","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37122","name":"Bolligen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37123","name":"Frutigen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37124","name":"Heimberg","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37125","name":"Herzogenbuchsee","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37126","name":"Huttwil","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37127","name":"Interlaken","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37128","name":"Ittigen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37129","name":"Koniz","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37130","name":"Konolfingen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37131","name":"Langenthal","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37132","name":"Langnau","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37133","name":"Lengnau","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37134","name":"Lyss","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37135","name":"Meiringen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37136","name":"Moutier","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37137","name":"Munchenbuchsee","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37138","name":"Nidau","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37139","name":"Orpund","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37140","name":"Ostermundingen","city_id":"3297","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"is_activated":"1"}, +{"id":"37141","name":"Pieterlen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37142","name":"Saanen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37143","name":"Saint-Imier","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37144","name":"Sonceboz","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37145","name":"Spiez","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37146","name":"Steffisburg","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37147","name":"Sumiswald","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37148","name":"Thun","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37149","name":"Uetendorf","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37150","name":"Unterseen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37151","name":"Urtenen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37152","name":"Vechingen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37153","name":"Wahlern","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37154","name":"Worb","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37155","name":"Zollikofen","city_id":"3297","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37156","name":"Bulle","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37157","name":"Dudingen","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37158","name":"Fribourg","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37159","name":"Granges-Paccot","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37160","name":"Muntelier","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37161","name":"Murten","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37162","name":"Remaufens","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37163","name":"Villars-sur-Glane","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37164","name":"Villaz-Saint-Pierre","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37165","name":"Wunnewil-Flamatt","city_id":"3299","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37166","name":"Bernex","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37167","name":"Carouge","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37168","name":"Chene-Bougeries","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37169","name":"Chene-Bourg","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37170","name":"Collonge-Bellerive","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37171","name":"Cologny","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37172","name":"Geneva","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37173","name":"Geneve","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37174","name":"Lancy","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37175","name":"Le Grand-Saconnex","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37176","name":"Meyrin","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37177","name":"Onex","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37178","name":"Plan-les-Ouates","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37179","name":"Thonex","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37180","name":"Vernier","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37181","name":"Versoix","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37182","name":"Veyrier","city_id":"3300","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37183","name":"Glarus","city_id":"3301","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37184","name":"Nafels","city_id":"3301","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37185","name":"Arosa","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37186","name":"Chur","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37187","name":"Davos","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37188","name":"Domat","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37189","name":"Igis","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37190","name":"Landquart","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37191","name":"Maienfeld","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37192","name":"Sankt Moritz","city_id":"3302","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37193","name":"Heerbrugg","city_id":"3303","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37194","name":"Delemont","city_id":"1200","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37195","name":"Glovelier","city_id":"1200","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37196","name":"Le Noirmont","city_id":"1200","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37197","name":"Porrentruy","city_id":"1200","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37198","name":"Adligenswil","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37199","name":"Ballwil","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37200","name":"Buchrain","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37201","name":"Ebikon","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37202","name":"Hochdorf","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37203","name":"Horw","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37204","name":"Kriens","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37205","name":"Littau","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37206","name":"Luzern","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37207","name":"Malters","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37208","name":"Meggen","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37209","name":"Neuenkirch","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37210","name":"Perlern","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37211","name":"Ruswil","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37212","name":"Sursee","city_id":"3305","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37213","name":"Muhen","city_id":"3307","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37214","name":"Bole","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37215","name":"Boudry","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37216","name":"Colombier","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37217","name":"La Chaux-de-Fonds","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37218","name":"Le Locle","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37219","name":"Neuchatel","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37220","name":"Peseux","city_id":"3308","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37221","name":"Buochs","city_id":"3309","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37222","name":"Hergiswil","city_id":"3309","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37223","name":"Stans","city_id":"3309","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37224","name":"Stansstad","city_id":"3309","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"is_activated":"1"}, +{"id":"37225","name":"Alpnach","city_id":"3310","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37226","name":"Kerns","city_id":"3310","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37227","name":"Sachseln","city_id":"3310","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37228","name":"Sarnen","city_id":"3310","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37229","name":"Schaffhausen","city_id":"3312","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37230","name":"Arth","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37231","name":"Buron","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37232","name":"Einsiedeln","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37233","name":"Feusisberg","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37234","name":"Freienbach","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37235","name":"Ingenbohl","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37236","name":"Kussnacht","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37237","name":"Lachen","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37238","name":"Schubelbach","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37239","name":"Schwyz","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37240","name":"Wollerau","city_id":"3313","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37241","name":"Balsthal","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37242","name":"Bellach","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37243","name":"Bettlach","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37244","name":"Biberist","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37245","name":"Derendingen","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37246","name":"Dornach","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37247","name":"Dulliken","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37248","name":"Feldbrunnen","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37249","name":"Gerlafingen","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37250","name":"Grenchen","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37251","name":"Hagendorf","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37252","name":"Olten","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37253","name":"Schonenwerd","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37254","name":"Solothurn","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37255","name":"Trimbach","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37256","name":"Zuchwil","city_id":"3314","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37257","name":"Aadorf","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37258","name":"Amriswil","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37259","name":"Arbon","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37260","name":"Bischofszell","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37261","name":"Felben-Wellhausen","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37262","name":"Frauenfeld","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37263","name":"Guttingen","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37264","name":"Kreuzlingen","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37265","name":"Romanshorn","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37266","name":"Sirnach","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37267","name":"Sulgen","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37268","name":"Tagerwilen","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37269","name":"Weinfelden","city_id":"3315","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37270","name":"Ascona","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37271","name":"Bellinzona","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37272","name":"Biasca","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37273","name":"Breganzona","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37274","name":"Cadempino","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37275","name":"Chiasso","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37276","name":"Giubiasco","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37277","name":"Locarno","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37278","name":"Losone","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37279","name":"Lugano","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37280","name":"Massagno","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37281","name":"Melide","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37282","name":"Mendrisio","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37283","name":"Mezzovico","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37284","name":"Minusio","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37285","name":"Porza","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37286","name":"Pregassona","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37287","name":"Viganello","city_id":"3316","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37288","name":"Schattdorf","city_id":"3317","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37289","name":"Bagnes","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37290","name":"Brig-Glis","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37291","name":"Collombey-Muraz","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37292","name":"Conthey","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37293","name":"Evionnaz","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37294","name":"Fully","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37295","name":"Martigny","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37296","name":"Monthey","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37297","name":"Naters","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37298","name":"Nendaz","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37299","name":"Niederwald","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37300","name":"Saviese","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37301","name":"Sierre","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37302","name":"Sion","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37303","name":"Visp","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37304","name":"Vouvry","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37305","name":"Zermatt","city_id":"3318","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37306","name":"Aigle","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37307","name":"Ballaigues","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37308","name":"Bex","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37309","name":"Blonay","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37310","name":"Bussigny","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37311","name":"Chavannes","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37312","name":"Crissier","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37313","name":"Ecublens","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37314","name":"Epalinges","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37315","name":"Gland","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37316","name":"La Tour-de-Peilz","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37317","name":"Lausanne","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37318","name":"Le Mont-sur-Lausanne","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37319","name":"Lucerne","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37320","name":"Lutry","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37321","name":"Montreux","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37322","name":"Morges","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37323","name":"Nyon","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37324","name":"Ollon","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37325","name":"Orbe","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37326","name":"Payerne","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37327","name":"Prilly","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37328","name":"Puidoux","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37329","name":"Pully","city_id":"3319","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"is_activated":"1"}, +{"id":"37330","name":"Renens","city_id":"3319","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37331","name":"Romainmotier","city_id":"3319","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37332","name":"Saint Sulpice","city_id":"3319","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37333","name":"Vevey","city_id":"3319","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37334","name":"Yverdon","city_id":"3319","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37335","name":"Vauffelin","city_id":"3320","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37336","name":"Baar","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37337","name":"Hunenberg","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37338","name":"Menzingen","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37339","name":"Neuheim","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37340","name":"Oberageri","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37341","name":"Risch","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37342","name":"Risch-Rotkreuz","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37343","name":"Steinhausen","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37344","name":"Unterageri","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37345","name":"Zug","city_id":"3321","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37346","name":"Adliswil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37347","name":"Affoltern","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37348","name":"Bachenbulach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37349","name":"Bassersdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37350","name":"Birmensdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37351","name":"Bubikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37352","name":"Bulach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37353","name":"Dielsdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37354","name":"Dietikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37355","name":"Dietlikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37356","name":"Dubendorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37357","name":"Durnten","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37358","name":"Ebmatingen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37359","name":"Egg","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37360","name":"Embrach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37361","name":"Fallanden","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37362","name":"Fehraltdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37363","name":"Geroldswil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37364","name":"Gossau","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37365","name":"Greifensee","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37366","name":"Herrliberg","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37367","name":"Hinwil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37368","name":"Hombrechtikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37369","name":"Horgen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37370","name":"Illnau-Effretikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37371","name":"Kilchberg","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37372","name":"Kloten","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37373","name":"Kusnacht","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37374","name":"Mannedorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37375","name":"Meilen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37376","name":"Neftenbach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37377","name":"Niederhasli","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37378","name":"Nurensdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37379","name":"Oberengstringen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37380","name":"Oberglatt","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37381","name":"Oberrieden","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37382","name":"Opfikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37383","name":"Pfaffikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37384","name":"Rafz","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37385","name":"Regensdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37386","name":"Richterswil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37387","name":"Rumlang","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37388","name":"Ruschlikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37389","name":"Ruti","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37390","name":"Schlieren","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37391","name":"Schwerzenbach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37392","name":"Seuzach","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37393","name":"Stafa","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37394","name":"Thalwil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37395","name":"Uetikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37396","name":"Urdorf","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37397","name":"Uster","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37398","name":"Volketswil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37399","name":"Wadenswil","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37400","name":"Wald","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37401","name":"Wallisellen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37402","name":"Wangen-Bruttisellen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37403","name":"Weiningen","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37404","name":"Wetzikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37405","name":"Winterthur","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37406","name":"Zell","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37407","name":"Zollikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37408","name":"Zumikon","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37409","name":"Zurich","city_id":"3322","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37410","name":"Aleppo","city_id":"3323","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37411","name":"Dar a","city_id":"3324","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37412","name":"Abu Kamal","city_id":"3325","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37413","name":"Dayr az-Zawr","city_id":"3325","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37414","name":"al-Mayadin","city_id":"3325","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37415","name":"Damascus","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37416","name":"Darayya","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37417","name":"Duma","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37418","name":"Hajar Aswad","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37419","name":"Harasta al-Bas","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37420","name":"Jaramanah","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37421","name":"Kabir-as-Sit","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37422","name":"Kesweh","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37423","name":"Qatana","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37424","name":"Yabrud","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37425","name":"al-Qutayfah","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37426","name":"an-Nabk","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37427","name":"at-Tall","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37428","name":"az-Zabadani","city_id":"3326","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37429","name":" Afrin","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37430","name":" Ayn-al- Arab","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37431","name":"A zaz","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37432","name":"Halab","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37433","name":"Manbij","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37434","name":"al-Bab","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37435","name":"as-Safirah","city_id":"3327","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"is_activated":"1"}, +{"id":"37436","name":"Hamah","city_id":"3328","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37437","name":"Masyaf","city_id":"3328","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37438","name":"Muhradah","city_id":"3328","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37439","name":"Salamiyah","city_id":"3328","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37440","name":"Hims","city_id":"3329","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37441","name":"Homs","city_id":"3329","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37442","name":"Tudmur","city_id":"3329","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37443","name":"ar-Rastan","city_id":"3329","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37444","name":"Idlib","city_id":"3330","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37445","name":"Jisr-ash-Shughur","city_id":"3330","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37446","name":"Ma arrat-an-Nu man","city_id":"3330","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37447","name":"Baniyas","city_id":"3332","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37448","name":"Safita","city_id":"3332","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37449","name":"Tartus","city_id":"3332","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37450","name":"Ra s-al- Ayn","city_id":"3333","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37451","name":"al-Hasakah","city_id":"3333","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37452","name":"al-Malikiyah","city_id":"3333","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37453","name":"al-Qamishli","city_id":"3333","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37454","name":"Jablah","city_id":"3334","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37455","name":"Lattakia","city_id":"3334","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37456","name":"al-Ladhiqiyah","city_id":"3334","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37457","name":"al-Qunaytirah","city_id":"3335","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37458","name":"ar-Raqqah","city_id":"3336","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37459","name":"ath-Thawrah","city_id":"3336","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37460","name":"as-Suwayda","city_id":"3337","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37461","name":"Changhua City","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37462","name":"Changhwa","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37463","name":"Chihu","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37464","name":"Erhlin","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37465","name":"Hemei","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37466","name":"Homei","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37467","name":"Hua Tan Hsiang","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37468","name":"Huatan Township","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37469","name":"Lukang","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37470","name":"Peitou","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37471","name":"Puyen Hsiang","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37472","name":"Tienchung","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37473","name":"Yuanlin","city_id":"3338","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37474","name":"Fenglin","city_id":"3344","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37475","name":"Hualian","city_id":"3344","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37476","name":"Yuli","city_id":"3344","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37477","name":"Kincheng","city_id":"3347","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37478","name":"Kinhsia","city_id":"3347","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37479","name":"Kinhu","city_id":"3347","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37480","name":"Cholan","city_id":"3348","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37481","name":"Chunan","city_id":"3348","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37482","name":"Houlung","city_id":"3348","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37483","name":"Miaoli","city_id":"3348","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"is_activated":"1"}, +{"id":"37484","name":"Toufen","city_id":"3348","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37485","name":"Tunghsiao","city_id":"3348","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37486","name":"Yuanli","city_id":"3348","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37487","name":"Zaociao","city_id":"3348","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37488","name":"Chichi","city_id":"3349","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37489","name":"Chushan","city_id":"3349","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37490","name":"Nantou","city_id":"3349","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37491","name":"Tsaotun","city_id":"3349","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37492","name":"Makung","city_id":"3350","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37493","name":"Chaochou","city_id":"3351","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37494","name":"Hengchun","city_id":"3351","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37495","name":"Pingtung","city_id":"3351","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37496","name":"Tungkang","city_id":"3351","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37497","name":"South District","city_id":"3352","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37498","name":"Ta-Ya Shang","city_id":"3352","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37499","name":"Kuanshan","city_id":"3355","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37500","name":"Taitung","city_id":"3355","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37501","name":"Chengkung","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37502","name":"Chungli","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37503","name":"Kuan Yin","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37504","name":"Pate","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37505","name":"Pingchen","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37506","name":"Ta Yuan","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37507","name":"Tachi","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37508","name":"Taoyuan","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37509","name":"Tungshih","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37510","name":"Yangmei","city_id":"3356","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37511","name":"Wujie","city_id":"3357","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37512","name":"Dushanbe","city_id":"3360","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37513","name":"Khorug","city_id":"3361","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37514","name":"Murgob","city_id":"3361","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37515","name":"Garm","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37516","name":"Hisor","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37517","name":"Kofarnihon","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37518","name":"Leninskiy","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37519","name":"Rogun","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37520","name":"Shakhrinau","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37521","name":"Tursunzoda","city_id":"3362","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37522","name":"Dangara","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37523","name":"Farkhor","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37524","name":"Jilikul","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37525","name":"Khojamaston","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37526","name":"Kolhozobod","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37527","name":"Kulob","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37528","name":"Kumsangir","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37529","name":"Mu minobod","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37530","name":"Nurak","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37531","name":"Pyanj","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37532","name":"Qurgonteppa","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37533","name":"Shaartuz","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37534","name":"Sovetskiy","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37535","name":"Vakhsh","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37536","name":"Vose","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37537","name":"Yovon","city_id":"3363","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37538","name":"Adrasmon","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37539","name":"Asht","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37540","name":"Ayni","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37541","name":"Buston","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37542","name":"Chkalov","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37543","name":"Chorku","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37544","name":"Gafurov","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37545","name":"Ganchi","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37546","name":"Isfara","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37547","name":"Khujand","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37548","name":"Konibodom","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37549","name":"Matcha","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37550","name":"Nau","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37551","name":"Panjakent","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37552","name":"Qayroqqum","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37553","name":"Shurob","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37554","name":"Taboshar","city_id":"3364","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"is_activated":"1"}, +{"id":"37555","name":"Uroteppa","city_id":"3364","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37556","name":"Zafarobod","city_id":"3364","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37557","name":"Arusha","city_id":"3365","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37558","name":"Dodoma","city_id":"3367","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37559","name":"Kondoa","city_id":"3367","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37560","name":"Mpwapwa","city_id":"3367","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37561","name":"Iringa","city_id":"3368","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37562","name":"Njombe","city_id":"3368","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37563","name":"Bukoba","city_id":"3369","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37564","name":"Bwanga","city_id":"3369","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37565","name":"Ngara","city_id":"3369","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37566","name":"Kasulu","city_id":"3370","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37567","name":"Kigoma","city_id":"3370","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37568","name":"Uvinza","city_id":"3370","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37569","name":"Moshi","city_id":"3371","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37570","name":"Same","city_id":"3371","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37571","name":"Kilwa Kivinje","city_id":"3372","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37572","name":"Nachingwea","city_id":"3372","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37573","name":"Musoma","city_id":"3373","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37574","name":"Tarime","city_id":"3373","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37575","name":"Mbeya","city_id":"3374","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37576","name":"Mwaya","city_id":"3374","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37577","name":"Tukuyu","city_id":"3374","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37578","name":"Kilosa","city_id":"3375","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37579","name":"Mahenge","city_id":"3375","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37580","name":"Morogoro","city_id":"3375","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37581","name":"Masasi","city_id":"3376","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37582","name":"Mikindani","city_id":"3376","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37583","name":"Mtwara","city_id":"3376","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37584","name":"Newala","city_id":"3376","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37585","name":"Magu","city_id":"2239","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37586","name":"Nansio","city_id":"2239","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37587","name":"Sengerama","city_id":"2239","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37588","name":"Bagamoyo","city_id":"3377","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37589","name":"Kibaha","city_id":"3377","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37590","name":"Rufiji","city_id":"3377","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37591","name":"Utete","city_id":"3377","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37592","name":"Mpanda","city_id":"3378","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37593","name":"Sumbawanga","city_id":"3378","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37594","name":"Songea","city_id":"3379","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37595","name":"Tunduru","city_id":"3379","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37596","name":"Kahama","city_id":"3380","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37597","name":"Maswa","city_id":"3380","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37598","name":"Mwadui","city_id":"3380","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37599","name":"Old Shinyanga","city_id":"3380","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37600","name":"Shinyanga","city_id":"3380","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37601","name":"Manyoni","city_id":"3381","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37602","name":"Singida","city_id":"3381","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37603","name":"Bukene","city_id":"3382","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37604","name":"Nzega","city_id":"3382","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37605","name":"Tabora","city_id":"3382","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37606","name":"Urambo","city_id":"3382","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"is_activated":"1"}, +{"id":"37607","name":"Korogwe","city_id":"3383","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37608","name":"Muheza","city_id":"3383","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37609","name":"Pangani","city_id":"3383","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37610","name":"Tanga","city_id":"3383","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37611","name":"Bangkhen","city_id":"3387","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37612","name":"Bangkok","city_id":"3387","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37613","name":"Phatumthanee","city_id":"3387","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37614","name":"Bang Khla","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37615","name":"Bang Pakong","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37616","name":"Bangpakong","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37617","name":"Chachoengsao","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37618","name":"Phanom Sarakham","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37619","name":"Plaeng Yao","city_id":"3389","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37620","name":"Bamnet Narong","city_id":"3391","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37621","name":"Chaiyaphum","city_id":"3391","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37622","name":"Kaeng Khlo","city_id":"3391","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37623","name":"Kaset Sombun","city_id":"3391","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37624","name":"Phu Khieo","city_id":"3391","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37625","name":"Chanthaburi","city_id":"3393","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37626","name":"Khlung","city_id":"3393","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37627","name":"Laem Sing","city_id":"3393","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37628","name":"Soydow","city_id":"3393","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37629","name":"Tha Mai","city_id":"3393","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37630","name":"Chumphon","city_id":"3397","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37631","name":"Lang Suan","city_id":"3397","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37632","name":"Huai Mek","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37633","name":"Kalasin","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37634","name":"Kamalasai","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37635","name":"Khao Wong","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37636","name":"Kuchinarai","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37637","name":"Nong Kung Si","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37638","name":"Yang Talat","city_id":"3398","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37639","name":"Bo Phloi","city_id":"3400","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37640","name":"Kanchanaburi","city_id":"3400","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37641","name":"Phanom Thuan","city_id":"3400","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37642","name":"Tha Maka","city_id":"3400","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37643","name":"Tha Muang","city_id":"3400","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37644","name":"Ao Luk","city_id":"3402","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"is_activated":"1"}, +{"id":"37645","name":"Lampang","city_id":"3404","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37646","name":"Thoen","city_id":"3404","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37647","name":"Lamphun","city_id":"3405","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37648","name":"Mae Tha","city_id":"3405","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37649","name":"Pa Sang","city_id":"3405","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37650","name":"Loei","city_id":"3406","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37651","name":"Phu Kra Dung","city_id":"3406","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37652","name":"Wang Saphung","city_id":"3406","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37653","name":"Mukdahan","city_id":"3410","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37654","name":"Chiang Klang","city_id":"3417","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37655","name":"Nan","city_id":"3417","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37656","name":"Bacho","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37657","name":"Narathiwat","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37658","name":"Rangae","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37659","name":"Sungai Kolok","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37660","name":"Sungai Padi","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37661","name":"Tak Bai","city_id":"3418","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37662","name":"Bang Bo Thong","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37663","name":"Bang Kruai","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37664","name":"Bang Yai","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37665","name":"Nonthaburi","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37666","name":"Pak Kret","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37667","name":"Sainoi","city_id":"3421","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37668","name":"Nong Chik","city_id":"3423","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37669","name":"Pattani","city_id":"3423","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37670","name":"Sai Buri","city_id":"3423","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37671","name":"Yaring","city_id":"3423","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37672","name":"Phangnga","city_id":"3424","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37673","name":"Phatthalung","city_id":"3425","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37674","name":"Chiang Kham","city_id":"3426","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37675","name":"Dok Kham Tai","city_id":"3426","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37676","name":"Phayao","city_id":"3426","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37677","name":"Pong","city_id":"3426","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37678","name":"Chon Daen","city_id":"3427","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37679","name":"Lom Sak","city_id":"3427","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37680","name":"Nong Phai","city_id":"3427","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37681","name":"Phetchabun","city_id":"3427","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37682","name":"Wichian Buri","city_id":"3427","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"is_activated":"1"}, +{"id":"37683","name":"Ban Laem","city_id":"3428","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37684","name":"Chaam","city_id":"3428","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37685","name":"Khao Yoi","city_id":"3428","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37686","name":"Phetchaburi","city_id":"3428","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37687","name":"Tha Yang","city_id":"3428","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37688","name":"Bang Mun Nak","city_id":"3429","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37689","name":"Phichit","city_id":"3429","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37690","name":"Taphan Hin","city_id":"3429","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37691","name":"Thap Khlo","city_id":"3429","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37692","name":"Bang Krathum","city_id":"3430","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37693","name":"Bang Rakam","city_id":"3430","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37694","name":"Nakhon Thai","city_id":"3430","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37695","name":"Phitsanulok","city_id":"3430","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37696","name":"Den Chai","city_id":"3432","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37697","name":"Long","city_id":"3432","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37698","name":"Phrae","city_id":"3432","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37699","name":"Rong Kwang","city_id":"3432","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37700","name":"Kathu","city_id":"3433","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37701","name":"Phuket","city_id":"3433","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37702","name":"Ranong","city_id":"3436","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37703","name":"Ban Pong","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37704","name":"Bang Phae","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37705","name":"Chom Bung","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37706","name":"Damnoen Saduak","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37707","name":"Photharam","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37708","name":"Ratchaburi","city_id":"3437","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37709","name":"Ban Chang","city_id":"3438","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37710","name":"Klaeng","city_id":"3438","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37711","name":"Rayong","city_id":"3438","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37712","name":"Ban Mo","city_id":"3445","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37713","name":"Kaeng Khoi","city_id":"3445","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37714","name":"Nong Khae","city_id":"3445","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37715","name":"Phra Phutthabat","city_id":"3445","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37716","name":"Saraburi","city_id":"3445","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37717","name":"Satun","city_id":"3446","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37718","name":"Hat Yai","city_id":"3449","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37719","name":"Ranot","city_id":"3449","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37720","name":"Sadao","city_id":"3449","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37721","name":"Singha Nakhon","city_id":"3449","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37722","name":"Songkhla","city_id":"3449","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37723","name":"Khiri Mat","city_id":"3450","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"is_activated":"1"}, +{"id":"37724","name":"Sawankhalok","city_id":"3450","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37725","name":"Si Satchanalai","city_id":"3450","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37726","name":"Sukhothai","city_id":"3450","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37727","name":"Phasat","city_id":"3453","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37728","name":"Surin","city_id":"3453","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37729","name":"Ban Tak","city_id":"3454","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37730","name":"Mae Ramat","city_id":"3454","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37731","name":"Mae Sot","city_id":"3454","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37732","name":"Tak","city_id":"3454","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37733","name":"Huai Yot","city_id":"3455","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37734","name":"Kantang","city_id":"3455","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37735","name":"Trang","city_id":"3455","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37736","name":"Bo Rai","city_id":"3456","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37737","name":"Trat","city_id":"3456","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37738","name":"Laplae","city_id":"3460","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37739","name":"Uttaradit","city_id":"3460","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37740","name":"Betong","city_id":"3461","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37741","name":"Yala","city_id":"3461","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37742","name":"Yasothon","city_id":"3462","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37743","name":"Guerin Kouka","city_id":"649","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37744","name":"Sokode","city_id":"649","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37745","name":"Sotouboua","city_id":"649","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37746","name":"Tchamba","city_id":"649","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37747","name":"Bafilo","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37748","name":"Bassar","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37749","name":"Kande","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37750","name":"Kara","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37751","name":"Kpagouda","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37752","name":"Niamtougou","city_id":"3463","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37753","name":"Agbelouve","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37754","name":"Aneho","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37755","name":"Lome","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37756","name":"Tabligbo","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37757","name":"Tsevie","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37758","name":"Vogan","city_id":"3464","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37759","name":"Amlame","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37760","name":"Anie","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37761","name":"Atakpame","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37762","name":"Badou","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37763","name":"Blitta","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37764","name":"Kouve","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37765","name":"Kpalime","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37766","name":"Kpessi","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37767","name":"Notse","city_id":"800","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37768","name":"Dapaong","city_id":"846","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37769","name":"Tandjouare","city_id":"846","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"is_activated":"1"}, +{"id":"37770","name":"Atafu","city_id":"3465","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37771","name":"Fakaofo","city_id":"3466","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37772","name":"Nukunonu","city_id":"3467","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37773","name":"Ohonua","city_id":"3468","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37774","name":"Pangai","city_id":"3469","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37775","name":"Hihifo","city_id":"3470","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37776","name":"Haveloloto","city_id":"3471","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37777","name":"Mu a","city_id":"3471","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37778","name":"Nuku alofa","city_id":"3471","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37779","name":"Tofoa-Koloua","city_id":"3471","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37780","name":"Vaini","city_id":"3471","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37781","name":"Arima","city_id":"3473","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37782","name":"Arouca","city_id":"3473","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37783","name":"Tacarigua","city_id":"3473","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37784","name":"Tunapuna","city_id":"3473","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37785","name":"Carapichaima","city_id":"3474","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37786","name":"Claxton Bay","city_id":"3474","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37787","name":"Chaguanas","city_id":"3475","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37788","name":"Couva","city_id":"3476","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37789","name":"Tabaquite","city_id":"3476","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37790","name":"Siparia","city_id":"3485","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37791","name":"Aryanah","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37792","name":"Bordj Aalouine","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37793","name":"Burj-al- Amri","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37794","name":"La Soukra","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37795","name":"Qal at-al-Andalus","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37796","name":"Sidi Thabit","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37797","name":"Taburbah","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37798","name":"Wadi al-Layl","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37799","name":"ad-Dandan","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37800","name":"al-Battan","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37801","name":"al-Murnaqiyah","city_id":"3487","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"is_activated":"1"}, +{"id":"37802","name":"at-Tadaman Dawwar Hishar","city_id":"3487","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37803","name":"Bajah","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37804","name":"Majaz-al-Bab","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37805","name":"Nafzah","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37806","name":"Quballat","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37807","name":"Tabursuq","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37808","name":"Tastur","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37809","name":"Zahrat Madina","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37810","name":"al-Ma qulah","city_id":"3488","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37811","name":" Awsajah","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37812","name":"Binzart","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37813","name":"Ghar-al-Milh","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37814","name":"Manzil Abd-ar-Rahman","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37815","name":"Manzil Bu Ruqaybah","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37816","name":"Manzil Jamil","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37817","name":"Matir","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37818","name":"Rafraf","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37819","name":"Ras-al-Jabal","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37820","name":"Sajanan","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37821","name":"Tinjah","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37822","name":"al- Aliyah","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37823","name":"al-Matlin","city_id":"3490","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37824","name":" Ayn Darahim","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37825","name":"Bani Matir","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37826","name":"Bu Salim","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37827","name":"Firnanah","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37828","name":"Ghar-ad-Dima ","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37829","name":"Jundubah","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37830","name":"Tabarqah","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37831","name":"Wadi Maliz","city_id":"3495","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37832","name":"Bani Khaddash","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37833","name":"Bin Qirdan","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37834","name":"Jarbah Ajim","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37835","name":"Jarbah Hawmat-as-Suq","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37836","name":"Jarbah Midun","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37837","name":"Jarjis","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37838","name":"Madaniyin","city_id":"3496","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37839","name":"Manubah","city_id":"3497","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37840","name":"Monastir","city_id":"3498","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37841","name":"Bani Hiyar","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37842","name":"Bani Khallad","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37843","name":"Bu Urqub","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37844","name":"Dar Alush","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37845","name":"Dar Sha ban","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37846","name":"Hammam-al-Aghzaz","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37847","name":"Manzil Bu Zalafah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37848","name":"Manzil Hurr","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37849","name":"Manzil Tamim","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37850","name":"Nabul","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37851","name":"Qalibiyah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37852","name":"Qurbah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37853","name":"Qurbus","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37854","name":"Qurunbaliyah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37855","name":"Sulayman","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37856","name":"Taklisah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37857","name":"Tazirkah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37858","name":"Zawiyat-al-Jadidi","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37859","name":"al-Hammamat","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37860","name":"al-Huwariyah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37861","name":"al-Ma murah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37862","name":"al-Middah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37863","name":"as-Sama ah","city_id":"3499","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37864","name":"Ghannush","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37865","name":"Marath","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37866","name":"Matmatat-al-Jadidah","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37867","name":"Matmatat-al-Qadimah","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37868","name":"Qabis","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37869","name":"Sanini an-Nahal","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37870","name":"Wadhraf","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37871","name":"al-Hammah","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37872","name":"al-Matwiyah","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37873","name":"az-Zarat","city_id":"3500","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37874","name":"Qafsah","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37875","name":"Umm-al- Arais","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37876","name":"al-Madilah","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37877","name":"al-Mitlawi","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37878","name":"al-Qatar","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37879","name":"ar-Rudayyif","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37880","name":"as-Sanad","city_id":"3501","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"is_activated":"1"}, +{"id":"37881","name":"Duz","city_id":"3502","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37882","name":"Jamnah","city_id":"3502","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37883","name":"Qibili","city_id":"3502","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37884","name":"Suq-al-Ahad","city_id":"3502","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37885","name":" Aqarib","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37886","name":"Bi r Ali Bin Khalifah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37887","name":"Jabinyanah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37888","name":"Manzil Shakir","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37889","name":"Qarmadah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37890","name":"Qarqannah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37891","name":"Safaqis","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37892","name":"Saqiyat-ad-Dair","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37893","name":"Saqiyat-az-Zayt","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37894","name":"Sfax","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37895","name":"Tinah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37896","name":"al- Ayn","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37897","name":"al-Hanashah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37898","name":"al-Mahras","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37899","name":"as-Sukhayrah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37900","name":"ash-Shayhiyah","city_id":"3503","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37901","name":"Barqu","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37902","name":"Bu Aradah","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37903","name":"Bu Ruwis","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37904","name":"Kasra","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37905","name":"Makthar","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37906","name":"Qa afur","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37907","name":"Silyanah","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37908","name":"al- Arusah","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37909","name":"al-Karib","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37910","name":"ar-Rawhiyah","city_id":"3506","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37911","name":"Akkudah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37912","name":"Bu Fishah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37913","name":"Hammam Susah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37914","name":"Harqalah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37915","name":"Masakin","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37916","name":"Qusaybat-ath-Thurayat","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37917","name":"Sidi Bu Ali","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37918","name":"Sidi al-Hani","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37919","name":"Susah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37920","name":"Zawiyat Susah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37921","name":"al-Masa din","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37922","name":"al-Qal at-al-Kabirah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37923","name":"al-Qal at-as-Saghirah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37924","name":"an-Nafidah","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37925","name":"az-Zuhur","city_id":"3507","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37926","name":"Bi r-al-Ahmar","city_id":"3508","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37927","name":"Dhahibah","city_id":"3508","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37928","name":"Ghumrassin","city_id":"3508","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37929","name":"Rimadah","city_id":"3508","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37930","name":"Tatawin","city_id":"3508","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37931","name":"Daqash","city_id":"3509","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37932","name":"Hammat-al-Jarid","city_id":"3509","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37933","name":"Naftah","city_id":"3509","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37934","name":"Tamaghzah","city_id":"3509","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37935","name":"Tawzar","city_id":"3509","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37936","name":"Bardaw","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37937","name":"Ben Arous","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37938","name":"Carthage","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37939","name":"Halq-al-Wadi","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37940","name":"Megrine","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37941","name":"Qartaj","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37942","name":"Sidi Bu Sa id","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37943","name":"Tunis","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37944","name":"al-Marsa","city_id":"3510","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37945","name":"Bi r Mashariqah","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37946","name":"Jabal-al-Wust","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37947","name":"Zaghwan","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37948","name":"al-Fahs","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37949","name":"an-Nazur","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37950","name":"az-Zaribah","city_id":"3511","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37951","name":"Manzil Salim","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37952","name":"Nibbar","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37953","name":"Qal at-as-Sanan","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37954","name":"Saqiyat Sidi Yussuf","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37955","name":"Tajarwin","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37956","name":"ad-Dahmani","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37957","name":"al-Jarissah","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37958","name":"al-Kaf","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37959","name":"al-Qal at-al-Khasba ","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37960","name":"al-Qusur","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37961","name":"as-Sars","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37962","name":"at-Tawiraf","city_id":"3512","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37963","name":"Awlad ash-Shamakh","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37964","name":"Bumirdas","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37965","name":"Habirah","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37966","name":"Karkar","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37967","name":"Mallulash","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37968","name":"Qusur-as-Saf","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37969","name":"Rajish","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37970","name":"Shurban","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37971","name":"Sidi Ulwan","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37972","name":"al-Baradi ah","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37973","name":"al-Jamm","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37974","name":"al-Mahdiyah","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37975","name":"as-Sawasi","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37976","name":"ash-Shabbah","city_id":"3513","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"is_activated":"1"}, +{"id":"37977","name":" Amirat-al-Fahul","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37978","name":" Amirat-al-Hajjaj","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37979","name":" Amirat-at-Tawazarah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37980","name":"Banan Budar","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37981","name":"Banblat wal-Manarah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37982","name":"Bani Hassan","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37983","name":"Bu Hajjar","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37984","name":"Ghanadah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37985","name":"Jammal","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37986","name":"Khunays","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37987","name":"Lamtah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37988","name":"Manzil Farsi","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37989","name":"Manzil Hayah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37990","name":"Manzil Kamil","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37991","name":"Manzil Nur","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37992","name":"Qasr Hallal","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37993","name":"Qusaybat-al-Madyuni","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37994","name":"Sahilin Ma atmar","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37995","name":"Sayyadah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37996","name":"Sidi Amara","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37997","name":"Sidi Bin Nur","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37998","name":"Tabulbah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"37999","name":"Tuzah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38000","name":"Zaramidin","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38001","name":"Zawiyat Quntash","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38002","name":"al-Baqalitah","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38003","name":"al-Masdur","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38004","name":"al-Muknin","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38005","name":"al-Munastir","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38006","name":"al-Wardanin","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38007","name":"ash-Sharahil","city_id":"3514","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38008","name":"Firyanah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38009","name":"Fussanah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38010","name":"Haydrah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38011","name":"Jadliyan","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38012","name":"Majal Bal Abbas","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38013","name":"Sabibah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38014","name":"Subaytilah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38015","name":"Talabat","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38016","name":"Talah","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38017","name":"al-Qasrayn","city_id":"3515","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38018","name":" Ayn Jalulah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38019","name":"Buhajlah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38020","name":"Haffuz","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38021","name":"Hajib-al- Ayun","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38022","name":"Manzil Mahidi","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38023","name":"Nasr Allah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38024","name":"al- Ala","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38025","name":"al-Qayrawan","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38026","name":"al-Waslatiyah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38027","name":"as-Subaykhah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38028","name":"ash-Shabikah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38029","name":"ash-Sharardah","city_id":"3516","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38030","name":"Adana","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38031","name":"Aladag","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38032","name":"Ceyhan","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38033","name":"Feke","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38034","name":"Imamoglu","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38035","name":"Karaisali","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38036","name":"Karatas","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38037","name":"Kozan","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38038","name":"Pozanti","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38039","name":"Saimbeyli","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38040","name":"Tufanbeyli","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38041","name":"Yumurtalik","city_id":"3517","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38042","name":"Adiyaman","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38043","name":"Besni","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38044","name":"Celikhan","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38045","name":"Gerger","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38046","name":"Golbasi","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38047","name":"Kahta","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38048","name":"Samsat","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38049","name":"Sincik","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38050","name":"Tut","city_id":"3518","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38051","name":"Afyonkarahisar","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38052","name":"Basmakci","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38053","name":"Bayat","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38054","name":"Bolvadin","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38055","name":"Cay","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38056","name":"Dazkiri","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38057","name":"Dinar","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38058","name":"Emirdag","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38059","name":"Evciler","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38060","name":"Hocalar","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38061","name":"Ihsaniye","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38062","name":"Iscehisar","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38063","name":"Kiziloren","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38064","name":"Sandikli","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38065","name":"Sincanli","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38066","name":"Suhut","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38067","name":"Sultandagi","city_id":"3519","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38068","name":"Diyadin","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38069","name":"Dogubeyazit","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38070","name":"Eleskirt","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38071","name":"Hamur","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38072","name":"Karakose","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38073","name":"Patnos","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38074","name":"Taslicay","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38075","name":"Tutak","city_id":"3520","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38076","name":"Agacoren","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38077","name":"Aksaray","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38078","name":"Eskil","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38079","name":"Gulagac","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38080","name":"Guzelyurt","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38081","name":"Ortakoy","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38082","name":"Sariyahsi","city_id":"3521","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"is_activated":"1"}, +{"id":"38083","name":"Amasya","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38084","name":"Goynucek","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38085","name":"Gumushacikoy","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38086","name":"Hamamozu","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38087","name":"Merzifon","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38088","name":"Suluova","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38089","name":"Tasova","city_id":"3522","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38090","name":"Akyurt","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38091","name":"Ankara","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38092","name":"Ayas","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38093","name":"Beypazari","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38094","name":"Camlidere","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38095","name":"Cubuk","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38096","name":"Elmadag","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38097","name":"Evren","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38098","name":"Gudul","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38099","name":"Haymana","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38100","name":"Kalecik","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38101","name":"Kizilcahamam","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38102","name":"Nallihan","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38103","name":"Polatli","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38104","name":"Sereflikochisar","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38105","name":"Yenisehir","city_id":"3523","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38106","name":"Akseki","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38107","name":"Alanya","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38108","name":"Antalya","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38109","name":"Elmali","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38110","name":"Finike","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38111","name":"Gazipasa","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38112","name":"Gundogmus","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38113","name":"Ibradi","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38114","name":"Kale","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38115","name":"Kemer","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38116","name":"Konya","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38117","name":"Korkuteli","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38118","name":"Kumluca","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38119","name":"Manavgat","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38120","name":"Serik","city_id":"3524","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38121","name":"Ardahan","city_id":"3525","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38122","name":"Damal","city_id":"3525","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38123","name":"Gole","city_id":"3525","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38124","name":"Hanak","city_id":"3525","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38125","name":"Posof","city_id":"3525","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38126","name":"Ardanuc","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38127","name":"Arhavi","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38128","name":"Artvin","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38129","name":"Borcka","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38130","name":"Hopa","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38131","name":"Murgul","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38132","name":"Savsat","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38133","name":"Yusufeli","city_id":"3526","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38134","name":"Aydin","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38135","name":"Bozdogan","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38136","name":"Buharkent","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38137","name":"Cine","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38138","name":"Didim","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38139","name":"Germencik","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38140","name":"Incirliova","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38141","name":"Karacasu","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38142","name":"Karpuzlu","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38143","name":"Kocarli","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38144","name":"Kosk","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38145","name":"Kusadasi","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38146","name":"Kuyucak","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38147","name":"Nazilli","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38148","name":"Soke","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38149","name":"Sultanhisar","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38150","name":"Yenipazar","city_id":"3527","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38151","name":"Ayvalik","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38152","name":"Balikesir","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38153","name":"Balya","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38154","name":"Bandirma","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38155","name":"Bigadic","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38156","name":"Burhaniye","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38157","name":"Dursunbey","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38158","name":"Edremit","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38159","name":"Erdek","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38160","name":"Gomec","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38161","name":"Gonen","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38162","name":"Havran","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38163","name":"Ivrindi","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38164","name":"Kepsut","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38165","name":"Manyas","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38166","name":"Marmara","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38167","name":"Sakarya","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38168","name":"Savastepe","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38169","name":"Sindirgi","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38170","name":"Susurluk","city_id":"3528","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38171","name":"Amasra","city_id":"3529","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38172","name":"Bartin","city_id":"3529","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38173","name":"Kurucasile","city_id":"3529","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38174","name":"Ulus","city_id":"3529","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38175","name":"Besiri","city_id":"3530","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38176","name":"Gercus","city_id":"3530","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38177","name":"Hasankeyf","city_id":"3530","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38178","name":"Kozluk","city_id":"3530","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38179","name":"Sason","city_id":"3530","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38180","name":"Aydintepe","city_id":"3531","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38181","name":"Bayburt","city_id":"3531","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38182","name":"Demirozu","city_id":"3531","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"is_activated":"1"}, +{"id":"38183","name":"Bilecik","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38184","name":"Bozuyuk","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38185","name":"Golpazari","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38186","name":"Inhisar","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38187","name":"Osmaneli","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38188","name":"Pazaryeri","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38189","name":"Sogut","city_id":"3532","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38190","name":"Adakli","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38191","name":"Bingol","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38192","name":"Genc","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38193","name":"Karliova","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38194","name":"Kigi","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38195","name":"Solhan","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38196","name":"Yayladere","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38197","name":"Yedisu","city_id":"3533","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38198","name":"Adilcevaz","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38199","name":"Ahlat","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38200","name":"Bitlis","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38201","name":"Guroymak","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38202","name":"Hizan","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38203","name":"Mutki","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38204","name":"Tatvan","city_id":"3534","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38205","name":"Akcakoca","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38206","name":"Bolu","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38207","name":"Dortdivan","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38208","name":"Gerede","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38209","name":"Goynuk","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38210","name":"Kibriscik","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38211","name":"Mudurnu","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38212","name":"Seben","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38213","name":"Yenicaga","city_id":"3535","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38214","name":"Aglasun","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38215","name":"Altinyayla","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38216","name":"Bucak","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38217","name":"Burdur","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38218","name":"Golhisar","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38219","name":"Karamanli","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38220","name":"Tefenni","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38221","name":"Yesilova","city_id":"3536","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38222","name":"Bursa","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38223","name":"Buyukorhan","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38224","name":"Gemlik","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38225","name":"Gursu","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38226","name":"Harmancik","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38227","name":"Inegol","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38228","name":"Iznik","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38229","name":"Karacabey","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38230","name":"Keles","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38231","name":"Kestel","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38232","name":"Mudanya","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38233","name":"Mustafakemalpasa","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38234","name":"Orhaneli","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38235","name":"Orhangazi","city_id":"3537","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38236","name":"Ayvacik","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38237","name":"Bayramic","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38238","name":"Biga","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38239","name":"Bozcaada","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38240","name":"Can","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38241","name":"Canakkale","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38242","name":"Eceabat","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38243","name":"Ezine","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38244","name":"Gelibolu","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38245","name":"Gokceada","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38246","name":"Lapseki","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38247","name":"Yenice","city_id":"3538","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38248","name":"Atkaracalar","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38249","name":"Bayramoren","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38250","name":"Cankiri","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38251","name":"Cerkes","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38252","name":"Eldivan","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38253","name":"Ilgaz","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38254","name":"Kizilirmak","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38255","name":"Korgun","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38256","name":"Kursunlu","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38257","name":"Orta","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38258","name":"Sabanozu","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38259","name":"Yaprakli","city_id":"3539","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38260","name":"Alaca","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38261","name":"Corum","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38262","name":"Dodurga","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38263","name":"Iskilip","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38264","name":"Kargi","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38265","name":"Mecitozu","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38266","name":"Oguzlar","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38267","name":"Osmancik","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38268","name":"Sungurlu","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38269","name":"Ugurludag","city_id":"3540","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38270","name":"Acipayam","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38271","name":"Akkoy","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38272","name":"Baklan","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38273","name":"Bekilli","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38274","name":"Bozkurt","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38275","name":"Buldan","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38276","name":"Cardak","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38277","name":"Civril","city_id":"3541","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"is_activated":"1"}, +{"id":"38278","name":"Denizli","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38279","name":"Guney","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38280","name":"Honaz","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38281","name":"Saraykoy","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38282","name":"Serinhisar","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38283","name":"Tavas","city_id":"3541","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38284","name":"Bismil","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38285","name":"Cermik","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38286","name":"Cinar","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38287","name":"Cungus","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38288","name":"Dicle","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38289","name":"Diyarbakir","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38290","name":"Egil","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38291","name":"Ergani","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38292","name":"Hani","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38293","name":"Kocakoy","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38294","name":"Kulp","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38295","name":"Lice","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38296","name":"Silvan","city_id":"3542","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38297","name":"Cumayeri","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38298","name":"Duzce","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38299","name":"Golyaka","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38300","name":"Gumusova","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38301","name":"Kaynasli","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38302","name":"Yigilca","city_id":"3543","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38303","name":"Edirne","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38304","name":"Enez","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38305","name":"Havsa","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38306","name":"Ipsala","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38307","name":"Kesan","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38308","name":"Lalapasa","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38309","name":"Meric","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38310","name":"Suleoglu","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38311","name":"Uzunkopru","city_id":"3544","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38312","name":"Agin","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38313","name":"Alacakaya","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38314","name":"Aricak","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38315","name":"Baskil","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38316","name":"Elazig","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38317","name":"Karakocan","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38318","name":"Keban","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38319","name":"Kovancilar","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38320","name":"Maden","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38321","name":"Palu","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38322","name":"Sivrice","city_id":"3545","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38323","name":"Erzincan","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38324","name":"Ilic","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38325","name":"Kemah","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38326","name":"Kemaliye","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38327","name":"Otlukbeli","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38328","name":"Refahiye","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38329","name":"Tercan","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38330","name":"Uzumlu","city_id":"3546","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38331","name":"Askale","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38332","name":"Erzurum","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38333","name":"Hinis","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38334","name":"Horasan","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38335","name":"Ilica","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38336","name":"Ispir","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38337","name":"Karacoban","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38338","name":"Karayazi","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38339","name":"Koprukoy","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38340","name":"Narman","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38341","name":"Oltu","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38342","name":"Olur","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38343","name":"Pasinler","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38344","name":"Pazaryolu","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38345","name":"Senkaya","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38346","name":"Tekman","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38347","name":"Tortum","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38348","name":"Uzundere","city_id":"3547","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38349","name":"Alpu","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38350","name":"Beylikova","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38351","name":"Cifteler","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38352","name":"Eskisehir","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38353","name":"Gunyuzu","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38354","name":"Han","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38355","name":"Inonu","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38356","name":"Mahmudiye","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38357","name":"Mihalgazi","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38358","name":"Mihaliccik","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38359","name":"Saricakaya","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38360","name":"Seyitgazi","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38361","name":"Sivrihisar","city_id":"3548","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38362","name":"Araban","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38363","name":"Gaziantep","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38364","name":"Islahiye","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38365","name":"Karkamis","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38366","name":"Nizip","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38367","name":"Nurdagi","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38368","name":"Oguzeli","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38369","name":"Sehitkamil","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38370","name":"Yavuzeli","city_id":"3549","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38371","name":"Aluca","city_id":"3550","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38372","name":"Bulancak","city_id":"3550","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38373","name":"Dereli","city_id":"3550","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38374","name":"Dogankent","city_id":"3550","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"is_activated":"1"}, +{"id":"38375","name":"Espiye","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38376","name":"Eynesil","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38377","name":"Giresun","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38378","name":"Gorele","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38379","name":"Guce","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38380","name":"Kesap","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38381","name":"Piraziz","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38382","name":"Sebinkarahisar","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38383","name":"Tirebolu","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38384","name":"Yaglidere","city_id":"3550","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38385","name":"Gumushane","city_id":"3551","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38386","name":"Kelkit","city_id":"3551","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38387","name":"Kurtun","city_id":"3551","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38388","name":"Siran","city_id":"3551","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38389","name":"Torul","city_id":"3551","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38390","name":"Cukurca","city_id":"3552","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38391","name":"Hakkari","city_id":"3552","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38392","name":"Semdinli","city_id":"3552","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38393","name":"Yuksekova","city_id":"3552","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38394","name":"Altinozu","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38395","name":"Antakya","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38396","name":"Dortyol","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38397","name":"Erzin","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38398","name":"Hassa","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38399","name":"Iskenderun","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38400","name":"Kirikhan","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38401","name":"Kumlu","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38402","name":"Reyhanli","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38403","name":"Samandag","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38404","name":"Yayladagi","city_id":"3553","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38405","name":"Anamur","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38406","name":"Aydincik","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38407","name":"Bozyazi","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38408","name":"Erdemli","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38409","name":"Gulnar","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38410","name":"Mersin","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38411","name":"Mut","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38412","name":"Silifke","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38413","name":"Tarsus","city_id":"3554","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38414","name":"Aralik","city_id":"3555","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38415","name":"Igdir","city_id":"3555","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38416","name":"Karakoyunlu","city_id":"3555","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38417","name":"Tuzluca","city_id":"3555","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38418","name":"Atabey","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38419","name":"Egirdir","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38420","name":"Gelendost","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38421","name":"Isparta","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38422","name":"Keciborlu","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38423","name":"Sarkikaraagac","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38424","name":"Senirkent","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38425","name":"Sutculer","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38426","name":"Uluborlu","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38427","name":"Yalvac","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38428","name":"Yenisarbademli","city_id":"3556","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38429","name":"Buyukcekmece","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38430","name":"Catalca","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38431","name":"Eminonu","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38432","name":"Esenler","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38433","name":"Istanbul","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38434","name":"Kadıkoy","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38435","name":"Sile","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38436","name":"Silivri","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38437","name":"Sultanbeyli","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38438","name":"Topkapı","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38439","name":"Umraniye","city_id":"3557","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38440","name":"Aliaga","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38441","name":"Alsancak","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38442","name":"Bayindir","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38443","name":"Bergama","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38444","name":"Beyagac","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38445","name":"Bornova","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38446","name":"Cesme","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38447","name":"Digor","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38448","name":"Dikili","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38449","name":"Foca","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38450","name":"Izmir","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38451","name":"Karaburun","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38452","name":"Kemalpasa","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38453","name":"Kinik","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38454","name":"Kiraz","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38455","name":"Menderes","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38456","name":"Menemen","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38457","name":"Merkezi","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38458","name":"Mersinli","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38459","name":"Odemis","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38460","name":"Seferihisar","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38461","name":"Selcuk","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38462","name":"Torbali","city_id":"3558","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38463","name":"Afsin","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38464","name":"Andirin","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38465","name":"Caglayancerit","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38466","name":"Ekinozu","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38467","name":"Elbistan","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38468","name":"Goksun","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38469","name":"Kahramanmaras","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38470","name":"Nurhak","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38471","name":"Pazarcik","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38472","name":"Turkoglu","city_id":"3559","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"is_activated":"1"}, +{"id":"38473","name":"Eflani","city_id":"3560","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38474","name":"Eskipazar","city_id":"3560","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38475","name":"Karabuk","city_id":"3560","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38476","name":"Ovacik","city_id":"3560","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38477","name":"Safranbolu","city_id":"3560","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38478","name":"Ayranci","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38479","name":"Basyayla","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38480","name":"Ermenek","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38481","name":"Karaman","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38482","name":"Kazimkarabekir","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38483","name":"Sariveliler","city_id":"3561","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38484","name":"Akyaka","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38485","name":"Arpacay","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38486","name":"Kagizman","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38487","name":"Sarikamis","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38488","name":"Selim","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38489","name":"Susuz","city_id":"3562","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38490","name":"Karsiyaka","city_id":"3563","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38491","name":"Abana","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38492","name":"Agli","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38493","name":"Arac","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38494","name":"Azdavay","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38495","name":"Daday","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38496","name":"Devrekani","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38497","name":"Doganyurt","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38498","name":"Hanonu","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38499","name":"Ihsangazi","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38500","name":"Inebolu","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38501","name":"Kastamonu","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38502","name":"Pinarbasi","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38503","name":"Senpazar","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38504","name":"Seydiler","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38505","name":"Taskopru","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38506","name":"Tosya","city_id":"3564","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38507","name":"Akkisla","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38508","name":"Bunyan","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38509","name":"Develi","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38510","name":"Felahiye","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38511","name":"Hacilar","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38512","name":"Incesu","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38513","name":"Kayseri","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38514","name":"Ozvatan","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38515","name":"Sarioglan","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38516","name":"Sariz","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38517","name":"Tomarza","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38518","name":"Yahyali","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38519","name":"Yesilhisar","city_id":"3565","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38520","name":"Elbeyli","city_id":"3566","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38521","name":"Kilis","city_id":"3566","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38522","name":"Musabeyli","city_id":"3566","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38523","name":"Polateli","city_id":"3566","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38524","name":"Bahsili","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38525","name":"Baliseyh","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38526","name":"Delice","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38527","name":"Karakecili","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38528","name":"Keskin","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38529","name":"Kirikkale","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38530","name":"Sulakyurt","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38531","name":"Yahsihan","city_id":"3567","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38532","name":"Babaeski","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38533","name":"Demirkoy","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38534","name":"Kirklareli","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38535","name":"Kofcaz","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38536","name":"Kumkoy","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38537","name":"Luleburgaz","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38538","name":"Pehlivankoy","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38539","name":"Pinarhisar","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38540","name":"Vize","city_id":"3568","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38541","name":"Akcakent","city_id":"3569","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38542","name":"Akpinar","city_id":"3569","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38543","name":"Boztepe","city_id":"3569","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38544","name":"Kirsehir","city_id":"3569","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38545","name":"Mucur","city_id":"3569","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38546","name":"Cayırova","city_id":"3570","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38547","name":"Derince","city_id":"3570","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38548","name":"Dilovası","city_id":"3570","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38549","name":"Gebze","city_id":"3570","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38550","name":"Golcuk","city_id":"3570","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"is_activated":"1"}, +{"id":"38551","name":"Izmit","city_id":"3570","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38552","name":"Kandira","city_id":"3570","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38553","name":"Karamursel","city_id":"3570","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38554","name":"Kocaeli","city_id":"3570","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38555","name":"Korfez","city_id":"3570","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38556","name":"Ahirli","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38557","name":"Akoren","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38558","name":"Aksehir","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38559","name":"Altinekin","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38560","name":"Beysehir","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38561","name":"Bozkir","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38562","name":"Cihanbeyli","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38563","name":"Cumra","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38564","name":"Derebucak","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38565","name":"Doganhisar","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38566","name":"Emirgazi","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38567","name":"Eregli","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38568","name":"Guneysinir","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38569","name":"Hadim","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38570","name":"Halkapinar","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38571","name":"Huyuk","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38572","name":"Ilgin","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38573","name":"Kadinhani","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38574","name":"Karapinar","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38575","name":"Sarayonu","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38576","name":"Seydisehir","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38577","name":"Taskent","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38578","name":"Tuzlukcu","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38579","name":"Yalihuyuk","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38580","name":"Yunak","city_id":"3571","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38581","name":"Altinas","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38582","name":"Aslanapa","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38583","name":"Domanic","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38584","name":"Dumlupinar","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38585","name":"Emet","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38586","name":"Gediz","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38587","name":"Kutahya","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38588","name":"Pazarlar","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38589","name":"Saphane","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38590","name":"Simav","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38591","name":"Tavsanli","city_id":"3572","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38592","name":"Lefkosa","city_id":"3573","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38593","name":"Akcadag","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38594","name":"Arapkir","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38595","name":"Arguvan","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38596","name":"Battalgazi","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38597","name":"Darende","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38598","name":"Dogansehir","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38599","name":"Doganyol","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38600","name":"Hekimhan","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38601","name":"Kuluncak","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38602","name":"Malatya","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38603","name":"Poturge","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38604","name":"Yazihan","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38605","name":"Yesilyurt","city_id":"3574","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38606","name":"Ahmetli","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38607","name":"Akhisar","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38608","name":"Alasehir","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38609","name":"Demirci","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38610","name":"Golmarmara","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38611","name":"Gordes","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38612","name":"Kirkagac","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38613","name":"Koprubasi","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38614","name":"Manisa","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38615","name":"Salihli","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38616","name":"Sarigol","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38617","name":"Saruhanli","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38618","name":"Selendi","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38619","name":"Turgutlu","city_id":"3575","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38620","name":"Dargecit","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38621","name":"Derik","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38622","name":"Kiziltepe","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38623","name":"Mardin","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38624","name":"Mazidagi","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38625","name":"Midyat","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38626","name":"Nusaybin","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38627","name":"Omerli","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38628","name":"Savur","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38629","name":"Yesilli","city_id":"3576","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38630","name":"Bodrum","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38631","name":"Dalaman","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38632","name":"Datca","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38633","name":"Fethiye","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38634","name":"Kavaklidere","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38635","name":"Koycegiz","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38636","name":"Marmaris","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38637","name":"Mugla","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38638","name":"Ortaca","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38639","name":"Yatagan","city_id":"3577","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38640","name":"Bulanik","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38641","name":"Haskoy","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38642","name":"Korkut","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38643","name":"Malazgirt","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38644","name":"Mus","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38645","name":"Varto","city_id":"3578","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38646","name":"Acigol","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38647","name":"Avanos","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38648","name":"Derinkuyu","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38649","name":"Gulsehir","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38650","name":"Hacibektas","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38651","name":"Kozakli","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38652","name":"Nevsehir","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38653","name":"Urgup","city_id":"3579","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"is_activated":"1"}, +{"id":"38654","name":"Altunhisar","city_id":"3580","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38655","name":"Bor","city_id":"3580","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38656","name":"Nigde","city_id":"3580","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38657","name":"Ulukisla","city_id":"3580","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38658","name":"Akkus","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38659","name":"Aybasti","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38660","name":"Fatsa","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38661","name":"Golkoy","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38662","name":"Gulyali","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38663","name":"Gurgentepe","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38664","name":"Ikizce","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38665","name":"Kabaduz","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38666","name":"Kabatas","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38667","name":"Korgan","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38668","name":"Kumru","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38669","name":"Mesudiye","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38670","name":"Ordu","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38671","name":"Persembe","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38672","name":"Ulubey","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38673","name":"Unye","city_id":"3581","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38674","name":"Bahce","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38675","name":"Duzici","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38676","name":"Hasanbeyli","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38677","name":"Kadirli","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38678","name":"Osmaniye","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38679","name":"Sumbas","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38680","name":"Toprakkale","city_id":"3582","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38681","name":"Ardesen","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38682","name":"Cayeli","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38683","name":"Derepazan","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38684","name":"Findikli","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38685","name":"Guneysu","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38686","name":"Hemsin","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38687","name":"Ikizdere","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38688","name":"Iyidere","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38689","name":"Kalkandere","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38690","name":"Pazar","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38691","name":"Rize","city_id":"3583","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38692","name":"Adapazari","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38693","name":"Akyazi","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38694","name":"Ferizli","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38695","name":"Geyve","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38696","name":"Hendek","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38697","name":"Karapurcek","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38698","name":"Karasu","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38699","name":"Kaynarca","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38700","name":"Kocaali","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38701","name":"Pamukova","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38702","name":"Sapanca","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38703","name":"Sogutlu","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38704","name":"Tarakli","city_id":"3584","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38705","name":"Akcakale","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38706","name":"Alacam","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38707","name":"Asarcik","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38708","name":"Bafra","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38709","name":"Carsamba","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38710","name":"Havza","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38711","name":"Kavak","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38712","name":"Ladik","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38713","name":"Mayis 19","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38714","name":"Salipazan","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38715","name":"Samsun","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38716","name":"Tekkekoy","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38717","name":"Terme","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38718","name":"Vezirkopru","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38719","name":"Yakakent","city_id":"3585","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38720","name":"Birecik","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38721","name":"Bozova","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38722","name":"Ceylanpinar","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38723","name":"Halfeti","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38724","name":"Harran","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38725","name":"Hilvan","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38726","name":"Sanliurfa","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38727","name":"Siverek","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38728","name":"Suruc","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38729","name":"Urfa","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38730","name":"Viransehir","city_id":"3586","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38731","name":"Aydinlar","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38732","name":"Baykan","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38733","name":"Eruh","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38734","name":"Kurtalan","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38735","name":"Pervari","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38736","name":"Siirt","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38737","name":"Sirvan","city_id":"3587","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38738","name":"Ayancik","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38739","name":"Boyabat","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38740","name":"Dikmen","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38741","name":"Duragan","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38742","name":"Erfelek","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38743","name":"Gerze","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38744","name":"Sarayduzu","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38745","name":"Sinop","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38746","name":"Turkeli","city_id":"3588","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"is_activated":"1"}, +{"id":"38747","name":"Beytussebap","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38748","name":"Cizre","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38749","name":"Guclukonak","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38750","name":"Idil","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38751","name":"Silopi","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38752","name":"Sirnak","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38753","name":"Uludere","city_id":"3589","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38754","name":"Akincilar","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38755","name":"Divrigi","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38756","name":"Dogansar","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38757","name":"Gemerek","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38758","name":"Golova","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38759","name":"Hafik","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38760","name":"Imranli","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38761","name":"Kangal","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38762","name":"Koyulhisar","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38763","name":"Sarkisla","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38764","name":"Sivas","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38765","name":"Susehri","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38766","name":"Ulas","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38767","name":"Yildizeli","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38768","name":"Zara","city_id":"3590","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38769","name":"Cerkezkoy","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38770","name":"Corlu","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38771","name":"Hayrabolu","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38772","name":"Malkara","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38773","name":"Marmaraereglisi","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38774","name":"Muratli","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38775","name":"Saray","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38776","name":"Sarkoy","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38777","name":"Tekirdag","city_id":"3591","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38778","name":"Almus","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38779","name":"Artova","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38780","name":"Basciftlik","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38781","name":"Erbaa","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38782","name":"Niksar","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38783","name":"Resadiye","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38784","name":"Sulusaray","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38785","name":"Tokat","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38786","name":"Turhal","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38787","name":"Zile","city_id":"3592","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38788","name":"Akcaabat","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38789","name":"Arakli","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38790","name":"Arsin","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38791","name":"Besikduzu","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38792","name":"Caykara","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38793","name":"Dernekpazari","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38794","name":"Duzkoy","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38795","name":"Hayrat","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38796","name":"Macka","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38797","name":"Of","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38798","name":"Salpazari","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38799","name":"Surmene","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38800","name":"Tonya","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38801","name":"Trabzon","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38802","name":"Vakfikebir","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38803","name":"Yomra","city_id":"3593","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38804","name":"Hozat","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38805","name":"Mazgirt","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38806","name":"Nazimiye","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38807","name":"Pertek","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38808","name":"Pulumur","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38809","name":"Tunceli","city_id":"3594","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38810","name":"Banaz","city_id":"3595","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38811","name":"Esme","city_id":"3595","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38812","name":"Karahalli","city_id":"3595","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38813","name":"Sivasli","city_id":"3595","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38814","name":"Usak","city_id":"3595","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38815","name":"Bahcesaray","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38816","name":"Baskale","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38817","name":"Caldiran","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38818","name":"Ercis","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38819","name":"Gevas","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38820","name":"Gurpinar","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38821","name":"Muradiye","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38822","name":"Ozalp","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38823","name":"Van","city_id":"3596","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38824","name":"Altinova","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38825","name":"Armutlu","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38826","name":"Ciftlikkoy","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38827","name":"Cinarcik","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38828","name":"Termal","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38829","name":"Yalova","city_id":"3597","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38830","name":"Akdagmadeni","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38831","name":"Bogaziliyan","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38832","name":"Candir","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38833","name":"Cayiralan","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38834","name":"Cekerek","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38835","name":"Kadisehri","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38836","name":"Saraykent","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38837","name":"Sarikaya","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38838","name":"Sefaatli","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38839","name":"Sorgun","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38840","name":"Yenifakili","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38841","name":"Yerkoy","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38842","name":"Yozgat","city_id":"3598","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"is_activated":"1"}, +{"id":"38843","name":"Alapli","city_id":"3599","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38844","name":"Caycuma","city_id":"3599","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38845","name":"Devrek","city_id":"3599","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38846","name":"Gokcebey","city_id":"3599","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38847","name":"Zonguldak","city_id":"3599","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38848","name":"Ahchadepe","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38849","name":"Annau","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38850","name":"Babadayhan","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38851","name":"Baherden","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38852","name":"Birleshik Pervi","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38853","name":"Buzmeyin","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38854","name":"Dushak","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38855","name":"Gokedepe","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38856","name":"Kaka","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38857","name":"Miana","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38858","name":"Ovaz Jalatay","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38859","name":"Saragt","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38860","name":"Tecen","city_id":"3600","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38861","name":"Asgabat","city_id":"3601","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38862","name":"Adyndaky","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38863","name":"Balkanabat","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38864","name":"Bekdash","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38865","name":"Gasanguli","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38866","name":"Gazanjyk","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38867","name":"Goturdepe","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38868","name":"Gumdag","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38869","name":"Karakala","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38870","name":"Khazar","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38871","name":"Serdar","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38872","name":"Sharlawuk","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38873","name":"Turkmenbasi","city_id":"3602","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38874","name":"Akdepe","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38875","name":"Boldumsaz","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38876","name":"Dasoguz","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38877","name":"Gubadag","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38878","name":"Kohne Urgenc","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38879","name":"Tagta","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38880","name":"Yilanli","city_id":"3603","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38881","name":"Darganata","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38882","name":"Esenmengli","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38883","name":"Farap","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38884","name":"Gazojak","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38885","name":"Govurdak","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38886","name":"Halac","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38887","name":"Kerki","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38888","name":"Mukri","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38889","name":"Sayat","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38890","name":"Seydi","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38891","name":"Turkmenabat","city_id":"3604","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38892","name":"Bayramali","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38893","name":"Eloten","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38894","name":"Murgab","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38895","name":"Sakarchage","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38896","name":"Tagtabazar","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38897","name":"Turkmengala","city_id":"3605","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38898","name":"Vaiaku","city_id":"3608","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38899","name":"Tonga","city_id":"3609","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38900","name":"Lolua","city_id":"3610","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38901","name":"Kua","city_id":"3611","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38902","name":"Tanrake","city_id":"3612","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38903","name":"Savave","city_id":"3613","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38904","name":"Fangaua","city_id":"3614","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"is_activated":"1"}, +{"id":"38905","name":"Bombo","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38906","name":"Bweyogerere","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38907","name":"Entebbe","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38908","name":"Jinja-Kawempe","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38909","name":"Kajansi","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38910","name":"Kalangala","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38911","name":"Kampala","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38912","name":"Kayunga","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38913","name":"Kiboga","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38914","name":"Kireka","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38915","name":"Kyotera","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38916","name":"Lugazi","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38917","name":"Lukaya","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38918","name":"Luwero","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38919","name":"Lyantonde","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38920","name":"Masaka","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38921","name":"Mityana","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38922","name":"Mpigi","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38923","name":"Mubende","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38924","name":"Mukono","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38925","name":"Nakasongola","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38926","name":"Namasuba","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38927","name":"Njeru","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38928","name":"Nkonkonjeru","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38929","name":"Rakai","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38930","name":"Sembabule","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38931","name":"Wakiso","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38932","name":"Wobulenzi","city_id":"1102","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38933","name":"Bugembe","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38934","name":"Bugiri","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38935","name":"Busembatia","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38936","name":"Buwenge","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38937","name":"Iganga","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38938","name":"Jinja","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38939","name":"Kaberamaido","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38940","name":"Kamuli","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38941","name":"Kapchorwa","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38942","name":"Katakwi","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38943","name":"Malaba","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38944","name":"Mayuge","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38945","name":"Mbale","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38946","name":"Ngora","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38947","name":"Pallisa","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38948","name":"Sironko","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38949","name":"Soroti","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38950","name":"Tororo","city_id":"140","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38951","name":"Adjumani","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38952","name":"Amudat","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38953","name":"Apac","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38954","name":"Arua","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38955","name":"Gulu","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38956","name":"Kaabong","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38957","name":"Kitgum","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38958","name":"Koboko","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38959","name":"Kotido","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38960","name":"Lira","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38961","name":"Moroto","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38962","name":"Moyo","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38963","name":"Nakapiripirit","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38964","name":"Nebbi","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38965","name":"Pader","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38966","name":"Paidha","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38967","name":"Pakwach","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38968","name":"Yumbe","city_id":"1103","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38969","name":"Bundibugyo","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38970","name":"Bushenyi","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38971","name":"Fort Portal","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38972","name":"Hima","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38973","name":"Hoima","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38974","name":"Ibanda","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38975","name":"Kabale","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38976","name":"Kabwohe-Itendero","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38977","name":"Kagadi","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38978","name":"Kamwenge","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38979","name":"Kanungu","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38980","name":"Kasese","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38981","name":"Katwe","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38982","name":"Kibaale","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38983","name":"Kigorobya","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38984","name":"Kilembe","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38985","name":"Kisoro","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38986","name":"Kyenjojo","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38987","name":"Masindi","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38988","name":"Masindi-Port","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38989","name":"Mbarara","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38990","name":"Muhororo","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38991","name":"Ntungamo","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38992","name":"Rukungiri","city_id":"143","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38993","name":"Cherkasy","city_id":"3616","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38994","name":"Smila","city_id":"3616","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38995","name":"Uman ","city_id":"3616","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38996","name":"Chernihiv","city_id":"3617","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38997","name":"Nizhyn","city_id":"3617","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38998","name":"Pryluky","city_id":"3617","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"38999","name":"Chernivtsi","city_id":"3618","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"39000","name":"Alushta","city_id":"3619","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"39001","name":"Sevastopol","city_id":"3619","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"is_activated":"1"}, +{"id":"39002","name":"Dneprodzerzhinsk","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39003","name":"Dnipropetrovsk","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39004","name":"Kryvyy Rih","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39005","name":"Marhanets ","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39006","name":"Nikopol ","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39007","name":"Novomoskovs k","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39008","name":"Pavlohrad","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39009","name":"Plekhanov","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39010","name":"Zhovti Vody","city_id":"3620","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39011","name":"Artemivs k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39012","name":"Donets k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39013","name":"Donetsk","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39014","name":"Druzhkivka","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39015","name":"Dymytrov","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39016","name":"Dzerzhyns k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39017","name":"Horlivka","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39018","name":"Khartsyz k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39019","name":"Kostyantynivka","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39020","name":"Kramators k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39021","name":"Krasnoarmiys k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39022","name":"Makiyivka","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39023","name":"Mariupol ","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39024","name":"Shakhtars k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39025","name":"Slov yans k","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39026","name":"Snizhne","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39027","name":"Torez","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39028","name":"Yenakiyeve","city_id":"3621","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39029","name":"Ivano-Frankivs k","city_id":"3622","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39030","name":"Kalush","city_id":"3622","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39031","name":"Kolomyya","city_id":"3622","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39032","name":"Izyum","city_id":"3623","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39033","name":"Kharkiv","city_id":"3623","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39034","name":"Lozova","city_id":"3623","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39035","name":"Kherson","city_id":"3625","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39036","name":"Nova Kakhovka","city_id":"3625","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39037","name":"Geologov","city_id":"3626","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39038","name":"Kam yanets -Podil s kyy","city_id":"3626","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39039","name":"Khmel nyts kyy","city_id":"3626","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39040","name":"Shepetivka","city_id":"3626","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39041","name":"khmelnitskiy","city_id":"3626","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39042","name":"Kirovohrad","city_id":"3627","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39043","name":"Oleksandriya","city_id":"3627","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39044","name":"Svidlovodsk","city_id":"3627","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39045","name":"Dzhankoy","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39046","name":"Feodosiya","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39047","name":"Kerch","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39048","name":"Simferopol ","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39049","name":"Yalta","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39050","name":"Yevpatoriya","city_id":"3628","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39051","name":"Kiev","city_id":"3629","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39052","name":"Kyyiv","city_id":"3629","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39053","name":"Bila Tserkva","city_id":"3630","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39054","name":"Boryspil ","city_id":"3630","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39055","name":"Brovary","city_id":"3630","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39056","name":"Fastiv","city_id":"3630","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39057","name":"Chervonohrad","city_id":"3631","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39058","name":"Drohobych","city_id":"3631","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39059","name":"L viv","city_id":"3631","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39060","name":"Stryy","city_id":"3631","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39061","name":"Yavoriv","city_id":"3631","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39062","name":"Alchevs k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39063","name":"Antratsyt","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39064","name":"Bryanka","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39065","name":"Krasnodon","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39066","name":"Krasnyy Luch","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39067","name":"Luhans k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39068","name":"Luhansk","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39069","name":"Lysychans k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39070","name":"Pervomays k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39071","name":"Roven ky","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39072","name":"Rubizhne","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39073","name":"Stakhanov","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39074","name":"Sverdlovs k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39075","name":"Syeverodonets k","city_id":"3632","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39076","name":"Mykolayiv","city_id":"3633","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39077","name":"Bilhorod-Dnistrovs kyy","city_id":"3634","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39078","name":"Illichivs k","city_id":"3634","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39079","name":"Izmayil","city_id":"3634","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"is_activated":"1"}, +{"id":"39080","name":"Odesa","city_id":"3634","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39081","name":"Odessa","city_id":"3635","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39082","name":"Komsomol s k","city_id":"3636","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39083","name":"Kremenchuh","city_id":"3636","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39084","name":"Lubny","city_id":"3636","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39085","name":"Poltava","city_id":"3636","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39086","name":"Rivne","city_id":"3637","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39087","name":"Konotop","city_id":"3639","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39088","name":"Okhtyrka","city_id":"3639","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39089","name":"Romny","city_id":"3639","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39090","name":"Shostka","city_id":"3639","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39091","name":"Sumy","city_id":"3639","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39092","name":"Ternopil ","city_id":"3640","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39093","name":"Kovel ","city_id":"3641","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39094","name":"Luts k","city_id":"3641","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39095","name":"Novovolyns k","city_id":"3641","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39096","name":"Vinnitsa","city_id":"3642","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39097","name":"Vinnytsya","city_id":"3642","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39098","name":"Mukacheve","city_id":"3643","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39099","name":"Uzhhorod","city_id":"3643","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39100","name":"Berdyans k","city_id":"3644","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39101","name":"Enerhodar","city_id":"3644","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39102","name":"Melitpol ","city_id":"3644","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39103","name":"Zaporizhia","city_id":"3644","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39104","name":"Berdychiv","city_id":"3645","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39105","name":"Korosten ","city_id":"3645","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39106","name":"Novohrad-Volyns kyy","city_id":"3645","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39107","name":"Zhytomyr","city_id":"3645","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39108","name":"Ajman","city_id":"3647","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39109","name":"Al Qusais","city_id":"3648","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39110","name":"Deira","city_id":"3648","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39111","name":"Dubai","city_id":"3648","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39112","name":"Jebel Ali","city_id":"3648","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39113","name":"Sharjah","city_id":"3650","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39114","name":"Khawr Fakkan","city_id":"3653","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39115","name":"al-Fujayrah","city_id":"3653","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39116","name":"Gilberdyke","city_id":"3655","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39117","name":"Llanrwst","city_id":"3655","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39118","name":"Swadlincote","city_id":"3655","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39119","name":"Turriff","city_id":"3655","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"is_activated":"1"}, +{"id":"39120","name":"Westhill","city_id":"3656","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39121","name":"Oban","city_id":"3657","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39122","name":"Craigavon","city_id":"1716","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39123","name":"Barton-le-Clay","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39124","name":"Biggleswade","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39125","name":"Caddington","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39126","name":"Flitton","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39127","name":"Flitwick","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39128","name":"Leighton Buzzard","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39129","name":"Marston Moretaine","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39130","name":"Sandy","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39131","name":"Westoning","city_id":"3658","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39132","name":"Dundonald","city_id":"3659","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39133","name":"Holywood","city_id":"3659","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39134","name":"Berkshire","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39135","name":"Bracknell","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39136","name":"Littlewick Green","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39137","name":"Maidenhead","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39138","name":"Newbury","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39139","name":"Reading","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39140","name":"Sandhurst","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39141","name":"Slough","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39142","name":"Sunninghill","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39143","name":"Twyford","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39144","name":"Wokingham","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39145","name":"Woodley","city_id":"3660","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39146","name":"Coleshill","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39147","name":"Edgbaston","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39148","name":"Hockley","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39149","name":"Ladywood","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39150","name":"Nechells","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39151","name":"Rubery","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39152","name":"Small Heath","city_id":"3661","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39153","name":"Angus","city_id":"3662","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39154","name":"Bridgnorth","city_id":"3663","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39155","name":"Fishponds","city_id":"3664","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39156","name":"Henleaze","city_id":"3664","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39157","name":"Warmley","city_id":"3664","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39158","name":"Amersham","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39159","name":"Aston Clinton","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39160","name":"Beaconsfield","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39161","name":"Bletchley","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39162","name":"Bourne End","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39163","name":"High Wycombe","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39164","name":"Iver","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39165","name":"Marlow","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39166","name":"Milton Keynes","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39167","name":"Newport Pagnell","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39168","name":"Piddington","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39169","name":"Princes Risborough","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39170","name":"Rowsham","city_id":"3665","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39171","name":"Ely","city_id":"3666","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39172","name":"Haddenham","city_id":"3667","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39173","name":"Sawtry","city_id":"3667","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39174","name":"Wisbech","city_id":"3667","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39175","name":"Alderley Edge","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39176","name":"Altrincham","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39177","name":"Betley","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39178","name":"Cheadle Gatley","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39179","name":"Cheadle Hulme","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39180","name":"Crewe","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39181","name":"Dukinfield","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39182","name":"Holmes Chapel","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39183","name":"Hyde","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39184","name":"Knuntsford","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39185","name":"Knutsford","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39186","name":"Lymm","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39187","name":"Malpas","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39188","name":"Merseyside","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39189","name":"Middlewich","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39190","name":"Mobberley","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39191","name":"Nantwich","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39192","name":"Saltney","city_id":"3669","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"is_activated":"1"}, +{"id":"39193","name":"Sandbach","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39194","name":"Stalybridge","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39195","name":"Stockport","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39196","name":"Tarporley","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39197","name":"Timperley","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39198","name":"Widnes","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39199","name":"Winsford","city_id":"3669","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39200","name":"Redcar","city_id":"3670","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39201","name":"Stockton-on-Tees","city_id":"3670","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39202","name":"Conwy","city_id":"3672","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39203","name":"Llandudno","city_id":"3672","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39204","name":"Bude","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39205","name":"Camborne","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39206","name":"Fowey","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39207","name":"Hayle","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39208","name":"Helston","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39209","name":"Liskeard","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39210","name":"Looe","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39211","name":"Mevegissey","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39212","name":"Newquay","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39213","name":"Penryn","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39214","name":"Penzance","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39215","name":"St. Ives","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39216","name":"Truro","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39217","name":"Wadebridge","city_id":"3673","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39218","name":"Holbrooks","city_id":"3674","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39219","name":"Askam-in-Furness","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39220","name":"Flookburgh","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39221","name":"Grasmere","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39222","name":"Keswick","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39223","name":"Kirkby Stephen","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39224","name":"Milnthorpe","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39225","name":"Penrith","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39226","name":"Ulverston","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39227","name":"Windermere","city_id":"3676","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39228","name":"Denbigh","city_id":"3677","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39229","name":"Buxton","city_id":"3678","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39230","name":"Chesterfield","city_id":"3678","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39231","name":"Eckington","city_id":"3678","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39232","name":"Bakewell","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39233","name":"Belper","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39234","name":"Breaston","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39235","name":"Derby","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39236","name":"Ilkeston","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39237","name":"Matlock","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39238","name":"Ripley","city_id":"3679","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39239","name":"Axminster","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39240","name":"Barnstaple","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39241","name":"Beaworthy","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39242","name":"Bideford","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39243","name":"Bovey Tracey","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39244","name":"Braunton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39245","name":"Brixham","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39246","name":"Chudleigh","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39247","name":"Crediton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39248","name":"Dalwood","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39249","name":"Dartmouth","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39250","name":"Dawlish","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39251","name":"Exmouth","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39252","name":"Great Torrington","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39253","name":"Holsworthy","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39254","name":"Kingsbridge","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39255","name":"Modbury","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39256","name":"Newton Abbot","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39257","name":"Okehampton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39258","name":"Plymouth","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39259","name":"Plympton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39260","name":"Salcombe","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39261","name":"Tiverton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39262","name":"Totnes","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39263","name":"Winkleigh","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39264","name":"Woodburyd","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39265","name":"Yelverton","city_id":"3680","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39266","name":"Didcot","city_id":"3682","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39267","name":"Beaminster","city_id":"3683","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"is_activated":"1"}, +{"id":"39268","name":"Blandford Forum","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39269","name":"Dorset","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39270","name":"Poole","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39271","name":"Sherborne","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39272","name":"Sturminster Newton","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39273","name":"Swanage","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39274","name":"Verwood","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39275","name":"Wimborne","city_id":"3683","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39276","name":"Crook","city_id":"3685","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39277","name":"Spennymoor","city_id":"3685","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39278","name":"Abingdon","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39279","name":"Accrington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39280","name":"Aldershot","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39281","name":"Alfreton","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39282","name":"Andover","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39283","name":"Arnold","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39284","name":"Ashford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39285","name":"Ashington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39286","name":"Ashton-in-Makerfield","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39287","name":"Ashton-under-Lyne","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39288","name":"Aylesbury","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39289","name":"Aylesford-East Malling","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39290","name":"Banbury","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39291","name":"Banstead-Tadworth","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39292","name":"Barnsley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39293","name":"Barrow-in-Furness","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39294","name":"Basildon","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39295","name":"Basingstoke","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39296","name":"Bath","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39297","name":"Batley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39298","name":"Bebington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39299","name":"Bedworth","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39300","name":"Beeston and Stapleford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39301","name":"Benfleet","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39302","name":"Bentley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39303","name":"Berwick-upon-Tweed","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39304","name":"Beverley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39305","name":"Bexhil","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39306","name":"Bicester","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39307","name":"Billericay","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39308","name":"Billingham","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39309","name":"Birkenhead","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39310","name":"Birmingham","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39311","name":"Bishop Auckland","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39312","name":"Bishop s Stortford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39313","name":"Blackpool","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39314","name":"Blyth","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39315","name":"Bodmin","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39316","name":"Bognor Regis","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39317","name":"Bootle","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39318","name":"Boston","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39319","name":"Bournemouth","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39320","name":"Braintree","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39321","name":"Bredbury and Romiley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39322","name":"Brentwood","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39323","name":"Bridgwater","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39324","name":"Bridlington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39325","name":"Brigg","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39326","name":"Brighouse","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39327","name":"Bristol","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39328","name":"Broadstairs","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39329","name":"Bromley Cross-Bradshaw","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39330","name":"Bromsgrove-Catshill","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39331","name":"Burgess Hill","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39332","name":"Burnley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39333","name":"Burntwood","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39334","name":"Burton-upon-Trent","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39335","name":"Bury","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39336","name":"Bury Saint Edmunds","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39337","name":"Camberley-Frimley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39338","name":"Cambourne-Redruth","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39339","name":"Cannock","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39340","name":"Canterbury","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39341","name":"Canvey Island","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39342","name":"Carlton","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39343","name":"Castleford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39344","name":"Caterham and Warlingham","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39345","name":"Chadderton","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39346","name":"Chapeltown","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39347","name":"Cheadle and Gatley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39348","name":"Chelmsford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39349","name":"Chesham","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39350","name":"Cheshunt","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39351","name":"Chessington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39352","name":"Chester-le-Street","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39353","name":"Chichester","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39354","name":"Chippenham","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39355","name":"Chipping Sodbury","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39356","name":"Chorley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39357","name":"Clacton-on-Sea","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39358","name":"Clay Cross-North Wingfield","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39359","name":"Cleethorpes","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39360","name":"Clevedon","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39361","name":"Coalville","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39362","name":"Congleton","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39363","name":"Consett","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39364","name":"Corby","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39365","name":"Coventry","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39366","name":"Cramlington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39367","name":"Crawley","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39368","name":"Crosby","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39369","name":"Crowthorne","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39370","name":"Darlington","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39371","name":"Dartford","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39372","name":"Darwen","city_id":"3691","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"is_activated":"1"}, +{"id":"39373","name":"Deal","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39374","name":"Denton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39375","name":"Dewsbury","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39376","name":"Doncaster","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39377","name":"Dorchester","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39378","name":"Dover","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39379","name":"Droitwich","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39380","name":"Dronfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39381","name":"Droylsden","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39382","name":"Dudley","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39383","name":"Dunstable","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39384","name":"East Grinstead","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39385","name":"East Retford","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39386","name":"Eastbourne","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39387","name":"Eastleigh","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39388","name":"Eaton Socon-Saint Neots","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39389","name":"Eccles","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39390","name":"Egham","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39391","name":"Ellesmere Port","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39392","name":"Epsom and Ewell","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39393","name":"Esher-Molesey","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39394","name":"Eston and South Bank","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39395","name":"Failsworth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39396","name":"Falmouth-Penryn","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39397","name":"Fareham","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39398","name":"Farnborough","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39399","name":"Farnworth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39400","name":"Farring","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39401","name":"Felixtowe","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39402","name":"Felling","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39403","name":"Ferndown","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39404","name":"Fleetwood","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39405","name":"Folkestone","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39406","name":"Formby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39407","name":"Frome","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39408","name":"Fulham","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39409","name":"Gateshead","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39410","name":"Gillingham","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39411","name":"Glossop","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39412","name":"Gloucester","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39413","name":"Godalming","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39414","name":"Golborne","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39415","name":"Gosforth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39416","name":"Gosport","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39417","name":"Grantham","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39418","name":"Gravesend","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39419","name":"Grays","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39420","name":"Greasby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39421","name":"Great Malvern","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39422","name":"Great Sankey","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39423","name":"Great Yarmouth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39424","name":"Grimsby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39425","name":"Guildford","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39426","name":"Guiseley-Yeadon","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39427","name":"Halesowen","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39428","name":"Halifax","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39429","name":"Harlow","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39430","name":"Harpenden","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39431","name":"Harrogate","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39432","name":"Hartlepool","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39433","name":"Hatfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39434","name":"Hatfield-Stainforth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39435","name":"Havant","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39436","name":"Haywards Heath","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39437","name":"Hazel Grove and Bramhill","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39438","name":"Hazlemere","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39439","name":"Heanor","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39440","name":"Hemel Hempstead","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39441","name":"Hereford","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39442","name":"Herne Bay","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39443","name":"Hertford","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39444","name":"Heswall","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39445","name":"Heywood","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39446","name":"Hinckley","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39447","name":"Hindley","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39448","name":"Hitchin","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39449","name":"Hoddesdon","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39450","name":"Holmfirth-Honley","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39451","name":"Honiton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39452","name":"Houghton-le-Spring","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39453","name":"Hoylake-West Kirby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39454","name":"Hucknall","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39455","name":"Huddersfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39456","name":"Huyton-with-Roby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39457","name":"Ilfracombe","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39458","name":"Ivybridge","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39459","name":"Jarrow","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39460","name":"Keighley","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39461","name":"Kenilworth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39462","name":"Kettering","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39463","name":"Kidderminster","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39464","name":"Kidsgrove","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39465","name":"King s Lynn","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39466","name":"Kingsteignton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39467","name":"Kingston upon Hull","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39468","name":"Kingswood","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39469","name":"Kirby in Ashfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39470","name":"Kirkby","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39471","name":"Lancaster","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39472","name":"Leatherhead","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39473","name":"Leeds","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39474","name":"Leicester","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39475","name":"Leigh","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39476","name":"Letchworth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39477","name":"Lewes","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39478","name":"Leyland","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39479","name":"Lichfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39480","name":"Lincoln","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39481","name":"Litherland","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39482","name":"Littlehampton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39483","name":"Liverpool","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39484","name":"Locks Heath","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39485","name":"Long Benton-Killingworth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39486","name":"Long Eaton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39487","name":"Loughborough","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39488","name":"Loughton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39489","name":"Louth","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39490","name":"Lowestoft","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39491","name":"Luton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39492","name":"Lyminge","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39493","name":"Lytham Saint Anne s","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39494","name":"Mablethorpe and Sutton","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39495","name":"Macclesfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39496","name":"Maghull-Lydiate","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39497","name":"Manchester","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39498","name":"Mangotsfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39499","name":"Mansfield","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39500","name":"Margate","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39501","name":"Melton Mowbray","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39502","name":"Middlesbrough","city_id":"3691","created_at":"2024-01-21 12:47:19","updated_at":"2024-01-21 12:47:19","translations":null,"is_activated":"1"}, +{"id":"39503","name":"Middleton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39504","name":"Midsomer Norton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39505","name":"Morecambe","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39506","name":"Morley","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39507","name":"Nailsea","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39508","name":"New Addington","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39509","name":"New Milton-Barton-on-Sea","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39510","name":"Newark-on-Trent","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39511","name":"Newburn","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39512","name":"Newcastle upon Tyne","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39513","name":"Newcastle-under-Lyme","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39514","name":"Newport","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39515","name":"Newton Aycliffe","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39516","name":"North Hykeham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39517","name":"North Shields","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39518","name":"Northallerton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39519","name":"Northam","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39520","name":"Northampton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39521","name":"Northfleet","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39522","name":"Northwich","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39523","name":"Nottingham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39524","name":"Nuneaton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39525","name":"Oakengates-Donnington","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39526","name":"Oakham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39527","name":"Oldbury-Smethwick","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39528","name":"Oldham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39529","name":"Ormskirk","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39530","name":"Ossett","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39531","name":"Oxford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39532","name":"Paignton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39533","name":"Peterlee","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39534","name":"Pontefract","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39535","name":"Portsmouth","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39536","name":"Potters Bar","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39537","name":"Prescot","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39538","name":"Prestwich","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39539","name":"Prestwood","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39540","name":"Pudsey","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39541","name":"Radcliffe","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39542","name":"Ramsgate","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39543","name":"Rawtenstall","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39544","name":"Rayleigh","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39545","name":"Redditch","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39546","name":"Reigate","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39547","name":"Rochdale","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39548","name":"Rochester","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39549","name":"Rotherham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39550","name":"Rottingdean","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39551","name":"Royal Tunbridge Wells","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39552","name":"Royton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39553","name":"Rugby","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39554","name":"Rugeley","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39555","name":"Runcorn","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39556","name":"Rushden","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39557","name":"Ryde","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39558","name":"Saint Albans","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39559","name":"Saint Austell","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39560","name":"Saint Helens","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39561","name":"Salford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39562","name":"Salisbury","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39563","name":"Scunthorpe","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39564","name":"Seaham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39565","name":"Sevenoaks","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39566","name":"Shipley","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39567","name":"Shrewsbury","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39568","name":"Sidmouth","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39569","name":"Sittingbourne","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39570","name":"Skegness","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39571","name":"Skelmersdale","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39572","name":"Sleaford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39573","name":"Solihull","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39574","name":"Sompting-Lancing","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39575","name":"South Shields","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39576","name":"Southend-on-Sea","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39577","name":"Spalding-Pinchbeck","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39578","name":"St. Helens","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39579","name":"Stafford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39580","name":"Staines","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39581","name":"Stamford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39582","name":"Stanford le Hope-Corringham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39583","name":"Stanley-Annfield Plain","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39584","name":"Staveley","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39585","name":"Stevenage","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39586","name":"Stockton Heath-Thelwall","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39587","name":"Stoke-on-Trent","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39588","name":"Stourbridge","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39589","name":"Stratford-upon-Avon","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39590","name":"Stretford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39591","name":"Strood","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39592","name":"Stubbington","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39593","name":"Sunderland","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39594","name":"Sutton Coldfield","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39595","name":"Sutton in Ashfield","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39596","name":"Swanley-Hextable","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39597","name":"Swindon","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39598","name":"Swinton and Pendlebury","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39599","name":"Tamworth","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39600","name":"Taunton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39601","name":"Teignmouth","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39602","name":"Telford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39603","name":"Tenbury Wells","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39604","name":"Thatcham","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39605","name":"The Deepings","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39606","name":"Thetford","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39607","name":"Thornaby","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39608","name":"Thornton-Cleveleys","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39609","name":"Tonbridge","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39610","name":"Totton","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39611","name":"Trowbridge","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39612","name":"Tyldesley","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39613","name":"Urmston","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39614","name":"Wakefield","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39615","name":"Walkden","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39616","name":"Wallasey","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39617","name":"Wallsend","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39618","name":"Walsall","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39619","name":"Walton and Weybridge","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39620","name":"Warrington","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39621","name":"Waterlooville","city_id":"3691","created_at":"2024-01-21 12:47:20","updated_at":"2024-01-21 12:47:20","translations":null,"is_activated":"1"}, +{"id":"39622","name":"Wellingborough","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39623","name":"Welwyn Garden City","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39624","name":"West Bridgeford","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39625","name":"West Bromwich","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39626","name":"Westhoughton","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39627","name":"Weston-super-Mare","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39628","name":"Weymouth","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39629","name":"Whitefield","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39630","name":"Whitehaven","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39631","name":"Whitley Bay","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39632","name":"Wickford","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39633","name":"Wigan","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39634","name":"Wigston","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39635","name":"Wilmslow","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39636","name":"Wimbourne Minster","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39637","name":"Windsor Berks","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39638","name":"Windsor-Eton","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39639","name":"Witham","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39640","name":"Witney","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39641","name":"Woking-Byfleet","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39642","name":"Wolverhampton","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39643","name":"Wolverton-Stony Stratford","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39644","name":"Worcester","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39645","name":"Worcestershire","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39646","name":"Workington","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39647","name":"Worksop","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39648","name":"Worthing","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39649","name":"Yeovil","city_id":"3691","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39650","name":"Barking","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39651","name":"Cambrridge","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39652","name":"Dagenham","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39653","name":"Dunmow","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39654","name":"Epping","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39655","name":"Ilford","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39656","name":"Ingatestone","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39657","name":"Leigh on Sea","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39658","name":"Rainham","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39659","name":"Romford","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39660","name":"Saffron Walden","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39661","name":"Stansted","city_id":"3692","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39662","name":"Ballinamallard","city_id":"3693","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39663","name":"Kirkcaldy","city_id":"3694","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39664","name":"Ewloe","city_id":"3695","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39665","name":"Greenfield","city_id":"3695","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39666","name":"Imperial Wharf","city_id":"3696","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39667","name":"Kirton-in-Lindsey","city_id":"3697","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39668","name":"Berkeley","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39669","name":"Churchham","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39670","name":"Cirencester","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39671","name":"East Kilbride","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39672","name":"Lechlade","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39673","name":"Lydney","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39674","name":"Moreton in Marsh","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39675","name":"Stroud","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39676","name":"Tewkesbury","city_id":"3698","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39677","name":"Blackwood","city_id":"3699","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39678","name":"Blaenavon","city_id":"3699","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39679","name":"Tredegar","city_id":"3699","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39680","name":"Alton","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39681","name":"Bordon","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39682","name":"Botley","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39683","name":"Fleet","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39684","name":"Fordingbridge","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39685","name":"Hayling Island","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39686","name":"Hook","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39687","name":"Isle of wight","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39688","name":"Liphook","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39689","name":"Longparish","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39690","name":"Old Bishopstoke","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39691","name":"Petersfield","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39692","name":"Romsey","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39693","name":"South Harting","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39694","name":"West Wellow","city_id":"3700","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39695","name":"Lymington","city_id":"3701","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39696","name":"Pennington","city_id":"3701","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39697","name":"Kington","city_id":"3702","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39698","name":"Ledbury","city_id":"3702","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39699","name":"Leominster","city_id":"3702","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39700","name":"Barnet","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39701","name":"Bishops Stortford","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39702","name":"Borehamwood","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39703","name":"Brookmans Park","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39704","name":"Bushey","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39705","name":"Cuffley","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39706","name":"Elstree","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39707","name":"Hertfordshire","city_id":"3703","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"is_activated":"1"}, +{"id":"39708","name":"Kings Langley","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39709","name":"Much Hadham","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39710","name":"Radlett","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39711","name":"Rickmansworth","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39712","name":"Royston","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39713","name":"Waltham Cross","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39714","name":"Welwyn","city_id":"3703","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39715","name":"Beckenham","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39716","name":"Bromley","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39717","name":"Brookland","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39718","name":"Charing","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39719","name":"Chatam","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39720","name":"Crayford","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39721","name":"Edenbridge","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39722","name":"Erith","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39723","name":"Faversham","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39724","name":"Five Oak Green","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39725","name":"Hartlip","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39726","name":"Hayes","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39727","name":"Hythe","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39728","name":"Lenham","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39729","name":"Minster","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39730","name":"New Romney","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39731","name":"Orpington","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39732","name":"Paddock Wood","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39733","name":"Sandwich","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39734","name":"Sheerness","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39735","name":"Sidcup","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39736","name":"Staplehurst","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39737","name":"Tunbridge Wells","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39738","name":"West Malling","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39739","name":"Westerham","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39740","name":"Whitstable","city_id":"3708","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39741","name":"Ayrshire","city_id":"3709","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39742","name":"Glasgow","city_id":"3710","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39743","name":"Clayton-Le-Moors","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39744","name":"Cleveleys","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39745","name":"Gisburn","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39746","name":"Greater Manchester","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39747","name":"Kirkby Lonsdale","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39748","name":"Littleborough","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39749","name":"Lytham St Annes","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39750","name":"Out Rawcliffe","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39751","name":"Padiham","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39752","name":"Rossendale","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39753","name":"Tarleton","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39754","name":"Todmorden","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39755","name":"West Lancashire","city_id":"3711","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39756","name":"Fleckney","city_id":"3712","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39757","name":"Lutterworth","city_id":"3712","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39758","name":"Market Harborough","city_id":"3712","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39759","name":"Tur Langton","city_id":"3712","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39760","name":"Alford","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39761","name":"Bourne","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39762","name":"Casewick","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39763","name":"Digby","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39764","name":"Gainsborough","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39765","name":"Immingham","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39766","name":"Laceby","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39767","name":"Market Deeping","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39768","name":"Market Rasen","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39769","name":"Spalding","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39770","name":"Spilsby","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39771","name":"Swinderby","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39772","name":"Thurlby","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39773","name":"Witham St Hughs","city_id":"3713","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39774","name":"Llanymynech","city_id":"3714","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39775","name":"Abbeywood","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39776","name":"Aldgate","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39777","name":"Alperton","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39778","name":"Castledawson","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39779","name":"Enfield","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39780","name":"Forest Gate","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39781","name":"Greenwich","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39782","name":"Hainault","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39783","name":"Harrow Weald","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39784","name":"Hendon","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39785","name":"Leyton","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39786","name":"Magherafelt","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39787","name":"Mill Hill","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39788","name":"Southwark","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39789","name":"Suffolk","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39790","name":"Sulham","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39791","name":"Walthamstow","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39792","name":"Wandsworth","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39793","name":"Wimbledon","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39794","name":"Woolwich","city_id":"3715","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39795","name":"Ludlow","city_id":"3716","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"is_activated":"1"}, +{"id":"39796","name":"Swinton","city_id":"1872","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39797","name":"Worsley","city_id":"1872","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39798","name":"Mayfair","city_id":"3717","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39799","name":"Brentford","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39800","name":"Brimsdown","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39801","name":"Edgware","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39802","name":"Feltham","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39803","name":"Greenford","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39804","name":"Hampton","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39805","name":"Harmondsworth","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39806","name":"Isleworth","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39807","name":"Northolt","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39808","name":"Northwood","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39809","name":"Perivale","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39810","name":"Pinner","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39811","name":"Ruislip","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39812","name":"Ruislip Manor","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39813","name":"South Harrow","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39814","name":"Southall","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39815","name":"Stamore","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39816","name":"Stanmore","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39817","name":"Stanwell","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39818","name":"Teddington","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39819","name":"Twickenham","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39820","name":"West Drayton","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39821","name":"Wraysbury","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39822","name":"hounslow","city_id":"3720","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39823","name":"Mildenhall","city_id":"3721","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39824","name":"Abergavenny","city_id":"3722","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39825","name":"Monmouth","city_id":"3722","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39826","name":"Attleborough","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39827","name":"Bacton","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39828","name":"Briston","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39829","name":"Dereham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39830","name":"Diss","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39831","name":"Downham Market","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39832","name":"Fakenham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39833","name":"Garboldisham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39834","name":"Gayton","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39835","name":"Glandford","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39836","name":"Heacham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39837","name":"Hopton","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39838","name":"Kings Lynn","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39839","name":"Little Cressingham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39840","name":"Sheringham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39841","name":"Trunch","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39842","name":"Winordhan","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39843","name":"Wymondham","city_id":"3724","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39844","name":"Daventry","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39845","name":"Irthlingborough","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39846","name":"Middleton Cheney","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39847","name":"Oundle","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39848","name":"Towcester","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39849","name":"Welford","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39850","name":"Woodford Halse","city_id":"3727","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39851","name":"Brackley","city_id":"3728","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39852","name":"Desborough","city_id":"3728","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39853","name":"weedon","city_id":"3728","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39854","name":"Bedlington","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39855","name":"Corbridge","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39856","name":"Morpeth","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39857","name":"Northumberland","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39858","name":"Ponteland","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39859","name":"Wooler","city_id":"3730","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39860","name":"Burton Joyce","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39861","name":"Cotgraves","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39862","name":"Gonalston","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39863","name":"Newark","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39864","name":"Pennyfoot Street","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39865","name":"Sandiacre","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39866","name":"Southwell","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39867","name":"Whatton","city_id":"3731","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"is_activated":"1"}, +{"id":"39868","name":"Bampton","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39869","name":"Blewbury","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39870","name":"Chipping Norton","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39871","name":"Eynsham","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39872","name":"Farringdon","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39873","name":"Henely on Thames","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39874","name":"Henley-on-Thames","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39875","name":"Shenington","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39876","name":"Thame","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39877","name":"Wantage","city_id":"3732","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39878","name":"Builth Wells","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39879","name":"Knighton","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39880","name":"Llanbrynmair","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39881","name":"New town","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39882","name":"Newtown","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39883","name":"Rhaeadr","city_id":"3733","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39884","name":"Hill of Fearn","city_id":"3734","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39885","name":"Shoreham","city_id":"3735","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39886","name":"Sark","city_id":"3736","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39887","name":"Aberdeen","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39888","name":"Alloa","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39889","name":"Alness","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39890","name":"Annan","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39891","name":"Arbroath","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39892","name":"Ardrossan","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39893","name":"Armadale","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39894","name":"Bathgate","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39895","name":"Blairgowrie","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39896","name":"Blantyre-Hamilton","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39897","name":"Boness","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39898","name":"Bonnybridge","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39899","name":"Broxburn","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39900","name":"Broxham","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39901","name":"Buckhaven","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39902","name":"Burntisland","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39903","name":"Carluke","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39904","name":"Carnoustie","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39905","name":"Coatbridge","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39906","name":"Cowdenbeath","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39907","name":"Cumbernauld","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39908","name":"Cumnock","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39909","name":"Cupar","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39910","name":"Dalbeattie","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39911","name":"Dalkeith","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39912","name":"Dingwall","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39913","name":"Dumbarton","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39914","name":"Dumfries","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39915","name":"Dundee","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39916","name":"Dunfermline","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39917","name":"Dunoon","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39918","name":"Edimburah","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39919","name":"Edinburgh","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39920","name":"Elgin","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39921","name":"Ellon","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39922","name":"Erskine","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39923","name":"Falkirk","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39924","name":"Forfar","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39925","name":"Forres","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39926","name":"Fort William","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39927","name":"Fraserburgh","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39928","name":"Galashiels","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39929","name":"Galston-Newmilns","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39930","name":"Girvan","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39931","name":"Glenrothes","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39932","name":"Greengairs","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39933","name":"Greenock","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39934","name":"Haddington","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39935","name":"Hawick","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39936","name":"Helensburgh","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39937","name":"Insch","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39938","name":"Inverkeithing-Dalgety Bay","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39939","name":"Inverness","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39940","name":"Inverurie","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39941","name":"Irvine","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39942","name":"Isle of Lewis","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39943","name":"Kilmarnock","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39944","name":"Kilwinning","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39945","name":"Kirkintilloch-Lenzie","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39946","name":"Kirkwall","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39947","name":"Largs","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39948","name":"Larkhall","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39949","name":"Lerwick","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39950","name":"Linlithgow","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39951","name":"Livingston","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39952","name":"Loanhead","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39953","name":"Montrose","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39954","name":"Motherwell","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39955","name":"Nairn","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39956","name":"Newtown Saint Boswells","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39957","name":"Penicuik","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39958","name":"Peterhead","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39959","name":"Saint Andrews","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39960","name":"Selkirkshire","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39961","name":"Shotts","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39962","name":"Stonehaven","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39963","name":"Stornoway","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39964","name":"Stranraer","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39965","name":"Tranent","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39966","name":"Troon","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39967","name":"Whitburn","city_id":"3737","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39968","name":"Bishops Castle","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39969","name":"Bucknell","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39970","name":"Greete","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39971","name":"Hinstock","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39972","name":"Jackfield","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39973","name":"Much Wenlock","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39974","name":"Oswestry","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39975","name":"Ryton","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39976","name":"Shifnal","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39977","name":"Whitchurch","city_id":"3739","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"is_activated":"1"}, +{"id":"39978","name":"Brent Knoll","city_id":"3740","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39979","name":"Castle Cary","city_id":"3740","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39980","name":"Shepton Mallet","city_id":"3740","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39981","name":"Somerset","city_id":"3740","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39982","name":"Wedmore","city_id":"3740","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39983","name":"Burton-on-Trent","city_id":"3745","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39984","name":"Hednesford","city_id":"3745","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39985","name":"Stoke on Trent","city_id":"3745","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39986","name":"Stone","city_id":"3745","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39987","name":"Strabane","city_id":"3746","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39988","name":"Bury St Edmunds","city_id":"3747","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39989","name":"Felixstowe","city_id":"3747","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39990","name":"Haverhill","city_id":"3747","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39991","name":"Leiston","city_id":"3747","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39992","name":"Stowmarket","city_id":"3747","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39993","name":"Ashtead","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39994","name":"Bagshot","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39995","name":"Betchworth","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39996","name":"Bletchingley","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39997","name":"Carshalton","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39998","name":"Chertsey","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"39999","name":"Claygate","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40000","name":"Croydon","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40001","name":"Dorking","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40002","name":"Effingham","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40003","name":"Epsom","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40004","name":"Haslemere","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40005","name":"Kingston Upon Thames","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40006","name":"New Malden","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40007","name":"Redhill","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40008","name":"Salfords","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40009","name":"Shepperton","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40010","name":"Stoneleigh","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40011","name":"Surbiton","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40012","name":"Surrey","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40013","name":"Tadworth","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40014","name":"Walton on Thames","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40015","name":"West Molesey","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40016","name":"Wisley","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40017","name":"Woking","city_id":"3748","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40018","name":"Henfield","city_id":"3735","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40019","name":"Sussex","city_id":"3735","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40020","name":"Omagh","city_id":"3751","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40021","name":"Santaquin","city_id":"3752","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40022","name":"Aberdare","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40023","name":"Aberystwyth","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40024","name":"Barry","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40025","name":"Brecon","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40026","name":"Bridgend","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40027","name":"Brynmawr","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40028","name":"Caernarfon","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40029","name":"Caerphily","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40030","name":"Caldicot","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40031","name":"Cardiff","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40032","name":"Carmarthen","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40033","name":"Colwyn Bay","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40034","name":"Connahs Quay","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40035","name":"Cwmbran","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40036","name":"Dolgellau","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40037","name":"Ebbw Vale","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40038","name":"Gaerwen","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40039","name":"Gwynedd","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40040","name":"Haverfordwest","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40041","name":"Isle of Anglesey","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40042","name":"Islwyn","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40043","name":"Llandrindod Wells","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40044","name":"Llanelli","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40045","name":"Llangefni","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40046","name":"Maesteg","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40047","name":"Merthyr Tydfil","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40048","name":"Mold","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40049","name":"Mountain Ash-Abercynon","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40050","name":"Neath","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40051","name":"Pembrokeshire","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40052","name":"Penarth","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40053","name":"Pencader","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40054","name":"Pontypool","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40055","name":"Pontypridd","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40056","name":"Port Talbot","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40057","name":"Queensferry","city_id":"3753","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"is_activated":"1"}, +{"id":"40058","name":"Rhondda","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40059","name":"Rhyl","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40060","name":"Ruthin","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40061","name":"Shotton-Hawarden","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40062","name":"St. Asaph","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40063","name":"Swansea","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40064","name":"West Glamorgan","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40065","name":"Wrexham","city_id":"3753","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40066","name":"Alcester","city_id":"3754","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40067","name":"Henley in Arden","city_id":"3754","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40068","name":"Pershore","city_id":"3754","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40069","name":"Southam","city_id":"3754","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40070","name":"Whissendine","city_id":"3759","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40071","name":"Amesbury","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40072","name":"Bradford on Avon","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40073","name":"Calne","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40074","name":"Corsham","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40075","name":"Cosham","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40076","name":"Devizes","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40077","name":"Downton","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40078","name":"Malmesbury","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40079","name":"Marlborough","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40080","name":"Melksham","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40081","name":"Pewsey","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40082","name":"Southwick","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40083","name":"Warminster","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40084","name":"Westbury","city_id":"3760","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40085","name":"Winnersh","city_id":"3761","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40086","name":"Evesham","city_id":"3762","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40087","name":"Hartlebury","city_id":"3762","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40088","name":"Caergwrle","city_id":"3763","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40089","name":"Ruabon","city_id":"3763","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40090","name":"Neuffen","city_id":"3764","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40091","name":"Malton","city_id":"3765","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40092","name":"Mexborough","city_id":"3765","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40093","name":"Alabaster","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40094","name":"Alexander City","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40095","name":"Anniston","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40096","name":"Arab","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40097","name":"Ashville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40098","name":"Atmore","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40099","name":"Auburn","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40100","name":"Bessemer","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40101","name":"Capshaw","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40102","name":"Center Point","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40103","name":"Childersburg","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40104","name":"Cullman","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40105","name":"Daleville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40106","name":"Daphne","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40107","name":"Decatur","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40108","name":"Dothan","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40109","name":"Enterprise","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40110","name":"Eufaula","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40111","name":"Fairhope","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40112","name":"Fort Payne","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40113","name":"Gadsden","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40114","name":"Grand Bay","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40115","name":"Grove Hill","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40116","name":"Guntersville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40117","name":"Hampton Cove","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40118","name":"Hanceville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40119","name":"Hartselle","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40120","name":"Headland","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40121","name":"Helena","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40122","name":"Hodges","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40123","name":"Homewood","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40124","name":"Hoover","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40125","name":"Hueytown","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40126","name":"Jacksonville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40127","name":"Luverne","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40128","name":"Madison","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40129","name":"Mobile","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40130","name":"Montgomery","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40131","name":"Mountain Brook","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40132","name":"Muscle Shoals","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40133","name":"Northport","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40134","name":"Notasulga","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40135","name":"Opelika","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40136","name":"Ozark","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40137","name":"Pelham","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40138","name":"Pell City","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40139","name":"Pennsylvania","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40140","name":"Phenix City","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40141","name":"Prattville","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40142","name":"Prichard","city_id":"3766","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"is_activated":"1"}, +{"id":"40143","name":"Ramer","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40144","name":"Roanoke","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40145","name":"Saraland","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40146","name":"Scottsboro","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40147","name":"Selma","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40148","name":"Smiths","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40149","name":"Sumiton","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40150","name":"Sylacauga","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40151","name":"Talladega","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40152","name":"Thomasville","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40153","name":"Trafford","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40154","name":"Troy","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40155","name":"Trussville","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40156","name":"Tuscaloosa","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40157","name":"Tuskegee","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40158","name":"Vestavia Hills","city_id":"3766","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40159","name":"Anchorage","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40160","name":"Barrow","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40161","name":"College","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40162","name":"Fairbanks","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40163","name":"Homer","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40164","name":"Juneau","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40165","name":"Kenai","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40166","name":"Ketchikan","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40167","name":"Kodiak","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40168","name":"Nome","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40169","name":"Palmer","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40170","name":"Sitka","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40171","name":"Soldotna","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40172","name":"Sterling","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40173","name":"Unalaska","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40174","name":"Wasilla","city_id":"3767","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40175","name":"Apache Junction","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40176","name":"Avondale","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40177","name":"Bisbee","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40178","name":"Bouse","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40179","name":"Bullhead City","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40180","name":"Carefree","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40181","name":"Casa Grande","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40182","name":"Casas Adobes","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40183","name":"Clarkdale","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40184","name":"Cottonwood","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40185","name":"Douglas","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40186","name":"Drexel Heights","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40187","name":"El Mirage","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40188","name":"Flagstaff","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40189","name":"Flowing Wells","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40190","name":"Fort Mohave","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40191","name":"Fortuna Foothills","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40192","name":"Fountain Hills","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40193","name":"Gilbert","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40194","name":"Glendale","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40195","name":"Globe","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40196","name":"Goodyear","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40197","name":"Green Valley","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40198","name":"Kingman","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40199","name":"Lake Havasu City","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40200","name":"Laveen","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40201","name":"Litchfield Park","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40202","name":"Marana","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40203","name":"Mesa","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40204","name":"New Kingman-Butler","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40205","name":"Oracle","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40206","name":"Oro Valley","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40207","name":"Paradise Valley","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40208","name":"Parker","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40209","name":"Payson","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40210","name":"Peoria","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40211","name":"Phoenix","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40212","name":"Pine","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40213","name":"Pinetop","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40214","name":"Prescott Valley","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40215","name":"Quartzsite","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40216","name":"Queen Creek","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40217","name":"Rio Rico","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40218","name":"Safford","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40219","name":"Scottsdale","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40220","name":"Sedona","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40221","name":"Sierra Vista","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40222","name":"Sierra Vista Southeast","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40223","name":"Sun City","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40224","name":"Sun City West","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40225","name":"Surprise","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40226","name":"Tempe","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40227","name":"Tombstone","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40228","name":"Tucson","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40229","name":"Winslow","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40230","name":"Yuma","city_id":"3768","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40231","name":"Alexander","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40232","name":"Arkadelphia","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40233","name":"Batesville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40234","name":"Benton","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40235","name":"Bentonville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40236","name":"Berryville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40237","name":"Blytheville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40238","name":"Cabot","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40239","name":"Camden","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40240","name":"Cherry Valley","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40241","name":"Conway","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40242","name":"Corning","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40243","name":"Fayetteville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40244","name":"Forrest City","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40245","name":"Fort Smith","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40246","name":"Harrison","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40247","name":"Hope","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40248","name":"Hot Springs","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40249","name":"Jonesboro","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40250","name":"Lake City","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40251","name":"Little Rock","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40252","name":"Magnolia","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40253","name":"Mount Vernon","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40254","name":"Mountain Home","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40255","name":"Norfork","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40256","name":"North Little Rock","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40257","name":"Paragould","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40258","name":"Piggott","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40259","name":"Pine Bluff","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40260","name":"Pocahontas","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40261","name":"Quitman","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40262","name":"Rogers","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40263","name":"Russellville","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40264","name":"Searcy","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40265","name":"Sheridan","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40266","name":"Sherwood","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40267","name":"Siloam Springs","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40268","name":"Springdale","city_id":"3769","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"is_activated":"1"}, +{"id":"40269","name":"Texarkana","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40270","name":"Van Buren","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40271","name":"Ward","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40272","name":"West Helena","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40273","name":"West Memphis","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40274","name":"Wynne","city_id":"3769","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40275","name":"Adelanto","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40276","name":"Agoura Hills","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40277","name":"Aguanga","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40278","name":"Alameda","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40279","name":"Albany","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40280","name":"Alhambra","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40281","name":"Aliso Viejo","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40282","name":"Alondra Park","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40283","name":"Alpine","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40284","name":"Alta Loma","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40285","name":"Altadena","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40286","name":"American Canyon","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40287","name":"Anaheim","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40288","name":"Anderson","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40289","name":"Antelope","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40290","name":"Antioch","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40291","name":"Apple Valley","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40292","name":"Aptos","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40293","name":"Arcadia","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40294","name":"Arcata","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40295","name":"Arden-Arcade","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40296","name":"Arroyo Grande","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40297","name":"Artesia","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40298","name":"Arvin","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40299","name":"Ashland","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40300","name":"Atascadero","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40301","name":"Atwater","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40302","name":"Avalon","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40303","name":"Avenal","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40304","name":"Avocado Heights","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40305","name":"Azusa","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40306","name":"Bakersfield","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40307","name":"Baldwin Park","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40308","name":"Banning","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40309","name":"Barstow","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40310","name":"Bay Point","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40311","name":"Baywood-Los Osos","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40312","name":"Bear Valley Springs","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40313","name":"Bell Gardens","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40314","name":"Bellflower","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40315","name":"Ben Lomond","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40316","name":"Benicia","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40317","name":"Beverly Hills","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40318","name":"Big Bear Lake","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40319","name":"Bloomington","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40320","name":"Blythe","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40321","name":"Bonita","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40322","name":"Bostonia","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40323","name":"Brawley","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40324","name":"Brea","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40325","name":"Brookdale","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40326","name":"Buena Park","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40327","name":"Burbank","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40328","name":"Burlingame","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40329","name":"Burnham","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40330","name":"Byron","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40331","name":"Calabasas","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40332","name":"Calexico","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40333","name":"California City","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40334","name":"Camarillo","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40335","name":"Cameron Park","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40336","name":"Camino","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40337","name":"Camp Pendleton North","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40338","name":"Camp Pendleton South","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40339","name":"Campbell","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40340","name":"Canoga Park","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40341","name":"Canyon Lake","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40342","name":"Capitola","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40343","name":"Carlsbad","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40344","name":"Carmel","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40345","name":"Carmel Valley","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40346","name":"Carmichael","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40347","name":"Carpinteria","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40348","name":"Carson","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40349","name":"Casa de Oro-Mount Helix","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40350","name":"Castaic","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40351","name":"Castro Valley","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40352","name":"Cathedral City","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40353","name":"Cayucos","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40354","name":"Cerritos","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40355","name":"Charter Oak","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40356","name":"Chatsworth","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40357","name":"Cherryland","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40358","name":"Chico","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40359","name":"Chino Hills","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40360","name":"Chula Vista","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40361","name":"Citrus","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40362","name":"Citrus Heights","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40363","name":"City of Commerce","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40364","name":"City of Industry","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40365","name":"Claremont","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40366","name":"Clearlake","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40367","name":"Clovis","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40368","name":"Coachella","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40369","name":"Coalinga","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40370","name":"Colfax","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40371","name":"Colton","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40372","name":"Colusa","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40373","name":"Commerce","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40374","name":"Compton","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40375","name":"Corcoran","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40376","name":"Corona","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40377","name":"Corte Madera","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40378","name":"Costa Mesa","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40379","name":"Cotati","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40380","name":"Country Club","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40381","name":"Covina","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40382","name":"Crestline","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40383","name":"Cudahy","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40384","name":"Culver City","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40385","name":"Cupertino","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40386","name":"Cypress","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40387","name":"Daly City","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40388","name":"Dana Point","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40389","name":"Davis","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40390","name":"Del Mar","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40391","name":"Delano","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40392","name":"Desert Hot Springs","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40393","name":"Diamond Bar","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40394","name":"Dinuba","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40395","name":"Dixon","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40396","name":"Downey","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40397","name":"East Foothills","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40398","name":"East Hemet","city_id":"3771","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"is_activated":"1"}, +{"id":"40399","name":"East La Mirada","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40400","name":"East Palo Alto","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40401","name":"East San Gabriel","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40402","name":"El Cajon","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40403","name":"El Centro","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40404","name":"El Granada","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40405","name":"El Paso de Robles","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40406","name":"El Segundo","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40407","name":"El Sobrante","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40408","name":"Elk Grove","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40409","name":"Emeryville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40410","name":"Encinitas","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40411","name":"Escondido","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40412","name":"Etna","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40413","name":"Eureka","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40414","name":"Fair Oaks","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40415","name":"Fairfax","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40416","name":"Fallbrook","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40417","name":"Fillmore","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40418","name":"Florence-Graham","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40419","name":"Florin","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40420","name":"Folsom","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40421","name":"Fontana","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40422","name":"Foothill Farms","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40423","name":"Foothill Ranch","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40424","name":"Fort Bragg","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40425","name":"Foster City","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40426","name":"Fountain Valley","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40427","name":"Freedom","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40428","name":"Fremont","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40429","name":"Fullerton","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40430","name":"Galt","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40431","name":"Garberville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40432","name":"Garden Acres","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40433","name":"Garden Grove","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40434","name":"Gardena","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40435","name":"Gilroy","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40436","name":"Glen Avon","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40437","name":"Glendora","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40438","name":"Goleta","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40439","name":"Gonzales","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40440","name":"Granada Hills","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40441","name":"Grand Terrace","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40442","name":"Grass Valley","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40443","name":"Grover Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40444","name":"Gualala","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40445","name":"Guerneville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40446","name":"Hacienda Heights","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40447","name":"Half Moon Bay","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40448","name":"Hanford","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40449","name":"Harbor City","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40450","name":"Hawaiian Gardens","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40451","name":"Hawthorne","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40452","name":"Hayward","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40453","name":"Hemet","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40454","name":"Hermosa Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40455","name":"Hesperia","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40456","name":"Highland","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40457","name":"Hollister","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40458","name":"Hollywood","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40459","name":"Huntington Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40460","name":"Huntington Park","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40461","name":"Idyllwild","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40462","name":"Imperial Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40463","name":"Indio","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40464","name":"Industry","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40465","name":"Irwindale","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40466","name":"Isla Vista","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40467","name":"Jackson","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40468","name":"Jamul","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40469","name":"La Canada Flintridge","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40470","name":"La Crescenta-Montrose","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40471","name":"La Habra","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40472","name":"La Jolla","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40473","name":"La Mirada","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40474","name":"La Puente","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40475","name":"La Quinta","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40476","name":"La Riviera","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40477","name":"La Verne","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40478","name":"LaVerne","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40479","name":"Ladera Ranch","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40480","name":"Lafayette","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40481","name":"Laguna Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40482","name":"Laguna Hills","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40483","name":"Laguna Niguel","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40484","name":"Lake Elsinore","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40485","name":"Lake Forest","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40486","name":"Lakeside","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40487","name":"Lakewood","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40488","name":"Larkspur","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40489","name":"Lawndale","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40490","name":"Laytonville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40491","name":"Lemon Grove","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40492","name":"Lemoore","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40493","name":"Lennox","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40494","name":"Linda","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40495","name":"Live Oak","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40496","name":"Livermore","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40497","name":"Loma Linda","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40498","name":"Lomita","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40499","name":"Lompoc","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40500","name":"Long Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40501","name":"Los Alamitos","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40502","name":"Los Angeles","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40503","name":"Los Angeles East","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40504","name":"Los Banos","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40505","name":"Los Gatos","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40506","name":"Los Olivos","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40507","name":"Lynwood","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40508","name":"MacKinleyville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40509","name":"Magalia","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40510","name":"Malibu","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40511","name":"Mammoth Lakes","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40512","name":"Manhattan Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40513","name":"Manteca","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40514","name":"Marina del Rey","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40515","name":"Mariposa","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40516","name":"Marshall","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40517","name":"Marysville","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40518","name":"Maywood","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40519","name":"Menlo Park","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40520","name":"Merced","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40521","name":"Middletown","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40522","name":"Midway City","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40523","name":"Mill Valley","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40524","name":"Millbrae","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40525","name":"Milpitas","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40526","name":"Mira Loma","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40527","name":"Mission Viejo","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40528","name":"Modesto","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40529","name":"Monclair","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40530","name":"Montara","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40531","name":"Montclair","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40532","name":"Montecito","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40533","name":"Monterey","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40534","name":"Monterey Park","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40535","name":"Moorpark","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40536","name":"Moraga Town","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40537","name":"Moreno Valley","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40538","name":"Morgan Hill","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40539","name":"Morro Bay","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40540","name":"Moss Beach","city_id":"3771","created_at":"2024-01-21 12:47:29","updated_at":"2024-01-21 12:47:29","translations":null,"is_activated":"1"}, +{"id":"40541","name":"Mount Shasta","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40542","name":"Mountain View","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40543","name":"Murrieta","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40544","name":"N. Hollywood","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40545","name":"Napa","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40546","name":"National City","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40547","name":"Nevada City","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40548","name":"Newport Beach","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40549","name":"Norco","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40550","name":"North Auburn","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40551","name":"North Fair Oaks","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40552","name":"North Fork","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40553","name":"North Highlands","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40554","name":"North Hills","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40555","name":"North Hollywood","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40556","name":"Northridge","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40557","name":"Norwalk","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40558","name":"Novato","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40559","name":"Nuevo","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40560","name":"Oak View","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40561","name":"Oakdale","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40562","name":"Oakhurst","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40563","name":"Oakland","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40564","name":"Oakley","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40565","name":"Oceanside","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40566","name":"Oildale","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40567","name":"Ojai","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40568","name":"Olivehurst","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40569","name":"Orangevale","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40570","name":"Orcutt","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40571","name":"Oregon House","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40572","name":"Orinda","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40573","name":"Oroville","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40574","name":"Oxnard","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40575","name":"Pacific Grove","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40576","name":"Pacific Palisades","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40577","name":"Pacifica","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40578","name":"Pacoima","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40579","name":"Pajaro","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40580","name":"Palm Desert","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40581","name":"Palm Springs","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40582","name":"Palmdale","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40583","name":"Palos Verdes Estates","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40584","name":"Pamona","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40585","name":"Panorama City","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40586","name":"Paramount","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40587","name":"Parkway-South Sacramento","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40588","name":"Parlier","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40589","name":"Pasadena","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40590","name":"Patterson","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40591","name":"Pedley","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40592","name":"Perris","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40593","name":"Petaluma","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40594","name":"Pico Rivera","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40595","name":"Piedmont","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40596","name":"Pinole","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40597","name":"Pismo Beach","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40598","name":"Pittsburg","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40599","name":"Placentia","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40600","name":"Placerville","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40601","name":"Playa del Rey","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40602","name":"Pleasant Hill","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40603","name":"Pleasanton","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40604","name":"Point Reyes Station","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40605","name":"Pollock Pines","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40606","name":"Pomona","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40607","name":"Port Costa","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40608","name":"Port Hueneme","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40609","name":"Porterville","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40610","name":"Poway","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40611","name":"Quartz Hill","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40612","name":"Ramona","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40613","name":"Rancho Cordova","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40614","name":"Rancho Cucamonga","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40615","name":"Rancho Dominguez","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40616","name":"Rancho Mirage","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40617","name":"Rancho Murieta","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40618","name":"Rancho Palos Verdes","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40619","name":"Rancho San Diego","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40620","name":"Rancho Santa Margarita","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40621","name":"Red Bluff","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40622","name":"Redding","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40623","name":"Redlands","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40624","name":"Redondo Beach","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40625","name":"Redway","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40626","name":"Redwood City","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40627","name":"Reedley","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40628","name":"Reseda","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40629","name":"Rialto","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40630","name":"Ridgecrest","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40631","name":"Rio Linda","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40632","name":"Rio Nido","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40633","name":"Rio del Mar","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40634","name":"Riverbank","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40635","name":"Riverside","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40636","name":"Rocklin","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40637","name":"Rohnert Park","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40638","name":"Rolling Hills","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40639","name":"Rosamond","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40640","name":"Roseland","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40641","name":"Rosemead","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40642","name":"Rosemont","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40643","name":"Roseville","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40644","name":"Rossmoor","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40645","name":"Rowland Heights","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40646","name":"Rubidoux","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40647","name":"Sacramento","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40648","name":"San Anselmo","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40649","name":"San Bruno","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40650","name":"San Dimas","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40651","name":"San Juan Capistrano","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40652","name":"San Leandro","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40653","name":"San Luis Obispo","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40654","name":"San Marino","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40655","name":"San Ysidro","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40656","name":"Santa Clarita","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40657","name":"Santa Fe Springs","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40658","name":"Santa Monica","city_id":"3771","created_at":"2024-01-21 12:47:30","updated_at":"2024-01-21 12:47:30","translations":null,"is_activated":"1"}, +{"id":"40659","name":"Santa Paula","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40660","name":"Santa Ynez","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40661","name":"Santee","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40662","name":"Saratoga","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40663","name":"Sausalito","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40664","name":"Scotts Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40665","name":"Seal Beach","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40666","name":"Seaside","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40667","name":"Shafter","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40668","name":"Sherman Oaks","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40669","name":"Sierra Madre","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40670","name":"Signal Hill","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40671","name":"Simi Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40672","name":"Solana Beach","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40673","name":"Solvang","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40674","name":"Sonoma","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40675","name":"Sonora","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40676","name":"Soquel","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40677","name":"South El Monte","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40678","name":"South Gate","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40679","name":"South Lake Tahoe","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40680","name":"South Pasadena","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40681","name":"South San Francisco","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40682","name":"South San Jose Hills","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40683","name":"South Whittier","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40684","name":"South Yuba City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40685","name":"Spring Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40686","name":"St. Helena","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40687","name":"Stanford","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40688","name":"Stanton","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40689","name":"Stevenson Ranch","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40690","name":"Stockton","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40691","name":"Studio City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40692","name":"Suisun City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40693","name":"Sun Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40694","name":"Sunland","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40695","name":"Sunnyvale","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40696","name":"Susanville","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40697","name":"Sutter","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40698","name":"Sylmar","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40699","name":"Tahoe City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40700","name":"Tamalpais-Homestead Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40701","name":"Tarzana","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40702","name":"Tehachapi","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40703","name":"Temecula","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40704","name":"Temple City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40705","name":"Thousand Oaks","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40706","name":"Tiburon","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40707","name":"Topanga","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40708","name":"Torrance","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40709","name":"Trabuco Canyon","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40710","name":"Tracy","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40711","name":"Trona","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40712","name":"Truckee","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40713","name":"Tujunga","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40714","name":"Tulare","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40715","name":"Turlock","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40716","name":"Tustin","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40717","name":"Tustin Foothills","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40718","name":"Twentynine Palms","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40719","name":"Twentynine Palms Base","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40720","name":"Ukiah","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40721","name":"Union City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40722","name":"Upland","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40723","name":"Vacaville","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40724","name":"Valinda","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40725","name":"Valle Vista","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40726","name":"Vallejo","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40727","name":"Valley Center","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40728","name":"Valley Glen","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40729","name":"Valley Village","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40730","name":"Van Nuys","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40731","name":"Vandenberg Air Force Base","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40732","name":"Ventura","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40733","name":"Victorville","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40734","name":"View Park-Windsor Hills","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40735","name":"Vincent","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40736","name":"Visalia","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40737","name":"Vista","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40738","name":"Walnut","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40739","name":"Walnut Creek","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40740","name":"Walnut Park","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40741","name":"Wasco","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40742","name":"Watsonville","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40743","name":"West Athens","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40744","name":"West Carson","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40745","name":"West Covina","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40746","name":"West Hills","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40747","name":"West Hollywood","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40748","name":"West Puente Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40749","name":"West Sacramento","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40750","name":"West Whittier-Los Nietos","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40751","name":"Westlake Village","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40752","name":"Westminster","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40753","name":"Westmont","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40754","name":"Whittier","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40755","name":"Wildomar","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40756","name":"Willits","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40757","name":"Willowbrook","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40758","name":"Wilmington","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40759","name":"Woodland","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40760","name":"Woodland Hills","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40761","name":"Yorba Linda","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40762","name":"Yreka","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40763","name":"Yuba City","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40764","name":"Yucaipa","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40765","name":"Yucca Valley","city_id":"3771","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40766","name":"Air Force Academy","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40767","name":"Alamosa","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40768","name":"Applewood","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40769","name":"Arvada","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40770","name":"Aspen","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40771","name":"Basalt","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40772","name":"Bellvue","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40773","name":"Black Forest","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40774","name":"Boulder","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40775","name":"Broomfield","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40776","name":"Canon City","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40777","name":"Carbondale","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40778","name":"Castle Rock","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40779","name":"Castlewood","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40780","name":"Centennial","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40781","name":"Cimarron Hills","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40782","name":"Clifton","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40783","name":"Colorado Springs","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40784","name":"Columbine","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40785","name":"Commerce City","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40786","name":"Cortez","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40787","name":"Crawford","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40788","name":"Denver","city_id":"3773","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"is_activated":"1"}, +{"id":"40789","name":"Edwards","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40790","name":"Elizabeth","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40791","name":"Englewood","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40792","name":"Estes Park","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40793","name":"Evergreen","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40794","name":"Federal Heights","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40795","name":"Fort Carson","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40796","name":"Fort Collins","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40797","name":"Fort Morgan","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40798","name":"Fountain","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40799","name":"Grand Junction","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40800","name":"Greeley","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40801","name":"Greenwood Village","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40802","name":"Gunbarrel","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40803","name":"Highlands Ranch","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40804","name":"Holly","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40805","name":"Ken Caryl","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40806","name":"Littleton","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40807","name":"Longmont","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40808","name":"Louisville","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40809","name":"Loveland","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40810","name":"Lyons","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40811","name":"Monument","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40812","name":"Nederland","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40813","name":"Niwot","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40814","name":"Northglenn","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40815","name":"Pagosa Springs","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40816","name":"Penrose","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40817","name":"Peyton","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40818","name":"Pueblo","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40819","name":"Ridgway","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40820","name":"Rifle","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40821","name":"Rocky Ford","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40822","name":"Sanford","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40823","name":"Security-Widefield","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40824","name":"Sherrelwood","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40825","name":"Silver Cliff","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40826","name":"Snowmass Village","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40827","name":"Southglenn","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40828","name":"Steamboat Springs","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40829","name":"Superior","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40830","name":"Telluride","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40831","name":"Thornton","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40832","name":"Vail","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40833","name":"Welby","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40834","name":"Westcliffe","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40835","name":"Wheat Ridge","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40836","name":"Woodland Park","city_id":"3773","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40837","name":"Ansonia","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40838","name":"Bloomfield","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40839","name":"Branford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40840","name":"Bridgeport","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40841","name":"Canaan","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40842","name":"Canton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40843","name":"Central Manchester","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40844","name":"Cheshire","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40845","name":"Conning Towers-Nautilus Park","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40846","name":"Coscob","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40847","name":"Cranbury","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40848","name":"Cromwell","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40849","name":"Danbury","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40850","name":"Darien","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40851","name":"Dayville","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40852","name":"East Hartford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40853","name":"East Haven","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40854","name":"Ellington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40855","name":"Farmington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40856","name":"Glastonbury","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40857","name":"Greens Farms","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40858","name":"Groton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40859","name":"Guilford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40860","name":"Haddam","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40861","name":"Hamden","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40862","name":"Hartford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40863","name":"Harwinton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40864","name":"Lakeville","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40865","name":"Lyme","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40866","name":"Meriden","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40867","name":"Monroe","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40868","name":"Mystic","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40869","name":"Naugatuck","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40870","name":"New Britain","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40871","name":"New Canaan","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40872","name":"New Hartford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40873","name":"New Haven","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40874","name":"New London","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40875","name":"New Milford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40876","name":"Newington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40877","name":"North Haven","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40878","name":"North Stonington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40879","name":"Old Saybrook","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40880","name":"Oneco","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40881","name":"Pawcatuck","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40882","name":"Plainville","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40883","name":"Putnam","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40884","name":"Rocky Hill","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40885","name":"Rowayton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40886","name":"Sandy Hook","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40887","name":"Sharon","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40888","name":"Shelton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40889","name":"South Windsor","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40890","name":"Southington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40891","name":"Storrs","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40892","name":"Suffield","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40893","name":"Taftville","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40894","name":"Terryville","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40895","name":"Tolland","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40896","name":"Torrington","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40897","name":"Trumbull","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40898","name":"Wallingford Center","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40899","name":"Waterbury","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40900","name":"Watertown","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40901","name":"West Hartford","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40902","name":"West Haven","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40903","name":"Weston","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40904","name":"Wethersfield","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40905","name":"Willimantic","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40906","name":"Wilton","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40907","name":"Windsor Locks","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40908","name":"Winsted","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40909","name":"Woodbury","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40910","name":"pomfret","city_id":"3774","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40911","name":"Bear","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40912","name":"Brookside","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40913","name":"Claymont","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40914","name":"Dover Base Housing","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40915","name":"Edgemoor","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40916","name":"Elsmere","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40917","name":"Pike Creek","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40918","name":"Seaford","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40919","name":"Smyrna","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40920","name":"Talleyville","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40921","name":"Wilmington Manor","city_id":"3775","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"is_activated":"1"}, +{"id":"40922","name":"Alachua","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40923","name":"Altamonte Springs","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40924","name":"Apopka","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40925","name":"Atlantic Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40926","name":"Auburndale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40927","name":"Aventura","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40928","name":"Avon Park","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40929","name":"Azalea Park","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40930","name":"Bal Harbour","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40931","name":"Bartow","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40932","name":"Bayonet Point","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40933","name":"Bayshore Gardens","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40934","name":"Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40935","name":"Bellair-Meadowbrook Terrace","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40936","name":"Belle Glade","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40937","name":"Bellview","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40938","name":"Bloomingdale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40939","name":"Boca Raton","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40940","name":"Boca del Mar","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40941","name":"Bonita Springs","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40942","name":"Boynton Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40943","name":"Bradenton","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40944","name":"Brent","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40945","name":"Brooksville","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40946","name":"Brownsville","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40947","name":"Buena Ventura Lakes","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40948","name":"Bunnell","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40949","name":"Callaway","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40950","name":"Cape Coral","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40951","name":"Carol City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40952","name":"Casselberry","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40953","name":"Catalina Foothills","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40954","name":"Celebration","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40955","name":"Century Village","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40956","name":"Citrus Park","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40957","name":"Clearwater","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40958","name":"Cocoa","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40959","name":"Cocoa Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40960","name":"Coconut Creek","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40961","name":"Coconut Grove","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40962","name":"Cooper City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40963","name":"Coral Gables","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40964","name":"Coral Springs","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40965","name":"Coral Terrace","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40966","name":"Cortlandt Manor","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40967","name":"Crestview","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40968","name":"Crystal River","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40969","name":"Cutler","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40970","name":"Cutler Ridge","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40971","name":"Cypress Gardens","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40972","name":"Cypress Lake","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40973","name":"Dania","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40974","name":"Dania Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40975","name":"Davie","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40976","name":"Daytona Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40977","name":"De Bary","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40978","name":"De Funiak Springs","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40979","name":"De Land","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40980","name":"Debary","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40981","name":"Deer Park","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40982","name":"Deerfield Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40983","name":"Del Rio","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40984","name":"Delray Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40985","name":"Deltona","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40986","name":"Destin","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40987","name":"Doctor Phillips","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40988","name":"Dora","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40989","name":"Doral","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40990","name":"East Lake","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40991","name":"Edgewater","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40992","name":"Eglin Air Force Base","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40993","name":"Egypt Lake-Leto","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40994","name":"Elfers","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40995","name":"Ensley","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40996","name":"Eustis","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40997","name":"Fairview Shores","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40998","name":"Fern Park","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"40999","name":"Fernandina Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41000","name":"Ferry Pass","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41001","name":"Flagler Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41002","name":"Floral City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41003","name":"Florida City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41004","name":"Florida Ridge","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41005","name":"Forest City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41006","name":"Fort Lauderdale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41007","name":"Fort Myers","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41008","name":"Fort Myers Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41009","name":"Fort Pierce","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41010","name":"Fort Walton Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41011","name":"Freeport","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41012","name":"Fruitville","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41013","name":"Ft. Lauderdale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41014","name":"Gainesville","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41015","name":"Gladeview","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41016","name":"Glenvar Heights","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41017","name":"Golden Gate","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41018","name":"Golden Glades","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41019","name":"Goldenrod","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41020","name":"Greater Carrollwood","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41021","name":"Greater Northdale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41022","name":"Green Cove Springs","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41023","name":"Greenacres","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41024","name":"Gulf Gate Estates","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41025","name":"Gulfport","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41026","name":"Haines City","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41027","name":"Hallandale","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41028","name":"Hallandale Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41029","name":"Hammocks","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41030","name":"Hamptons at Boca Raton","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41031","name":"Hialeah","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41032","name":"Hialeah Gardens","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41033","name":"Highpoint","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41034","name":"Hobe Sound","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41035","name":"Holiday","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41036","name":"Holly Hill","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41037","name":"Homestead","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41038","name":"Homosassa","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41039","name":"Hudson","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41040","name":"Immokalee","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41041","name":"Iona","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41042","name":"Ives Estates","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41043","name":"Jacksonville Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41044","name":"Jasmine Estates","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41045","name":"Jensen Beach","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41046","name":"Jupiter","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41047","name":"Kendale Lakes","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41048","name":"Kendall","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41049","name":"Kendall West","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41050","name":"Key Biscayne","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41051","name":"Key Largo","city_id":"2823","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"is_activated":"1"}, +{"id":"41052","name":"Key West","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41053","name":"Kings Point","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41054","name":"Kissimmee","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41055","name":"Lady Lake","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41056","name":"Lake Alfred","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41057","name":"Lake Lucerne","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41058","name":"Lake Magdalene","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41059","name":"Lake Mary","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41060","name":"Lake Placid","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41061","name":"Lake Wales","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41062","name":"Lake Worth","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41063","name":"Lakeland","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41064","name":"Lakeland Highlands","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41065","name":"Land O Lakes","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41066","name":"Largo","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41067","name":"Lauderdale Lakes","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41068","name":"Lauderhill","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41069","name":"Laurel","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41070","name":"Lecanto","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41071","name":"Leesburg","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41072","name":"Lehigh Acres","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41073","name":"Leisure City","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41074","name":"Lighthouse Point","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41075","name":"Lockhart","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41076","name":"Longwood","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41077","name":"Loxahatchee","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41078","name":"Lutz","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41079","name":"Lynn Haven","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41080","name":"Maitland","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41081","name":"Medley","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41082","name":"Merritt Island","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41083","name":"Miami Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41084","name":"Miami Gardens","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41085","name":"Miami Lakes","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41086","name":"Miami Shores","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41087","name":"Miami Springs","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41088","name":"Micco","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41089","name":"Mims","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41090","name":"Mulberry","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41091","name":"Myrtle Grove","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41092","name":"Naples Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41093","name":"Naranja","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41094","name":"New Port Richey","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41095","name":"New Port Richey East","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41096","name":"New Smyrna Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41097","name":"Niceville","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41098","name":"Nokomis","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41099","name":"Norland","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41100","name":"North Andrews Gardens","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41101","name":"North Fort Myers","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41102","name":"North Lauderdale","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41103","name":"North Miami","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41104","name":"North Miami Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41105","name":"North Naples","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41106","name":"North Palm Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41107","name":"North Port","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41108","name":"Oak Ridge","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41109","name":"Oakland Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41110","name":"Ocala","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41111","name":"Ocoee","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41112","name":"Ojus","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41113","name":"Okeechobee","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41114","name":"Oldsmar","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41115","name":"Olympia Heights","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41116","name":"Opa-locka","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41117","name":"Orange City","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41118","name":"Orange Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41119","name":"Orlando","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41120","name":"Ormond Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41121","name":"Ormond-by-the-Sea","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41122","name":"Osprey","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41123","name":"Palm Bay","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41124","name":"Palm Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41125","name":"Palm Beach Gardens","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41126","name":"Palm City","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41127","name":"Palm Coast","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41128","name":"Palm Harbor","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41129","name":"Palm River-Clair Mel","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41130","name":"Palm Valley","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41131","name":"Palmetto","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41132","name":"Palmetto Estates","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41133","name":"Panama City","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41134","name":"Parkland","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41135","name":"Pembroke Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41136","name":"Pembroke Pines","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41137","name":"Pensacola","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41138","name":"Perrine","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41139","name":"Pine Castle","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41140","name":"Pine Hills","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41141","name":"Pinellas Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41142","name":"Pinewood","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41143","name":"Plant City","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41144","name":"Plantation","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41145","name":"Pompano Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41146","name":"Pompano Beach Highlands","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41147","name":"Ponte Vedra","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41148","name":"Port Charlotte","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41149","name":"Port Orange","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41150","name":"Port Saint John","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41151","name":"Port Saint Lucie","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41152","name":"Quincy","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41153","name":"Redington Shores","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41154","name":"Richmond Heights","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41155","name":"Richmond West","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41156","name":"Riverview","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41157","name":"Riviera Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41158","name":"Rockledge","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41159","name":"Royal Palm Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41160","name":"Safety Harbor","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41161","name":"Saint Augustine","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41162","name":"Saint Cloud","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41163","name":"Saint Petersburg Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41164","name":"San Carlos Park","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41165","name":"Sandalfoot Cove","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41166","name":"Sanibel","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41167","name":"Sarasota","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41168","name":"Sarasota Springs","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41169","name":"Satellite Beach","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41170","name":"Scott Lake","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41171","name":"Sebastian","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41172","name":"Seminole","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41173","name":"Shalimar","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41174","name":"South Bradenton","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41175","name":"South Daytona","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41176","name":"South Miami","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41177","name":"South Miami Heights","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41178","name":"South Patrick Shores","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41179","name":"South Venice","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41180","name":"Spring Hill","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41181","name":"Stuart","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41182","name":"Sun City Center","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41183","name":"Sunny Isles","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41184","name":"Sunrise","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41185","name":"Sunset","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41186","name":"Sweetwater","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41187","name":"Tallahassee","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41188","name":"Tamarac","city_id":"2823","created_at":"2024-01-21 12:47:34","updated_at":"2024-01-21 12:47:34","translations":null,"is_activated":"1"}, +{"id":"41189","name":"Tamiami","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41190","name":"Tampa","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41191","name":"Tarpon Springs","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41192","name":"Temple Terrace","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41193","name":"The Crossings","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41194","name":"The Hammocks","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41195","name":"Titusville","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41196","name":"Town n Country","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41197","name":"University","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41198","name":"University Park","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41199","name":"Valrico","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41200","name":"Vero Beach","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41201","name":"Vero Beach South","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41202","name":"Villas","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41203","name":"Wekiva Springs","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41204","name":"Wesley Chapel","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41205","name":"West Little River","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41206","name":"West Palm Beach","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41207","name":"West Park","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41208","name":"West Pensacola","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41209","name":"West and East Lealman","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41210","name":"Westchester","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41211","name":"Westview","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41212","name":"Westwood Lakes","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41213","name":"Wilton Manors","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41214","name":"Winston","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41215","name":"Winter Garden","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41216","name":"Winter Haven","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41217","name":"Winter Park","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41218","name":"Winter Springs","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41219","name":"Wright","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41220","name":"Yeehaw Junction","city_id":"2823","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41221","name":"Acworth","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41222","name":"Adel","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41223","name":"Alpharetta","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41224","name":"Americus","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41225","name":"Athens-Clarke","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41226","name":"Atlanta","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41227","name":"Augusta-Richmond","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41228","name":"Austell","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41229","name":"Bainbridge","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41230","name":"Barnesville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41231","name":"Belvedere Park","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41232","name":"Bogart","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41233","name":"Bowdon","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41234","name":"Braselton","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41235","name":"Buford","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41236","name":"Calhoun","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41237","name":"Candler-MacAfee","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41238","name":"Carrollton","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41239","name":"Cartersville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41240","name":"Chamblee","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41241","name":"Clarkston","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41242","name":"Cochran","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41243","name":"College Park","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41244","name":"Columbus","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41245","name":"Comer","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41246","name":"Conley","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41247","name":"Conyers","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41248","name":"Cordele","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41249","name":"Covington","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41250","name":"Culloden","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41251","name":"Cumming","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41252","name":"Dacula","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41253","name":"Dahlonega","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41254","name":"Dallas","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41255","name":"Dalton","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41256","name":"Dewy Rose","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41257","name":"Doraville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41258","name":"Douglasville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41259","name":"Druid Hills","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41260","name":"Duluth","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41261","name":"Dunwoody","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41262","name":"East Point","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41263","name":"Elberton","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41264","name":"Ellenwood","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41265","name":"Ellijay","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41266","name":"Evans","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41267","name":"Fairmount","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41268","name":"Flowery Branch","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41269","name":"Folkston","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41270","name":"Forest Park","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41271","name":"Fort Benning South","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41272","name":"Fort Gordon","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41273","name":"Fort Stewart","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41274","name":"Fort Valley","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41275","name":"Foxborough","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41276","name":"Gaines School","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41277","name":"Glennville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41278","name":"Gresham Park","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41279","name":"Griffin","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41280","name":"Grovetown","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41281","name":"Hartwell","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41282","name":"Hinesville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41283","name":"Kennesaw","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41284","name":"Kingsland","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41285","name":"LaGrange","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41286","name":"Lawrenceville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41287","name":"Lilburn","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41288","name":"Lithia Springs","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41289","name":"Lithonia","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41290","name":"Locust Grove","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41291","name":"Loganville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41292","name":"Mableton","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41293","name":"Marietta","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41294","name":"McDonough","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41295","name":"Milledgeville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41296","name":"Morrow","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41297","name":"Moultrie","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41298","name":"Mountain","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41299","name":"Mountain Park","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41300","name":"Newnan","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41301","name":"Norcross","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41302","name":"North Atlanta","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41303","name":"North Decatur","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41304","name":"North Druid Hills","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41305","name":"Oakwood","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41306","name":"Panthersville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41307","name":"Peachtree City","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41308","name":"Powder Springs","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41309","name":"Redan","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41310","name":"Rex","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41311","name":"Riverdale","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41312","name":"Rossville","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41313","name":"Roswell","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41314","name":"Saint Simons","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41315","name":"Sandy Springs","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41316","name":"Savannah","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41317","name":"Scottdale","city_id":"3777","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"is_activated":"1"}, +{"id":"41318","name":"Sharpsburg","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41319","name":"Snellville","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41320","name":"Sparks","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41321","name":"Statesboro","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41322","name":"Stockbridge","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41323","name":"Stone Mountain","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41324","name":"Suwanee","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41325","name":"Tifton","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41326","name":"Tucker","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41327","name":"Tybee Island","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41328","name":"Valdosta","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41329","name":"Vidalia","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41330","name":"Warner Robins","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41331","name":"Waycross","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41332","name":"Wilmington Island","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41333","name":"Woodbine","city_id":"3777","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41334","name":"Ahuimanu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41335","name":"Aiea","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41336","name":"Aliamanu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41337","name":"Ewa Beach","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41338","name":"Haiku","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41339","name":"Halawa","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41340","name":"Hanalei","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41341","name":"Hilo","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41342","name":"Holualoa","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41343","name":"Honolulu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41344","name":"Kahului","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41345","name":"Kailua","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41346","name":"Kalaheo","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41347","name":"Kamuela","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41348","name":"Kaneohe","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41349","name":"Kaneohe Station","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41350","name":"Kapaa","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41351","name":"Kapolei","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41352","name":"Kihei","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41353","name":"Lahaina","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41354","name":"Lanai City","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41355","name":"Lihue","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41356","name":"Makaha","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41357","name":"Makakilo City","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41358","name":"Makawao","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41359","name":"Mi-Wuk Village","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41360","name":"Mililani Town","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41361","name":"Naalehu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41362","name":"Nanakuli","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41363","name":"Pahoa","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41364","name":"Pearl City","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41365","name":"Schofield Barracks","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41366","name":"Wahiawa","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41367","name":"Waialua","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41368","name":"Waianae","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41369","name":"Wailuku","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41370","name":"Waimalu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41371","name":"Waipahu","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41372","name":"Waipio","city_id":"3778","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41373","name":"Blackfoot","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41374","name":"Boise","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41375","name":"Boise City","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41376","name":"Boulder Hill","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41377","name":"Burley","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41378","name":"Caldwell","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41379","name":"Coeur d Alene","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41380","name":"Eagle","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41381","name":"Garden City","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41382","name":"Idaho Falls","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41383","name":"Lewiston","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41384","name":"Meridian","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41385","name":"Nampa","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41386","name":"Payette","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41387","name":"Pocatello","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41388","name":"Post Falls","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41389","name":"Rexburg","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41390","name":"Rigby","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41391","name":"Sandpoint","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41392","name":"Twin Falls","city_id":"3779","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41393","name":"Addison","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41394","name":"Algonquin","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41395","name":"Alsip","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41396","name":"Arlington Heights","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41397","name":"Bannockburn","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41398","name":"Barrington","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41399","name":"Bartlett","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41400","name":"Batavia","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41401","name":"Beach Park","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41402","name":"Beardstown","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41403","name":"Bedford Park","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41404","name":"Bellwood","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41405","name":"Belvidere","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41406","name":"Bensenville","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41407","name":"Berwyn","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41408","name":"Blue Island","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41409","name":"Boling Brook","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41410","name":"Bolingbrook","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41411","name":"Bourbonnais","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41412","name":"Bradley","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41413","name":"Breese","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41414","name":"Bridgeview","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41415","name":"Brimfield","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41416","name":"Broadview","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41417","name":"Brookfield","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41418","name":"Buffalo Grove","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41419","name":"Burr Ridge","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41420","name":"Cahokia","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41421","name":"Calumet City","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41422","name":"Carlinville","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41423","name":"Carol Stream","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41424","name":"Carpentersville","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41425","name":"Cary","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41426","name":"Centralia","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41427","name":"Champaign","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41428","name":"Channahon","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41429","name":"Charleston","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41430","name":"Chicago","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41431","name":"Chicago Heights","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41432","name":"Chicago Ridge","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41433","name":"Cicero","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41434","name":"Coal City","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41435","name":"Collinsville","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41436","name":"Congerville","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41437","name":"Country Club Hills","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41438","name":"Crest Hill","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41439","name":"Crestwood","city_id":"3780","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"is_activated":"1"}, +{"id":"41440","name":"Crystal Lake","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41441","name":"DeKalb","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41442","name":"Deerfield","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41443","name":"Des Plaines","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41444","name":"Dolton","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41445","name":"Downers Grove","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41446","name":"Earlville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41447","name":"East Dundee","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41448","name":"East Moline","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41449","name":"East Peoria","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41450","name":"East Saint Louis","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41451","name":"Edwardsville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41452","name":"Elburn","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41453","name":"Elk Grove Village","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41454","name":"Elmhurst","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41455","name":"Elmwood Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41456","name":"Evanston","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41457","name":"Evergreen Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41458","name":"Fairview Heights","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41459","name":"Flossmoor","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41460","name":"Frankfort","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41461","name":"Franklin Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41462","name":"Galena","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41463","name":"Galesburg","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41464","name":"Glen Carbon","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41465","name":"Glen Ellyn","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41466","name":"Glendale Heights","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41467","name":"Glenview","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41468","name":"Godfrey","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41469","name":"Goodings Grove","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41470","name":"Granite City","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41471","name":"Grayslake","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41472","name":"Gurnee","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41473","name":"Hampshire","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41474","name":"Hanover Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41475","name":"Harvard","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41476","name":"Harvey","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41477","name":"Hawthorn Woods","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41478","name":"Hazel Crest","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41479","name":"Herrin","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41480","name":"Hickory Hills","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41481","name":"Highland Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41482","name":"Hinsdale","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41483","name":"Hoffman Estates","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41484","name":"Huntley","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41485","name":"Illinois City","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41486","name":"Ingleside","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41487","name":"Itasca","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41488","name":"Johnston City","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41489","name":"Joliet","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41490","name":"Justice","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41491","name":"Kankakee","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41492","name":"Kewanee","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41493","name":"La Grange","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41494","name":"La Grange Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41495","name":"La Salle","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41496","name":"Lake Bluff","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41497","name":"Lake Zurich","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41498","name":"Lake in the Hills","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41499","name":"Lansing","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41500","name":"Lemont","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41501","name":"Libertyville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41502","name":"Lincolnwood","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41503","name":"Lindenhurst","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41504","name":"Lindenwood","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41505","name":"Lisle","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41506","name":"Lockport","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41507","name":"Lombard","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41508","name":"Long Grove","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41509","name":"Loves Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41510","name":"MacHenry","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41511","name":"Machesney Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41512","name":"Macomb","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41513","name":"Marion","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41514","name":"Martinsville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41515","name":"Maryville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41516","name":"Matteson","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41517","name":"Mattoon","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41518","name":"McHenry","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41519","name":"Melrose Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41520","name":"Midlothian","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41521","name":"Minooka","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41522","name":"Mokena","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41523","name":"Moline","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41524","name":"Momence","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41525","name":"Monticello","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41526","name":"Morton","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41527","name":"Morton Grove","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41528","name":"Mossville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41529","name":"Mount Prospect","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41530","name":"Mount Zion","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41531","name":"Mundelein","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41532","name":"Naperville","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41533","name":"New Lenox","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41534","name":"Niles","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41535","name":"Normal","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41536","name":"Norridge","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41537","name":"North Aurora","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41538","name":"North Chicago","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41539","name":"Northbrook","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41540","name":"Northfield","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41541","name":"Northlake","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41542","name":"O Fallon","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41543","name":"Oak Forest","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41544","name":"Oak Lawn","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41545","name":"Oakbrook","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41546","name":"Olney","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41547","name":"Orland Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41548","name":"Osco","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41549","name":"Palatine","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41550","name":"Palos Heights","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41551","name":"Palos Hills","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41552","name":"Park Forest","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41553","name":"Park Ridge","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41554","name":"Pekin","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41555","name":"Peru","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41556","name":"Plainfield","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41557","name":"Pontiac","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41558","name":"Princeton","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41559","name":"Prospect Heights","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41560","name":"Ramsey","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41561","name":"Rantoul","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41562","name":"Richton Park","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41563","name":"River Forest","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41564","name":"Rochelle","city_id":"3780","created_at":"2024-01-21 12:47:37","updated_at":"2024-01-21 12:47:37","translations":null,"is_activated":"1"}, +{"id":"41565","name":"Rock Island","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41566","name":"Rockford","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41567","name":"Rolling Meadows","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41568","name":"Romeoville","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41569","name":"Roscoe","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41570","name":"Roselle","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41571","name":"Round Lake Beach","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41572","name":"Saint Charles","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41573","name":"Sauget","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41574","name":"Sauk Village","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41575","name":"Schaumburg","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41576","name":"Schiller Park","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41577","name":"Shumway","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41578","name":"Skokie","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41579","name":"South Elgin","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41580","name":"South Holland","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41581","name":"Streamwood","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41582","name":"Streator","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41583","name":"Sycamore","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41584","name":"Taylorville","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41585","name":"Tinley Park","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41586","name":"Trenton","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41587","name":"Urbana","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41588","name":"Ursa","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41589","name":"Vernon Hills","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41590","name":"Villa Park","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41591","name":"Warrenville","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41592","name":"Waukegan","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41593","name":"West Chicago","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41594","name":"West Dundee","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41595","name":"Western Springs","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41596","name":"Wheaton","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41597","name":"Wheeling","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41598","name":"Wilmette","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41599","name":"Winnebago","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41600","name":"Winnetka","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41601","name":"Wood Dale","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41602","name":"Wood River","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41603","name":"Woodridge","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41604","name":"Zion","city_id":"3780","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41605","name":"Angola","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41606","name":"Beech Grove","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41607","name":"Cedar Lake","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41608","name":"Chesterton","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41609","name":"Clarksville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41610","name":"Connersville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41611","name":"Crawfordsville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41612","name":"Crown Point","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41613","name":"Dyer","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41614","name":"East Chicago","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41615","name":"Elkhart","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41616","name":"Evansville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41617","name":"Fishers","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41618","name":"Fort Wayne","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41619","name":"Franklin","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41620","name":"Gary","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41621","name":"Goshen","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41622","name":"Granger","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41623","name":"Greensburg","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41624","name":"Greenwood","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41625","name":"Griffith","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41626","name":"Hammond","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41627","name":"Helmsburg","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41628","name":"Huntington","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41629","name":"Indianapolis","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41630","name":"Jeffersonville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41631","name":"Knightstown","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41632","name":"Kokomo","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41633","name":"La Porte","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41634","name":"Lake Station","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41635","name":"Lawrence","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41636","name":"Lebanon","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41637","name":"Liberty","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41638","name":"Logansport","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41639","name":"Merrillville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41640","name":"Michigan City","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41641","name":"Mishawaka","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41642","name":"Muncie","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41643","name":"N. Albany","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41644","name":"Nashville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41645","name":"New Albany","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41646","name":"New Castle","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41647","name":"New Trenton","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41648","name":"Noblesville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41649","name":"North Vernon","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41650","name":"Osceola","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41651","name":"Poland","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41652","name":"Portage","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41653","name":"Rising Sun","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41654","name":"Rockport","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41655","name":"Schererville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41656","name":"Scottsburg","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41657","name":"Shelbyville","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41658","name":"South Bend","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41659","name":"Speedway","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41660","name":"St. John","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41661","name":"Terre Haute","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41662","name":"Thorntown","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41663","name":"Tippecanoe","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41664","name":"Wabash","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41665","name":"West Lafayette","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41666","name":"Williams","city_id":"3781","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41667","name":"Altoona","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41668","name":"Ames","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41669","name":"Ankeny","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41670","name":"Boone","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41671","name":"Carroll","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41672","name":"Cedar Falls","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41673","name":"Cedar Rapids","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41674","name":"Clarinda","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41675","name":"Clive","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41676","name":"Coralville","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41677","name":"Council Bluffs","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41678","name":"Davenport","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41679","name":"Des Moines","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41680","name":"Dubuque","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41681","name":"Eldridge","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41682","name":"Elkader","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41683","name":"Fayette","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41684","name":"Fort Dodge","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41685","name":"Fort Madison","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41686","name":"Harlan","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41687","name":"Indianola","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41688","name":"Iowa City","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41689","name":"Kalona","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41690","name":"Keokuk","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41691","name":"Marshalltown","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41692","name":"Mason City","city_id":"3782","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"is_activated":"1"}, +{"id":"41693","name":"Muscatine","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41694","name":"Newton","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41695","name":"Oskaloosa","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41696","name":"Ottumwa","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41697","name":"Pella","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41698","name":"Sioux City","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41699","name":"Spencer","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41700","name":"Storm Lake","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41701","name":"Urbandale","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41702","name":"West Des Moines","city_id":"3782","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41703","name":"Arkansas City","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41704","name":"Atchison","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41705","name":"Coffeyville","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41706","name":"Dodge City","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41707","name":"Elk City","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41708","name":"Emporia","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41709","name":"Fort Riley North","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41710","name":"Great Bend","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41711","name":"Hays","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41712","name":"Hutchinson","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41713","name":"Independence","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41714","name":"Junction City","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41715","name":"Kansas City","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41716","name":"Leavenworth","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41717","name":"Leawood","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41718","name":"Lenexa","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41719","name":"Liberal","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41720","name":"MacPherson","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41721","name":"Manhattan","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41722","name":"Merriam","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41723","name":"Minneapolis","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41724","name":"Moundridge","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41725","name":"Olathe","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41726","name":"Overland Park","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41727","name":"Parsons","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41728","name":"Prairie Village","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41729","name":"Rose Hill","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41730","name":"Salina","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41731","name":"Shawnee","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41732","name":"Topeka","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41733","name":"Wichita","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41734","name":"Winfield","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41735","name":"tecumseh","city_id":"3783","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41736","name":"Bardstown","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41737","name":"Berea","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41738","name":"Bowling Green","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41739","name":"Campbellsville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41740","name":"Catlettsburg","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41741","name":"Crescent Springs","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41742","name":"Dawson Springs","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41743","name":"Eastview","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41744","name":"Eddyville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41745","name":"Elizabethtown","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41746","name":"Erlanger","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41747","name":"Evarts","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41748","name":"Fern Creek","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41749","name":"Fort Campbell North","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41750","name":"Fort Knox","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41751","name":"Fort Mitchell","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41752","name":"Fort Thomas","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41753","name":"Grays Knob","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41754","name":"Highview","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41755","name":"Hopkinsville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41756","name":"Jeffersontown","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41757","name":"Lawrenceburg","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41758","name":"Lexington","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41759","name":"Lexington-Fayette","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41760","name":"Madisonville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41761","name":"Mayfield","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41762","name":"Maysville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41763","name":"Middlesborough","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41764","name":"Murray","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41765","name":"Nebo","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41766","name":"Newburg","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41767","name":"Nicholasville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41768","name":"Okolona","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41769","name":"Olive Hill","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41770","name":"Owensboro","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41771","name":"Paducah","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41772","name":"Pikeville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41773","name":"Pleasure Ridge Park","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41774","name":"Queens","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41775","name":"Radcliff","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41776","name":"Saint Dennis","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41777","name":"Saint Matthews","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41778","name":"Scottsville","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41779","name":"Shively","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41780","name":"South Shore","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41781","name":"Tollesboro","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41782","name":"Valley Station","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41783","name":"Wallins Creek","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41784","name":"Walton","city_id":"3784","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41785","name":"Amite","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41786","name":"Baker","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41787","name":"Bastrop","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41788","name":"Baton Rouge","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41789","name":"Bayou Cane","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41790","name":"Bogalusa","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41791","name":"Bossier City","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41792","name":"Broussard","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41793","name":"Chalmette","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41794","name":"Crowley","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41795","name":"De Ridder","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41796","name":"Delcambre","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41797","name":"Denham Springs","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41798","name":"Estelle","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41799","name":"Eunice","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41800","name":"Fort Polk South","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41801","name":"French Settlement","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41802","name":"Garyville","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41803","name":"Geismar","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41804","name":"Gretna","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41805","name":"Harahan","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41806","name":"Jefferson","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41807","name":"Jennings","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41808","name":"Kenner","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41809","name":"Lake Charles","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41810","name":"Laplace","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41811","name":"Marrero","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41812","name":"Merrydale","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41813","name":"Metairie","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41814","name":"Morgan City","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41815","name":"Natchitoches","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41816","name":"New Iberia","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41817","name":"New Orleans","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41818","name":"Opelousas","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41819","name":"Pineville","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41820","name":"Pioneer","city_id":"3785","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"is_activated":"1"}, +{"id":"41821","name":"Prairieville","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41822","name":"River Ridge","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41823","name":"Ruston","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41824","name":"Saint Amant","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41825","name":"Saint Martinville","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41826","name":"Shenandoah","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41827","name":"Shreveport","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41828","name":"Slidell","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41829","name":"Sulphur","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41830","name":"Terrytown","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41831","name":"Thibodaux","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41832","name":"Timberlane","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41833","name":"Vinton","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41834","name":"Waggaman","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41835","name":"West Monroe","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41836","name":"Westwego","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41837","name":"Zachary","city_id":"3785","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41838","name":"Bangor","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41839","name":"Biddeford","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41840","name":"Cornish","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41841","name":"Dover-Foxcroft","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41842","name":"Ellsworth","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41843","name":"Gorham","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41844","name":"Greene","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41845","name":"Harmony","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41846","name":"Lyman","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41847","name":"Maine","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41848","name":"New Gloucester","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41849","name":"Norridgewock","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41850","name":"North Yarmouth","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41851","name":"Old Town","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41852","name":"Presque Isle","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41853","name":"Saco","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41854","name":"South Portland","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41855","name":"Spruce Head","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41856","name":"Thomaston","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41857","name":"Waldoboro","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41858","name":"Waterville","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41859","name":"West Buxton","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41860","name":"Westbrook","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41861","name":"Windham","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41862","name":"Yarmouth","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41863","name":"York Harbor","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41864","name":"stockton springs","city_id":"3787","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41865","name":"Accokeek","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41866","name":"Adelphi","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41867","name":"Andrews Air Force Base","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41868","name":"Annapolis","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41869","name":"Arbutus","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41870","name":"Aspen Hill","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41871","name":"Baltimore","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41872","name":"Bel Air North","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41873","name":"Bel Air South","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41874","name":"Beltsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41875","name":"Bethesda","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41876","name":"Bladensburg","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41877","name":"Boonsboro","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41878","name":"Bowie","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41879","name":"Brookeville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41880","name":"Brooklandville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41881","name":"Brooklyn Park","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41882","name":"Burtonsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41883","name":"Calverton","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41884","name":"Camp Springs","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41885","name":"Capitol Heights","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41886","name":"Carney","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41887","name":"Catonsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41888","name":"Chestertown","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41889","name":"Chillum","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41890","name":"Clarksburg","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41891","name":"Cockeysville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41892","name":"Colesville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41893","name":"Columbia","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41894","name":"Cooksville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41895","name":"Coral Hills","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41896","name":"Crofton","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41897","name":"Cumberland","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41898","name":"District Heights","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41899","name":"East Riverdale","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41900","name":"Easton","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41901","name":"Edgemere","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41902","name":"Edgewood","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41903","name":"Eldersburg","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41904","name":"Elkridge","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41905","name":"Elkton","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41906","name":"Ellicott City","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41907","name":"Fairland","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41908","name":"Forest Hill","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41909","name":"Fort Meade","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41910","name":"Fort Washington","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41911","name":"Frederick","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41912","name":"Fredrick","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41913","name":"Friendly","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41914","name":"Gaithersburg","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41915","name":"Germantown","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41916","name":"Glen Burnie","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41917","name":"Glenn Dale","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41918","name":"Greater Landover","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41919","name":"Greater Upper Marlboro","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41920","name":"Green Haven","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41921","name":"Greenbelt","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41922","name":"Hagerstown","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41923","name":"Harmans","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41924","name":"Havre de Grace","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41925","name":"Hillandale","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41926","name":"Hillcrest Heights","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41927","name":"Hunt Valley","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41928","name":"Hurlock","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41929","name":"Hyattsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41930","name":"Ijamsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41931","name":"Jessup","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41932","name":"Joppatowne","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41933","name":"Lake Shore","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41934","name":"Langley Park","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41935","name":"Lanham","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41936","name":"Lanham-Seabrook","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41937","name":"Lansdowne-Baltimore Highlands","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41938","name":"Lexington Park","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41939","name":"Lochearn","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41940","name":"Lutherville-Timonium","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41941","name":"Marriottsville","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41942","name":"Maryland City","city_id":"3788","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"is_activated":"1"}, +{"id":"41943","name":"Mays Chapel","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41944","name":"Middle River","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41945","name":"Milford Mill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41946","name":"Millersville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41947","name":"Mitchellville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41948","name":"Montgomery Village","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41949","name":"National Harbor","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41950","name":"New Carrollton","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41951","name":"North Bethesda","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41952","name":"North Laurel","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41953","name":"North Potomac","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41954","name":"Odenton","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41955","name":"Overlea","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41956","name":"Owings Mills","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41957","name":"Oxon Hill-Glassmanor","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41958","name":"Parkville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41959","name":"Perry Hall","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41960","name":"Pikesville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41961","name":"Poolesville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41962","name":"Potomac","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41963","name":"Randallstown","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41964","name":"Redland","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41965","name":"Reisterstown","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41966","name":"Rockville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41967","name":"Rosaryville","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41968","name":"Rosedale","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41969","name":"Sandy Spring","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41970","name":"Savage Guilford","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41971","name":"Severn","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41972","name":"Severna Park","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41973","name":"Silver Spring","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41974","name":"Snow Hill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41975","name":"South Laurel","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41976","name":"Suitland-Silver Hill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41977","name":"Takoma Park","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41978","name":"Temple Hill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41979","name":"Thurmont","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41980","name":"Timonium","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41981","name":"Towson","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41982","name":"Upper Marlboro","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41983","name":"Waldorf","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41984","name":"Walker Mill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41985","name":"Washington Grove","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41986","name":"Wheaton-Glenmont","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41987","name":"White Oak","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41988","name":"Windsor Mill","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41989","name":"Woodlawn","city_id":"3788","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41990","name":"Abington","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41991","name":"Agawam","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41992","name":"Amherst Center","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41993","name":"Arlington","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41994","name":"Athol","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41995","name":"Attleboro","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41996","name":"Barnstable Town","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41997","name":"Baxboro","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41998","name":"Becket","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"41999","name":"Beverly","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42000","name":"Billerica","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42001","name":"Boylston","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42002","name":"Brockton","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42003","name":"Brookline","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42004","name":"Charlestown","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42005","name":"Chelsea","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42006","name":"Chicopee","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42007","name":"Danvers","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42008","name":"Dedham","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42009","name":"Devens","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42010","name":"Devenscrest","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42011","name":"Duxbury","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42012","name":"Easthampton","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42013","name":"Fairhaven","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42014","name":"Fall River","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42015","name":"Fitchburg","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42016","name":"Framingham","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42017","name":"Gardner","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42018","name":"Great Barrington","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42019","name":"Hadley","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42020","name":"Hingham","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42021","name":"Holbrook","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42022","name":"Holliston","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42023","name":"Holyoke","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42024","name":"Hopedale","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42025","name":"Housatonic","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42026","name":"Hubbardston","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42027","name":"Hull","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42028","name":"Hyannis","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42029","name":"Jamaica Plain","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42030","name":"Lee","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42031","name":"Lenox","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42032","name":"Longmeadow","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42033","name":"Lowell","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42034","name":"Lynn","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42035","name":"Lynnfield","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42036","name":"Marblehead","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42037","name":"Marshfield","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42038","name":"Massachusetts","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42039","name":"Maynard","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42040","name":"Medfield","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42041","name":"Medford","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42042","name":"Medway","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42043","name":"Methuen","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42044","name":"Middleboro","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42045","name":"Monson","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42046","name":"Montague","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42047","name":"Nantucket","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42048","name":"Natick","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42049","name":"Needham","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42050","name":"New Bedford","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42051","name":"Newburyport","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42052","name":"North Adams","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42053","name":"North Andover","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42054","name":"North Attleborough Center","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42055","name":"North Easton","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42056","name":"Northborough","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42057","name":"Peabody","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42058","name":"Pepperell","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42059","name":"Pittsfield","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42060","name":"Provincetown","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42061","name":"Randolph","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42062","name":"Revere","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42063","name":"Roslindale","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42064","name":"Saugus","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42065","name":"Scituate","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42066","name":"Seekonk","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42067","name":"Shelburne Falls","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42068","name":"Sherborn","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42069","name":"South Boston","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42070","name":"South Deerfield","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42071","name":"South Hadley","city_id":"3789","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"is_activated":"1"}, +{"id":"42072","name":"South Lee","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42073","name":"South Yarmouth","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42074","name":"Southborough","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42075","name":"Southbridge","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42076","name":"Stoneham","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42077","name":"Sturbridge","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42078","name":"Swampscott","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42079","name":"Tewksbury","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42080","name":"Three Rivers","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42081","name":"Upton","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42082","name":"Vineyard Haven","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42083","name":"Waltham","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42084","name":"Ware","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42085","name":"Wareham","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42086","name":"Wayland","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42087","name":"Webster","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42088","name":"Wellesley Hills","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42089","name":"West Concord","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42090","name":"West Roxbury","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42091","name":"West Springfield","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42092","name":"West Yarmouth","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42093","name":"Westborough","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42094","name":"Westfield","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42095","name":"Westford","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42096","name":"Wilbraham","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42097","name":"Winthrop","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42098","name":"Woburn","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42099","name":"Yarmouthport","city_id":"3789","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42100","name":"Adrian","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42101","name":"Allegan","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42102","name":"Allen Park","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42103","name":"Alpena","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42104","name":"Ann Arbor","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42105","name":"Attica","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42106","name":"Auburn Hills","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42107","name":"Battle Creek","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42108","name":"Bay City","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42109","name":"Beecher","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42110","name":"Benton Harbor","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42111","name":"Berkley","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42112","name":"Big Rapids","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42113","name":"Bloomfield Hills","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42114","name":"Bloomfield Township","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42115","name":"Boyne City","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42116","name":"Burt","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42117","name":"Burton","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42118","name":"Cadillac","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42119","name":"Charlotte","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42120","name":"Clawson","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42121","name":"Comstock Park","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42122","name":"Coopersville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42123","name":"Cornell","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42124","name":"Cutlerville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42125","name":"Davisburg","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42126","name":"Dearborn","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42127","name":"Dearborn Heights","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42128","name":"Delton","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42129","name":"Detroit","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42130","name":"Dexter","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42131","name":"Dowagiac","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42132","name":"East Grand Rapids","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42133","name":"East Lansing","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42134","name":"Eastpointe","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42135","name":"Ecorse","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42136","name":"Escanaba","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42137","name":"Evart","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42138","name":"Fair Haven","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42139","name":"Fairgrove","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42140","name":"Farmington Hills","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42141","name":"Fenton","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42142","name":"Flint","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42143","name":"Forest Hills","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42144","name":"Fowlerville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42145","name":"Frankenmuth","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42146","name":"Fraser","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42147","name":"Fruitport","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42148","name":"Goodrich","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42149","name":"Grand Blanc","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42150","name":"Grand Haven","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42151","name":"Grand Rapids","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42152","name":"Grandville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42153","name":"Grosse Ile","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42154","name":"Grosse Pointe Farms","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42155","name":"Grosse Pointe Park","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42156","name":"Grosse Pointe Woods","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42157","name":"Gwinn","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42158","name":"Hamtramck","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42159","name":"Hancock","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42160","name":"Harper Woods","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42161","name":"Haslett","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42162","name":"Hazel Park","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42163","name":"Holland","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42164","name":"Holt","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42165","name":"Houghton","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42166","name":"Hudsonville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42167","name":"Huntington Woods","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42168","name":"Imlay","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42169","name":"Inkster","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42170","name":"Jackon","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42171","name":"Jenison","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42172","name":"Kalamazoo","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42173","name":"Kalkaska","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42174","name":"Kentwood","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42175","name":"Kingsford","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42176","name":"Lapeer","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42177","name":"Lincoln Park","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42178","name":"Litchfield","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42179","name":"Livonia","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42180","name":"Ludington","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42181","name":"Madison Heights","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42182","name":"Manistee","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42183","name":"Marquette","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42184","name":"Melvindale","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42185","name":"Mount Clemens","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42186","name":"Mount Morris","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42187","name":"Mount Pleasant","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42188","name":"Mt. Pleasant","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42189","name":"Muskegon","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42190","name":"Muskegon Heights","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42191","name":"New Hudson","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42192","name":"Newaygo","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42193","name":"Northview","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42194","name":"Northville","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42195","name":"Norton Shores","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42196","name":"Novi","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42197","name":"Okemos","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42198","name":"Oscoda","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42199","name":"Owosso","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42200","name":"Petoskey","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42201","name":"Pinckney","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42202","name":"Plymouth Township","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42203","name":"Port Huron","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42204","name":"Redford","city_id":"3791","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"is_activated":"1"}, +{"id":"42205","name":"Reese","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42206","name":"River Rouge","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42207","name":"Rochester Hills","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42208","name":"Romeo","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42209","name":"Romulus","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42210","name":"Saginaw","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42211","name":"Saginaw Township North","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42212","name":"Saginaw Township South","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42213","name":"Saint Clair Shores","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42214","name":"Saint Louis","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42215","name":"Saline","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42216","name":"Saugatuck","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42217","name":"Schoolcraft","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42218","name":"Shelby","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42219","name":"Southfield","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42220","name":"Southgate","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42221","name":"Sterling Heights","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42222","name":"Sturgis","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42223","name":"Taylor","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42224","name":"Traverse City","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42225","name":"Walker","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42226","name":"Walled Lake","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42227","name":"Warren","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42228","name":"Waverly","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42229","name":"Wayne","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42230","name":"West Bloomfield Township","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42231","name":"Westland","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42232","name":"White Lake","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42233","name":"Whitmore Lake","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42234","name":"Williamston","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42235","name":"Wixom","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42236","name":"Woodhaven","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42237","name":"Wyandotte","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42238","name":"Ypsilanti","city_id":"3791","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42239","name":"Albert Lea","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42240","name":"Alger","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42241","name":"Annandale","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42242","name":"Anoka","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42243","name":"Austin","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42244","name":"Baxter","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42245","name":"Bemidji","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42246","name":"Blaine","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42247","name":"Blomkest","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42248","name":"Blue Earth","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42249","name":"Brainerd","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42250","name":"Brooklyn Center","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42251","name":"Burnsville","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42252","name":"Champlin","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42253","name":"Chanhassen","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42254","name":"Chaska","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42255","name":"Chatfield","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42256","name":"Circle Pines","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42257","name":"Cloquet","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42258","name":"Cokato","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42259","name":"Columbia Heights","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42260","name":"Coon Rapids","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42261","name":"Cottage Grove","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42262","name":"Crystal","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42263","name":"Eagan","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42264","name":"East Bethel","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42265","name":"Eden Prairie","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42266","name":"Edina","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42267","name":"Elk River","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42268","name":"Fairmont","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42269","name":"Faribault","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42270","name":"Fergus Falls","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42271","name":"Frazee","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42272","name":"Fridley","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42273","name":"Golden Valley","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42274","name":"Ham Lake","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42275","name":"Hamel","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42276","name":"Hibbing","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42277","name":"Hopkins","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42278","name":"Houston","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42279","name":"Inver Grove Heights","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42280","name":"Isanti","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42281","name":"LaCrescent","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42282","name":"Le Sueur","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42283","name":"Lino Lakes","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42284","name":"Mankato","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42285","name":"Maple Grove","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42286","name":"Maplewood","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42287","name":"Mendota Heights","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42288","name":"Minnetonka","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42289","name":"Moorhead","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42290","name":"Mounds View","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42291","name":"New Brighton","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42292","name":"New Hope","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42293","name":"New Ulm","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42294","name":"North Mankato","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42295","name":"North Saint Paul","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42296","name":"Onamia","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42297","name":"Owatonna","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42298","name":"Pequot Lakes","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42299","name":"Prior Lake","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42300","name":"Red Wing","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42301","name":"Renville","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42302","name":"Richfield","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42303","name":"Robbinsdale","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42304","name":"Rosemount","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42305","name":"Royalton","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42306","name":"Saint Louis Park","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42307","name":"Saint Michael","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42308","name":"Saint Peter","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42309","name":"Sauk Rapids","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42310","name":"Savage","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42311","name":"Shakopee","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42312","name":"Shoreview","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42313","name":"South Saint Paul","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42314","name":"St. Paul","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42315","name":"Stewartville","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42316","name":"Stillwater","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42317","name":"Vadnais Heights","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42318","name":"Waconia","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42319","name":"West Saint Paul","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42320","name":"White Bear Lake","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42321","name":"Willmar","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42322","name":"Winona","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42323","name":"Worthington","city_id":"3792","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42324","name":"Bay Saint Louis","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42325","name":"Biloxi","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42326","name":"Brookhaven","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42327","name":"Byhalia","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42328","name":"Byram","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42329","name":"Clarksdale","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42330","name":"Corinth","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42331","name":"Diamondhead","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42332","name":"Gautier","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42333","name":"Grenada","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42334","name":"Hattiesburg","city_id":"3793","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"is_activated":"1"}, +{"id":"42335","name":"Hernando","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42336","name":"Horn Lake","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42337","name":"Lucedale","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42338","name":"MacComb","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42339","name":"Moselle","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42340","name":"Moss Point","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42341","name":"Natchez","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42342","name":"Ocean Springs","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42343","name":"Olive Branch","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42344","name":"Orange Grove","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42345","name":"Pascagoula","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42346","name":"Pearl","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42347","name":"Pelahatchie","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42348","name":"Picayune","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42349","name":"Ridgeland","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42350","name":"Senatobia","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42351","name":"Southaven","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42352","name":"Southhaven","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42353","name":"Starkville","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42354","name":"Tupelo","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42355","name":"Vicksburg","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42356","name":"Yazoo City","city_id":"3793","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42357","name":"Affton","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42358","name":"Ballwin","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42359","name":"Belgique","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42360","name":"Bellefontaine Neighbors","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42361","name":"Belton","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42362","name":"Blue Springs","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42363","name":"Branson","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42364","name":"Bridgeton","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42365","name":"Camdenton","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42366","name":"Cape Girardeau","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42367","name":"Chaffee","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42368","name":"Chillicothe","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42369","name":"Clever","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42370","name":"Desloge","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42371","name":"Earth City","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42372","name":"Excelsior Springs","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42373","name":"Ferguson","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42374","name":"Florissant","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42375","name":"Forsyth","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42376","name":"Fort Leonard Wood","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42377","name":"Fulton","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42378","name":"Grain Valley","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42379","name":"Grandview","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42380","name":"Gravois Mills","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42381","name":"Hannibal","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42382","name":"Harrisonville","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42383","name":"Hazelwood","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42384","name":"High Ridge","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42385","name":"Jefferson City","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42386","name":"Joplin","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42387","name":"Kennett","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42388","name":"Kirksville","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42389","name":"Kirkwood","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42390","name":"Kissee Mills","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42391","name":"Lamar","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42392","name":"Lees Summit","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42393","name":"Lemay","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42394","name":"Lone Jack","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42395","name":"Maryland Heights","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42396","name":"Mehlville","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42397","name":"Mexico","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42398","name":"Moberly","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42399","name":"Murphy","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42400","name":"Nixa","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42401","name":"Overland","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42402","name":"Pacific","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42403","name":"Park Hills","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42404","name":"Peculiar","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42405","name":"Poplar Bluff","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42406","name":"Raytown","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42407","name":"Rolla","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42408","name":"Saint Ann","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42409","name":"Saint Clair","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42410","name":"Saint Joseph","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42411","name":"Saint Peters","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42412","name":"Sappington","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42413","name":"Sedalia","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42414","name":"Sikeston","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42415","name":"Spanish Lake","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42416","name":"St. Louis","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42417","name":"Steelville","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42418","name":"Sunrise Beach","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42419","name":"Town and Country","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42420","name":"Trimble","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42421","name":"University City","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42422","name":"Warrensburg","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42423","name":"Webb City","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42424","name":"Webster Groves","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42425","name":"Wentzville","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42426","name":"West Plains","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42427","name":"Wildwood","city_id":"3794","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42428","name":"Anaconda-Deer Lodge County","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42429","name":"Arlee","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42430","name":"Belgrade","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42431","name":"Billings","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42432","name":"Bozeman","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42433","name":"Butte","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42434","name":"Butte-Silver Bow","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42435","name":"Great Falls","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42436","name":"Havre","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42437","name":"Helena Valley Southeast","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42438","name":"Helena Valley West Central","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42439","name":"Kalispell","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42440","name":"Lame Deer","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42441","name":"Lewistown","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42442","name":"Malmstrom Air Force Base","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42443","name":"Miles City","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42444","name":"Missoula","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42445","name":"Orchard Homes","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42446","name":"Pablo","city_id":"549","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"is_activated":"1"}, +{"id":"42447","name":"Polson","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42448","name":"Roberts","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42449","name":"Ryegate","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42450","name":"Sidney","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42451","name":"Stevensville","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42452","name":"Whitefish","city_id":"549","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42453","name":"Beatrice","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42454","name":"Bellevue","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42455","name":"Central City","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42456","name":"Cozad","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42457","name":"Creighton","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42458","name":"Gering","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42459","name":"Grand Island","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42460","name":"Keamey","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42461","name":"Kearney","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42462","name":"La Vista","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42463","name":"McCook","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42464","name":"Norfolk","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42465","name":"North Platte","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42466","name":"Offutt Air Force Base West","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42467","name":"Ogallala","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42468","name":"Omaha","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42469","name":"Papillion","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42470","name":"Scottsbluff","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42471","name":"South Sioux City","city_id":"3795","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42472","name":"Boulder City","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42473","name":"Carson City","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42474","name":"Elko","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42475","name":"Goldfield","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42476","name":"Las Vegas","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42477","name":"Laughlin","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42478","name":"Lovelock","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42479","name":"Mesquite","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42480","name":"Nellis Air Force Base","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42481","name":"North Las Vegas","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42482","name":"Pahrump","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42483","name":"Reno","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42484","name":"Sunrise Manor","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42485","name":"Winnemucca","city_id":"3796","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42486","name":"Nashua","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42487","name":"Derry","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42488","name":"Merrimack","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42489","name":"Londonderry","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42490","name":"Keene","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42491","name":"Goffstown","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42492","name":"Laconia","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42493","name":"Hooksett","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42494","name":"Somersworth","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42495","name":"Amherst","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42496","name":"Weare","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42497","name":"Seabrook","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42498","name":"Hollis","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42499","name":"Plaistow","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42500","name":"Bow","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42501","name":"Stratham","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42502","name":"Swanzey","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42503","name":"Gilford","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42504","name":"Atkinson","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42505","name":"Wolfeboro","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42506","name":"Meredith","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42507","name":"Rindge","city_id":"3797","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42508","name":"Jersey City","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42509","name":"Paterson","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42510","name":"Edison","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42511","name":"Toms River","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42512","name":"Brick","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42513","name":"Cherry Hill","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42514","name":"Passaic","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42515","name":"Old Bridge","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42516","name":"Gloucester Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42517","name":"East Orange","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42518","name":"North Bergen","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42519","name":"Union","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42520","name":"Piscataway","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42521","name":"New Brunswick","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42522","name":"Irvington","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42523","name":"Parsippany-Troy Hills","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42524","name":"Howell","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42525","name":"Perth Amboy","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42526","name":"Hoboken","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42527","name":"West New York","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42528","name":"Washington Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42529","name":"East Brunswick","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42530","name":"West Orange","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42531","name":"Bridgewater","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42532","name":"South Brunswick","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42533","name":"Egg Harbor","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42534","name":"Hackensack","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42535","name":"Sayreville","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42536","name":"Mount Laurel","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42537","name":"North Brunswick","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42538","name":"Kearny","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42539","name":"Marlboro","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42540","name":"Teaneck","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42541","name":"Atlantic City","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42542","name":"Manalapan","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42543","name":"Galloway","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42544","name":"Freehold Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42545","name":"Monroe Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42546","name":"Pennsauken","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42547","name":"Ewing","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42548","name":"Fort Lee","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42549","name":"Fair Lawn","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42550","name":"Willingboro","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42551","name":"Long Branch","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42552","name":"Deptford","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42553","name":"Garfield","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42554","name":"City of Orange","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42555","name":"Voorhees","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42556","name":"Millville","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42557","name":"Nutley","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42558","name":"Mount Olive","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42559","name":"Neptune","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42560","name":"Pemberton Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42561","name":"Lacey","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42562","name":"Rahway","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42563","name":"Ocean Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42564","name":"East Windsor","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42565","name":"West Windsor","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42566","name":"Bergenfield","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42567","name":"Bernards Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42568","name":"Stafford Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42569","name":"Hamilton Township","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42570","name":"Paramus","city_id":"3798","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"is_activated":"1"}, +{"id":"42571","name":"Wall","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42572","name":"Mahwah","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42573","name":"West Milford","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42574","name":"Ridgewood","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42575","name":"Rockaway Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42576","name":"Cliffside Park","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42577","name":"Scotch Plains","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42578","name":"South Plainfield","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42579","name":"Roxbury","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42580","name":"Plainsboro","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42581","name":"Lower Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42582","name":"Carteret","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42583","name":"Cranford","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42584","name":"Burlington Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42585","name":"Morris Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42586","name":"Raritan Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42587","name":"North Plainfield","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42588","name":"West Deptford","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42589","name":"Montville","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42590","name":"Summit","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42591","name":"Hillside","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42592","name":"Barnegat","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42593","name":"Moorestown","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42594","name":"Lyndhurst","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42595","name":"Hazlet","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42596","name":"Pleasantville","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42597","name":"Millburn","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42598","name":"Little Egg Harbor","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42599","name":"Sparta","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42600","name":"Palisades Park","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42601","name":"Maple Shade","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42602","name":"Middle Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42603","name":"Glassboro","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42604","name":"Morristown","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42605","name":"Point Pleasant","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42606","name":"Rutherford","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42607","name":"Tinton Falls","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42608","name":"Lindenwold","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42609","name":"Dumont","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42610","name":"Hopewell Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42611","name":"Delran","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42612","name":"Franklin Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42613","name":"Holmdel","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42614","name":"Wyckoff","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42615","name":"Denville","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42616","name":"Secaucus","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42617","name":"South Orange Village","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42618","name":"Readington","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42619","name":"Asbury Park","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42620","name":"Cinnaminson","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42621","name":"Pequannock","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42622","name":"North Arlington","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42623","name":"Mantua","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42624","name":"Hopatcong","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42625","name":"Phillipsburg","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42626","name":"Hammonton","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42627","name":"Clark","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42628","name":"Haddon Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42629","name":"Tenafly","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42630","name":"Branchburg","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42631","name":"Little Falls","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42632","name":"Collingswood","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42633","name":"Saddle Brook","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42634","name":"Robbinsville","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42635","name":"Middlesex","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42636","name":"Metuchen","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42637","name":"Clinton Township","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42638","name":"Pennsville","city_id":"3798","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42639","name":"Albuquerque","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42640","name":"Las Cruces","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42641","name":"Rio Rancho","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42642","name":"South Valley","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42643","name":"Hobbs","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42644","name":"Alamogordo","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42645","name":"Gallup","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42646","name":"Deming","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42647","name":"Los Lunas","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42648","name":"Sunland Park","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42649","name":"Portales","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42650","name":"Los Alamos","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42651","name":"North Valley","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42652","name":"Lovington","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42653","name":"Silver City","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42654","name":"Anthony","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42655","name":"Grants","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42656","name":"Bernalillo","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42657","name":"Shiprock","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42658","name":"Ruidoso","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42659","name":"Kirtland","city_id":"3800","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42660","name":"Airmont","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42661","name":"Alden","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42662","name":"Amityville","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42663","name":"Babylon","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42664","name":"Baldwinsville","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42665","name":"Ballston","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42666","name":"Beacon","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42667","name":"Beekman","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42668","name":"Binghamton","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42669","name":"Blooming Grove","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42670","name":"Briarcliff Manor","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42671","name":"Brockport","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42672","name":"Buffalo","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42673","name":"Camillus","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42674","name":"Canandaigua","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42675","name":"Catskill","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42676","name":"Cheektowaga","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42677","name":"Chenango","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42678","name":"Chestnut Ridge","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42679","name":"Chili","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42680","name":"Clarence","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42681","name":"Clarkstown","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42682","name":"Clay","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42683","name":"Clifton Park","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42684","name":"Cohoes","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42685","name":"Colonie","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42686","name":"Cortland","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42687","name":"Cortlandt","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42688","name":"Croton-on-Hudson","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42689","name":"Depew","city_id":"3801","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"is_activated":"1"}, +{"id":"42690","name":"DeWitt (De Witt)","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42691","name":"Dobbs Ferry","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42692","name":"Dunkirk","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42693","name":"East Fishkill","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42694","name":"East Greenbush","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42695","name":"East Hampton","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42696","name":"East Hills","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42697","name":"East Rockaway","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42698","name":"Eastchester","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42699","name":"Elma","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42700","name":"Endicott","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42701","name":"Esopus","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42702","name":"Fallsburg","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42703","name":"Farmingdale","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42704","name":"Fishkill","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42705","name":"Floral Park","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42706","name":"Gates","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42707","name":"Geddes","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42708","name":"Geneseo","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42709","name":"German Flatts","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42710","name":"Glen Cove","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42711","name":"Glens Falls","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42712","name":"Glenville","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42713","name":"Gloversville","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42714","name":"Great Neck","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42715","name":"Greece","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42716","name":"Greenburgh","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42717","name":"Guilderland","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42718","name":"Halfmoon","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42719","name":"Hamlin","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42720","name":"Hastings-on-Hudson","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42721","name":"Haverstraw","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42722","name":"Hempstead","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42723","name":"Henrietta","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42724","name":"Herkimer","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42725","name":"Highlands","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42726","name":"Hornell","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42727","name":"Horseheads","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42728","name":"Hudson Falls","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42729","name":"Hyde Park","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42730","name":"Ilion","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42731","name":"Irondequoit","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42732","name":"Islip","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42733","name":"Ithaca","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42734","name":"Jamestown","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42735","name":"Johnson City","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42736","name":"Johnstown","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42737","name":"Kenmore","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42738","name":"Kent","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42739","name":"Kingsbury","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42740","name":"Kirkland","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42741","name":"Kiryas Joel","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42742","name":"Lackawanna","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42743","name":"LaGrange (La Grange)","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42744","name":"Lake Grove","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42745","name":"Le Ray","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42746","name":"Lewisboro","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42747","name":"Lloyd","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42748","name":"Lynbrook","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42749","name":"Lysander","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42750","name":"Macedon","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42751","name":"Malone","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42752","name":"Malta","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42753","name":"Malverne","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42754","name":"Mamakating","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42755","name":"Mamaroneck","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42756","name":"Manlius","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42757","name":"Massapequa Park","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42758","name":"Massena","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42759","name":"Mastic Beach","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42760","name":"Mechanicville","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42761","name":"Mendon","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42762","name":"Mineola","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42763","name":"Moreau","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42764","name":"Mount Kisco","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42765","name":"New Hyde Park","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42766","name":"New Paltz","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42767","name":"New Rochelle","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42768","name":"New Square","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42769","name":"New Windsor","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42770","name":"New York","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42771","name":"Newburgh","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42772","name":"Newfane","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42773","name":"Niagara Falls","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42774","name":"Niskayuna","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42775","name":"North Castle","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42776","name":"North Greenbush","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42777","name":"North Hempstead","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42778","name":"North Syracuse","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42779","name":"North Tonawanda","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42780","name":"Nyack","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42781","name":"Ogden","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42782","name":"Ogdensburg","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42783","name":"Olean","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42784","name":"Oneida","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42785","name":"Oneonta","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42786","name":"Onondaga","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42787","name":"Orangetown","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42788","name":"Orchard Park","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42789","name":"Ossining","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42790","name":"Oswego","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42791","name":"Owego","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42792","name":"Patchogue","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42793","name":"Peekskill","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42794","name":"Penfield","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42795","name":"Perinton","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42796","name":"Philipstown","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42797","name":"Pittsford","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42798","name":"Plattekill","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42799","name":"Plattsburgh","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42800","name":"Pleasant Valley","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42801","name":"Port Chester","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42802","name":"Port Jefferson","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42803","name":"Port Jervis","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42804","name":"Poughkeepsie","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42805","name":"Putnam Valley","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42806","name":"Queensbury","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42807","name":"Ramapo","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42808","name":"Red Hook","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42809","name":"Rensselaer","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42810","name":"Riverhead","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42811","name":"Rockville Centre","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42812","name":"Rye","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42813","name":"Rye Brook","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42814","name":"Saratoga Springs","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42815","name":"Saugerties","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42816","name":"Scarsdale","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42817","name":"Schenectady","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42818","name":"Schodack","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42819","name":"Scotia","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42820","name":"Seneca Falls","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42821","name":"Shawangunk","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42822","name":"Sherrill","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42823","name":"Sleepy Hollow","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42824","name":"Smithtown","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42825","name":"Somers","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42826","name":"Southeast","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42827","name":"Southold","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42828","name":"Stony Point","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42829","name":"Suffern","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42830","name":"Sullivan","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42831","name":"Sweden","city_id":"3801","created_at":"2024-01-21 12:47:47","updated_at":"2024-01-21 12:47:47","translations":null,"is_activated":"1"}, +{"id":"42832","name":"Syracuse","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42833","name":"Tarrytown","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42834","name":"Tonawanda","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42835","name":"Ulster","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42836","name":"Valley Stream","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42837","name":"Vestal","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42838","name":"Victor","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42839","name":"Walden","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42840","name":"Wallkill","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42841","name":"Walworth","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42842","name":"Wappinger","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42843","name":"Watervliet","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42844","name":"Wawarsing","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42845","name":"West Haverstraw","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42846","name":"West Seneca","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42847","name":"Wheatfield","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42848","name":"White Plains","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42849","name":"Whitestown","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42850","name":"Williston Park","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42851","name":"Yonkers","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42852","name":"Yorktown","city_id":"3801","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42853","name":"Raleigh","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42854","name":"Greensboro","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42855","name":"Winston-Salem","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42856","name":"High Point","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42857","name":"Asheville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42858","name":"Gastonia","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42859","name":"Chapel Hill","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42860","name":"Rocky Mount","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42861","name":"Huntersville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42862","name":"Wilson","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42863","name":"Kannapolis","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42864","name":"Apex","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42865","name":"Hickory","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42866","name":"Wake Forest","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42867","name":"Indian Trail","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42868","name":"Goldsboro","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42869","name":"Mooresville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42870","name":"New Bern","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42871","name":"Holly Springs","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42872","name":"Matthews","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42873","name":"Garner","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42874","name":"Cornelius","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42875","name":"Asheboro","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42876","name":"Statesville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42877","name":"Mint Hill","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42878","name":"Kernersville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42879","name":"Morrisville","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42880","name":"Fuquay-Varina","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42881","name":"Lumberton","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42882","name":"Kinston","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42883","name":"Carrboro","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42884","name":"Clemmons","city_id":"3802","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42885","name":"Fargo","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42886","name":"Bismarck","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42887","name":"Grand Forks","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42888","name":"Minot","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42889","name":"West Fargo","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42890","name":"Williston","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42891","name":"Dickinson","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42892","name":"Mandan","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42893","name":"Wahpeton","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42894","name":"Devils Lake","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42895","name":"Valley City","city_id":"3803","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42896","name":"Akron","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42897","name":"Alledonia","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42898","name":"Alliance","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42899","name":"Apple Creek","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42900","name":"Archbold","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42901","name":"Ashtabula","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42902","name":"Austintown","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42903","name":"Avon Lake","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42904","name":"Barberton","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42905","name":"Bay Village","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42906","name":"Beachwood","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42907","name":"Beavercreek","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42908","name":"Bedford Heights","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42909","name":"Bellaire","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42910","name":"Bellefontaine","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42911","name":"Bexley","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42912","name":"Blacklick","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42913","name":"Blacklick Estates","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42914","name":"Blanchester","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42915","name":"Blue Ash","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42916","name":"Boardman","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42917","name":"Brecksville","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42918","name":"Bridgetown North","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42919","name":"Bristolville","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42920","name":"Broadview Heights","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42921","name":"Brook Park","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42922","name":"Brooklyn","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42923","name":"Bryan","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42924","name":"Bucyrus","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42925","name":"Canal Winchester","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42926","name":"Celina","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42927","name":"Centerville","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42928","name":"Chagrin Falls","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42929","name":"Chardon","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42930","name":"Chippewa Lake","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42931","name":"Cincinnati","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42932","name":"Circleville","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42933","name":"Cleveland Heights","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42934","name":"Conneaut","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42935","name":"Coshocton","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42936","name":"Cuyahoga Falls","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42937","name":"Dayton","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42938","name":"Defiance","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42939","name":"Delaware","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42940","name":"East Cleveland","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42941","name":"East Liverpool","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42942","name":"Eastlake","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42943","name":"Elyria","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42944","name":"Euclid","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42945","name":"Fairborn","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42946","name":"Fairview Park","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42947","name":"Findlay","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42948","name":"Finneytown","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42949","name":"Fort MacKinley","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42950","name":"Fostoria","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42951","name":"Gahanna","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42952","name":"Galion","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42953","name":"Garfield Heights","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42954","name":"Girard","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42955","name":"Glenwillow","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42956","name":"Green","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42957","name":"Grove City","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42958","name":"Hilliard","city_id":"3804","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"is_activated":"1"}, +{"id":"42959","name":"Hiram","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42960","name":"Huber Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42961","name":"Ironton","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42962","name":"Kidron","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42963","name":"Lewis Center","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42964","name":"Lima","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42965","name":"Lincoln Village","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42966","name":"Lorain","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42967","name":"Macedonia","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42968","name":"Maineville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42969","name":"Maple Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42970","name":"Mason","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42971","name":"Massillon","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42972","name":"Maumee","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42973","name":"Mayfield Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42974","name":"Mentor","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42975","name":"Miamisburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42976","name":"Middleburg Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42977","name":"Millbury","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42978","name":"Mineral City","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42979","name":"Mount Gilead","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42980","name":"Nelsonville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42981","name":"New Philadelphia","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42982","name":"North Canton","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42983","name":"North College Hill","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42984","name":"North Lewisburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42985","name":"North Olmsted","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42986","name":"North Ridgeville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42987","name":"North Royalton","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42988","name":"Norton","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42989","name":"Oberlin","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42990","name":"Ohio","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42991","name":"Oregon","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42992","name":"Overlook-Page Manor","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42993","name":"Painesville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42994","name":"Parma Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42995","name":"Peninsula","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42996","name":"Perrysburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42997","name":"Pickerington","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42998","name":"Piqua","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"42999","name":"Portage Lakes","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43000","name":"Powell","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43001","name":"Reynoldsburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43002","name":"Rittman","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43003","name":"Rocky River","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43004","name":"Rossford","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43005","name":"Sandusky","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43006","name":"Seven Hills","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43007","name":"Seville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43008","name":"Shaker Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43009","name":"Sharonville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43010","name":"Sheffield Lake","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43011","name":"South Euclid","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43012","name":"Steubenville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43013","name":"Stow","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43014","name":"Streetsboro","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43015","name":"Strongsville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43016","name":"Struthers","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43017","name":"Sylvania","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43018","name":"Tallmadge","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43019","name":"Tiffin","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43020","name":"Trotwood","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43021","name":"Twinsburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43022","name":"University Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43023","name":"Upper Arlington","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43024","name":"Van Wert","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43025","name":"Vandalia","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43026","name":"Wadsworth","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43027","name":"Warrensville Heights","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43028","name":"West Carrollton City","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43029","name":"West Chester","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43030","name":"Westerville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43031","name":"Westlake","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43032","name":"Whitehall","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43033","name":"Wickliffe","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43034","name":"Willoughby","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43035","name":"Willowick","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43036","name":"Winesburg","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43037","name":"Wooster","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43038","name":"Xenia","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43039","name":"Yellow Springs","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43040","name":"Youngstown","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43041","name":"Zanesville","city_id":"3804","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43042","name":"Altus","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43043","name":"Ardmore","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43044","name":"Bartlesville","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43045","name":"Bethany","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43046","name":"Bixby","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43047","name":"Broken Arrow","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43048","name":"Catoosa","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43049","name":"Chickasha","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43050","name":"Choctaw","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43051","name":"Claremore","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43052","name":"Del City","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43053","name":"Duncan","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43054","name":"Durant","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43055","name":"Edmond","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43056","name":"El Reno","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43057","name":"Enid","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43058","name":"Fort Sill","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43059","name":"Grove","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43060","name":"Guthrie","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43061","name":"Heavener","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43062","name":"Hugo","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43063","name":"Lawton","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43064","name":"MacAlester","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43065","name":"Midwest City","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43066","name":"Moore","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43067","name":"Morrison","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43068","name":"Muskogee","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43069","name":"Mustang","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43070","name":"Norman","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43071","name":"Oklahoma City","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43072","name":"Okmulgee","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43073","name":"Owasso","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43074","name":"Pawnee","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43075","name":"Ponca City","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43076","name":"Rattan","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43077","name":"Sand Springs","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43078","name":"Sapulpa","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43079","name":"Tahlequah","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43080","name":"The Village","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43081","name":"Tulsa","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43082","name":"Weatherford","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43083","name":"Welch","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43084","name":"Woodward","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43085","name":"Yukon","city_id":"3805","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43086","name":"Point Edward","city_id":"431","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"is_activated":"1"}, +{"id":"43087","name":"Aloha","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43088","name":"Altamont","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43089","name":"Arleta","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43090","name":"Astoria","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43091","name":"Baker City","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43092","name":"Bend","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43093","name":"Canby","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43094","name":"Cave Junction","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43095","name":"Cedar Hills","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43096","name":"Cedar Mill","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43097","name":"Central Point","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43098","name":"City of The Dalles","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43099","name":"Coos Bay","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43100","name":"Corvallis","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43101","name":"Creswell","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43102","name":"Donald","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43103","name":"Eugene","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43104","name":"Forest Grove","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43105","name":"Four Corners","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43106","name":"Glide","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43107","name":"Grants Pass","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43108","name":"Gresham","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43109","name":"Hayesville","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43110","name":"Hermiston","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43111","name":"Hillsboro","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43112","name":"Hood River","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43113","name":"Hubbard","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43114","name":"John Day","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43115","name":"Jordan Valley","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43116","name":"Keizer","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43117","name":"Klamath Falls","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43118","name":"La Grande","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43119","name":"Lake Oswego","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43120","name":"MacMinnville","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43121","name":"Milwaukie","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43122","name":"Newberg","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43123","name":"North Bend","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43124","name":"OBrien","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43125","name":"Oak Grove","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43126","name":"Oatfield","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43127","name":"Oregon City","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43128","name":"Pendleton","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43129","name":"Redmond","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43130","name":"Riddle","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43131","name":"River Road","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43132","name":"Roseburg","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43133","name":"Sublimity","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43134","name":"Sutherlin","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43135","name":"Talent","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43136","name":"Tigard","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43137","name":"Troutdale","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43138","name":"Tualatin","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43139","name":"Turner","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43140","name":"Vaughn","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43141","name":"West Linn","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43142","name":"Wilsonville","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43143","name":"Woodburn","city_id":"3806","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43144","name":"Aliquippa","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43145","name":"Allentown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43146","name":"Ambler","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43147","name":"Audubon","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43148","name":"Back Mountain","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43149","name":"Baldwin","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43150","name":"Beaver Falls","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43151","name":"Belle Vernon","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43152","name":"Bensalem","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43153","name":"Bethel Park","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43154","name":"Bloomsburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43155","name":"Boyertown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43156","name":"Brockway","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43157","name":"Broomall","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43158","name":"Bushkill","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43159","name":"Butler","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43160","name":"Camp Hill","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43161","name":"Canonsburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43162","name":"Carnegie","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43163","name":"Carnot Moon","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43164","name":"Chambersburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43165","name":"Chester Springs","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43166","name":"Clarks Summit","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43167","name":"Coatesville","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43168","name":"Colonial Park","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43169","name":"Conshohocken","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43170","name":"Coraopolis","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43171","name":"Corry","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43172","name":"Cranberry Township","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43173","name":"Cresco","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43174","name":"Dallastown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43175","name":"Darby","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43176","name":"Darby Township","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43177","name":"Downingtown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43178","name":"Drexel Hill","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43179","name":"Duncansville","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43180","name":"Dunmore","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43181","name":"East Norriton","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43182","name":"East Stroudsburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43183","name":"Economy","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43184","name":"Edinboro","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43185","name":"Elkins Park","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43186","name":"Emmaus","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43187","name":"Ephrata","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43188","name":"Erdenheim","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43189","name":"Erie","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43190","name":"Erwinna","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43191","name":"Exton","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43192","name":"Feasterville","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43193","name":"Folcroft","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43194","name":"Furlong","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43195","name":"Gettysburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43196","name":"Gibsonia","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43197","name":"Glenside","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43198","name":"Gordonville","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43199","name":"Hampden Township","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43200","name":"Harleysville","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43201","name":"Harrisburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43202","name":"Harrison Township","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43203","name":"Hatboro","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43204","name":"Haverford","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43205","name":"Havertown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43206","name":"Hazleton","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43207","name":"Hermitage","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43208","name":"Hershey","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43209","name":"Hollidaysburg","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43210","name":"Huntingdon Valley","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43211","name":"Indiana","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43212","name":"Ivyland","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43213","name":"Jeannette","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43214","name":"Jenkintown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43215","name":"Kempton","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43216","name":"Kennett Square","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43217","name":"King of Prussia","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43218","name":"Kutztown","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43219","name":"Lafayette Hill","city_id":"3807","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"is_activated":"1"}, +{"id":"43220","name":"Landenberg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43221","name":"Langhorne","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43222","name":"Lansdale","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43223","name":"Lansdowne","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43224","name":"Lansford","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43225","name":"Laurys Station","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43226","name":"Lehighton","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43227","name":"Lincoln University","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43228","name":"Linesville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43229","name":"Linwood","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43230","name":"Lower Burrell","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43231","name":"Lower Merion","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43232","name":"MacCandless Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43233","name":"MacKeesport","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43234","name":"Meadville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43235","name":"Mechanicsburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43236","name":"Media","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43237","name":"Merion Station","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43238","name":"Middleburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43239","name":"Mifflinville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43240","name":"Milanville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43241","name":"Millersburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43242","name":"Monessen","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43243","name":"Mount Carmel","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43244","name":"Mount Lebanon","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43245","name":"Mountville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43246","name":"Munhall","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43247","name":"Municipality of Monroeville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43248","name":"Municipality of Murrysville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43249","name":"N. Charleroi","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43250","name":"Narberth","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43251","name":"Natrona Heights","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43252","name":"Nether Providence Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43253","name":"New Buffalo","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43254","name":"New Carlisle","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43255","name":"New Cumberland","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43256","name":"New Kensington","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43257","name":"Newville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43258","name":"Norristown","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43259","name":"North East","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43260","name":"North Versailles","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43261","name":"North Wales","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43262","name":"Oaks","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43263","name":"Oil City","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43264","name":"Olyphant","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43265","name":"Orrtanna","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43266","name":"Orwigsburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43267","name":"Paoli","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43268","name":"Parksburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43269","name":"Penn Hills","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43270","name":"Philadelphia","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43271","name":"Phildelphia","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43272","name":"Phoenixville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43273","name":"Pipersville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43274","name":"Pittsburgh","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43275","name":"Plum","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43276","name":"Pocono Summit","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43277","name":"Pottstown","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43278","name":"Pottsville","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43279","name":"Primos","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43280","name":"Prospect","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43281","name":"Quakertown","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43282","name":"Radnor Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43283","name":"Robinson Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43284","name":"Roseto","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43285","name":"Ross Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43286","name":"Royersford","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43287","name":"Sarver","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43288","name":"Saxonburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43289","name":"Scott Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43290","name":"Scranton","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43291","name":"Seward","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43292","name":"Sewickley","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43293","name":"Shaler Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43294","name":"Shermans Dale","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43295","name":"Souderton","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43296","name":"South Park Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43297","name":"State College","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43298","name":"Strasburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43299","name":"Susquehanna","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43300","name":"Swissvale","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43301","name":"Tamaqua","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43302","name":"Trevose","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43303","name":"Turtle Creek","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43304","name":"Tyrone","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43305","name":"Uniontown","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43306","name":"Upper Darby","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43307","name":"Upper Providence Township","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43308","name":"Upper Saint Clair","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43309","name":"Vanderbilt","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43310","name":"Warrendale","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43311","name":"Waynesboro","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43312","name":"West Mifflin","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43313","name":"West Norriton","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43314","name":"West Point","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43315","name":"Wilcox","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43316","name":"Wilkes-Barre","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43317","name":"Wilkinsburg","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43318","name":"Williamsport","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43319","name":"Willow Grove","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43320","name":"Womelsdorf","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43321","name":"Woodlyn","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43322","name":"Woolrich","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43323","name":"Wyncote","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43324","name":"Wyndmoor","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43325","name":"Wynnewood","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43326","name":"Yardley","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43327","name":"Yeadon","city_id":"3807","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43328","name":"Ramey","city_id":"3808","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43329","name":"Cranston","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43330","name":"Pawtucket","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43331","name":"East Providence","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43332","name":"Woonsocket","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43333","name":"North Providence","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43334","name":"South Kingstown","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43335","name":"West Warwick","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43336","name":"Johnston","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43337","name":"North Kingstown","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43338","name":"Westerly","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43339","name":"Smithfield","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43340","name":"Central Falls","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43341","name":"Burrillville","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43342","name":"Narragansett","city_id":"3809","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"is_activated":"1"}, +{"id":"43343","name":"East Greenwich","city_id":"3809","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43344","name":"North Smithfield","city_id":"3809","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43345","name":"Glocester","city_id":"3809","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43346","name":"Hopkinton","city_id":"3809","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43347","name":"North Charleston","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43348","name":"Rock Hill","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43349","name":"Summerville","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43350","name":"Sumter","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43351","name":"Hilton Head Island","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43352","name":"Spartanburg","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43353","name":"Goose Creek","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43354","name":"Aiken","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43355","name":"Myrtle Beach","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43356","name":"Greer","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43357","name":"Mauldin","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43358","name":"North Augusta","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43359","name":"Easley","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43360","name":"Simpsonville","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43361","name":"Hanahan","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43362","name":"West Columbia","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43363","name":"North Myrtle Beach","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43364","name":"Clemson","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43365","name":"Orangeburg","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43366","name":"Cayce","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43367","name":"Bluffton","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43368","name":"Gaffney","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43369","name":"Irmo","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43370","name":"Fort Mill","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43371","name":"Port Royal","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43372","name":"Forest Acres","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43373","name":"Newberry","city_id":"3810","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43374","name":"Sioux Falls","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43375","name":"Rapid City","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43376","name":"Brookings","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43377","name":"Yankton","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43378","name":"Pierre","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43379","name":"Huron","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43380","name":"Spearfish","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43381","name":"Vermillion","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43382","name":"Box Elder","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43383","name":"Belle Fourche","city_id":"3811","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43384","name":"Adamsville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43385","name":"Alcoa","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43386","name":"Bell Buckle","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43387","name":"Blountville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43388","name":"Burns","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43389","name":"Chattanooga","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43390","name":"Collierville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43391","name":"Cookeville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43392","name":"Cornersville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43393","name":"Crossville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43394","name":"Dickson","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43395","name":"Dyersburg","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43396","name":"East Brainerd","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43397","name":"East Ridge","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43398","name":"Elizabethton","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43399","name":"Farragut","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43400","name":"Gainesboro","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43401","name":"Gallatin","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43402","name":"Gatlinburg","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43403","name":"Goodlettsville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43404","name":"Greeneville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43405","name":"Hendersonville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43406","name":"Hixson","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43407","name":"Kingsport","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43408","name":"Knoxville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43409","name":"Kodak","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43410","name":"La Vergne","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43411","name":"Lenoir City","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43412","name":"Lewisburg","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43413","name":"Memphis","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43414","name":"Middle Valley","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43415","name":"Millington","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43416","name":"Murfreesboro","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43417","name":"Ooltewah","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43418","name":"Pinson","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43419","name":"Red Bank","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43420","name":"Selmer","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43421","name":"Sevierville","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43422","name":"Spring City","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43423","name":"Tazewell","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43424","name":"Tullahoma","city_id":"3813","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43425","name":"Abilene","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43426","name":"Aldine","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43427","name":"Alice","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43428","name":"Allen","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43429","name":"Alvin","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43430","name":"Amarillo","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43431","name":"Anderson Mill","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43432","name":"Andrews","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43433","name":"Angleton","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43434","name":"Argyle","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43435","name":"Aspermont","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43436","name":"Atascocita","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43437","name":"Austinn","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43438","name":"Azle","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43439","name":"Balch Springs","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43440","name":"Baytown","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43441","name":"Beeville","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43442","name":"Benbrook","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43443","name":"Big Spring","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43444","name":"Bluff Dale","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43445","name":"Boerne","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43446","name":"Borger","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43447","name":"Breckenridge","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43448","name":"Brenham","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43449","name":"Brownfield","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43450","name":"Brownwood","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43451","name":"Burkburnett","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43452","name":"Burleson","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43453","name":"Canyon","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43454","name":"Cat Spring","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43455","name":"Cedar Hill","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43456","name":"Cedar Park","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43457","name":"Center","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43458","name":"Channelview","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43459","name":"City of Dallas","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43460","name":"Cleburne","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43461","name":"Cloverleaf","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43462","name":"Clute","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43463","name":"College Station","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43464","name":"Colleyville","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43465","name":"Comanche","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43466","name":"Conroe","city_id":"3814","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"is_activated":"1"}, +{"id":"43467","name":"Converse","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43468","name":"Coppell","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43469","name":"Copperas Cove","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43470","name":"Corsicana","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43471","name":"Cotulla","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43472","name":"Crandall","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43473","name":"DeSoto","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43474","name":"Denison","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43475","name":"Donna","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43476","name":"Dumas","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43477","name":"Duncanville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43478","name":"Eagle Pass","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43479","name":"Edinburg","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43480","name":"El Campo","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43481","name":"Elmendorf","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43482","name":"Euless","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43483","name":"Farmers Branch","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43484","name":"Flower Mound","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43485","name":"Forney","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43486","name":"Fort Bliss","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43487","name":"Fort Hood","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43488","name":"Fort Worth","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43489","name":"Friendswood","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43490","name":"Frisco","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43491","name":"Galena Park","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43492","name":"Galveston","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43493","name":"Garland","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43494","name":"Gatesville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43495","name":"Grand Prairie","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43496","name":"Grapeland","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43497","name":"Grapevine","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43498","name":"Gregory","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43499","name":"Groves","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43500","name":"Haltom City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43501","name":"Harker Heights","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43502","name":"Hewitt","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43503","name":"Highland Village","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43504","name":"Humble","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43505","name":"Hurst","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43506","name":"Irving","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43507","name":"Jollyville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43508","name":"Justin","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43509","name":"Katy","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43510","name":"Kaufman","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43511","name":"Keller","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43512","name":"Kemp","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43513","name":"Kerrville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43514","name":"Kilgore","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43515","name":"Killeen","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43516","name":"Kingsville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43517","name":"Kingwood","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43518","name":"La Marque","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43519","name":"Lackland Air Force Base","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43520","name":"Lago Vista","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43521","name":"Lake Jackson","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43522","name":"Lamesa","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43523","name":"Lampasas","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43524","name":"League City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43525","name":"Leon Valley","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43526","name":"Levelland","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43527","name":"Lewisville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43528","name":"Liberty Hill","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43529","name":"Little Elm","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43530","name":"Llano","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43531","name":"Longview","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43532","name":"Lubbock","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43533","name":"Lufkin","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43534","name":"MacAllen","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43535","name":"MacKinney","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43536","name":"McAllen","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43537","name":"McKinney","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43538","name":"Mineral Wells","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43539","name":"Mission","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43540","name":"Mission Bend","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43541","name":"Missouri City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43542","name":"Nacogdoches","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43543","name":"New Braunfels","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43544","name":"New Caney","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43545","name":"North Richland Hills","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43546","name":"North Zulch","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43547","name":"Ovalo","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43548","name":"Palestine","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43549","name":"Pampa","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43550","name":"Pearland","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43551","name":"Pecan Grove","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43552","name":"Pecos","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43553","name":"Pflugerville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43554","name":"Pharr","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43555","name":"Pinehurst","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43556","name":"Plainview","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43557","name":"Plano","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43558","name":"Pontotoc","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43559","name":"Port Arthur","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43560","name":"Port Lavaca","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43561","name":"Port Neches","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43562","name":"Pottsboro","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43563","name":"Richardson","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43564","name":"Rio Grande City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43565","name":"Robstown","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43566","name":"Rockwall","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43567","name":"Rosenberg","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43568","name":"Round Rock","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43569","name":"Rowlett","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43570","name":"Royse City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43571","name":"Sachse","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43572","name":"San Angelo","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43573","name":"Schertz","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43574","name":"Seagoville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43575","name":"Seguin","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43576","name":"Sherman","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43577","name":"Slaton","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43578","name":"Snyder","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43579","name":"South Houston","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43580","name":"South Padre Island","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43581","name":"Southlake","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43582","name":"Stephenville","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43583","name":"Strawn","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43584","name":"Sugar Land","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43585","name":"Sulphur Springs","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43586","name":"Temple","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43587","name":"Terrell","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43588","name":"Texas City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43589","name":"The Colony","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43590","name":"The Woodlands","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43591","name":"Tomball","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43592","name":"Tyler","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43593","name":"Universal City","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43594","name":"Uvalde","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43595","name":"Vidor","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43596","name":"Waco","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43597","name":"Watauga","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43598","name":"Waxahachie","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43599","name":"Weslaco","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43600","name":"West Odessa","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43601","name":"West University Place","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43602","name":"White Settlement","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43603","name":"Wichita Falls","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43604","name":"Winnsboro","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43605","name":"Woodway","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43606","name":"Wylie","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43607","name":"Yoakum","city_id":"3814","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43608","name":"Bedford Kentucky","city_id":"3815","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"is_activated":"1"}, +{"id":"43609","name":"American Fork","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43610","name":"Bluffdale","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43611","name":"Bountiful","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43612","name":"Brigham City","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43613","name":"Canyon Rim","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43614","name":"Castle Dale","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43615","name":"Cedar City","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43616","name":"Clearfield","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43617","name":"Cottonwood Heights","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43618","name":"Cottonwood West","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43619","name":"Draper","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43620","name":"East Millcreek","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43621","name":"Holladay-Cottonwood","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43622","name":"Ivins","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43623","name":"Kaysville","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43624","name":"Kearns","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43625","name":"Layton","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43626","name":"Lehi","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43627","name":"Logan","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43628","name":"Magna","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43629","name":"Mapleton","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43630","name":"Midvale","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43631","name":"Millcreek","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43632","name":"Moab","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43633","name":"North Logan","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43634","name":"North Ogden","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43635","name":"Orem","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43636","name":"Panguitch","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43637","name":"Park City","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43638","name":"Pleasant Grove","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43639","name":"Provo","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43640","name":"Riverton","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43641","name":"Roy","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43642","name":"Salt Lake City","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43643","name":"South Jordan","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43644","name":"South Ogden","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43645","name":"South Salt Lake","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43646","name":"Spanish Fork","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43647","name":"Springville","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43648","name":"Taylorsville","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43649","name":"Tooele","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43650","name":"Tremonton","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43651","name":"West Jordan","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43652","name":"West Valley City","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43653","name":"Woods Cross","city_id":"3752","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43654","name":"Barre","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43655","name":"Bennington","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43656","name":"Brattleboro","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43657","name":"Dummerston","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43658","name":"East Corinth","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43659","name":"East Fairfield","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43660","name":"East Randolph","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43661","name":"Essex Junction","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43662","name":"Grand Isle","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43663","name":"Jericho","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43664","name":"Manchester Center","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43665","name":"Middlebury","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43666","name":"Montpelier","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43667","name":"Putney","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43668","name":"Rutland","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43669","name":"Saint Johnsbury","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43670","name":"Saxtons River","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43671","name":"South Burlington","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43672","name":"South Strafford","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43673","name":"Townshend","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43674","name":"Tunbridge","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43675","name":"Wallingford","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43676","name":"Watisfield","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43677","name":"West Brookfield","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43678","name":"West Charleston","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43679","name":"West Newbury","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43680","name":"Winooski","city_id":"3816","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43681","name":"Ashburn","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43682","name":"Aylett","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43683","name":"Bailey s Crossroads","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43684","name":"Blacksburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43685","name":"Bland","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43686","name":"Bluefield","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43687","name":"Bon Air","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43688","name":"Burke","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43689","name":"Cave Spring","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43690","name":"Centreville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43691","name":"Charlottesville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43692","name":"Chesapeake","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43693","name":"Christiansburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43694","name":"Churchville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43695","name":"Colonial Heights","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43696","name":"Dale City","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43697","name":"Eagle Rock","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43698","name":"East Highland Park","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43699","name":"Faber","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43700","name":"Falls Church","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43701","name":"Fishersville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43702","name":"Fort Hunt","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43703","name":"Franconia","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43704","name":"Fredericksburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43705","name":"Front Royal","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43706","name":"Glen Allen","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43707","name":"Goochland","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43708","name":"Groveton","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43709","name":"Harrisonburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43710","name":"Henrico","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43711","name":"Herndon","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43712","name":"Highland Springs","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43713","name":"Hollins","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43714","name":"Hopewell","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43715","name":"Hybla Valley","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43716","name":"Idylwood","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43717","name":"Jamesville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43718","name":"Keen Mountain","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43719","name":"Lake Ridge","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43720","name":"Lincolnia","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43721","name":"Lorton","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43722","name":"Lynchburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43723","name":"MacLean","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43724","name":"Manassas","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43725","name":"Mclean","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43726","name":"Mechanicsville","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43727","name":"Melfa","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43728","name":"Montross","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43729","name":"Newport News","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43730","name":"North Springfield","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43731","name":"Oakton","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43732","name":"Petersburg","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43733","name":"Poquoson","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43734","name":"Radford","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43735","name":"Reston","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43736","name":"Staffordshire","city_id":"3817","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"is_activated":"1"}, +{"id":"43737","name":"Staunton","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43738","name":"Sugarland Run","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43739","name":"Tappahannock","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43740","name":"Timberlake","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43741","name":"Triangle","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43742","name":"Tuckahoe","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43743","name":"Tysons Corner","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43744","name":"Virginia Beach","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43745","name":"Warrenton","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43746","name":"Williamsburg","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43747","name":"Wolf Trap","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43748","name":"Wytheville","city_id":"3817","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43749","name":"Airway Heights","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43750","name":"Alderwood Manor","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43751","name":"Anacortes","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43752","name":"Bainbridge Island","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43753","name":"Battle Ground","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43754","name":"Bellingham","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43755","name":"Bothell","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43756","name":"Bremerton","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43757","name":"Bryn Mawr-Skyway","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43758","name":"Buckley","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43759","name":"Burien","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43760","name":"Camano Island","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43761","name":"Cascade-Fairwood","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43762","name":"Chehalis","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43763","name":"Cheney","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43764","name":"Clear Lake","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43765","name":"Colbert","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43766","name":"Cottage Lake","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43767","name":"Covington-Sawyer-Wilderness","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43768","name":"Duvall","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43769","name":"East Hill-Meridian","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43770","name":"East Renton Highlands","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43771","name":"East Wenatchee Bench","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43772","name":"Eastsound","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43773","name":"Eatonville","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43774","name":"Edgewood-North Hill","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43775","name":"Edmonds","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43776","name":"Elk Plain","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43777","name":"Ellensburg","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43778","name":"Enumclaw","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43779","name":"Fairchild","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43780","name":"Federal Way","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43781","name":"Fircrest","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43782","name":"Ford","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43783","name":"Fort Lewis","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43784","name":"Friday Harbor","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43785","name":"Gig Harbor","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43786","name":"Graham","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43787","name":"Harbour Pointe","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43788","name":"Inglewood-Finn Hill","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43789","name":"Issaquah","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43790","name":"Kelso","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43791","name":"Kennewick","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43792","name":"Kingsgate","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43793","name":"Lake Serene-North Lynnwood","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43794","name":"Lakeland North","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43795","name":"Lakeland South","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43796","name":"Lynnwood","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43797","name":"Martha Lake","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43798","name":"Mercer Island","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43799","name":"Minnehaha","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43800","name":"Moses Lake","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43801","name":"Mossyrock","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43802","name":"Mountlake Terrace","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43803","name":"Mukilteo","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43804","name":"Newport Hills","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43805","name":"North City-Ridgecrest","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43806","name":"North Creek","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43807","name":"North Marysville","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43808","name":"Oak Harbor","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43809","name":"Ocean Shores","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43810","name":"Olympia","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43811","name":"Opportunity","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43812","name":"Orchards South","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43813","name":"Orting","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43814","name":"Paine Field-Lake Stickney","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43815","name":"Pasco","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43816","name":"Picnic Point-North Lynnwood","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43817","name":"Pine Lake","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43818","name":"Port Angeles","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43819","name":"Port Hadlock","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43820","name":"Port Ludlow","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43821","name":"Port Orchard","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43822","name":"Poulsbo","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43823","name":"Pullman","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43824","name":"Puyallup","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43825","name":"Renton","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43826","name":"Republic","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43827","name":"Richland","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43828","name":"Riverton-Boulevard Park","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43829","name":"Sahalee","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43830","name":"Salmon Creek","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43831","name":"Sammamish","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43832","name":"SeaTac","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43833","name":"Seattle","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43834","name":"Seattle Hill-Silver Firs","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43835","name":"Sedro Woolley","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43836","name":"Shoreline","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43837","name":"Silverdale","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43838","name":"Snohomish","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43839","name":"South Hill","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43840","name":"South Prairie","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43841","name":"South Seattle","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43842","name":"Spanaway","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43843","name":"Spokane","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43844","name":"Sumas","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43845","name":"Sumner","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43846","name":"Sunnyside","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43847","name":"Tacoma","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43848","name":"Tukwila","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43849","name":"Tumwater","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43850","name":"University Place","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43851","name":"Vancouver","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43852","name":"Vashon","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43853","name":"Walla Walla","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43854","name":"Washougal","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43855","name":"Wenatchee","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43856","name":"West Lake Stevens","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43857","name":"White Center","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43858","name":"White Salmon","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43859","name":"White Swan","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43860","name":"Woodinville","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43861","name":"Yakima","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43862","name":"Yelm","city_id":"3818","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43863","name":"Morgantown","city_id":"3819","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43864","name":"Parkersburg","city_id":"3819","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43865","name":"Weirton","city_id":"3819","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43866","name":"Martinsburg","city_id":"3819","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43867","name":"Beckley","city_id":"3819","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"is_activated":"1"}, +{"id":"43868","name":"South Charleston","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43869","name":"Moundsville","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43870","name":"Oak Hill","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43871","name":"Dunbar","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43872","name":"Elkins","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43873","name":"Nitro","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43874","name":"Hurricane","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43875","name":"Charles Town","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43876","name":"Buckhannon","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43877","name":"Keyser","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43878","name":"New Martinsville","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43879","name":"Grafton","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43880","name":"Ranson","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43881","name":"Westover","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43882","name":"Ravenswood","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43883","name":"Summersville","city_id":"3819","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43884","name":"Adams","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43885","name":"Allouez","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43886","name":"Appleton","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43887","name":"Ashwaubenon","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43888","name":"Baraboo","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43889","name":"Beaver Dam","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43890","name":"Beloit","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43891","name":"Brown Deer","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43892","name":"Carter","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43893","name":"Cedarburg","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43894","name":"Chippewa Falls","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43895","name":"De Pere","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43896","name":"Delafield","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43897","name":"Eau Claire","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43898","name":"Elkhorn","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43899","name":"Elroy","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43900","name":"Fond du Lac","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43901","name":"Fort Atkinson","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43902","name":"Galesville","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43903","name":"Glen Flora","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43904","name":"Goodman","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43905","name":"Green Bay","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43906","name":"Greendale","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43907","name":"Hartland","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43908","name":"Howard","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43909","name":"Janesville","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43910","name":"Kaukauna","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43911","name":"Kenosha","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43912","name":"Kohler","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43913","name":"La Crosse","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43914","name":"Little Chute","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43915","name":"Manitowoc","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43916","name":"Marinette","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43917","name":"Menasha","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43918","name":"Menomonee Falls","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43919","name":"Menomonie","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43920","name":"Mequon","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43921","name":"Merrill","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43922","name":"Milwaukee","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43923","name":"Mineral Point","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43924","name":"Mukwonago","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43925","name":"Muskego","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43926","name":"Neenah","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43927","name":"New Berlin","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43928","name":"Oak Creek","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43929","name":"Oconomowoc","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43930","name":"Onalaska","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43931","name":"Orfordville","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43932","name":"Oshkosh","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43933","name":"Pigeon Falls","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43934","name":"Platteville","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43935","name":"Pleasant Prairie","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43936","name":"Plover","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43937","name":"Port Washington","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43938","name":"Pound","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43939","name":"Racine","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43940","name":"Reedsburg","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43941","name":"Rhinelander","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43942","name":"River Falls","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43943","name":"Saint Francis","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43944","name":"Sheboygan","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43945","name":"Shorewood","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43946","name":"South Milwaukee","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43947","name":"Stevens Point","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43948","name":"Stoughton","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43949","name":"Strum","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43950","name":"Sturtevant","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43951","name":"Sun Prairie","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43952","name":"Three Lakes","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43953","name":"Tomah","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43954","name":"Two Rivers","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43955","name":"Washington Island","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43956","name":"Waukesha","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43957","name":"Waupun","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43958","name":"Wausau","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43959","name":"Wautoma","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43960","name":"Wauwatosa","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43961","name":"West Allis","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43962","name":"West Bend","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43963","name":"Whitefish Bay","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43964","name":"Whitewater","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43965","name":"Wisconsin Rapids","city_id":"3820","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43966","name":"Casper","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43967","name":"Cheyenne","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43968","name":"Cody","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43969","name":"Gillette","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43970","name":"Green River","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43971","name":"Lander","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43972","name":"Laramie","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43973","name":"Rawlins","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43974","name":"Rock Springs","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43975","name":"Worland","city_id":"3821","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43976","name":"Artigas","city_id":"3823","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43977","name":"Bella Union","city_id":"3823","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"is_activated":"1"}, +{"id":"43978","name":"Camino Maldonado","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43979","name":"Canelones","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43980","name":"Ciudad de la Costa","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43981","name":"Juan Antonio Artigas","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43982","name":"Las Piedras","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43983","name":"Pando","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43984","name":"Paso de Carrasco","city_id":"3824","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43985","name":"Carmelo","city_id":"3826","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43986","name":"Juan Lacaze","city_id":"3826","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43987","name":"Nueva Helvecia","city_id":"3826","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43988","name":"Durazno","city_id":"3827","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43989","name":"Maldonado","city_id":"3830","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43990","name":"Montevideo","city_id":"3831","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43991","name":"Paysandu","city_id":"3832","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43992","name":"Chuy","city_id":"3834","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43993","name":"Rocha","city_id":"3834","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43994","name":"Salto","city_id":"3835","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43995","name":"Paso de los Toros","city_id":"3837","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43996","name":"Tacuarembo","city_id":"3837","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43997","name":"Ahunabayev","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43998","name":"Andijon","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"43999","name":"Boz","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44000","name":"Hakkulobod","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44001","name":"Hocaobod","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44002","name":"Honobod","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44003","name":"Ilyichevsk","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44004","name":"Karabagis","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44005","name":"Kurgontepa","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44006","name":"Marhomat","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44007","name":"Pahtaobod","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44008","name":"Paytug","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44009","name":"Sahrihan","city_id":"3839","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44010","name":"Buhoro","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44011","name":"Cangeldi","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44012","name":"Galaosiye","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44013","name":"Gazli","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44014","name":"Gijduvon","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44015","name":"Kizilravbe","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44016","name":"Kogon","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44017","name":"Korakul","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44018","name":"Korovulbazar","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44019","name":"Kukca","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44020","name":"Oyokkuduk","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44021","name":"Romitan","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44022","name":"Safirkon","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44023","name":"Vobkent","city_id":"3840","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"is_activated":"1"}, +{"id":"44024","name":"Cizah","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44025","name":"Dustlik","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44026","name":"Gallaorol","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44027","name":"Marcanbulok","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44028","name":"Pahtakor","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44029","name":"Ulyanovo","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44030","name":"Zomin","city_id":"3841","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44031","name":"Altyarik","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44032","name":"Avval","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44033","name":"Besarik","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44034","name":"Fargona","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44035","name":"Hamza","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44036","name":"Kirgili","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44037","name":"Kukon","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44038","name":"Kuva","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44039","name":"Kuvasoy","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44040","name":"Margilon","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44041","name":"Rapkan","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44042","name":"Riston","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44043","name":"Toslok","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44044","name":"Yaypan","city_id":"3842","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44045","name":"Drujba","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44046","name":"Gurlan","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44047","name":"Hazorasp","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44048","name":"Heva","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44049","name":"Honko","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44050","name":"Kuskupir","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44051","name":"Mesekli","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44052","name":"Sovot","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44053","name":"Turpokkala","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44054","name":"Urgenc","city_id":"3843","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44055","name":"Beskent","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44056","name":"Ceynau","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44057","name":"Cirakci","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44058","name":"Dehkanobod","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44059","name":"Dinau","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44060","name":"Guzor","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44061","name":"Kallig","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44062","name":"Kamasi","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44063","name":"Karabag","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44064","name":"Karsi","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44065","name":"Kasbi","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44066","name":"Kitob","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44067","name":"Koson","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44068","name":"Madaniyat","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44069","name":"Maydayap","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44070","name":"Maymanak","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44071","name":"Muborak","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44072","name":"Oktyabrskiy","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44073","name":"Sahrisabz","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44074","name":"Talimarcon","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44075","name":"Urtacim","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44076","name":"Yakkabog","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44077","name":"Yaninison","city_id":"3844","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44078","name":"Beruni","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44079","name":"Cimboy","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44080","name":"Halkobod","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44081","name":"Hucayli","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44082","name":"Karauzyak","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44083","name":"Kegayli","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44084","name":"Kizketken","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44085","name":"Kozokdaryo","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44086","name":"Kungirot","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44087","name":"Mangit","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44088","name":"Muynok","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44089","name":"Nukus","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44090","name":"Tahiatos","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44091","name":"Tahtakupir","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44092","name":"Turtkul","city_id":"3845","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44093","name":"Aytim","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44094","name":"Besbulok","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44095","name":"Cartak","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44096","name":"Cingeldi","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44097","name":"Cust","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44098","name":"Gozgon","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44099","name":"Iskavat","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44100","name":"Kalkuduk","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44101","name":"Konimeh","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44102","name":"Kosonsoy","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44103","name":"Minbulok","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44104","name":"Namangan","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44105","name":"Nurota","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44106","name":"Pop","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44107","name":"Tomdibulok","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44108","name":"Tosbulok","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44109","name":"Turakurgon","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44110","name":"Uckurgon","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44111","name":"Unhoyat","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44112","name":"Uyci","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44113","name":"Uzunkuduk","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44114","name":"Yanikurgon","city_id":"3846","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44115","name":"Karmana","city_id":"3847","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44116","name":"Kiziltepa","city_id":"3847","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44117","name":"Navoi","city_id":"3847","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44118","name":"Uckuduk","city_id":"3847","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44119","name":"Zarafson","city_id":"3847","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44120","name":"Bulungur","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44121","name":"Camboy","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44122","name":"Carhin","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44123","name":"Celak","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44124","name":"Cuma","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44125","name":"Dahbed","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44126","name":"Istihon","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44127","name":"Kattakurgon","city_id":"3848","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"is_activated":"1"}, +{"id":"44128","name":"Kusrobod","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44129","name":"Nurobod","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44130","name":"Oktos","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44131","name":"Paysanba","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44132","name":"Samarkand","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44133","name":"Superfosfatniy","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44134","name":"Urgut","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44135","name":"Yanirobod","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44136","name":"Ziadin","city_id":"3848","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44137","name":"Baht","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44138","name":"Guliston","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44139","name":"Hovos","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44140","name":"Sirdare","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44141","name":"Sirin","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44142","name":"Yaniyer","city_id":"3849","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44143","name":"Akkurgon","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44144","name":"Boysun","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44145","name":"Carkurgon","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44146","name":"Denau","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44147","name":"Kumkurgon","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44148","name":"Paskurd","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44149","name":"Sargun","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44150","name":"Sariasiya","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44151","name":"Serobod","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44152","name":"Surci","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44153","name":"Termiz","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44154","name":"Zan","city_id":"3850","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44155","name":"Almazar","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44156","name":"Angren","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44157","name":"Bekobod","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44158","name":"Bektemir","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44159","name":"Buka","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44160","name":"Cinoz","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44161","name":"Circik","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44162","name":"Gazalkent","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44163","name":"Iskandar","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44164","name":"Kibray","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44165","name":"Krasnogorskiy","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44166","name":"Kuyluk","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44167","name":"Ohangaron","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44168","name":"Olmalik","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44169","name":"Parkent","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44170","name":"Pskent","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44171","name":"Salar","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44172","name":"Soldatski","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44173","name":"Tashkent","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44174","name":"Toskent","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44175","name":"Tuytepa","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44176","name":"Urtaaul","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44177","name":"Yaniobod","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44178","name":"Yaniyul","city_id":"3851","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44179","name":"Lakatoro","city_id":"3852","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44180","name":"Norsup","city_id":"3852","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44181","name":"Longana","city_id":"3853","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44182","name":"Luganville","city_id":"3854","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44183","name":"Port Olry","city_id":"3854","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44184","name":"Vila","city_id":"3855","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44185","name":"Isangel","city_id":"3856","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44186","name":"Puerto Ayacucho","city_id":"511","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44187","name":"Anaco","city_id":"3858","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44188","name":"Cantaura","city_id":"3858","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44189","name":"El Tigre","city_id":"3858","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44190","name":"Puerto la Cruz","city_id":"3858","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44191","name":"San Jose de Guanipa","city_id":"3858","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44192","name":"Guasdualito","city_id":"3859","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44193","name":"Cagua","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44194","name":"Las Teyerias","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44195","name":"Maracay","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44196","name":"Palo Negro","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44197","name":"Turmero","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44198","name":"Villa de Cura","city_id":"3860","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44199","name":"Barinas","city_id":"3861","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44200","name":"Barinitas","city_id":"3861","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44201","name":"Ciudad Bolivar","city_id":"764","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44202","name":"Ciudad Guayana","city_id":"764","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44203","name":"Upata","city_id":"764","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"is_activated":"1"}, +{"id":"44204","name":"Goaigoaza","city_id":"3862","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44205","name":"Guacara","city_id":"3862","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44206","name":"Guigue","city_id":"3862","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44207","name":"Mariara","city_id":"3862","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44208","name":"Puerto Cabello","city_id":"3862","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44209","name":"Tinaquillo","city_id":"3863","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44210","name":"Coro","city_id":"3865","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44211","name":"Punta Cardon","city_id":"3865","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44212","name":"Punto Fijo","city_id":"3865","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44213","name":"Altagracia de Orituco","city_id":"3866","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44214","name":"Calabozo","city_id":"3866","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44215","name":"San Juan de los Morros","city_id":"3866","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44216","name":"Valle de la Pascua","city_id":"3866","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44217","name":"Zaraza","city_id":"3866","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44218","name":"Barquisimeto","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44219","name":"Cabudare","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44220","name":"Carora","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44221","name":"El Tocuyo","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44222","name":"Los Rastrojos","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44223","name":"Quibor","city_id":"3867","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44224","name":"Ejido","city_id":"3868","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44225","name":"El Vigia","city_id":"3868","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44226","name":"Baruta","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44227","name":"Carrizal","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44228","name":"Catia La Mar","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44229","name":"Caucaguita","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44230","name":"Chacao","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44231","name":"Charallave","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44232","name":"Cua","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44233","name":"El Cafetal","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44234","name":"El Hatillo","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44235","name":"Filas de Mariche","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44236","name":"Guarenas","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44237","name":"Guatire","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44238","name":"La Dolorita","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44239","name":"Los Dos Caminos","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44240","name":"Los Teques","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44241","name":"Ocumare del Tuy","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44242","name":"Petare","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44243","name":"San Antonio de los Altos","city_id":"3869","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44244","name":"Maturin","city_id":"3870","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44245","name":"Acarigua","city_id":"3872","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44246","name":"Araure","city_id":"3872","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44247","name":"Guanare","city_id":"3872","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44248","name":"Villa Bruzual","city_id":"3872","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44249","name":"Carupano","city_id":"785","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44250","name":"Cumana","city_id":"785","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44251","name":"La Fria","city_id":"3873","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44252","name":"Rubio","city_id":"3873","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44253","name":"San Antonio del Tachira","city_id":"3873","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44254","name":"San Juan de Colon","city_id":"3873","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44255","name":"Tariba","city_id":"3873","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44256","name":"Valera","city_id":"3874","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44257","name":"Caraballeda","city_id":"3875","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44258","name":"La Guaira","city_id":"3875","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44259","name":"Maiquetia","city_id":"3875","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44260","name":"Chivacoa","city_id":"3876","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44261","name":"Nirgua","city_id":"3876","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44262","name":"Yaritagua","city_id":"3876","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44263","name":"Bachaquero","city_id":"3877","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"is_activated":"1"}, +{"id":"44264","name":"Cabimas","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44265","name":"Ciudad Ojeda","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44266","name":"Machiques","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44267","name":"Maracaibo","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44268","name":"San Carlos del Zulia","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44269","name":"Villa del Rosario","city_id":"3877","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44270","name":"Ha noi","city_id":"3887","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44271","name":"Hoang Mai","city_id":"3887","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44272","name":"Lang Ha","city_id":"3887","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44273","name":"Settlement","city_id":"3898","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44274","name":"East End-Long Look","city_id":"3900","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44275","name":"Road Town","city_id":"3900","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44276","name":"West End","city_id":"3900","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44277","name":"Kolia","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44278","name":"Mala e","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44279","name":"Poi","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44280","name":"Taoa","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44281","name":"Tuatafa","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44282","name":"Vele","city_id":"3902","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"is_activated":"1"}, +{"id":"44283","name":"Fiua","city_id":"3903","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44284","name":"Leava","city_id":"3903","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44285","name":"Nuku","city_id":"3903","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44286","name":"Toloke","city_id":"3903","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44287","name":"Vaisei","city_id":"3903","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44288","name":"Ahoa","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44289","name":"Aka Aka","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44290","name":"Alele","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44291","name":"Falaleu","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44292","name":"Gahi","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44293","name":"Haafuasia","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44294","name":"Haatofo","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44295","name":"Halalo","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44296","name":"Kolopopo","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44297","name":"Lavegahau","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44298","name":"Liku","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44299","name":"Malaefoou","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44300","name":"Mata Utu","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44301","name":"Teesi","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44302","name":"Tepa","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44303","name":"Utuofa","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44304","name":"Vailala","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44305","name":"Vaimalau","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44306","name":"Vaitupu","city_id":"3904","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44307","name":"ad-Dakhlah","city_id":"3906","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44308","name":"al- Ayun","city_id":"3907","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44309","name":"as-Samarah","city_id":"3908","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44310","name":" Adan","city_id":"3909","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44311","name":"Aden","city_id":"3909","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44312","name":"Ahwar","city_id":"3910","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44313","name":"Ja ar","city_id":"3910","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44314","name":"Zinjibar","city_id":"3910","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44315","name":"Dhamar","city_id":"3911","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44316","name":"Shaqra ","city_id":"3912","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44317","name":"al-Mukalla","city_id":"3912","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44318","name":"ash-Shahir","city_id":"3912","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44319","name":"Hajjah","city_id":"3913","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44320","name":"Hodaidah","city_id":"3914","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44321","name":"Dhi Sufal","city_id":"3915","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44322","name":"Ibb","city_id":"3915","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44323","name":"Jiblah","city_id":"3915","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44324","name":"Qa tabah","city_id":"3915","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44325","name":"Yarim","city_id":"3915","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44326","name":"Tuban","city_id":"3916","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44327","name":"Ma rib","city_id":"3917","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44328","name":"Sa dah","city_id":"3919","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"is_activated":"1"}, +{"id":"44329","name":" Amran","city_id":"3920","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44330","name":"Sahar","city_id":"3920","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44331","name":"Sanaa","city_id":"3920","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44332","name":"Sayyan","city_id":"3920","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44333","name":" Ataq","city_id":"3921","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44334","name":"Habban","city_id":"3921","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44335","name":"Taiz","city_id":"3921","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44336","name":"Ta izz","city_id":"3922","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44337","name":"al-Mukha","city_id":"3922","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44338","name":"Raydah","city_id":"3923","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44339","name":"al-Bayda","city_id":"3923","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44340","name":"Bajil","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44341","name":"Bayt-al-Faqih","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44342","name":"Zabid","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44343","name":"al-Hudaydah","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44344","name":"al-Marawi ah","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44345","name":"az-Zaydiyah","city_id":"3924","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44346","name":"al-Hazm","city_id":"3925","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44347","name":"al-Ghaydah","city_id":"3926","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44348","name":"Mahwit","city_id":"3927","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44349","name":"Kabwe","city_id":"1102","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44350","name":"Kapiri Mposhi","city_id":"1102","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44351","name":"Mkushi","city_id":"1102","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44352","name":"Mumbwa","city_id":"1102","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44353","name":"Serenje","city_id":"1102","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44354","name":"Chambishi","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44355","name":"Chililabombwe","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44356","name":"Chingola","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44357","name":"Kalulushi","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44358","name":"Kitwe","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44359","name":"Luanshya","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44360","name":"Mpongwe","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44361","name":"Mufulira","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44362","name":"Ndola","city_id":"3928","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44363","name":"Katete","city_id":"140","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44364","name":"Lundazi","city_id":"140","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44365","name":"Petauke","city_id":"140","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44366","name":"Mwansabombwe","city_id":"3929","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44367","name":"Nchelenge","city_id":"3929","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44368","name":"Samfya","city_id":"3929","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44369","name":"Chilanga","city_id":"3930","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44370","name":"Kafue","city_id":"3930","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44371","name":"Lusaka","city_id":"3930","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44372","name":"Kalengwa","city_id":"3931","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44373","name":"Kansanshi","city_id":"3931","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44374","name":"Mwinilunga","city_id":"3931","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44375","name":"Solwezi","city_id":"3931","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44376","name":"Zambezi","city_id":"3931","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44377","name":"Chinsali","city_id":"1103","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44378","name":"Isoka","city_id":"1103","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44379","name":"Mbala","city_id":"1103","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44380","name":"Mpika","city_id":"1103","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44381","name":"Choma","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44382","name":"Itezhi-Tezhi","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44383","name":"Kalomo","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44384","name":"Livingstone","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44385","name":"Maamba","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44386","name":"Mazabuka","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44387","name":"Monze","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44388","name":"Nakambala","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44389","name":"Siavonga","city_id":"1089","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44390","name":"Kalabo","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44391","name":"Kaoma","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44392","name":"Limulunga","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44393","name":"Mongu","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44394","name":"Senanga","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44395","name":"Sesheke","city_id":"143","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44396","name":"Bulawayo","city_id":"3932","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"is_activated":"1"}, +{"id":"44397","name":"Chitungwiza","city_id":"3933","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44398","name":"Harare","city_id":"3933","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44399","name":"Chimanimani","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44400","name":"Chipinge","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44401","name":"Mutare","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44402","name":"Nyanga","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44403","name":"Rusape","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44404","name":"Sakubva","city_id":"3934","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44405","name":"Chiredzi","city_id":"3938","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44406","name":"Gaths","city_id":"3938","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44407","name":"Masvingo","city_id":"3938","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44408","name":"Chivhu","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44409","name":"Gweru","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44410","name":"Kwekwe","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44411","name":"Mvuma","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44412","name":"Redcliffe","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44413","name":"Shurugwi","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44414","name":"Zvishavane","city_id":"3941","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44415","name":"Eshkashem","city_id":"3942","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44416","name":"Fayzabad","city_id":"3942","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44417","name":"Jurm","city_id":"3942","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44418","name":"Khandud","city_id":"3942","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44419","name":"Qal eh-ye Panjeh","city_id":"3942","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44420","name":"Bala Morghab","city_id":"3943","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44421","name":"Qal eh-ye Naw","city_id":"3943","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44422","name":"Andarab","city_id":"3944","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44423","name":"Baghlan","city_id":"3944","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44424","name":"Dahaneh-ye Ghawri","city_id":"3944","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44425","name":"Nahrin","city_id":"3944","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44426","name":"Pol-e Khumri","city_id":"3944","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44427","name":"Balkh","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44428","name":"Dawlatabad","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44429","name":"Mazar-e Sharif","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44430","name":"Qarchi Gak","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44431","name":"Shulgara","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44432","name":"Tash Gozar","city_id":"3945","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44433","name":"Bamiyan","city_id":"3946","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44434","name":"Panjab","city_id":"3946","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44435","name":"Qil Qal eh","city_id":"3946","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44436","name":"Anar Darreh","city_id":"3947","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44437","name":"Shindand","city_id":"3947","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44438","name":"Andkhvoy","city_id":"3948","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44439","name":"Darzi Ab","city_id":"3948","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44440","name":"Maymanah","city_id":"3948","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44441","name":"Chaghcharan","city_id":"3949","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44442","name":"Shahrak","city_id":"3949","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44443","name":"Taywarah","city_id":"3949","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44444","name":"Ghazni","city_id":"3950","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44445","name":"Awbeh","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44446","name":"Eslam Qal eh","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44447","name":"Ghurian","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44448","name":"Herat","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44449","name":"Karukh","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44450","name":"Kuhestan","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44451","name":"Kushk","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44452","name":"Qarabagh","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44453","name":"Tawraghudi","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44454","name":"Tir Pol","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44455","name":"Zendejan","city_id":"3951","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"is_activated":"1"}, +{"id":"44456","name":"Baghran","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44457","name":"Darwishan","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44458","name":"Deh Shu","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44459","name":"Gereshk","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44460","name":"Lashkar Gah","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44461","name":"Sangin","city_id":"3952","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44462","name":"Aqchah","city_id":"3953","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44463","name":"Qarqin","city_id":"3953","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44464","name":"Sang-e Charak","city_id":"3953","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44465","name":"Shibarghan","city_id":"3953","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44466","name":"Baghrami","city_id":"3954","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44467","name":"Mir Bachchekut","city_id":"3954","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44468","name":"Paghman","city_id":"3954","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44469","name":"Sarawbi","city_id":"3954","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44470","name":"Mahmud-e Raqi","city_id":"3955","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44471","name":"Taghab","city_id":"3955","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44472","name":"Khawst","city_id":"3956","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44473","name":"Asmar","city_id":"3957","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44474","name":"Mehtar Lam","city_id":"3958","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44475","name":"Azraw","city_id":"3959","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44476","name":"Baraki Barak","city_id":"3959","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44477","name":"Pol-e Alam","city_id":"3959","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44478","name":"Achin","city_id":"3960","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44479","name":"Batsawul","city_id":"3960","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44480","name":"Hugyani","city_id":"3960","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44481","name":"Nader Shah Kawt","city_id":"3960","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44482","name":"Chahar Burjak","city_id":"3961","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44483","name":"Chakhansur","city_id":"3961","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44484","name":"Khash","city_id":"3961","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44485","name":"Mirabad","city_id":"3961","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44486","name":"Zaranj","city_id":"3961","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44487","name":"Nuristan","city_id":"3962","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44488","name":"Orgun","city_id":"3963","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44489","name":"Zareh Sharan","city_id":"3963","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44490","name":"Zarghun Shahr","city_id":"3963","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44491","name":" Ali Khayl","city_id":"3964","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44492","name":"Ghardez","city_id":"3964","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44493","name":"Charikar","city_id":"3965","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44494","name":"Jabal-os-Saraj","city_id":"3965","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44495","name":"Qandahar","city_id":"3966","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44496","name":"Dasht-e Archa","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44497","name":"Emam Saheb","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44498","name":"Hazart Imam","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44499","name":"Khanabad","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44500","name":"Qal eh-ye Zal","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44501","name":"Qunduz","city_id":"3967","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44502","name":"Aybak","city_id":"3968","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44503","name":"Kholm","city_id":"3968","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44504","name":"Chah Ab","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44505","name":"Eshkamesh","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44506","name":"Farkhar","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44507","name":"Khwajeh Ghar","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44508","name":"Rostaq","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44509","name":"Taloqan","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44510","name":"Yangi Qal eh","city_id":"3970","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"is_activated":"1"}, +{"id":"44511","name":"Deh Rawud","city_id":"3971","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44512","name":"Gaz Ab","city_id":"3971","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44513","name":"Tarin Kawt","city_id":"3971","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44514","name":"Uruzgan","city_id":"3971","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44515","name":"Gardan Diwal","city_id":"3972","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44516","name":"Maydanshahr","city_id":"3972","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"}, +{"id":"44517","name":"Qalat-e Ghilzay","city_id":"3973","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"is_activated":"1"} +] diff --git a/database/data/areas.sql b/database/data/areas.sql deleted file mode 100644 index 7938fe9..0000000 --- a/database/data/areas.sql +++ /dev/null @@ -1,44586 +0,0 @@ -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(1, 'القاهرة', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(2, 'الجيزة', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(3, 'السادس من أكتوبر', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(4, 'الشيخ زايد', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(5, 'الحوامدية', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(6, 'البدرشين', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(7, 'الصف', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(8, 'أطفيح', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(9, 'العياط', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(10, 'الباويطي', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(11, 'منشأة القناطر', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(12, 'أوسيم', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(13, 'كرداسة', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(14, 'أبو النمرس', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(15, 'كفر غطاطي', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(16, 'منشأة البكاري', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(17, 'الأسكندرية', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(18, 'برج العرب', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(19, 'برج العرب الجديدة', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(20, 'بنها', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(21, 'قليوب', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(22, 'شبرا الخيمة', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(23, 'القناطر الخيرية', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(24, 'الخانكة', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(25, 'كفر شكر', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(26, 'طوخ', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(27, 'قها', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(28, 'العبور', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(29, 'الخصوص', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(30, 'شبين القناطر', 12, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(31, 'دمنهور', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(32, 'كفر الدوار', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(33, 'رشيد', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(34, 'إدكو', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(35, 'أبو المطامير', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(36, 'أبو حمص', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(37, 'الدلنجات', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(38, 'المحمودية', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(39, 'الرحمانية', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(40, 'إيتاي البارود', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(41, 'حوش عيسى', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(42, 'شبراخيت', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(43, 'كوم حمادة', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(44, 'بدر', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(45, 'وادي النطرون', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(46, 'النوبارية الجديدة', 6, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(47, 'مرسى مطروح', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(48, 'الحمام', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(49, 'العلمين', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(50, 'الضبعة', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(51, 'النجيلة', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(52, 'سيدي براني', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(53, 'السلوم', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(54, 'سيوة', 23, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(55, 'دمياط', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(56, 'دمياط الجديدة', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(57, 'رأس البر', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(58, 'فارسكور', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(59, 'الزرقا', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(60, 'السرو', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(61, 'الروضة', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(62, 'كفر البطيخ', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(63, 'عزبة البرج', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(64, 'ميت أبو غالب', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(65, 'كفر سعد', 19, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(66, 'المنصورة', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(67, 'طلخا', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(68, 'ميت غمر', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(69, 'دكرنس', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(70, 'أجا', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(71, 'منية النصر', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(72, 'السنبلاوين', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(73, 'الكردي', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(74, 'بني عبيد', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(75, 'المنزلة', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(76, 'تمي الأمديد', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(77, 'الجمالية', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(78, 'شربين', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(79, 'المطرية', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(80, 'بلقاس', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(81, 'ميت سلسيل', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(82, 'جمصة', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(83, 'محلة دمنة', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(84, 'نبروه', 4, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(85, 'كفر الشيخ', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(86, 'دسوق', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(87, 'فوه', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(88, 'مطوبس', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(89, 'برج البرلس', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(90, 'بلطيم', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(91, 'مصيف بلطيم', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(92, 'الحامول', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(93, 'بيلا', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(94, 'الرياض', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(95, 'سيدي سالم', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(96, 'قلين', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(97, 'سيدي غازي', 22, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(98, 'طنطا', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(99, 'المحلة الكبرى', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(100, 'كفر الزيات', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(101, 'زفتى', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(102, 'السنطة', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(103, 'قطور', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(104, 'بسيون', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(105, 'سمنود', 8, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(106, 'شبين الكوم', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(107, 'مدينة السادات', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(108, 'منوف', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(109, 'سرس الليان', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(110, 'أشمون', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(111, 'الباجور', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(112, 'قويسنا', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(113, 'بركة السبع', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(114, 'تلا', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(115, 'الشهداء', 10, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(116, 'الزقازيق', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(117, 'العاشر من رمضان', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(118, 'منيا القمح', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(119, 'بلبيس', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(120, 'مشتول السوق', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(121, 'القنايات', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(122, 'أبو حماد', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(123, 'القرين', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(124, 'ههيا', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(125, 'أبو كبير', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(126, 'فاقوس', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(127, 'الصالحية الجديدة', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(128, 'الإبراهيمية', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(129, 'ديرب نجم', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(130, 'كفر صقر', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(131, 'أولاد صقر', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(132, 'الحسينية', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(133, 'صان الحجر القبلية', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(134, 'منشأة أبو عمر', 20, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(135, 'بورسعيد', 18, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(136, 'بورفؤاد', 18, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(137, 'الإسماعيلية', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(138, 'فايد', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(139, 'القنطرة شرق', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(140, 'القنطرة غرب', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(141, 'التل الكبير', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(142, 'أبو صوير', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(143, 'القصاصين الجديدة', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(144, 'السويس', 14, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(145, 'العريش', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(146, 'الشيخ زويد', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(147, 'نخل', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(148, 'رفح', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(149, 'بئر العبد', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(150, 'الحسنة', 26, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(151, 'الطور', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(152, 'شرم الشيخ', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(153, 'دهب', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(154, 'نويبع', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(155, 'طابا', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(156, 'سانت كاترين', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(157, 'أبو رديس', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(158, 'أبو زنيمة', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(159, 'رأس سدر', 21, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(160, 'بني سويف', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(161, 'بني سويف الجديدة', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(162, 'الواسطى', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(163, 'ناصر', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(164, 'إهناسيا', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(165, 'ببا', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(166, 'الفشن', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(167, 'سمسطا', 17, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(168, 'الفيوم', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(169, 'الفيوم الجديدة', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(170, 'طامية', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(171, 'سنورس', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(172, 'إطسا', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(173, 'إبشواي', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(174, 'يوسف الصديق', 7, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(175, 'المنيا', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(176, 'المنيا الجديدة', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(177, 'العدوة', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(178, 'مغاغة', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(179, 'بني مزار', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(180, 'مطاي', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(181, 'سمالوط', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(182, 'المدينة الفكرية', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(183, 'ملوي', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(184, 'دير مواس', 11, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(185, 'أسيوط', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(186, 'أسيوط الجديدة', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(187, 'ديروط', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(188, 'منفلوط', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(189, 'القوصية', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(190, 'أبنوب', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(191, 'أبو تيج', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(192, 'الغنايم', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(193, 'ساحل سليم', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(194, 'البداري', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(195, 'صدفا', 16, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(196, 'الخارجة', 13, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(197, 'باريس', 13, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(198, 'موط', 13, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(199, 'الفرافرة', 13, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(200, 'بلاط', 13, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(201, 'الغردقة', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(202, 'رأس غارب', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(203, 'سفاجا', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(204, 'القصير', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(205, 'مرسى علم', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(206, 'الشلاتين', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(207, 'حلايب', 5, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(208, 'سوهاج', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(209, 'سوهاج الجديدة', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(210, 'أخميم', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(211, 'أخميم الجديدة', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(212, 'البلينا', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(213, 'المراغة', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(214, 'المنشأة', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(215, 'دار السلام', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(216, 'جرجا', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(217, 'جهينة الغربية', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(218, 'ساقلته', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(219, 'طما', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(220, 'طهطا', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(221, 'قنا', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(222, 'قنا الجديدة', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(223, 'أبو تشت', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(224, 'نجع حمادي', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(225, 'دشنا', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(226, 'الوقف', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(227, 'قفط', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(228, 'نقادة', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(229, 'فرشوط', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(230, 'قوص', 25, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(231, 'الأقصر', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(232, 'الأقصر الجديدة', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(233, 'إسنا', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(234, 'طيبة الجديدة', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(235, 'الزينية', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(236, 'البياضية', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(237, 'القرنة', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(238, 'أرمنت', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(239, 'الطود', 24, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(240, 'أسوان', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(241, 'أسوان الجديدة', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(242, 'دراو', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(243, 'كوم أمبو', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(244, 'نصر النوبة', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(245, 'كلابشة', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(246, 'إدفو', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(247, 'الرديسية', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(248, 'البصيلية', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(249, 'السباعية', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(250, 'ابوسمبل السياحية', 15, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(251, 'الهرم', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(252, 'حدائق الزيتون', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(253, 'التجمع الثالث', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(254, 'التجمع الخامس', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(255, 'مدينة نصر', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(256, 'فيصل', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(257, 'الحي الاول', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(258, 'وسط البلد', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(259, 'مدينة السلام', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(260, 'الوراق', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(261, 'حلمية الزيتون', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(262, 'الملاحة الجديدة', 14, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(263, 'المنيل', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(264, 'سيدي جابر', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(265, 'شبرا مصر', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(266, 'جسر السويس', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(267, 'ميامي', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(268, 'المقطم', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(269, 'شيراتون المطار', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(270, 'العامرية', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(271, 'طريق المعادي', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(272, 'كورنيش الشرق', 27, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(273, 'الدراسة', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(274, 'مدينه نصر', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(275, 'العباسية', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(276, 'ميدان مارادونا', 9, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(277, 'حدايق الاهرام', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(278, 'السيده عائشة', 1, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(279, 'الدقي', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(280, 'اكتوبر', 2, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(281, 'جناكليس', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(282, 'برج العرب القديم', 3, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(283, 'وادي حوف', 30, '2020-06-17 13:00:46', '2020-06-17 13:00:46', NULL, 1), -(284, 'حدائق القبة', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(285, 'السواح', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(286, 'صلاح سالم', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(287, 'التجمع الاول', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(288, 'المهندسين', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(289, 'المنيب', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(290, 'الوايلي', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(291, 'الاميرية', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(292, 'مصر الجديدة', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(293, 'الزاويه الحمراء', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(294, 'القصر العيني', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(295, 'المعادي', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(296, 'حدائق الاهرام', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(297, 'هضبة الهرم', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(298, 'عزبة النخل', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(299, 'التحرير', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(300, 'مدينة بدر', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(301, 'عين شمس', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(302, 'الدقهلية', 4, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(303, 'حلوان', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(304, 'شبرا', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(305, 'القطامية', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(306, 'سراي القبه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(307, 'سرايا القبة', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(308, 'امبابه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(309, 'البحيرة', 6, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(310, 'العجوزة', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(311, 'روض الفرج', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(312, 'نزلة السمان', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(313, 'باب الشعرية', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(314, 'المرج', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(315, 'السيده زينب', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(316, 'بولاق الدكرور', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(317, 'مدينة الشروق', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(318, 'البراجيل', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(319, '15 مايو', 30, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(320, 'الاسماعيلية', 34, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(321, 'المنهندسين', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(322, 'سيدي بشر', 3, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(323, 'مريوطية', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(324, 'الشرقية', 20, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(325, 'اسوان', 15, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(326, 'اسيوط', 16, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(327, 'كيلوبترا', 3, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(328, 'المرج الجديدة', 12, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(329, 'الوادي الجديد', 13, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(330, 'سموحة', 3, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(331, 'عباس العقاد', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(332, 'المعصرة', 30, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(333, 'بور سعيد', 38, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(334, 'المطريه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(335, 'مدينه المستقبل', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(336, 'شبرا الخيمه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(337, 'السيده عائشه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(338, 'السيده خديجه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(339, 'إمبابة', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(340, 'العمرانيه', 2, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(341, 'اشمون', 10, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(342, 'الفجاله', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(343, 'مدينه 15 مايو', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(344, 'الخانكه', 1, '2020-06-17 13:00:47', '2020-06-17 13:00:47', NULL, 1), -(345, 'السيده نفسيه', 1, '2020-09-30 03:32:23', '2020-09-30 03:32:23', NULL, 1), -(346, 'مدينة المستقبل', 1, '2020-10-27 15:27:30', '2020-10-27 15:27:30', NULL, 1), -(347, 'نج', 11, '2020-10-28 16:47:38', '2020-10-28 16:47:38', NULL, 1), -(348, 'نجع', 11, '2020-10-28 16:47:47', '2020-10-28 16:47:47', NULL, 1), -(349, 'نجع حمادي', 11, '2020-10-28 16:47:54', '2020-10-28 16:47:54', NULL, 1), -(350, 'شبر', 1, '2020-10-28 17:23:42', '2020-10-28 17:23:42', NULL, 1), -(351, 'صفط اللبن', 2, '2020-10-28 17:29:29', '2020-10-28 17:29:29', NULL, 1), -(352, 'امبابه', 2, '2020-10-28 18:50:37', '2020-10-28 18:50:37', NULL, 1), -(353, 'حلو', 1, '2020-10-28 19:15:52', '2020-10-28 19:15:52', NULL, 1), -(354, 'مصطفي النحاس', 1, '2020-10-28 19:20:14', '2020-10-28 19:20:14', NULL, 1), -(355, 'مصر الجديده', 1, '2020-10-28 19:22:00', '2020-10-28 19:22:00', NULL, 1), -(356, 'الرحاب', 29, '2020-10-28 19:26:00', '2020-10-28 19:26:00', NULL, 1), -(357, 'منشية ناصر', 1, '2020-10-28 19:29:04', '2020-10-28 19:29:04', NULL, 1), -(358, 'المحله', 8, '2020-10-28 19:47:37', '2020-10-28 19:47:37', NULL, 1), -(359, 'طيبة', 24, '2020-10-29 02:59:37', '2020-10-29 02:59:37', NULL, 1), -(360, 'صفط اللبن', 11, '2020-10-29 03:01:07', '2020-10-29 03:01:07', NULL, 1), -(361, 'مدينة', 1, '2020-10-29 03:05:05', '2020-10-29 03:05:05', NULL, 1), -(362, 'بور فؤاد', 18, '2020-10-29 16:22:24', '2020-10-29 16:22:24', NULL, 1), -(363, 'المعاد', 1, '2020-10-29 17:19:11', '2020-10-29 17:19:11', NULL, 1), -(364, 'المعا', 1, '2020-10-29 17:19:12', '2020-10-29 17:19:12', NULL, 1), -(365, 'العبور', 1, '2020-10-29 18:15:21', '2020-10-29 18:15:21', NULL, 1), -(366, 'حمامات القبة', 1, '2020-10-30 02:15:06', '2020-10-30 02:15:06', NULL, 1), -(367, 'مصر القديمة', 1, '2020-10-30 02:16:49', '2020-10-30 02:16:49', NULL, 1), -(368, 'الرحاب', 1, '2020-10-30 13:43:33', '2020-10-30 13:43:33', NULL, 1), -(369, 'شبرا الخيمه', 1, '2020-10-30 14:41:10', '2020-10-30 14:41:10', NULL, 1), -(370, 'الغردقة', 34, '2020-10-30 17:14:29', '2020-10-30 17:14:29', NULL, 1), -(371, 'ميت عقبة', 2, '2020-10-30 17:30:07', '2020-10-30 17:30:07', NULL, 1), -(372, 'النزهه', 1, '2020-10-30 18:17:53', '2020-10-30 18:17:53', NULL, 1), -(373, 'الشروق', 1, '2020-10-30 18:58:32', '2020-10-30 18:58:32', NULL, 1), -(374, 'المريوطيه', 2, '2020-10-31 05:04:40', '2020-10-31 05:04:40', NULL, 1), -(375, 'الق', 1, '2020-10-31 08:11:54', '2020-10-31 08:11:54', NULL, 1), -(376, 'شرم', 5, '2020-10-31 08:17:53', '2020-10-31 08:17:53', NULL, 1), -(377, 'شرم الشيخ', 5, '2020-10-31 08:18:02', '2020-10-31 08:18:02', NULL, 1), -(378, 'الجماليه', 4, '2020-10-31 11:06:59', '2020-10-31 11:06:59', NULL, 1), -(379, 'القيصر', 5, '2020-10-31 11:15:30', '2020-10-31 11:15:30', NULL, 1), -(380, 'العبو', 1, '2020-10-31 15:23:07', '2020-10-31 15:23:07', NULL, 1), -(381, 'النهضة', 1, '2020-10-31 19:41:21', '2020-10-31 19:41:21', NULL, 1), -(382, 'الزيتون', 1, '2020-11-01 15:03:21', '2020-11-01 15:03:21', NULL, 1), -(383, 'العبا', 1, '2020-11-01 15:55:58', '2020-11-01 15:55:58', NULL, 1), -(384, 'الماظة', 1, '2020-11-01 17:45:12', '2020-11-01 17:45:12', NULL, 1), -(385, 'ارض اللواء', 2, '2020-11-02 12:58:01', '2020-11-02 12:58:01', NULL, 1), -(386, 'طنان', 12, '2020-11-02 13:43:39', '2020-11-02 13:43:39', NULL, 1), -(387, 'الدق', 2, '2020-11-02 16:28:03', '2020-11-02 16:28:03', NULL, 1), -(388, 'رمسيس', 1, '2020-11-02 17:12:52', '2020-11-02 17:12:52', NULL, 1), -(389, 'ابشواى', 7, '2020-11-03 05:48:16', '2020-11-03 05:48:16', NULL, 1), -(390, 'مدين', 1, '2020-11-03 13:13:07', '2020-11-03 13:13:07', NULL, 1), -(391, 'عزبه النخل', 1, '2020-11-03 13:28:37', '2020-11-03 13:28:37', NULL, 1), -(392, 'مدينتى', 1, '2020-11-03 22:07:49', '2020-11-03 22:07:49', NULL, 1), -(393, 'العوايد', 3, '2020-11-06 15:02:37', '2020-11-06 15:02:37', NULL, 1), -(394, 'سمنود', 1, '2020-11-06 15:04:16', '2020-11-06 15:04:16', NULL, 1), -(395, 'الهر', 2, '2020-11-06 15:05:28', '2020-11-06 15:05:28', NULL, 1), -(396, 'الاسماعيليه', 33, '2020-11-06 16:49:12', '2020-11-06 16:49:12', NULL, 1), -(397, 'حدائق', 1, '2020-11-07 15:49:40', '2020-11-07 15:49:40', NULL, 1), -(398, 'عابدين', 1, '2020-11-08 08:06:04', '2020-11-08 08:06:04', NULL, 1), -(399, 'دار السلام', 1, '2020-11-08 18:16:34', '2020-11-08 18:16:34', NULL, 1), -(400, 'النزهه الجديده', 1, '2020-11-09 05:20:17', '2020-11-09 05:20:17', NULL, 1), -(401, 'مصر القديمه', 1, '2020-11-09 05:48:43', '2020-11-09 05:48:43', NULL, 1), -(402, 'عين شمس الشرقيه', 1, '2020-11-09 10:22:33', '2020-11-09 10:22:33', NULL, 1), -(403, 'الخصوص', 1, '2020-11-09 18:55:08', '2020-11-09 18:55:08', NULL, 1), -(404, 'القلعة', 1, '2020-11-09 18:56:18', '2020-11-09 18:56:18', NULL, 1), -(405, 'حدائق حلوان', 1, '2020-11-09 19:04:29', '2020-11-09 19:04:29', NULL, 1), -(406, 'بشتيل', 2, '2020-11-10 18:51:32', '2020-11-10 18:51:32', NULL, 1), -(407, 'الطالبيه', 2, '2020-11-11 17:14:15', '2020-11-11 17:14:15', NULL, 1), -(408, 'السادات', 14, '2020-11-11 18:07:15', '2020-11-11 18:07:15', NULL, 1), -(409, 'العصافرة', 3, '2020-11-13 02:41:36', '2020-11-13 02:41:36', NULL, 1), -(410, 'أبو قير', 3, '2020-11-13 21:13:51', '2020-11-13 21:13:51', NULL, 1), -(411, 'اكتوبر', 2, '2020-11-14 17:46:35', '2020-11-14 17:46:35', NULL, 1), -(412, 'ابشوا', 7, '2020-11-14 22:15:20', '2020-11-14 22:15:20', NULL, 1), -(413, 'القليوبية', 12, '2020-11-16 19:07:38', '2020-11-16 19:07:38', NULL, 1), -(414, 'العرم', 2, '2020-11-16 19:09:46', '2020-11-16 19:09:46', NULL, 1), -(415, 'العجمى', 3, '2020-11-17 03:24:27', '2020-11-17 03:24:27', NULL, 1), -(416, 'الوراق', 1, '2020-11-17 19:33:30', '2020-11-17 19:33:30', NULL, 1), -(417, 'الابراهيمية', 3, '2020-11-18 03:51:50', '2020-11-18 03:51:50', NULL, 1), -(418, 'زهراء مدينه نصر', 1, '2020-11-18 13:01:58', '2020-11-18 13:01:58', NULL, 1), -(419, 'ارمنت', 24, '2020-11-19 05:23:47', '2020-11-19 05:23:47', NULL, 1), -(420, 'سرابيوم', 9, '2020-11-20 02:34:13', '2020-11-20 02:34:13', NULL, 1), -(421, 'حلوان', 1, '2020-11-20 08:30:48', '2020-11-20 08:30:48', NULL, 1), -(422, 'ابو النمرس', 2, '2020-11-20 13:24:03', '2020-11-20 13:24:03', NULL, 1), -(423, 'البدرشي', 2, '2020-11-21 11:14:58', '2020-11-21 11:14:58', NULL, 1), -(424, 'المع', 1, '2020-11-21 15:46:58', '2020-11-21 15:46:58', NULL, 1), -(425, 'الملك فيصل', 2, '2020-11-21 18:02:23', '2020-11-21 18:02:23', NULL, 1), -(426, 'الدرعية', 37, '2020-12-06 01:56:40', '2020-12-06 01:56:40', NULL, 1), -(427, 'الرياض', 37, '2020-12-06 01:56:47', '2020-12-06 01:56:47', NULL, 1), -(428, 'الدوادمي', 37, '2020-12-06 01:57:02', '2020-12-06 01:57:02', NULL, 1), -(429, 'القويعية', 37, '2020-12-06 01:57:10', '2020-12-06 01:57:10', NULL, 1), -(430, 'الأفلاج', 37, '2020-12-06 01:57:17', '2020-12-06 01:57:17', NULL, 1), -(431, 'سدير', 37, '2020-12-06 01:57:23', '2020-12-06 01:57:23', NULL, 1), -(432, 'شقراء', 37, '2020-12-06 01:57:31', '2020-12-06 01:57:31', NULL, 1), -(433, 'عفيف', 37, '2020-12-06 01:57:41', '2020-12-06 01:57:41', NULL, 1), -(434, 'ضرماء', 37, '2020-12-06 01:57:49', '2020-12-06 01:57:49', NULL, 1), -(435, 'رماح', 37, '2020-12-06 01:57:57', '2020-12-06 01:57:57', NULL, 1), -(436, 'حريملاء', 37, '2020-12-06 01:58:04', '2020-12-06 01:58:04', NULL, 1), -(437, 'الغاط', 37, '2020-12-06 01:58:10', '2020-12-06 01:58:10', NULL, 1), -(438, 'الخرج', 37, '2020-12-06 01:58:22', '2020-12-06 01:58:22', NULL, 1), -(439, 'المجمعة', 37, '2020-12-06 01:58:28', '2020-12-06 01:58:28', NULL, 1), -(440, 'الحريق', 37, '2020-12-06 01:58:33', '2020-12-06 01:58:33', NULL, 1), -(441, 'وادي الدواسر', 37, '2020-12-06 01:58:39', '2020-12-06 01:58:39', NULL, 1), -(442, 'الزلفي', 37, '2020-12-06 01:58:45', '2020-12-06 01:58:45', NULL, 1), -(443, 'حوطة تميم', 37, '2020-12-06 01:58:51', '2020-12-06 01:58:51', NULL, 1), -(444, 'السليل', 37, '2020-12-06 01:58:57', '2020-12-06 01:58:57', NULL, 1), -(445, 'المزاحمية', 37, '2020-12-06 01:59:05', '2020-12-06 01:59:05', NULL, 1), -(446, 'ثادق', 37, '2020-12-06 01:59:11', '2020-12-06 01:59:11', NULL, 1), -(447, 'الجموم', 38, '2020-12-06 01:59:20', '2020-12-06 01:59:20', NULL, 1), -(448, 'الكامل', 38, '2020-12-06 01:59:26', '2020-12-06 01:59:26', NULL, 1), -(449, 'الخرمة', 38, '2020-12-06 01:59:33', '2020-12-06 01:59:33', NULL, 1), -(450, 'الليث', 38, '2020-12-06 01:59:54', '2020-12-06 01:59:54', NULL, 1), -(451, 'القنفذة', 38, '2020-12-06 02:00:01', '2020-12-06 02:00:01', NULL, 1), -(452, 'الطائف', 38, '2020-12-06 02:00:07', '2020-12-06 02:00:07', NULL, 1), -(453, 'جدة', 38, '2020-12-06 02:00:13', '2020-12-06 02:00:13', NULL, 1), -(454, 'خليص', 38, '2020-12-06 02:02:54', '2020-12-06 02:02:54', NULL, 1), -(455, 'مكة المكرمة', 38, '2020-12-06 02:03:00', '2020-12-06 02:03:00', NULL, 1), -(456, 'رابغ', 38, '2020-12-06 02:03:06', '2020-12-06 02:03:06', NULL, 1), -(457, 'رنية', 38, '2020-12-06 02:03:11', '2020-12-06 02:03:11', NULL, 1), -(458, 'تربة', 38, '2020-12-06 02:03:18', '2020-12-06 02:03:18', NULL, 1), -(459, 'المدينة', 39, '2020-12-06 02:03:26', '2020-12-06 02:03:26', NULL, 1), -(460, 'ينبع', 39, '2020-12-06 02:03:34', '2020-12-06 02:03:34', NULL, 1), -(461, 'العلا', 39, '2020-12-06 02:03:40', '2020-12-06 02:03:40', NULL, 1), -(462, 'الحناكية', 39, '2020-12-06 02:03:57', '2020-12-06 02:03:57', NULL, 1), -(463, 'مهد الذهب', 39, '2020-12-06 02:04:02', '2020-12-06 02:04:02', NULL, 1), -(464, 'خيبر', 39, '2020-12-06 02:04:08', '2020-12-06 02:04:08', NULL, 1), -(465, 'بدر', 39, '2020-12-06 02:04:13', '2020-12-06 02:04:13', NULL, 1), -(466, 'السويرقية', 39, '2020-12-06 02:04:20', '2020-12-06 02:04:20', NULL, 1), -(467, 'العيص', 39, '2020-12-06 02:04:27', '2020-12-06 02:04:27', NULL, 1), -(468, 'وادي الفرع', 39, '2020-12-06 02:04:33', '2020-12-06 02:04:33', NULL, 1), -(469, 'بريدة', 40, '2020-12-06 02:04:41', '2020-12-06 02:04:41', NULL, 1), -(470, 'عنيزة', 40, '2020-12-06 02:04:48', '2020-12-06 02:04:48', NULL, 1), -(471, 'الرس', 40, '2020-12-06 02:04:54', '2020-12-06 02:04:54', NULL, 1), -(472, 'المذنب', 40, '2020-12-06 02:05:01', '2020-12-06 02:05:01', NULL, 1), -(473, 'البكيرية', 40, '2020-12-06 02:05:08', '2020-12-06 02:05:08', NULL, 1), -(474, 'البدائع', 40, '2020-12-06 02:05:15', '2020-12-06 02:05:15', NULL, 1), -(475, 'الأسياح', 40, '2020-12-06 02:05:23', '2020-12-06 02:05:23', NULL, 1), -(476, 'النبهانية', 40, '2020-12-06 02:05:31', '2020-12-06 02:05:31', NULL, 1), -(477, 'الشماسية', 40, '2020-12-06 02:05:37', '2020-12-06 02:05:37', NULL, 1), -(478, 'عيون الجواء', 40, '2020-12-06 02:05:44', '2020-12-06 02:05:44', NULL, 1), -(479, 'رياض الخبراء', 40, '2020-12-06 02:05:50', '2020-12-06 02:05:50', NULL, 1), -(480, 'عقلة الصقور', 40, '2020-12-06 02:05:58', '2020-12-06 02:05:58', NULL, 1), -(481, 'ضريه', 40, '2020-12-06 02:06:04', '2020-12-06 02:06:04', NULL, 1), -(482, 'الأحساء', 41, '2020-12-06 02:06:13', '2020-12-06 02:06:13', NULL, 1), -(483, 'القطيف', 41, '2020-12-06 02:06:23', '2020-12-06 02:06:23', NULL, 1), -(484, 'الخبر', 41, '2020-12-06 02:06:38', '2020-12-06 02:06:38', NULL, 1), -(485, 'الخفجي', 41, '2020-12-06 02:06:48', '2020-12-06 02:06:48', NULL, 1), -(486, 'الدمام', 41, '2020-12-06 02:06:55', '2020-12-06 02:06:55', NULL, 1), -(487, 'بقيق', 41, '2020-12-06 02:07:02', '2020-12-06 02:07:02', NULL, 1), -(488, 'الجبيل', 41, '2020-12-06 02:07:11', '2020-12-06 02:07:11', NULL, 1), -(489, 'حفر الباطن', 41, '2020-12-06 02:07:22', '2020-12-06 02:07:22', NULL, 1), -(490, 'رأس تنورة', 41, '2020-12-06 02:07:29', '2020-12-06 02:07:29', NULL, 1), -(491, 'النعيرية', 41, '2020-12-06 02:07:37', '2020-12-06 02:07:37', NULL, 1), -(492, 'قرية العليا', 41, '2020-12-06 02:07:45', '2020-12-06 02:07:45', NULL, 1), -(493, 'نجران', 42, '2020-12-06 02:07:55', '2020-12-06 02:07:55', NULL, 1), -(494, 'شرورة', 42, '2020-12-06 02:08:02', '2020-12-06 02:08:02', NULL, 1), -(495, 'حبونا', 42, '2020-12-06 02:08:15', '2020-12-06 02:08:15', NULL, 1), -(496, 'بدر الجنوب', 42, '2020-12-06 02:08:23', '2020-12-06 02:08:23', NULL, 1), -(497, 'يدمه', 42, '2020-12-06 02:08:31', '2020-12-06 02:08:31', NULL, 1), -(498, 'ثار', 42, '2020-12-06 02:08:42', '2020-12-06 02:08:42', NULL, 1), -(499, 'خباش', 42, '2020-12-06 02:08:50', '2020-12-06 02:08:50', NULL, 1), -(500, 'الخرخير', 42, '2020-12-06 02:08:57', '2020-12-06 02:08:57', NULL, 1), -(501, 'عرعر', 43, '2020-12-06 02:09:09', '2020-12-06 02:09:09', NULL, 1), -(502, 'رفحاء', 43, '2020-12-06 02:09:16', '2020-12-06 02:09:16', NULL, 1), -(503, 'طريف', 43, '2020-12-06 02:09:23', '2020-12-06 02:09:23', NULL, 1), -(504, 'العويقيلة', 43, '2020-12-06 02:09:34', '2020-12-06 02:09:34', NULL, 1), -(505, 'جديدة عرعر', 43, '2020-12-06 02:09:44', '2020-12-06 02:09:44', NULL, 1), -(506, 'شعبة نصاب', 43, '2020-12-06 02:09:51', '2020-12-06 02:09:51', NULL, 1), -(507, 'القريات', 44, '2020-12-06 02:09:58', '2020-12-06 02:09:58', NULL, 1), -(508, 'دومة الجندل', 44, '2020-12-06 02:10:06', '2020-12-06 02:10:06', NULL, 1), -(509, 'طبرجل', 44, '2020-12-06 02:10:12', '2020-12-06 02:10:12', NULL, 1), -(510, 'سكاكا', 44, '2020-12-06 02:10:20', '2020-12-06 02:10:20', NULL, 1), -(511, 'حائل', 45, '2020-12-06 02:10:40', '2020-12-06 02:10:40', NULL, 1), -(512, 'الحائط', 45, '2020-12-06 02:10:50', '2020-12-06 02:10:50', NULL, 1), -(513, 'بقعاء', 45, '2020-12-06 02:10:57', '2020-12-06 02:10:57', NULL, 1), -(514, 'الشنان', 45, '2020-12-06 02:11:06', '2020-12-06 02:11:06', NULL, 1), -(515, 'الحليفة', 45, '2020-12-06 02:11:14', '2020-12-06 02:11:14', NULL, 1), -(516, 'الغزالة', 45, '2020-12-06 02:11:22', '2020-12-06 02:11:22', NULL, 1), -(517, 'الشملي', 45, '2020-12-06 02:11:30', '2020-12-06 02:11:30', NULL, 1), -(518, 'بلجرشي', 46, '2020-12-06 02:11:38', '2020-12-06 02:11:38', NULL, 1), -(519, 'المندق', 46, '2020-12-06 02:11:48', '2020-12-06 02:11:48', NULL, 1), -(520, 'المخواة', 46, '2020-12-06 02:11:54', '2020-12-06 02:11:54', NULL, 1), -(521, 'قلوة', 46, '2020-12-06 02:12:01', '2020-12-06 02:12:01', NULL, 1), -(522, 'العقيق', 46, '2020-12-06 02:12:08', '2020-12-06 02:12:08', NULL, 1), -(523, 'القرى', 46, '2020-12-06 02:12:14', '2020-12-06 02:12:14', NULL, 1), -(524, 'الحجرة', 46, '2020-12-06 02:12:20', '2020-12-06 02:12:20', NULL, 1), -(525, 'غامد الزناد', 46, '2020-12-06 02:12:26', '2020-12-06 02:12:26', NULL, 1), -(526, 'بني حسن', 46, '2020-12-06 02:12:33', '2020-12-06 02:12:33', NULL, 1), -(527, 'أبها', 47, '2020-12-06 02:12:41', '2020-12-06 02:12:41', NULL, 1), -(528, 'خميس مشيط', 47, '2020-12-06 02:12:51', '2020-12-06 02:12:51', NULL, 1), -(529, 'بيشة', 47, '2020-12-06 02:13:00', '2020-12-06 02:13:00', NULL, 1), -(530, 'النماص', 47, '2020-12-06 02:13:08', '2020-12-06 02:13:08', NULL, 1), -(531, 'محايل عسير', 47, '2020-12-06 02:13:14', '2020-12-06 02:13:14', NULL, 1), -(532, 'رجال ألمع', 47, '2020-12-06 02:13:20', '2020-12-06 02:13:20', NULL, 1), -(533, 'المجاردة', 47, '2020-12-06 02:13:28', '2020-12-06 02:13:28', NULL, 1), -(534, 'سراه عبيدة', 47, '2020-12-06 02:13:36', '2020-12-06 02:13:36', NULL, 1), -(535, 'أحد رفيدة', 47, '2020-12-06 02:13:43', '2020-12-06 02:13:43', NULL, 1), -(536, 'بلقرن', 47, '2020-12-06 02:13:49', '2020-12-06 02:13:49', NULL, 1), -(537, 'تثليث', 47, '2020-12-06 02:14:01', '2020-12-06 02:14:01', NULL, 1), -(538, 'ظهران الجنوب', 47, '2020-12-06 02:14:09', '2020-12-06 02:14:09', NULL, 1), -(539, 'البرك', 47, '2020-12-06 02:14:16', '2020-12-06 02:14:16', NULL, 1), -(540, 'الامواه', 47, '2020-12-06 02:14:23', '2020-12-06 02:14:23', NULL, 1), -(541, 'الحرجة', 47, '2020-12-06 02:14:30', '2020-12-06 02:14:30', NULL, 1), -(542, 'بارق', 47, '2020-12-06 02:14:39', '2020-12-06 02:14:39', NULL, 1), -(543, 'طريب', 47, '2020-12-06 02:14:45', '2020-12-06 02:14:45', NULL, 1), -(544, 'تنومه', 47, '2020-12-06 02:14:50', '2020-12-06 02:14:50', NULL, 1), -(545, 'جيزان', 48, '2020-12-06 02:15:06', '2020-12-06 02:15:06', NULL, 1), -(546, 'أبو عريش', 48, '2020-12-06 02:15:13', '2020-12-06 02:15:13', NULL, 1), -(547, 'صبيا', 48, '2020-12-06 02:15:22', '2020-12-06 02:15:22', NULL, 1), -(548, 'صامطة', 48, '2020-12-06 02:15:30', '2020-12-06 02:15:30', NULL, 1), -(549, 'أحد المسارحة', 48, '2020-12-06 02:15:40', '2020-12-06 02:15:40', NULL, 1), -(550, 'بيش', 48, '2020-12-06 02:15:46', '2020-12-06 02:15:46', NULL, 1), -(551, 'العارضة', 48, '2020-12-06 02:15:54', '2020-12-06 02:15:54', NULL, 1), -(552, 'فيفاء', 48, '2020-12-06 02:16:04', '2020-12-06 02:16:04', NULL, 1), -(553, 'هروب', 48, '2020-12-06 02:16:11', '2020-12-06 02:16:11', NULL, 1), -(554, 'الوجه', 49, '2020-12-06 02:16:18', '2020-12-06 02:16:18', NULL, 1), -(555, 'ضباء', 49, '2020-12-06 02:16:24', '2020-12-06 02:16:24', NULL, 1), -(556, 'أملج', 49, '2020-12-06 02:16:33', '2020-12-06 02:16:33', NULL, 1), -(557, 'حقل', 49, '2020-12-06 02:16:40', '2020-12-06 02:16:40', NULL, 1), -(558, 'تيماء', 49, '2020-12-06 02:16:46', '2020-12-06 02:16:46', NULL, 1), -(559, 'البدع', 49, '2020-12-06 02:16:52', '2020-12-06 02:16:52', NULL, 1), -(560, 'حالة عمار', 49, '2020-12-06 02:17:01', '2020-12-06 02:17:01', NULL, 1), -(561, 'Berat', 74, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(562, 'Polican', 74, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(563, 'Ure Vajgurore', 74, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(564, 'Bulqize', 75, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(565, 'Delvine', 76, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(566, 'Bilisht', 77, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(567, 'Maqellare', 78, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(568, 'Peshkopi', 78, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(569, 'Durres', 79, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(570, 'Shijak', 79, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(571, 'Cerrik', 80, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(572, 'Elbasan', 80, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(573, 'Kerrabe', 80, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(574, 'Fier', 81, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(575, 'Patos', 81, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(576, 'Roskovec', 81, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(577, 'Gjirokaster', 82, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(578, 'Libohove', 82, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(579, 'Gramsh', 83, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(580, 'Krume', 84, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(581, 'Kavaje', 85, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(582, 'Erseke', 86, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(583, 'Leskovik', 86, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(584, 'Korce', 87, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(585, 'Maliq', 87, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(586, 'Fushe-Kruje', 88, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(587, 'Kruje', 88, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(588, 'Mamurras', 88, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(589, 'Milot', 88, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(590, 'Kucove', 89, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(591, 'Kukes', 90, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(592, 'Lac', 91, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(593, 'Lezhe', 92, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(594, 'Shengjin', 92, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(595, 'Librazhd', 93, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(596, 'Perrenjas', 93, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, 1), -(597, 'Lushnje', 94, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(598, 'Rrogozhine', 94, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(599, 'Ballsh', 95, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(600, 'Burrel', 97, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(601, 'Klos', 97, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(602, 'Kraste', 97, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(603, 'Ulze', 97, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(604, 'Kurbnesh', 98, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(605, 'Rreshen', 98, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(606, 'Rubik', 98, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(607, 'Peqin', 99, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(608, 'Kelcyre', 100, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(609, 'Permet', 100, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(610, 'Pogradec', 101, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(611, 'Fierze', 102, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(612, 'Fushe-Arrez', 102, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(613, 'Puke', 102, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(614, 'Konispol', 103, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(615, 'Sarande', 103, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(616, 'Shkoder', 104, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(617, 'Corovode', 105, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(618, 'Memaliaj', 106, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(619, 'Tepelene', 106, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(620, 'Kamze', 107, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(621, 'Paskuqan', 107, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(622, 'Tirane', 107, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(623, 'Vore', 107, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(624, 'Bajram Curri', 108, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(625, 'Himare', 109, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(626, 'Orikum', 109, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(627, 'Selenice', 109, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(628, 'Vlore', 109, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(629, 'Adrar', 112, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(630, 'Awlaf', 112, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(631, 'Rijan', 112, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(632, 'Timimun', 112, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(633, 'Hydra', 113, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(634, 'Kouba', 113, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, 1), -(635, 'Annabah', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(636, 'Birrahhal', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(637, 'Saraydih', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(638, 'Sidi Amar', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(639, 'al-Buni', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(640, 'al-Hajar', 114, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(641, ' Abadlah', 115, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(642, 'Bani Wanif', 115, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(643, 'Bashshar', 115, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(644, 'Qanadsan', 115, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(645, 'Taghit', 115, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(646, ' Aris', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(647, ' Ayn Tutah', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(648, 'Barikah', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(649, 'Batnah', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(650, 'Marwanah', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(651, 'Naghaus', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(652, 'Ra s-al- Ayun', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(653, 'Tazult', 116, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(654, ' Ayt Rizin', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(655, 'Akbu', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(656, 'Amizur', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(657, 'Barbasha', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(658, 'Bijayah', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(659, 'Farrawn', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(660, 'Ighram', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(661, 'Sadduk', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(662, 'Shamini', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(663, 'Sidi Aysh', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(664, 'Taskaryut', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(665, 'Tazmalt', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(666, 'Timazrit', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(667, 'Uz-al-Laqin', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(668, 'al-Qasr', 117, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(669, 'Awlad Jallal', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(670, 'Biskrah', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(671, 'Sidi Khalid', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(672, 'Sidi Ukbah', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(673, 'Tulja', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(674, 'Um ash', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(675, 'Zaribat-al-Wad', 118, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(676, 'Awlad Salam', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(677, 'Awlad Yaysh', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(678, 'Bani Khalil', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(679, 'Bani Marad', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(680, 'Bani Tamu', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(681, 'Blidah', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(682, 'Bu Arfa', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(683, 'Bufarik', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(684, 'Buinan', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(685, 'Buqara', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(686, 'Maftah', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(687, 'Muzayah', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(688, 'Shabli', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(689, 'Shari ah', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(690, 'Shiffa', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(691, 'Sidi Mussa', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(692, 'Suma', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(693, 'Wadi al-Allagh', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(694, 'al- Afrun', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(695, 'al-Arba a', 119, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(696, ' Ayn Bissim', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(697, 'Aghbalu', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(698, 'Bi r Ghabalu', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(699, 'Buirah', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(700, 'Lakhdariyah', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(701, 'Shurfa', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(702, 'Sur-al-Ghuzlan', 120, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(703, ' Ayn Tayah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(704, 'Awlad Haddaj', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(705, 'Awlad Mussa', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(706, 'Bani Amran', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(707, 'Budwawu', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(708, 'Budwawu al-Bahri', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(709, 'Bumardas', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(710, 'Burj Minayal', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(711, 'Dalis', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(712, 'Hammadi', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(713, 'Issar', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(714, 'Khamis-al-Khashnah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(715, 'Nasiriyah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(716, 'Raghayah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(717, 'Sa abat', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(718, 'Tinyah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(719, 'al-Arba a Tash', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(720, 'ar-Ruwibah', 121, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(721, 'Ammi Mussa', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(722, 'Ghalizan', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(723, 'Jidiwiyah', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(724, 'Mazunah', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(725, 'Sidi Muhammad Ban Ali', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(726, 'Wadi Rahiyu', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(727, 'Zammurah', 123, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(728, 'Biryan', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(729, 'Bu Nura', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(730, 'Ghardaia', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(731, 'Ghardayah', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(732, 'Matlili', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(733, 'al-Ghuli ah', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(734, 'al-Qararah', 124, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(735, 'Ilizi', 125, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(736, 'Amir Abd-al-Qadar', 126, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, 1), -(737, 'Jijili', 126, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(738, 'Shifka', 126, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(739, 'Tahar', 126, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(740, 'al-Miliyah', 126, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(741, ' Ayn Wissarah', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(742, ' Ayn-al-Ibil', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(743, 'Birin', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(744, 'Dar Shiyukh', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(745, 'Hassi Bahbah', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(746, 'Jilfah', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(747, 'Mis ad', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(748, 'Sharif', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(749, 'al-Idrisiyah', 127, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(750, 'Khanshalah', 128, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(751, 'Sharshar', 128, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(752, 'Tawziyanat', 128, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(753, 'al-Mahmal', 128, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(754, ' Ayn-al-Hajal', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(755, ' Ayn-al-Milh', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(756, 'Bu Sa adah', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(757, 'Hammam Dhala a', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(758, 'Ma adid', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(759, 'Maghra', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(760, 'Masilah', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(761, 'Sidi Aysa', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(762, 'Wanugha', 129, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(763, ' Ayn Bu Sif', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(764, 'Birwaghiyah', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(765, 'Midyah', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(766, 'Qasr-al-Bukhari', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(767, 'Shillalah', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(768, 'Tablat', 130, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(769, 'Farjiwah', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(770, 'Milah', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(771, 'Qararam Quqa', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(772, 'Ruwashad', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(773, 'Salghum-al- Ayd', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(774, 'Sidi Maruf', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(775, 'Sidi Marwan', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(776, 'Tajananah', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(777, 'Talighmah', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(778, 'Wadi Athmaniyah', 131, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(779, 'Bu Khanifiyah', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(780, 'Muaskar', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(781, 'Muhammadiyah', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(782, 'Siq', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(783, 'Tighinnif', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(784, 'Wadi al-Abtal', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(785, 'Zahana', 132, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(786, ' Ayn Tadalas', 133, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(787, 'Hassi Mamash', 133, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(788, 'Mazaghran', 133, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(789, 'Mustaghanam', 133, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(790, 'Sidi Ali', 133, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(791, ' Ayn Safra', 134, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(792, 'Mishriyah', 134, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(793, 'Naama', 134, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(794, 'Oran', 135, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(795, 'Ouargla', 136, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(796, ' Ayn Bardah', 137, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(797, 'Bumahra Ahmad', 137, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(798, 'Hamman Awlad Ali', 137, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(799, 'Qalmah', 137, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(800, 'Wadi Zinati', 137, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(801, ' Ayn Abid', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(802, ' Ayn Samara', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(803, 'Didush Murad', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(804, 'Hamma Bu Ziyan', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(805, 'Qustantinah', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(806, 'Zighut Yusuf', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(807, 'al-Khurub', 138, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(808, ' Azzabah', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(809, 'Amjaz Adshish', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(810, 'Fil Fila', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(811, 'Karkira', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(812, 'Ramadan Jamal', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(813, 'Sakikdah', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(814, 'Shataybih', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(815, 'Tamalus', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(816, 'al-Harush', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(817, 'al-Qull', 139, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(818, ' Ayn Azl', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(819, ' Ayn Arnat', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(820, ' Ayn Taqrut', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(821, ' Ayn Wilman', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(822, ' Ayn-al-Khabira', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(823, 'Bouira', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(824, 'Buq ah', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(825, 'Salah Bay', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(826, 'Satif', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(827, 'Setif', 140, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, 1), -(828, 'Ziyama Mansuriyah', 140, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(829, 'al- Ulmah', 140, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(830, ' Ayn-al-Hajar', 141, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(831, 'Sayda ', 141, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(832, ' Ayn Qazzan', 144, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(833, ' Ayn Salah', 144, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(834, 'Tamanghasat', 144, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(835, ' Ayn Binyan', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(836, 'Bu Isma il', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(837, 'Bu Midfar ah', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(838, 'Damus', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(839, 'Duwirah', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(840, 'Hajut', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(841, 'Hammam Righa', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(842, 'Sawlah', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(843, 'Shiragha', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(844, 'Shirshall', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(845, 'Sidi Farj', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(846, 'Stawali', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(847, 'Tibazah', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(848, 'Ziralda', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(849, 'al-Qull ah', 145, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(850, 'Bi r-al- Itir', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(851, 'Hammamat', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(852, 'Mursut', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(853, 'Shariyah', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(854, 'Tibissah', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(855, 'Winzah', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(856, 'al- Awaynat', 146, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(857, 'Awlad Mimun', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(858, 'Bani Mastar', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(859, 'Bani Sikran', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(860, 'Ghazawat', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(861, 'Hannayah', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(862, 'Maghniyah', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(863, 'Nidruma', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(864, 'Ramsh', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(865, 'Sabra', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(866, 'Shatwan', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(867, 'Sibdu', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(868, 'Sidi Abdallah', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(869, 'Tilimsan', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(870, 'al-Mansurah', 147, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(871, 'Tinduf', 148, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(872, 'Thaniyat-al-Had', 149, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(873, 'Tisamsilt', 149, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(874, ' Ayn Dhahab', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(875, 'Firindah', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(876, 'Mahdiyah', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(877, 'Mashra a Asfa', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(878, 'Qasr Shillalah', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(879, 'Rahuyah', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(880, 'Sughar', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(881, 'Takhamarat', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(882, 'Tiyarat', 150, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(883, ' Ayn Bayda', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(884, ' Ayn Fakrun', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(885, ' Ayn Kirshah', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(886, ' Ayn Malilah', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(887, 'Bi r Shuhada', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(888, 'Miskyanah', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(889, 'Shamurah', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(890, 'Umm-al-Bawaghi', 152, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(891, ' Ayn Biya', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(892, ' Ayn-at-Turk', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(893, 'Arzu', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(894, 'Bi r-al-Jir', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(895, 'Butlilis', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(896, 'Hassi Bu Nif', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(897, 'Mars-al-Kabir', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(898, 'Qadayal', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(899, 'Sidi ash-Shami', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(900, 'Wadi Thalatha', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(901, 'Wahran', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(902, 'al-Ansur', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(903, 'as-Saniyah', 153, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(904, 'Hassi Mas ud', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(905, 'Nazla', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(906, 'Ruwisiyat', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(907, 'Tabisbast', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(908, 'Tamalhat', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(909, 'Tamasin', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(910, 'Tayabat-al-Janubiyah', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(911, 'Tughghurt', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(912, 'Warqla', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(913, 'al-Hajirah', 154, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, 1), -(914, 'Aflu', 158, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(915, 'Hassi al-Raml', 158, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(916, 'al-Aghwat', 158, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(917, 'Brizyanah', 159, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(918, 'al-Abyad Sidi Shaykh', 159, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(919, 'al-Bayadh', 159, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(920, 'Bab Azwar', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(921, 'Baraki', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(922, 'Bir Murad Rais', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(923, 'Birkhadam', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(924, 'Burj-al-Kiffan', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(925, 'Dar-al-Bayda', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(926, 'al-Jaza ir', 160, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(927, 'Bayadha', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(928, 'Dabilah', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(929, 'Hassan Abd-al-Karim', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(930, 'Hassi Halifa', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(931, 'Jama a', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(932, 'Maqran', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(933, 'Qamar', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(934, 'Raqiba', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(935, 'Rubbah', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(936, 'Sidi Amran', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(937, 'al-Mighair', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(938, 'al-Wad', 161, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(939, ' Ayn Maran', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(940, 'Abu al-Hassan', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(941, 'Bani Hawa', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(942, 'Bu Qadir', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(943, 'Sidi Ukaskah', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(944, 'Tanas', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(945, 'Wadi Sali', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(946, 'Wadi al-Fiddah', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(947, 'ash-Shalif', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(948, 'ash-Shattiyah', 162, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(949, 'Ban Mahdi', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(950, 'Bani Amar', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(951, 'Basbas', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(952, 'Dariyan', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(953, 'Saba ita Muk', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(954, 'al-Qal ah', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(955, 'at-Tarif', 163, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(956, 'Afono', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(957, 'Alao', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(958, 'Alofau', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(959, 'Amouli', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(960, 'Aoa', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(961, 'Atu u', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(962, 'Aua', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(963, 'Aunu u', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(964, 'Faga alu', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(965, 'Faga itua', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(966, 'Fagasa', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(967, 'Fagatogo', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(968, 'Lauli i', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(969, 'Leloaloa', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(970, 'Nu uuli', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(971, 'Pago Pago', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(972, 'Tula', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(973, 'Utulei', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(974, 'Vatia', 164, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(975, 'Ofu', 165, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(976, 'Aoloau', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(977, 'Faleniu', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(978, 'Futiga', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(979, 'Ili ili', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(980, 'Leone', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(981, 'Malaeimi', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(982, 'Malaeloa-Aitulagi', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(983, 'Malaeloa-Ituau', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(984, 'Mapusagafou', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(985, 'Mesepa', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(986, 'Pava ia i', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(987, 'Tafuna', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(988, 'Taputimu', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(989, 'Vailoatai', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(990, 'Vaitogi', 167, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(991, 'Canillo', 169, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(992, 'Encamp', 170, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, 1), -(993, 'Ordino', 173, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(994, 'Caxito', 175, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(995, 'Benguela', 176, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(996, 'Lobito', 176, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(997, 'Camacupa', 177, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(998, 'Catabola', 177, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(999, 'Catumbela', 177, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1000, 'Chissamba', 177, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1001, 'Kuito', 177, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1002, 'Cabinda', 178, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1003, 'Ondjiva', 179, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1004, 'Caala', 180, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1005, 'Catchiungo', 180, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1006, 'Huambo', 180, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1007, 'Longonjo', 180, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1008, 'Caconda', 181, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1009, 'Caluquembe', 181, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1010, 'Lubango', 181, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1011, 'Menongue', 182, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1012, 'Luanda', 185, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1013, 'Malanje', 188, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1014, 'Cazaje', 189, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1015, 'Leua', 189, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1016, 'Luau', 189, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1017, 'Luena', 189, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1018, 'Lumeje', 189, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1019, 'Namibe', 190, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1020, 'Camabatela', 191, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1021, 'Uige', 191, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1022, 'M banza-Kongo', 192, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1023, 'N zeto', 192, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1024, 'Soyo', 192, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, 1), -(1025, 'Codrington', 201, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1026, 'Catamarca', 209, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1027, 'Presidencia Roque Saenz Pena', 210, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1028, 'Resistencia', 210, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1029, 'Comodoro Rivadavia', 211, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1030, 'Puerto Madryn', 211, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1031, 'Rawson', 211, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1032, 'Trelew', 211, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1033, 'Alta Gracia', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1034, 'Bell Ville', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1035, 'Cordoba', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1036, 'Rio Cuarto', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1037, 'Rio Tercero', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1038, 'San Francisco', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1039, 'Villa Carlos Paz', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1040, 'Villa Maria', 212, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1041, 'Corrientes', 213, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1042, 'Goya', 213, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1043, 'Mercedes', 213, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1044, 'San Lorenzo', 213, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1045, 'Formosa', 216, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1046, 'Jujuy', 217, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1047, 'Libertador General San Martin', 217, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1048, 'San Pedro', 217, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1049, 'Godoy Cruz', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1050, 'Lujan', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1051, 'Mendoza', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1052, 'Rivadavia', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1053, 'San Martin', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1054, 'San Rafael', 220, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1055, 'Eldorado', 221, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1056, 'Obera', 221, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1057, 'Posadas', 221, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1058, 'Cutral Co', 222, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1059, 'Neuquen', 222, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, 1), -(1060, 'Salta', 224, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1061, 'San Ramon de la Nueva Oran', 224, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1062, 'Tartagal', 224, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1063, 'Tucuman', 231, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1064, 'Ashtarak', 232, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1065, 'Talin', 232, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1066, 'Ararat', 233, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1067, 'Artashat', 233, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1068, 'Armavir', 234, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1069, 'Vagharshapat', 234, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1070, 'Gavar', 235, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1071, 'Martuni', 235, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1072, 'Sevan', 235, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1073, 'Vardenis', 235, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1074, 'Abovyan', 236, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1075, 'Arzni', 236, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1076, 'Charentsavan', 236, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1077, 'Hrazdan', 236, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1078, 'Akhtala', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1079, 'Alaverdi', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1080, 'Spitak', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1081, 'Stepanavan', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1082, 'Tashir', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1083, 'Vanadzor', 237, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1084, 'Artik', 238, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1085, 'Gyumri', 238, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1086, 'Stepanakert', 239, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1087, 'Angeghakot', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1088, 'Goris', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1089, 'Kajaran', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1090, 'Kapan', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1091, 'Meghri', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1092, 'Sisian', 240, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1093, 'Dilijan', 241, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1094, 'Ijevan', 241, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1095, 'Yerevan', 243, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1096, 'Aruba', 244, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1097, 'Glenfield', 245, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1098, 'Henderson', 245, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1099, 'Milford', 245, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1100, 'Balgowlah', 247, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, 1), -(1101, 'Balmain', 248, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, 1), -(1102, 'Bankstown', 249, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, 1), -(1104, 'Berat', 229, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1105, 'Polican', 229, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1106, 'Ure Vajgurore', 229, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1107, 'Bulqize', 230, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1108, 'Delvine', 231, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1109, 'Bilisht', 232, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1110, 'Maqellare', 233, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1111, 'Peshkopi', 233, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1112, 'Durres', 234, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1113, 'Shijak', 234, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1114, 'Cerrik', 235, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1115, 'Elbasan', 235, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1116, 'Kerrabe', 235, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1117, 'Fier', 236, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1118, 'Patos', 236, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1119, 'Roskovec', 236, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1120, 'Gjirokaster', 237, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1121, 'Libohove', 237, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1122, 'Gramsh', 238, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1123, 'Krume', 239, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1124, 'Kavaje', 240, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1125, 'Erseke', 241, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1126, 'Leskovik', 241, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, 1), -(1127, 'Korce', 242, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1128, 'Maliq', 242, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1129, 'Fushe-Kruje', 243, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1130, 'Kruje', 243, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1131, 'Mamurras', 243, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1132, 'Milot', 243, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1133, 'Kucove', 244, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1134, 'Kukes', 245, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1135, 'Lac', 246, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1136, 'Lezhe', 247, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1137, 'Shengjin', 247, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1138, 'Librazhd', 248, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1139, 'Perrenjas', 248, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1140, 'Lushnje', 249, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1141, 'Rrogozhine', 249, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1142, 'Ballsh', 250, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, 1), -(1146, 'Camberwell', 228, '2024-01-21 11:51:29', '2024-01-21 11:51:29', NULL, 1), -(1150, 'Caulfield', 257, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1151, 'Chatswood', 258, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1152, 'Cheltenham', 259, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1153, 'Cherrybrook', 260, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1154, 'Clayton', 261, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1155, 'Collingwood', 262, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1156, 'Hawthorn', 264, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1157, 'Jannnali', 265, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1158, 'Knoxfield', 266, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1159, 'Melbourne', 267, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1160, 'South Oakleigh', 267, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1161, 'Cottesole', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1162, 'Darch', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1163, 'Mullaloo', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1164, 'Noranda', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1165, 'Osborne Park', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1166, 'Willetton', 270, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1167, 'Acacia Ridge', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1168, 'Aitkenvale', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1169, 'Alderley', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1170, 'Alexander Hills', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1171, 'Archerfield', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1172, 'Ashmore', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1173, 'Atherton', 271, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, 1), -(1174, 'Ayr', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1175, 'Beachmere', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1176, 'Beenleigh', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1177, 'Beerwah', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1178, 'Bell', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1179, 'Belmont', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1180, 'Biloela', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1181, 'Birkdale', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1182, 'Blackwater', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1183, 'Bongaree', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1184, 'Bonogin', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1185, 'Boonah', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1186, 'Bowen', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1187, 'Brendale', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1188, 'Brisbane', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1189, 'Buddina', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1190, 'Buderim', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1191, 'Bundaberg', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1192, 'Bundall', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1193, 'Burleigh Heads', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1194, 'Burpengary', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1195, 'Cabaland', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1196, 'Caboolture', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1197, 'Cairns', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1198, 'Cairns Northern Beaches', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1199, 'Caloundra', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1200, 'Capalaba', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1201, 'Charters Towers', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1202, 'Childers', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1203, 'Cleveland', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1204, 'Coolum Beach', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1205, 'Coopers Plain', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1206, 'Dalby', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1207, 'Deception Bay', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1208, 'Eagle Farm', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1209, 'Eagleby', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1210, 'Emerald', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1211, 'Emundi', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1212, 'Forest Lake', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1213, 'Gatton', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1214, 'Gladstone', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1215, 'Gold Coast', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1216, 'Gowrie Junction', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1217, 'Gympie', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1218, 'Helensvale', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1219, 'Hervey Bay', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1220, 'Ingham', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1221, 'Innisfail', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1222, 'Ipswich', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1223, 'Jindalee', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1224, 'Julatten', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1225, 'Kawana Waters', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1226, 'Kingaroy', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1227, 'Lawnton', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1228, 'Loganholme', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1229, 'Mackay', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1230, 'Mareeba', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1231, 'Maroochydore', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1232, 'Maroochydore-Mooloolaba', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1233, 'Maryborough', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1234, 'Miami', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1235, 'Milton', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1236, 'Molendinar', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1237, 'Moranbah', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1238, 'Morayfield', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1239, 'Mossman', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1240, 'Mount Glorious', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1241, 'Mount Isa', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1242, 'Murarrie', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1243, 'Nairand Kay', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1244, 'Nambour', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1245, 'Nerang', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1246, 'Nobby Beach', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1247, 'Noosa Heads', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1248, 'Noosaville', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1249, 'Paddington', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1250, 'Port Douglas', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1251, 'Robina', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1252, 'Rockhampton', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1253, 'Rocklea', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1254, 'Roma', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1255, 'Rubyvale', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1256, 'Sanctuary Cove', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1257, 'Slade Point', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1258, 'Southport', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1259, 'Suburb', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1260, 'Sunshine Coast', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1261, 'Tewantin-Noosa', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1262, 'The Summit', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1263, 'Toowong', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1264, 'Toowoomba', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1265, 'Townsville', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1266, 'Victoria Point', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1267, 'Warwick', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1268, 'Willawong', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1269, 'Yatala', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1270, 'Yeppoon', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1271, 'Zillmere', 271, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1272, 'Bridgewater-Gagebrook', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1273, 'Burnie', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1274, 'Burnie-Devonport', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1275, 'Glenorchy', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1276, 'Hobart', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1277, 'Kingston-Blackmans Bay', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1278, 'Launceston', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1279, 'New Norfolk', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1280, 'Rowella', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1281, 'Sheffield', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1282, 'Ulverstone', 273, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1283, 'Templestowe', 274, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1284, 'Albion', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1285, 'Avenel', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1286, 'Avondale Heights', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1287, 'Baccus Marsh', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1288, 'Bairnsdale', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1289, 'Ballarat', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1290, 'Balwyn', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1291, 'Batman', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1292, 'Bayswater', 275, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, 1), -(1293, 'Benalla', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1294, 'Bendigo', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1295, 'Bentleigh East', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1296, 'Berwick', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1297, 'Blackburn', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1298, 'Blue Mountains', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1299, 'Boronia', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1300, 'Box Hill', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1301, 'Brighton East', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1302, 'Bundoora', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1303, 'Campbellfield', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1304, 'Carlton South', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1305, 'Caroline Springs', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1306, 'Castle Hill', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1307, 'Castlemaine', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(1308, 'Chester', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1309, 'Clayton South', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1310, 'Clifton Springs', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1311, 'Coburg', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1312, 'Colac', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1313, 'Craigieburn', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1314, 'Cranbourne', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1315, 'Crib Point', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1316, 'Dandenong', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1317, 'Devon Meadows', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1318, 'Diamond Creek', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1319, 'Doncaster East', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1320, 'Doncester', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1321, 'Donvale', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1322, 'Echuca-Moama', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1323, 'Elsternwick', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1324, 'Eltham', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1325, 'Fairfield', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1326, 'Fitzroy', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1327, 'Frnakston', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1328, 'Geelong', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1329, 'Glen Waverley', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1330, 'Hallam', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1331, 'Hamilton', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1332, 'Hastings', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1333, 'Healesville', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1334, 'Horsham', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1335, 'Hughesdale', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1336, 'Ivanhoe', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1337, 'Keilor', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1338, 'Kensington', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1339, 'Kerang', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1340, 'Kilmore', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1341, 'Kilsyth', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1342, 'Kyabram', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1343, 'Lakes Entrance', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1344, 'Lalor', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1345, 'Lara', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1346, 'Laverton North', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1347, 'Leopold', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1348, 'Lower Templestowe', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1349, 'Maidstone', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1350, 'Malvern', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1351, 'Melton', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1352, 'Middle Park', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1353, 'Mildura', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1354, 'Mitcham', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1355, 'Moe-Yallourn', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1356, 'Moorabbin', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1357, 'Mordialloc', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1358, 'Morwell', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1359, 'Mulgrave', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1360, 'Murrumbeena', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1361, 'Neerim South', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1362, 'Noble Park North', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1363, 'Notting Hill', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1364, 'Oak Park', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1365, 'Ocean Grove-Barwon Heads', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1366, 'Olinda', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1367, 'Pakenham', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1368, 'Park Orchards', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1369, 'Port Melbourne', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1370, 'Portland', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1371, 'Prahran', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1372, 'Preston', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1373, 'Pritbourne', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1374, 'Queenscliff', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1375, 'Reservoir', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1376, 'Ringwood', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1377, 'Rowville', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1378, 'Sale', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1379, 'Sandringham', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1380, 'Scoresby', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1381, 'Sebastopol', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1382, 'Seymour', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1383, 'Shepparton-Mooroopna', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1384, 'Somerville', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1385, 'South Yarra', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1386, 'Southbank', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1387, 'St. Albans', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1388, 'St. Kilda East', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1389, 'Stawell', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1390, 'Sunbury', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1391, 'Sunshine West', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1392, 'Swan Hill', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1393, 'Tatura', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1394, 'Thomastown', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1395, 'Thornbury', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1396, 'Tongala', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1397, 'Torquay', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1398, 'Traralgon', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1399, 'Tullamarine', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1400, 'Vermont', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1401, 'Wangaratta', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1402, 'Wantirna', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1403, 'Warragul', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1404, 'Warrnambool', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1405, 'Welshpool', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1406, 'Wendouree', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1407, 'Wonthaggi', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1408, 'Woodend', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1409, 'Yarrawonga-Mulwala', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1410, 'Yea', 275, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, 1), -(1411, 'Wheeler', 278, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1412, 'Eisenstadt', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1413, 'GroBpetersdorf', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1414, 'Jennersdorf', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1415, 'Kemeten', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1416, 'Mattersburg', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1417, 'Neudorfl', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1418, 'Neusiedl am See', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1419, 'Oberwart', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1420, 'Pinkafeld', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1421, 'Rust', 282, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1422, 'Maria Rain', 283, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1423, 'Poggersdorf', 283, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1424, 'Althofen', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1425, 'Arnoldstein', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1426, 'Bad Sankt Leonhard', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1427, 'Bleiburg', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1428, 'Ebenthal', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1429, 'Eberndorf', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1430, 'Feldkirchen', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1431, 'Ferlach', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1432, 'Finkenstein', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1433, 'Friesach', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1434, 'Hermagor', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1435, 'Klagenfurt', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1436, 'Lohnsburg', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1437, 'Moosburg', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1438, 'Paternion', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1439, 'Radentheim', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1440, 'Sankt Andra', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1441, 'Sankt Jakob', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1442, 'Sankt Veit', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1443, 'Seeboden', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1444, 'Spittal', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1445, 'Velden am Worthersee', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1446, 'Villach', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1447, 'Volkermarkt', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1448, 'Wernberg', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1449, 'Wolfsberg', 284, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1450, 'Amstetten', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1451, 'Bad Voslau', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1452, 'Baden', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1453, 'Berndorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1454, 'Boheimkirchen', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1455, 'Bruck an der Leitha', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1456, 'Brunn', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1457, 'Deutsch-Wagram', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1458, 'Ebreichsdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1459, 'Eggendorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1460, 'Fischamend', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1461, 'Gablitz', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1462, 'Ganserndorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1463, 'Gerasdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1464, 'Gloggnitz', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1465, 'Gmund', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1466, 'Greifenstein', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1467, 'GroB-Enzersdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1468, 'GroB-Gerungs', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1469, 'Guntramsdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1470, 'Haag', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1471, 'Hainburg', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1472, 'Heidenreichstein', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1473, 'Herzogenburg', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1474, 'Himberg', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1475, 'Hollabrunn', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1476, 'Horn', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1477, 'Klosterneuburg', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1478, 'Korneuburg', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1479, 'Kottingbrunn', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1480, 'Krems', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1481, 'Laa', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1482, 'Langenlois', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1483, 'Langenzersdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1484, 'Leobendorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1485, 'Leopoldsdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1486, 'Lilienfeld', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1487, 'Loipersdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1488, 'Maria Enzersdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1489, 'Melk', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1490, 'Mistelbach', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1491, 'Modling', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1492, 'Neulengbach', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1493, 'Neunkirchen', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1494, 'Niederleis', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1495, 'Ober-Grabendorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1496, 'Perchtoldsdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1497, 'Pernitz', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1498, 'Pottendorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1499, 'Poysdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1500, 'Pressbaum', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1501, 'Purgstall', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1502, 'Purkersdorf', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1503, 'Reichenau', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1504, 'Retz', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1505, 'Sankt Andra-Wordern', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1506, 'Sankt Peter in der Au', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1507, 'Sankt Polten', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1508, 'Sankt Valentin', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1509, 'Scheibbs', 287, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, 1), -(1510, 'Schrems', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1511, 'Schwechat', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1512, 'Seitenstetten', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1513, 'Sollenau', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1514, 'Stockerau', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1515, 'Strasshof', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1516, 'Ternitz', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1517, 'Traiskirchen', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1518, 'Traismauer', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1519, 'Tulln', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1520, 'Vosendorf', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1521, 'Waidhofen', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1522, 'Wiener Neudorf', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1523, 'Wiener Neustadt', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1524, 'Wieselburg', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1525, 'Wilhelmsburg', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1526, 'Wolkersdorf', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1527, 'Ybbs', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1528, 'Ybbsitz', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1529, 'Zistersdorf', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1530, 'Zwettl', 287, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1531, 'Alkoven', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1532, 'Altheim', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1533, 'Altmunster', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1534, 'Andorf', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1535, 'Ansfelden', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1536, 'Asten', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1537, 'Attnang-Puchheim', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1538, 'Aurolzmunster', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1539, 'Bad Goisern', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1540, 'Bad Hall', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1541, 'Bad Ischl', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1542, 'Braunau', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1543, 'Breitenfurt', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1544, 'Ebensee', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1545, 'Eferding', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1546, 'Engerwitzdorf', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1547, 'Enns', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1548, 'Feldkirchen an der Donau', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1549, 'Frankenburg', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1550, 'Freistadt', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1551, 'Gallneukirchen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1552, 'Garsten', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1553, 'Gmunden', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1554, 'Gramastetten', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1555, 'Grieskirchen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1556, 'Gunskirchen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1557, 'Horsching', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1558, 'Kirchdorf an der Krems', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1559, 'Kremsmunster', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1560, 'Krenglbach', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1561, 'Laakirchen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1562, 'Lenzing', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1563, 'Leonding', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1564, 'Linz', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1565, 'Loibichl', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1566, 'Marchtrenk', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1567, 'Mattighofen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1568, 'Mauthausen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1569, 'Micheldorf', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1570, 'Neuhofen an der Krems', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1571, 'Ohlsdorf', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1572, 'Ottensheim', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1573, 'Pasching', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1574, 'Perg', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1575, 'Pettenbach', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1576, 'Pram', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1577, 'Pregarten', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1578, 'Puchenau', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1579, 'Regau', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1580, 'Ried', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1581, 'Rohrbach in Oberosterreich', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1582, 'Rutzenmoos', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1583, 'Sankt Florian', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1584, 'Sankt Georgen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1585, 'Sankt Marien', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1586, 'Scharding', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1587, 'Scharnstein', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1588, 'Schwertberg', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1589, 'Seewalchen', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1590, 'Sierning', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1591, 'Stadl-Paura', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1592, 'Steyr', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1593, 'Steyregg', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1594, 'Steyrermuhl', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1595, 'Thalheim', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1596, 'Timelkam', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1597, 'Traun', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1598, 'Vocklabruck', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1599, 'Vocklamarkt', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1600, 'Vorchdorf', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1601, 'Wels', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1602, 'Wilhering', 288, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1603, 'Abtenau', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1604, 'Anif', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1605, 'Bad Gastein', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1606, 'Bad Hofgastein', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1607, 'Bergheim', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1608, 'Bischofshofen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1609, 'Bruck an der GroBglocknerstraB', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1610, 'Burmoos', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1611, 'Elsbethen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1612, 'Eugendorf', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1613, 'Forstau', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1614, 'Grodig', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1615, 'Hallein', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1616, 'Hallwang', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1617, 'Henndorf', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1618, 'Kuchl', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1619, 'Mayrhofen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1620, 'Mittersill', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1621, 'Neumarkt', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1622, 'Oberndorf', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1623, 'Obertrum am See', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1624, 'Piesendorf', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1625, 'Puch', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1626, 'Radstadt', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1627, 'Saalfelden', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1628, 'Salzburg', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1629, 'Sankt Johann im Pongau', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1630, 'Seekirchen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1631, 'Sieghartskirchen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1632, 'StraBwalchen', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1633, 'Strobl', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1634, 'Tamsweg', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1635, 'Thalgau', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1636, 'Wals-Siezenheim', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1637, 'Wolfgangsee', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1638, 'Zell am See', 289, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1639, 'Albersdorf', 290, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, 1), -(1640, 'Bad Aussee', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1641, 'Barnbach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1642, 'Bruck an der Mur', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1643, 'Deutschlandsberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1644, 'Eisenerz', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1645, 'Feldbach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1646, 'Feldkirchen bei Graz', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1647, 'Fohnsdorf', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1648, 'Frohnleiten', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1649, 'Furstenfeld', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1650, 'Gleisdorf', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1651, 'Gratkorn', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1652, 'Graz', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1653, 'Hartberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1654, 'Judenburg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1655, 'Judendorf-StraBengel', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1656, 'Kapfenberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1657, 'Karlsdorf', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1658, 'Kindberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1659, 'Knittelfeld', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1660, 'Koflach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1661, 'Krieglach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1662, 'Lannach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1663, 'Leibnitz', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1664, 'Leoben', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1665, 'Liezen', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1666, 'Murzzuschlag', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1667, 'Rottenmann', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1668, 'Schladming', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1669, 'Seiersberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1670, 'Spielberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1671, 'Trofaiach', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1672, 'Voitsberg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1673, 'Wagna', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1674, 'Weiz', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1675, 'Zeltweg', 291, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1676, 'Deutschfeistritz', 292, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1677, 'Sankt Bartholoma', 292, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1678, 'Absam', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1679, 'Axams', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1680, 'Ebbs', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1681, 'Fugen', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1682, 'Hall', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1683, 'Haselgehr', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1684, 'Hopfgarten', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1685, 'Imst', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1686, 'Innsbruck', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1687, 'Jenbach', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1688, 'Kirchberg', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1689, 'Kirchbichl', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1690, 'Kitzbuhel', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1691, 'Kramsach', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1692, 'Kufstein', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1693, 'Landeck', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1694, 'Lienz', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1695, 'Matrei', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1696, 'Neustift im Stubaital', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1697, 'Reutte', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1698, 'Rum', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1699, 'Sankt Johann in Tirol', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1700, 'Scheffau', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1701, 'Schwaz', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1702, 'St. Johann Am Walde', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1703, 'Telfs', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1704, 'Vols', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1705, 'Vomp', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1706, 'Wattens', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1707, 'Worgl', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1708, 'Zirl', 293, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1709, 'Altach', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1710, 'Bludenz', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1711, 'Bregenz', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1712, 'Chassieu', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1713, 'Dietmannsried', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1714, 'Dornbirn', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1715, 'Feldkirch', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1716, 'Frastanz', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1717, 'Gotzis', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1718, 'Hard', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1719, 'Hochst', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1720, 'Hohenems', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1721, 'Horbranz', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1722, 'Hufingen', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1723, 'Lauterach', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1724, 'Lochau', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1725, 'Lustenau', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1726, 'Mittelberg', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1727, 'Nenzing', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1728, 'Nuziders', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1729, 'Rankweil', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1730, 'Schruns', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1731, 'Thuringen', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1732, 'Wolfurt', 295, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1733, 'Vienna', 296, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1734, 'Wien', 296, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1735, 'Alat', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1736, 'Artyom', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1737, 'Baki', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1738, 'Bakixanov', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1739, 'Balaxani', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1740, 'Bilacari', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1741, 'Bilqax', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1742, 'Bina', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1743, 'Buzovna', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1744, 'Haci Zeynalabdin', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1745, 'Hovsan', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1746, 'Lokbatan', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1747, 'Mastaga', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1748, 'Puta', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1749, 'Qarasuxur', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1750, 'Qobustan', 297, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, 1), -(1751, 'Rasulzada', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1752, 'Sabuncu', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1753, 'Sanqacal', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1754, 'Sumqayit', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1755, 'Suraxani', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1756, 'Xirdalan', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1757, 'Zirya', 297, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1758, 'Daskasan', 299, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1759, 'Ganca', 299, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1760, 'Xanlar', 299, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1761, 'Ganja', 300, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1762, 'Cabrayil', 301, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1763, 'Kalbacar', 301, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1764, 'Lacin', 301, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1765, 'Astara', 302, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1766, 'Goytapa', 302, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1767, 'Lankaran', 302, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1768, 'Masalli', 302, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1769, 'Neftcala', 302, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1770, 'Agcabadi', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1771, 'Agdam', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1772, 'Barda', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1773, 'Mingacevir', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1774, 'Tartar', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1775, 'Yevlax', 303, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1776, 'Ali Bayramli', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1777, 'Bilasuvar', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1778, 'Calilabad', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1779, 'Qarasu', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1780, 'Qazimammad', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1781, 'Saatli', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1782, 'Sabirabad', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1783, 'Salyan', 304, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1784, 'Susa', 305, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1785, 'Xankandi', 305, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1786, 'Xocavand', 305, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1787, 'Culfa', 306, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1788, 'Naxcivan', 306, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1789, 'Ordubad', 306, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1790, 'Sadarak', 306, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1791, 'Sarur', 306, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1792, 'Beylaqan', 307, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1793, 'Fuzuli', 307, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1794, 'Imisli', 307, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1795, 'Agstafa', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1796, 'Gadabay', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1797, 'Kovlar', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1798, 'Qaracamirli', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1799, 'Qazax', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1800, 'Samkir', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1801, 'Tovuz', 308, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1802, 'Amircan', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1803, 'Balakan', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1804, 'Katex', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1805, 'Oguz', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1806, 'Qabala', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1807, 'Qax', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1808, 'Saki', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1809, 'Zaqatala', 309, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1810, 'Agdas', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1811, 'Agsu', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1812, 'Goycay', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1813, 'Ismayilli', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1814, 'Kurdamir', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1815, 'Samaxi', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1816, 'Ucar', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1817, 'Zardab', 310, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1818, 'Davaci', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1819, 'Quba', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1820, 'Qusar', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1821, 'Siyazan', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1822, 'Xacmaz', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1823, 'Xudat', 311, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1824, 'Coopers Town', 312, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, 1), -(1825, 'Marsh Harbour', 312, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1826, 'Andros Town', 314, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1827, 'Nicholls Town', 314, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1828, 'Alice Town', 316, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1829, 'Freetown', 319, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1830, 'Rock Sound', 319, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1831, 'Pirates Well', 324, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1832, ' Isa', 329, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1833, 'Badiyah', 330, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1834, 'Hidd', 331, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1835, 'Mahama', 333, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1836, 'Manama', 334, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1837, 'Sitrah', 335, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1838, 'al-Manamah', 336, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1839, 'al-Muharraq', 337, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1840, 'ar-Rifa a', 338, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1841, 'Bandarban', 340, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, 1), -(1842, 'Barguna', 341, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1843, 'Barisal', 342, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1844, 'Gaurnadi', 342, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1845, 'Mehendiganj', 342, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1846, 'Nalchiti', 342, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1847, 'Bhola', 343, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1848, 'Burhanuddin', 343, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1849, 'Char Fasson', 343, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1850, 'Lalmohan', 343, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1851, 'Adamighi', 344, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1852, 'Bogora', 344, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1853, 'Sherpur', 344, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1854, 'Chandpur', 346, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1855, 'Hajiganj', 346, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1856, 'Boalkhali', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1857, 'Chattagam', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1858, 'Fatikchhari', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1859, 'Lohagara', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1860, 'Patiya', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1861, 'Rangunia', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1862, 'Raozan', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1863, 'Sandip', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1864, 'Satkaniya', 347, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1865, 'Alamdanga', 349, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1866, 'Chuadanga', 349, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1867, 'Damurhuda', 349, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1868, 'Dhaka', 350, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1869, 'Dhamrai', 350, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1870, 'Dohar', 350, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1871, 'Bochanganj', 351, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1872, 'Dinajpur', 351, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1873, 'Fulbari', 351, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1874, 'Parbatipur', 351, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1875, 'Bhanga', 352, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1876, 'Char Bhadrasan', 352, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1877, 'Faridpur', 352, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1878, 'Chhagalnaiya', 353, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1879, 'Feni', 353, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1880, 'Gaybanda', 354, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1881, 'Gazipur', 355, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1882, 'Tungi', 355, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1883, 'Gopalganj', 356, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1884, 'Tungi Para', 356, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1885, 'Baniachang', 357, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1886, 'Habiganj', 357, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1887, 'Jamalpur', 359, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1888, 'Sarishabari', 359, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1889, 'Abhaynagar', 360, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1890, 'Jessor', 360, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1891, 'Jhikargachha', 360, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1892, 'Keshabpur', 360, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, 1), -(1893, 'Jhalakati', 361, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1894, 'Jhanaydah', 362, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1895, 'Kaliganj', 362, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1896, 'Kotchandpur', 362, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1897, 'Shailkupa', 362, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1898, 'Khagrachari', 363, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1899, 'Manikchhari', 363, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1900, 'Ramgarh', 363, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1901, 'Khulna', 364, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1902, 'Phultala', 364, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1903, 'Bajitpur', 365, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1904, 'Bhairab Bazar', 365, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1905, 'Itna', 365, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1906, 'Kishorganj', 365, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1907, 'Komilla', 367, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1908, 'Laksham', 367, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1909, 'Chilmari', 368, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1910, 'Kurigram', 368, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1911, 'Nageshwari', 368, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1912, 'Ulipur', 368, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1913, 'Bheramara', 369, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1914, 'Kushtiya', 369, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1915, 'Lakshmipur', 370, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1916, 'Ramganj', 370, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1917, 'Ramgati', 370, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1918, 'Raypur', 370, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1919, 'Madaripur', 372, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1920, 'Magura', 373, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1921, 'Bhaluka', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1922, 'Fulbaria', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1923, 'Gafargaon', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1924, 'Ishwarganj', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1925, 'Maimansingh', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1926, 'Muktagachha', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1927, 'Trishal', 374, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1928, 'Manikganj', 375, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1929, 'Meherpur', 377, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1930, 'Munshiganj', 378, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1931, 'Kalia', 379, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1932, 'Naral', 379, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1933, 'Narayanganj', 380, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1934, 'Rupganj', 380, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1935, 'Narsingdi', 381, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1936, 'Roypura', 381, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, 1), -(1937, 'Gurudaspur', 382, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1938, 'Nator', 382, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1939, 'Naugaon', 383, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(1940, 'Gomastapur', 384, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1941, 'Nawabganj', 384, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1942, 'Shibganj', 384, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1943, 'Netrakona', 385, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1944, 'Domar', 386, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1945, 'Nilphamari', 386, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1946, 'Sa idpur', 386, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1947, 'Begamganj', 387, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1948, 'Noakhali', 387, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1949, 'Senbagh', 387, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1950, 'Bera', 388, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1951, 'Bhangura', 388, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1952, 'Ishurdi', 388, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1953, 'Pabna', 388, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1954, 'Panchagarh', 389, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1955, 'Patuakhali', 390, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1956, 'Bhandaria', 391, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1957, 'Mathbaria', 391, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1958, 'Nesarabad', 391, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1959, 'Pirojpur', 391, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1960, 'Pangsha', 392, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1961, 'Rajbari', 392, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1962, 'Rajshahi', 393, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1963, 'Kaptai', 394, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1964, 'Rangamati', 394, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1965, 'Badarganj', 395, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1966, 'Kaunia', 395, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1967, 'Rangpur', 395, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1968, 'Satkhira', 396, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1969, 'Palang', 397, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1970, 'Nalitabari', 398, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1971, 'Silhat', 399, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1972, 'Shahjadpur', 400, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1973, 'Sirajganj', 400, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1974, 'Chhatak', 401, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1975, 'Sunamganj', 401, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1976, 'Gopalpur', 402, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1977, 'Mirzapur', 402, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1978, 'Sakhipur', 402, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1979, 'Tangayal', 402, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, 1), -(1980, 'Pirganj', 403, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1981, 'Thakurgaon', 403, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1982, 'Baranavichy', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1983, 'Bjaroza', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1984, 'Bjeloozersk', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1985, 'Brest', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1986, 'David-Haradok', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1987, 'Drahichyn', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1988, 'Hancavichy', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1989, 'Ivacevichy', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1990, 'Ivanava', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1991, 'Kamjenec', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1992, 'Kobryn', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1993, 'Kosava', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1994, 'Ljahavichy', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1995, 'Luninjec', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1996, 'Malaryta', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1997, 'Mikashevichy', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1998, 'Pinsk', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(1999, 'Pruzhany', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2000, 'Stolin', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2001, 'Vysokoje', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2002, 'Zhabinka', 411, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2003, 'Buda Kosheljovo', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2004, 'Chechersk', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2005, 'Dobrush', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2006, 'Hojniki', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2007, 'Homjel ', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2008, 'Jel sk', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2009, 'Kalinkavichy', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2010, 'Kascjukovka', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2011, 'Mazyr', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2012, 'Narovlja', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2013, 'Pjetrykav', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2014, 'Rahachow', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2015, 'Rechyca', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2016, 'Svetlahorsk', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2017, 'Vasilevichy', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2018, 'Vjetka', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2019, 'Zhlobin', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2020, 'Zhytkavichy', 412, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2021, 'Ashmjany', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2022, 'Berjozovka', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2023, 'Hrodna', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2024, 'Lida', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2025, 'Masty', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2026, 'Navahrudak', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2027, 'Shchuchyn', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2028, 'Skidel ', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2029, 'Slonim', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2030, 'Smarhon ', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2031, 'Vawkavysk', 413, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2032, 'Asipovichy', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2033, 'Babrujsk', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2034, 'Byhau', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2035, 'Chausy', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2036, 'Cherikov', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2037, 'Horki', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2038, 'Kascjukovichy', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2039, 'Klimavichy', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2040, 'Krychaw', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2041, 'Mahiljow', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2042, 'Mstislav', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2043, 'Shklov', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2044, 'Slaeuharad', 414, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2045, 'Minsk', 416, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, 1), -(2046, 'Petrikov', 418, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2047, 'Baran ', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2048, 'Braslav', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2049, 'Chashniki', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2050, 'Disna', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2051, 'Dokshicy', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2052, 'Dubrovna', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2053, 'Haradok', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2054, 'Hlybokaje', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2055, 'Ljepjel ', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2056, 'Mjory', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2057, 'Navapolack', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2058, 'Novalukoml ', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2059, 'Orsha', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2060, 'Pastavy', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2061, 'Polack', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2062, 'Polotsk', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2063, 'Senno', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2064, 'Talachyn', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2065, 'Verhnjadzvimsk', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2066, 'Vicebsk', 419, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2067, 'Aartselaar', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2068, 'Antwerpen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2069, 'Arendonk', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2070, 'Baarle-Hertog', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2071, 'Balen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2072, 'Beerse', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2073, 'Berlaar', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2074, 'Boechout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2075, 'Bonheiden', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2076, 'Boom', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2077, 'Bornem', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2078, 'Borsbeek', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2079, 'Brasschaat', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2080, 'Brecht', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2081, 'Dessel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2082, 'Deurne', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2083, 'Duffel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2084, 'Edegem', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2085, 'Ekeren', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2086, 'Essen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2087, 'Geel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2088, 'Geluvele', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2089, 'Grobbendonk', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2090, 'Heist-op-den-Berg', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2091, 'Hemiksem', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2092, 'Herentals', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2093, 'Herenthout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2094, 'Herselt', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2095, 'Hoogstraten', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2096, 'Hove', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2097, 'Hulshout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2098, 'Kalmpthout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2099, 'Kalmthout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2100, 'Kapellen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2101, 'Kasterlee', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2102, 'Kontich', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2103, 'Laakdal', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2104, 'Lier', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2105, 'Lille', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2106, 'Lint', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2107, 'Malle', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2108, 'Mechelen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2109, 'Meerhout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2110, 'Merksplas', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2111, 'Mol', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2112, 'Mortsel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2113, 'Niel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2114, 'Nijlen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2115, 'Olen', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2116, 'Oud-Turnhout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2117, 'Putte', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2118, 'Puurs', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2119, 'Ranst', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2120, 'Ravels', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2121, 'Retie', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2122, 'Rijkevorsel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2123, 'Robrechts', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2124, 'Rumst', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2125, 'Schelle', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2126, 'Schilde', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2127, 'Schoten', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2128, 'Sint-Amands', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2129, 'Sint-Katelijne-Waver', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2130, 'Stabroek', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2131, 'Turnhout', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2132, 'Vorselaar', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2133, 'Vosselaar', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2134, 'Westerlo', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2135, 'Wijnegem', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2136, 'Willebroek', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2137, 'Wilrijk', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2138, 'Wommelgem', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2139, 'Wuustwezel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2140, 'Zandhoven', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2141, 'Zoersel', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2142, 'Zwijndrecht', 420, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2143, 'Berchem', 421, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2144, 'Alsemberg', 422, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2145, 'Asse Zellik', 422, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2146, 'Brussels', 422, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2147, 'Bruxelles', 422, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2148, 'Diegem', 422, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, 1), -(2149, 'Brussel', 424, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2150, 'Aiseau-Presles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2151, 'Anderlues', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2152, 'Antoing', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2153, 'Ath', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2154, 'Beaumont', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2155, 'Beloeil', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2156, 'Bernissart', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2157, 'Binche', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2158, 'Boussu', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2159, 'Braine-le-Comte', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2160, 'Brugelette', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2161, 'Brunehaut', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2162, 'Celles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2163, 'Chapelle-lez-Herlaimont', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2164, 'Charleroi', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2165, 'Chatelet', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2166, 'Chievres', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2167, 'Chimay', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2168, 'Colfontaine', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2169, 'Comines-Warneton', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2170, 'Courcelles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2171, 'Dour', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2172, 'Ecaussinnes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2173, 'Ellezelles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2174, 'Enghien', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2175, 'Erquelinnes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2176, 'Estaimpuis', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2177, 'Estinnes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2178, 'Farciennes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2179, 'Fleurus', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2180, 'Flobecq', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2181, 'Fontaine-l Eveque', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2182, 'Frameries', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2183, 'Frasnes-lez-Anvaing', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2184, 'Froidchapelle', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2185, 'Gerpinnes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2186, 'Haine-Saint-Pierre', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2187, 'Ham-sur-Heure-Nalinnes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2188, 'Hensies', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2189, 'Honnelles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2190, 'Jurbise', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2191, 'La Louviere', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2192, 'Le Roeulx', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2193, 'Lens', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2194, 'Les Bons Villers', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2195, 'Lessines', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2196, 'Leuze-en-Hainaut', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2197, 'Lobbes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2198, 'Manage', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2199, 'Merbes-le-Chateau', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2200, 'Momignies', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2201, 'Mons', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2202, 'Mont-de-l Enclus', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2203, 'Montigny-le-Tilleul', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2204, 'Morlanwelz', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2205, 'Mouscron', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2206, 'Pecq', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2207, 'Peruwelz', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2208, 'Pont-a-Celles', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2209, 'Quaregnon', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2210, 'Quevy', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2211, 'Quievrain', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2212, 'Rumes', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2213, 'Saint-Ghislain', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2214, 'Seneffe', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2215, 'Silly', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2216, 'Sivry-Rance', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2217, 'Soignies', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2218, 'Thuin', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2219, 'Tournai', 426, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2220, 'Amay', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2221, 'Amel', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2222, 'Angleur', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2223, 'Ans', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2224, 'Anthisnes', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2225, 'Aubel', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2226, 'Awans', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2227, 'Aywaille', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2228, 'Baelen', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2229, 'Bassenge', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2230, 'Berloz', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2231, 'Beyne-Heusay', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2232, 'Blegny', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2233, 'Braives', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2234, 'Bullingen', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2235, 'Burdinne', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2236, 'Burg-Reuland', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2237, 'Butgenbach', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2238, 'Chaudfontaine', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2239, 'Clavier', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2240, 'Comblain-au-Pont', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2241, 'Crisnee', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2242, 'Dalhem', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2243, 'Dison', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2244, 'Donceel', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2245, 'Engis', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2246, 'Esneux', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2247, 'Eupen', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2248, 'Faimes', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2249, 'Ferrieres', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2250, 'Fexhe-le-Haut-Clocher', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2251, 'Flemalle', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2252, 'Fleron', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2253, 'Geer', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2254, 'Grace-Hollogne', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2255, 'Hamoir', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2256, 'Hannut', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2257, 'Heron', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2258, 'Herstal', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2259, 'Herve', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2260, 'Huy', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2261, 'Jalhay', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2262, 'Juprelle', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2263, 'Kelmis', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2264, 'Liege', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2265, 'Lierneux', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2266, 'Limbourg', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2267, 'Lincent', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2268, 'Lontzen', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2269, 'Malmedy', 427, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, 1), -(2270, 'Marchin', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2271, 'Modave', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2272, 'Montzen', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2273, 'Nandrin', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2274, 'Neupre', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2275, 'Olne', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2276, 'Oreye', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2277, 'Ouffet', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2278, 'Oupeye', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2279, 'Pepinster', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2280, 'Plombieres', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2281, 'Racour', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2282, 'Raeren', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2283, 'Remicourt', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2284, 'Saint-Georges-sur-Meuse', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2285, 'Saint-Nicolas', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2286, 'Sankt Vith', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2287, 'Seraing', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2288, 'Soumagne', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2289, 'Spa', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2290, 'Sprimont', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2291, 'Stavelot', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2292, 'Stoumont', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2293, 'Theux', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2294, 'Thimister-Clermont', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2295, 'Tinlot', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2296, 'Trois-Ponts', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2297, 'Trooz', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2298, 'Verlaine', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2299, 'Verviers', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2300, 'Villers-le-Bouillet', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2301, 'Vise', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2302, 'Waimes', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2303, 'Wanze', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2304, 'Waremme', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2305, 'Wasseiges', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2306, 'Welkenraedt', 427, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2307, 'Alken', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2308, 'As', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2309, 'Beringen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2310, 'Bilzen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2311, 'Bocholt', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2312, 'Borgloon', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2313, 'Bree', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2314, 'Diepenbeek', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2315, 'Dilsen-Stokkem', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2316, 'Genk', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2317, 'Gingelom', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2318, 'Halen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2319, 'Ham', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2320, 'Hamont-Achel', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2321, 'Hasselt', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2322, 'Hechtel-Eksel', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2323, 'Heers', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2324, 'Herk-de-Stad', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2325, 'Herstappe', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2326, 'Heusden-Zolder', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2327, 'Hoeselt', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2328, 'Houthalen-Helchteren', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2329, 'Kinrooi', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2330, 'Kortessem', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2331, 'Kuringen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2332, 'Lanaken', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2333, 'Leopoldsburg', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2334, 'Lommel', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2335, 'Lummen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2336, 'Maaseik', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2337, 'Maasmechelen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2338, 'Meeuwen-Gruitrode', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2339, 'Neerpelt', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2340, 'Nieuwerkerken', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2341, 'Opglabbeek', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2342, 'Overpelt', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2343, 'Peer', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2344, 'Riemst', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2345, 'Sint-Truiden', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2346, 'Tessenderlo', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2347, 'Tongeren', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2348, 'Voeren', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2349, 'Wellen', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2350, 'Zonhoven', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2351, 'Zutendaal', 428, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2352, 'Arlon', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2353, 'Attert', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2354, 'Aubange', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2355, 'Bastogne', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2356, 'Bertogne', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2357, 'Bertrix', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2358, 'Bouillon', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2359, 'Chiny', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2360, 'Daverdisse', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2361, 'Durbuy', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2362, 'Erezee', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2363, 'Etalle', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2364, 'Fauvillers', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2365, 'Florenville', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2366, 'Gouvy', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2367, 'Grapfontaine', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2368, 'Habay', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2369, 'Herbeumont', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2370, 'Hotton', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2371, 'Houffalize', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2372, 'La Roche-en-Ardenne', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2373, 'Leglise', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2374, 'Libin', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2375, 'Libramont-Chevigny', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2376, 'Manhay', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2377, 'Marche-en-Famenne', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2378, 'Marloie', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2379, 'Martelange', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2380, 'Meix-devant-Virton', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2381, 'Messancy', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2382, 'Musson', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2383, 'Nassogne', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2384, 'Neufchateau', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2385, 'Paliseul', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2386, 'Rendeux', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2387, 'Rouvroy', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2388, 'Saint-Hubert', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2389, 'Saint-Leger', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2390, 'Sainte-Ode', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2391, 'Tellin', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2392, 'Tenneville', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2393, 'Tintigny', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2394, 'Vaux-sur-Sure', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2395, 'Vielsalm', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2396, 'Virton', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2397, 'Wellin', 429, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2398, 'Andenne', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2399, 'Anhee', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2400, 'Assesse', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2401, 'Beauraing', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2402, 'Bievre', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2403, 'Cerfontaine', 430, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, 1), -(2404, 'Ciney', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2405, 'Couvin', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2406, 'Dinant', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2407, 'Doische', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2408, 'Eghezee', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2409, 'Fernelmont', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2410, 'Floreffe', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2411, 'Florennes', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2412, 'Fosses-la-Ville', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2413, 'Gedinne', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2414, 'Gembloux', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2415, 'Gesves', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2416, 'Hamois', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2417, 'Hastiere', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2418, 'Havelange', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2419, 'Houyet', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2420, 'Jambes', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2421, 'Jemeppe-sur-Sambre', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2422, 'La Bruyere', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2423, 'Malonne', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2424, 'Mettet', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2425, 'Namur', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2426, 'Ohey', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2427, 'Onhaye', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2428, 'Philippeville', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2429, 'Profondeville', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2430, 'Rochefort', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2431, 'Sambreville', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2432, 'Sombreffe', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2433, 'Somme-Leuze', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2434, 'Suarlee', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2435, 'Viroinval', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2436, 'Vresse-sur-Semois', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2437, 'Walcourt', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2438, 'Yvoir', 430, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2439, 'Gullegem', 431, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2440, 'Langdorp', 431, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2441, 'Aalst', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2442, 'Aalter', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2443, 'Assenede', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2444, 'Berlare', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2445, 'Beveren', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2446, 'Brakel', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2447, 'Buggenhout', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2448, 'De Pinte', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2449, 'Deinze', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2450, 'Denderleeuw', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2451, 'Dendermonde', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2452, 'Destelbergen', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2453, 'Drongen', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2454, 'Eeklo', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2455, 'Erembodegem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2456, 'Erpe-Mere', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2457, 'Evergem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2458, 'Gavere', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2459, 'Gent', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2460, 'Geraardsbergen', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2461, 'Ghent', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2462, 'Haaltert', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2463, 'Hamme', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2464, 'Herzele', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2465, 'Horebeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2466, 'Kaprijke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2467, 'Kerksken', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2468, 'Kluisbergen', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2469, 'Knesselare', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2470, 'Kruibeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2471, 'Kruishoutem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2472, 'Laarne', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2473, 'Lebbeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2474, 'Lede', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2475, 'Lierde', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2476, 'Lochristi', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2477, 'Lokeren', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2478, 'Lovendegem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2479, 'Maarkedal', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2480, 'Maldegem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2481, 'Melle', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2482, 'Merelbeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2483, 'Moerbeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2484, 'Nazareth', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2485, 'Nevele', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2486, 'Ninove', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2487, 'Oosterzele', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2488, 'Oudenaarde', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2489, 'Ronse', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2490, 'Semmerzake', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2491, 'Sint-Gillis-Waas', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2492, 'Sint-Laureins', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2493, 'Sint-Lievens-Houtem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2494, 'Sint-Martens-Latem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2495, 'Sint-Niklaas', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2496, 'Stekene', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2497, 'Temse', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2498, 'Waarschoot', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2499, 'Waasmunster', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2500, 'Wachtebeke', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2501, 'Wetteren', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2502, 'Wichelen', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2503, 'Wortegem-Petegem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2504, 'Zele', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2505, 'Zelzate', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2506, 'Zingem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2507, 'Zomergem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2508, 'Zottegem', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2509, 'Zulte', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2510, 'Zwalm', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2511, 'Zwijnaarde', 432, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2512, 'Aarschot', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2513, 'Affligem', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2514, 'Asse', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2515, 'Beersel', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2516, 'Begijnendijk', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2517, 'Bekkevoort', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2518, 'Bertem', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2519, 'Bever', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2520, 'Bierbeek', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2521, 'Boortmeerbeek', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2522, 'Boutersem', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2523, 'Diest', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2524, 'Dilbeek', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2525, 'Drogenbos', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2526, 'Galmaarden', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2527, 'Geetbets', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2528, 'Glabbeek', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2529, 'Gooik', 434, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, 1), -(2530, 'Grimbergen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2531, 'Haacht', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2532, 'Halle', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2533, 'Herent', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2534, 'Herne', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2535, 'Hoegaarden', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2536, 'Hoeilaart', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2537, 'Holsbeek', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2538, 'Huldenberg', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2539, 'Kampenhout', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2540, 'Kapelle-op-den-Bos', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2541, 'Keerbergen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2542, 'Kortenaken', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2543, 'Kortenberg', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2544, 'Kraainem', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2545, 'Landen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2546, 'Lennik', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2547, 'Leuven', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2548, 'Liedekerke', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2549, 'Linkebeek', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2550, 'Linter', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2551, 'Londerzeel', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2552, 'Lubbeek', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2553, 'Machelen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2554, 'Meise', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2555, 'Merchtem', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2556, 'Opwijk', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2557, 'Oud-Heverlee', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2558, 'Overijse', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2559, 'Pepingen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2560, 'Roosdaal', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2561, 'Rotselaar', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2562, 'Scherpenheuvel-Zichem', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2563, 'Sint-Genesius-Rode', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2564, 'Sint-Pieters-Leeuw', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2565, 'Steenokkerzeel', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2566, 'Ternat', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2567, 'Tervuren', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2568, 'Tielt-Winge', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2569, 'Tienen', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2570, 'Tremelo', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2571, 'Vilvoorde', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2572, 'Wemmel', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2573, 'Wezembeek-Oppem', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2574, 'Zaventem', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2575, 'Zemst', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(2576, 'Zoutleeuw', 434, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2577, 'Callenelle', 435, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2578, 'Marcinelle', 435, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2579, 'Strepy-Bracquegnies', 435, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2580, 'Alveringem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2581, 'Anzegem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2582, 'Ardooie', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2583, 'Avelgem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2584, 'Beernem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2585, 'Blankenberge', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2586, 'Bredene', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2587, 'Brugge', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2588, 'Damme', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2589, 'De Haan', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2590, 'De Panne', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2591, 'Deerlijk', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2592, 'Dentergem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2593, 'Diksmuide', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2594, 'Geluveld', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2595, 'Gistel', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2596, 'Harelbeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2597, 'Heuvelland', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2598, 'Hooglede', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2599, 'Houthulst', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2600, 'Ichtegem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2601, 'Ieper', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2602, 'Ingelmunster', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2603, 'Ingooigem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2604, 'Izegem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2605, 'Jabbeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2606, 'Knokke-Heist', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2607, 'Koekelare', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2608, 'Koksijde', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2609, 'Kortemark', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2610, 'Kortrijk', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2611, 'Kuurne', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2612, 'Langemark-Poelkapelle', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2613, 'Ledegem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2614, 'Lendelede', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2615, 'Lichtervelde', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2616, 'Lo-Reninge', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2617, 'Menen', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2618, 'Mesen', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2619, 'Meulebeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2620, 'Middelkerke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2621, 'Moorslede', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2622, 'Nieuwpoort', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2623, 'Oostende', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2624, 'Oostkamp', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2625, 'Oostrozebeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2626, 'Oudenburg', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2627, 'Pittem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2628, 'Poperinge', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2629, 'Roeselare', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2630, 'Ruiselede', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2631, 'Spiere-Helkijn', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2632, 'Staden', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2633, 'Tielt', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2634, 'Torhout', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2635, 'Veurne', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2636, 'Vleteren', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2637, 'Waregem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2638, 'Wervik', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2639, 'Wevelgem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2640, 'Wielsbeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2641, 'Wingene', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2642, 'Zedelgem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2643, 'Zeebrugge', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2644, 'Zonnebeke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2645, 'Zuienkerke', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2646, 'Zwevegem', 436, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2647, 'Belize', 437, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2648, 'Belmopan', 438, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2649, 'Benque Viejo', 438, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2650, 'San Ignacio', 438, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, 1), -(2651, 'Corozal', 439, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2652, 'Punta Gorda', 442, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2653, 'Kandi', 443, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2654, 'Malanville', 443, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2655, 'Batia', 444, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2656, 'Boukombe', 444, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2657, 'Kouande', 444, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2658, 'Natitingou', 444, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2659, 'Allada', 445, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2660, 'Cotonou', 445, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2661, 'Ouidah', 445, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2662, 'Tanguiete', 445, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2663, 'Bembereke', 446, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2664, 'Nikki', 446, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2665, 'Parakou', 446, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2666, 'Tchaourou', 446, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2667, 'Dassa', 447, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2668, 'Savalou', 447, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2669, 'Save', 447, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2670, 'Aplahoue', 448, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2671, 'Dogbo', 448, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2672, 'Djougou', 449, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2673, 'Athieme', 451, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2674, 'Come', 451, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2675, 'Grand Popo', 451, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2676, 'Lokossa', 451, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2677, 'Adjohoun', 452, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2678, 'Porto Novo', 452, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2679, 'Ketou', 453, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2680, 'Pobe', 453, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2681, 'Sakete', 453, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2682, 'Abomey', 454, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2683, 'Bohicon', 454, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2684, 'Cove', 454, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2685, 'Zagnanado', 454, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2686, 'Jakar', 456, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2687, 'Chhukha', 457, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2688, 'Phuentsholing', 457, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2689, 'Damphu', 458, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2690, 'Taga Dzong', 459, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2691, 'Geylegphug', 460, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, 1), -(2692, 'Ha', 461, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2693, 'Lhuntshi', 462, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2694, 'Mongar', 463, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2695, 'Pemagatsel', 464, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2696, 'Gasa', 465, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2697, 'Punakha', 465, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2698, 'Paro', 466, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2699, 'Phuntsholing', 467, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2700, 'Samchi', 467, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2701, 'Shemgang', 469, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2702, 'Tashigang', 470, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2703, 'Thimphu', 471, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2704, 'Timphu', 471, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2705, 'Tongsa', 472, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2706, 'Wangdiphodrang', 473, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2707, 'Guayaramerin', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2708, 'Magdalena', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2709, 'Reyes', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2710, 'Riberalta', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2711, 'Rurrenabaque', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2712, 'San Borja', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2713, 'San Ramon', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2714, 'Santa Ana', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2715, 'Santa Rosa', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2716, 'Trinidad', 474, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2717, 'Camargo', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2718, 'Monteagudo', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2719, 'Muyupampa', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2720, 'Padilla', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2721, 'Sucre', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2722, 'Tarabuco', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2723, 'Villa Serano', 475, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2724, 'Aiquile', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2725, 'Arani', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2726, 'Capinota', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2727, 'Chimore', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2728, 'Cliza', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2729, 'Cochabamba', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2730, 'Colomi', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2731, 'Entre Rios', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2732, 'Irpa Irpa', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2733, 'Ivirgarzama', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2734, 'Mizque', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2735, 'Punata', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2736, 'Shinahota', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2737, 'Sipe Sipe', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2738, 'Tarata', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2739, 'Ucurena', 476, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2740, 'Caracollo', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2741, 'Challapata', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2742, 'Eucaliptus', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2743, 'Huanuni', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2744, 'Machacamarca', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2745, 'Oruro', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2746, 'Poopo', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2747, 'Santiago de Huari', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2748, 'Totoral', 478, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2749, 'Cobija', 479, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, 1), -(2750, 'Atocha', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2751, 'Betanzos', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2752, 'Colquechaca', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2753, 'Llallagua', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2754, 'Potosi', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2755, 'Santa Barbara', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2756, 'Tupiza', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2757, 'Uncia', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2758, 'Uyuni', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2759, 'Villazon', 480, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2760, 'Bermejo', 481, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2761, 'Tarija', 481, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2762, 'Villamontes', 481, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2763, 'Yacuiba', 481, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2764, 'Kachikau', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2765, 'Kasane', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2766, 'Kavimba', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2767, 'Kazungula', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2768, 'Lesoma', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2769, 'Muchinje-Mabale', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2770, 'Pandamatenga', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2771, 'Pandamatenga Botswana Defence ', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2772, 'Parakarungu', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2773, 'Satau', 489, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2774, 'Francistown', 490, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2775, 'Gaborone', 491, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2776, 'Bere', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2777, 'Charles Hill', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2778, 'Chobokwane', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2779, 'Dekar', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2780, 'East Hanahai', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2781, 'Ghanzi', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2782, 'Groote Laagte', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2783, 'Kacgae', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2784, 'Karakobis', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2785, 'Kuke Quarantine Camp', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2786, 'Kule', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2787, 'Makunda', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2788, 'Ncojane', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2789, 'New Xade', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2790, 'New Xanagas', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2791, 'Qabo', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2792, 'Tsootsha', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2793, 'West Hanahai', 492, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2794, 'Jwaneng', 493, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2795, 'Artisia', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2796, 'Bokaa', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2797, 'Dikgonye', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2798, 'Dikwididi', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2799, 'Kgomodiatshaba', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2800, 'Khurutshe', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2801, 'Leshibitse', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2802, 'Mabalane', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2803, 'Malolwane', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2804, 'Malotwana Siding', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2805, 'Matebeleng', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2806, 'Mmamashia', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2807, 'Mmathubudukwane', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2808, 'Mochudi', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2809, 'Modipane', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2810, 'Morwa', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2811, 'Oliphants Drift', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2812, 'Oodi', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2813, 'Pilane', 496, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, 1), -(2814, 'Ramonaka', 496, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2815, 'Ramotlabaki', 496, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2816, 'Rasesa', 496, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2817, 'Sikwane', 496, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2818, 'Boatlaname', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2819, 'Botlhapatlou', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2820, 'Diagane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2821, 'Diphudugodu', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2822, 'Diremogolo Lands', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2823, 'Ditshegwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2824, 'Ditshukudu', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2825, 'Dumadumane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2826, 'Dutlwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2827, 'Gabane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2828, 'Gakgatla', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2829, 'Gakuto', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2830, 'Galekgatshwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2831, 'Gamodubu', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2832, 'Gaphatshwa', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2833, 'Hatsalatladi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2834, 'Kamenakwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2835, 'Kaudwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2836, 'Kgaphamadi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2837, 'Kgope', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2838, 'Khekhenya-Chepetese', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2839, 'Khudumelapye', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2840, 'Kopong', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2841, 'Kotolaname', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2842, 'Kubung', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2843, 'Kumakwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2844, 'Kweneng', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2845, 'Lentsweletau', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2846, 'Lephepe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2847, 'Lesirane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2848, 'Letlhakeng', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2849, 'Losilakgokong', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2850, 'Maboane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2851, 'Mahetlwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2852, 'Makabanyane-Dikgokong', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2853, 'Malwelwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2854, 'Mamhiko', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2855, 'Manaledi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2856, 'Mantshwabisi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2857, 'Marejwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2858, 'Masebele', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2859, 'Medie', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2860, 'Metsibotlhoko', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2861, 'Metsimotlhaba', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2862, 'Mmakanke', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2863, 'Mmankgodi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2864, 'Mmanoko', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2865, 'Mmokolodi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2866, 'Mmopane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2867, 'Mmopane Lands', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2868, 'Mogoditshane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2869, 'Mogoditshane Botswana Defence ', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2870, 'Mogoditshane Lands', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2871, 'Mogonono', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2872, 'Molepolole', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2873, 'Mononyane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2874, 'Monwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2875, 'Morabane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2876, 'Morope', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2877, 'Moshaweng', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2878, 'Mosokotswe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2879, 'Motokwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2880, 'Ngware', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2881, 'Nkoyaphiri', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2882, 'Ramaphatlhe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2883, 'Salajwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2884, 'Serinane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2885, 'Sesung', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2886, 'Shadishadi', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2887, 'Sojwe', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2888, 'Sorilatholo', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2889, 'Suping', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2890, 'Takatokwane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2891, 'Thamaga', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2892, 'Thebephatshwa', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2893, 'Tlowaneng', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2894, 'Tsetseng', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2895, 'Tswaane', 497, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2896, 'Lobatse', 498, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2897, 'Bodibeng', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2898, 'Boro', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2899, 'Botlhatlogo', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2900, 'Chanoga', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2901, 'Chuchubega', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2902, 'Daonara', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2903, 'Ditshiping', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2904, 'Habu', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2905, 'Jao', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2906, 'Kareng', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2907, 'Katamaga', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2908, 'Kgakge', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2909, 'Khwai Camp', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2910, 'Komana', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2911, 'Legotlhwana', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2912, 'Mababe', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2913, 'Makalamabedi', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2914, 'Matlapana', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2915, 'Matsaudi', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2916, 'Mawana', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2917, 'Mokgalo-Haka', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2918, 'Morutsha', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2919, 'Nxharaga', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2920, 'Phuduhudu', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2921, 'Samodupi', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2922, 'Sankuyo', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2923, 'Sehithwa', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2924, 'Semboyo', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2925, 'Sexaxa', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2926, 'Shakawe', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2927, 'Shorobe', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2928, 'Somela', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2929, 'Toteng', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2930, 'Tsanekona', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2931, 'Tsao', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2932, 'Xaxaba', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2933, 'Xhobe', 499, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2934, 'Bethel', 500, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2935, 'Borobadilepe', 500, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, 1), -(2936, 'Diabo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2937, 'Digawana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2938, 'Dikhukhung', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2939, 'Dinatshana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2940, 'Dipotsana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2941, 'Ditlharapa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2942, 'Gamajalela', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2943, 'Gasita', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2944, 'Gathwane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2945, 'Good Hope', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2946, 'Goora-seno', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2947, 'Gopong', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2948, 'Hebron', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2949, 'Itholoke', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2950, 'Kanaku', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2951, 'Kangwe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2952, 'Kanye', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2953, 'Keng', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2954, 'Kgomokasitwa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2955, 'Kgoro', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2956, 'Khakhea', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2957, 'Khonkhwa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2958, 'Kokong', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2959, 'Lehoko', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2960, 'Lejwana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2961, 'Lekgolobotlo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2962, 'Leporung', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2963, 'Logagane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2964, 'Lorolwana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2965, 'Lorwana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2966, 'Lotlhakane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2967, 'Lotlhakane West', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2968, 'Mabule', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2969, 'Mabutsane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2970, 'Madingwana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2971, 'Magoriapitse', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2972, 'Magotlhawane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2973, 'Mahotshwane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2974, 'Maisane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2975, 'Makokwe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2976, 'Malokaganyane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2977, 'Manyana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2978, 'Maokane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2979, 'Marojane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2980, 'Maruswa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2981, 'Metlobo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2982, 'Metlojane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2983, 'Mmakgori', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2984, 'Mmathethe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2985, 'Mogojogojo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2986, 'Mogonye', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2987, 'Mogwalale', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2988, 'Mokatako', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2989, 'Mokgomane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2990, 'Mokhomba', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2991, 'Molapowabojang', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2992, 'Molete', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2993, 'Morwamosu', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2994, 'Moshaneng', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2995, 'Moshupa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2996, 'Motlhwatse', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2997, 'Motsentshe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2998, 'Musi', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(2999, 'Ngwatsau', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3000, 'Ntlhantlhe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3001, 'Papatlo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3002, 'Phihitshwane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3003, 'Pitsana-Potokwe', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3004, 'Pitsane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3005, 'Pitseng-Ralekgetho', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3006, 'Pitshane Molopo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3007, 'Rakhuna', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3008, 'Ralekgetho', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3009, 'Ramatlabama', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3010, 'Ranaka', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3011, 'Sedibeng', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3012, 'Segakwana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3013, 'Segwagwa', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3014, 'Seherelela', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3015, 'Sekhutlane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3016, 'Sekoma', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3017, 'Selokolela', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3018, 'Semane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3019, 'Sese', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3020, 'Sheep Farm', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3021, 'Tlhankane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3022, 'Tlhareseleele', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3023, 'Tshidilamolomo', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3024, 'Tshwaane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3025, 'Tsonyane', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3026, 'Tswaaneng', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3027, 'Tswagare-Lothoje-Lokalana', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3028, 'Tswanyaneng', 500, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3029, 'Beetsha', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3030, 'Eretsha', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3031, 'Etsha 1', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3032, 'Etsha 13', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3033, 'Etsha 6', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3034, 'Etsha 8', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3035, 'Etsha 9', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3036, 'Gane', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3037, 'Gonutsuga', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3038, 'Gowe', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3039, 'Gudingwa', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3040, 'Gumare', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3041, 'Ikoga', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3042, 'Kajaja', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3043, 'Kapotora Lands', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3044, 'Kauxwhi', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3045, 'Matswee', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3046, 'Maun', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3047, 'Moaha', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3048, 'Mohembo East', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3049, 'Mohembo West', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3050, 'Mokgacha', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3051, 'Ngarange', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3052, 'Nokaneng', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3053, 'Nxamasere', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3054, 'Nxaunxau', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3055, 'Nxwee', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3056, 'Qangwa', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3057, 'Roye', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3058, 'Samochema', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3059, 'Sekondomboro', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3060, 'Sepopa', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3061, 'Seronga', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3062, 'Shaowe', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3063, 'Tobere Lands', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3064, 'Tubu', 502, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, 1), -(3065, 'Tubu Lands', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3066, 'Xadau', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3067, 'Xakao', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3068, 'Xaxa', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3069, 'Xhauga', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3070, 'Xurube', 502, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3071, 'Orapa', 503, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3072, 'Sowa', 506, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3073, 'Acrelandia', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3074, 'Brasileia', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3075, 'Cruzeiro do Sul', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3076, 'Epitaciolandia', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3077, 'Feijo', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3078, 'Mancio Lima', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3079, 'Manoel Urbano', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3080, 'Marechal Thaumaturgo', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3081, 'Placido de Castro', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3082, 'Porto Walter', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3083, 'Rio Branco', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3084, 'Rodrigues Alves', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3085, 'Sena Madureira', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3086, 'Senador Guiomard', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3087, 'Tarauaca', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3088, 'Xapuri', 508, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3089, 'Agua Branca', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3090, 'Anadia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3091, 'Arapiraca', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3092, 'Atalaia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3093, 'Barra de Santo Antonio', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3094, 'Batalha', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3095, 'Boca da Mata', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3096, 'Cacimbinhas', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3097, 'Cajueiro', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3098, 'Campo Alegre', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3099, 'Campo Grande', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3100, 'Canapi', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3101, 'Capela', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3102, 'Coite do Noia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3103, 'Colonia Leopoldina', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3104, 'Coruripe', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3105, 'Craibas', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3106, 'Delmiro Gouveia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3107, 'Dois Riachos', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3108, 'Estrela de Alagoas', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3109, 'Feira Grande', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3110, 'Flexeiras', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3111, 'Girau do Ponciano', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3112, 'Ibateguara', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3113, 'Igaci', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3114, 'Igreja Nova', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3115, 'Inhapi', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3116, 'Joaquim Gomes', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3117, 'Jundia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3118, 'Junqueiro', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3119, 'Lagoa da Canoa', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3120, 'Limoeiro de Anadia', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3121, 'Maceio', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3122, 'Major Isidoro', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3123, 'Maragogi', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3124, 'Maravilha', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3125, 'Marechal Deodoro', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3126, 'Maribondo', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3127, 'Mata Grande', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3128, 'Matriz de Camaragibe', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3129, 'Messias', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3130, 'Minador do Negrao', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3131, 'Murici', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3132, 'Novo Lino', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3133, 'Olho d Agua das Flores', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3134, 'Olivenca', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3135, 'Palmeira dos Indios', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3136, 'Pao de Acucar', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3137, 'Passo de Camaragibe', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3138, 'Penedo', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3139, 'Piacabucu', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3140, 'Pilar', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3141, 'Piranhas', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3142, 'Poco das Trincheiras', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3143, 'Porto Calvo', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3144, 'Porto Real do Colegio', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3145, 'Quebrangulo', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3146, 'Rio Largo', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3147, 'Santana do Ipanema', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3148, 'Santana do Mundau', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3149, 'Sao Jose da Laje', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3150, 'Sao Jose da Tapera', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3151, 'Sao Luis do Quitunde', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3152, 'Sao Miguel dos Campos', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3153, 'Sao Sebastiao', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3154, 'Satuba', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3155, 'Senador Rui Palmeira', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3156, 'Taquarana', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3157, 'Teotonio Vilela', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3158, 'Traipu', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3159, 'Uniao dos Palmares', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3160, 'Vicosa', 509, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3161, 'Amapa', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3162, 'Laranjal do Jari', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3163, 'Macapa', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3164, 'Mazagao', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3165, 'Oiapoque', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3166, 'Santana', 510, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, 1), -(3167, 'Alvaraes', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3168, 'Anori', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3169, 'Apui', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3170, 'Autazes', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3171, 'Barcelos', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3172, 'Barreirinha', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3173, 'Benjamin Constant', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3174, 'Boca do Acre', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3175, 'Borba', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3176, 'Canutama', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3177, 'Carauari', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3178, 'Careiro', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3179, 'Careiro da Varzea', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3180, 'Coari', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3181, 'Codajas', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3182, 'Eirunepe', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3183, 'Envira', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3184, 'Fonte Boa', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3185, 'Guajara', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3186, 'Humaita', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3187, 'Ipixuna', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3188, 'Iranduba', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3189, 'Itacoatiara', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3190, 'Japura', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3191, 'Jutai', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3192, 'Labrea', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3193, 'Manacapuru', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3194, 'Manaquiri', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3195, 'Manaus', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3196, 'Manicore', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3197, 'Maraa', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3198, 'Maues', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3199, 'Nhamunda', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3200, 'Nova Olinda do Norte', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3201, 'Novo Airao', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3202, 'Novo Aripuana', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3203, 'Parintins', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3204, 'Pauini', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3205, 'Rio Preto da Eva', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3206, 'Santa Isabel do Rio Negro', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(3207, 'Santo Antonio do Ica', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3208, 'Sao Gabriel da Cachoeira', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3209, 'Sao Paulo de Olivenca', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3210, 'Tabatinga', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3211, 'Tapaua', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3212, 'Tefe', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3213, 'Tonantins', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3214, 'Uarini', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3215, 'Urucara', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3216, 'Urucurituba', 511, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3217, 'Acajutiba', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3218, 'Alagoinhas', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3219, 'Amargosa', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3220, 'Amelia Rodrigues', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3221, 'America Dourada', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3222, 'Anage', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3223, 'Araci', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3224, 'Aurelino Leal', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3225, 'Baixa Grande', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3226, 'Barra', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3227, 'Barra da Estiva', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3228, 'Barra do Choca', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3229, 'Barreiras', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3230, 'Belmonte', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3231, 'Boa Vista do Tupim', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3232, 'Bom Jesus da Lapa', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3233, 'Boquira', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3234, 'Brumado', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3235, 'Buerarema', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3236, 'Cachoeira', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3237, 'Cacule', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3238, 'Caetite', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3239, 'Cafarnaum', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3240, 'Camacan', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3241, 'Camacari', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3242, 'Camamu', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3243, 'Campo Alegre de Lourdes', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3244, 'Campo Formoso', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3245, 'Canarana', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3246, 'Canavieiras', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3247, 'Candeias', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3248, 'Candido Sales', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3249, 'Cansancao', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3250, 'Capim Grosso', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3251, 'Caravelas', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3252, 'Carinhanha', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3253, 'Casa Nova', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3254, 'Castro Alves', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3255, 'Catu', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3256, 'Cicero Dantas', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3257, 'Cipo', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3258, 'Coaraci', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3259, 'Conceicao da Feira', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3260, 'Conceicao do Almeida', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3261, 'Conceicao do Coite', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3262, 'Conceicao do Jacuipe', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3263, 'Conde', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3264, 'Coracao de Maria', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3265, 'Coronel Joao Sa', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3266, 'Correntina', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3267, 'Cruz das Almas', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3268, 'Curaca', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3269, 'Dias d Avila', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3270, 'Encruzilhada', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3271, 'Esplanada', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3272, 'Euclides da Cunha', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3273, 'Eunapolis', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3274, 'Feira de Santana', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3275, 'Filadelfia', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3276, 'Formosa do Rio Preto', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3277, 'Gandu', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3278, 'Guanambi', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3279, 'Guaratinga', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3280, 'Iacu', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3281, 'Ibicarai', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3282, 'Ibicui', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3283, 'Ibipeba', 512, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, 1), -(3284, 'Ibirapitanga', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3285, 'Ibirataia', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3286, 'Ibotirama', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3287, 'Iguai', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3288, 'Ilheus', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3289, 'Inhambupe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3290, 'Ipiau', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3291, 'Ipira', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3292, 'Iraquara', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3293, 'Irara', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3294, 'Irece', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3295, 'Itabela', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3296, 'Itaberaba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3297, 'Itabuna', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3298, 'Itacare', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3299, 'Itagi', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3300, 'Itagiba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3301, 'Itajuipe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3302, 'Itamaraju', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3303, 'Itambe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3304, 'Itanhem', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3305, 'Itaparica', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3306, 'Itapetinga', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3307, 'Itapicuru', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3308, 'Itarantim', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3309, 'Itirucu', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3310, 'Itiuba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3311, 'Itororo', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3312, 'Ituacu', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3313, 'Itubera', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3314, 'Jacobina', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3315, 'Jaguaquara', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3316, 'Jaguarari', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3317, 'Jequie', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3318, 'Jeremoabo', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3319, 'Jitauna', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3320, 'Joao Dourado', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3321, 'Juazeiro', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3322, 'Jussara', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3323, 'Laje', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3324, 'Lapao', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3325, 'Lauro de Freitas', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3326, 'Livramento', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3327, 'Macarani', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3328, 'Macaubas', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3329, 'Madre de Deus', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3330, 'Mairi', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3331, 'Maracas', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3332, 'Maragogipe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3333, 'Marau', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3334, 'Mascote', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3335, 'Mata de Sao Joao', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3336, 'Medeiros Neto', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3337, 'Miguel Calmon', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3338, 'Milagres', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3339, 'Monte Santo', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3340, 'Morro de Chapeu', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3341, 'Mucuri', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3342, 'Mundo Novo', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3343, 'Muritiba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3344, 'Mutuipe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3345, 'Nazare', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3346, 'Nova Soure', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3347, 'Nova Vicosa', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3348, 'Olindina', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3349, 'Oliveira dos Brejinhos', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3350, 'Palmas de Monte Alto', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3351, 'Paramirim', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3352, 'Paratinga', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3353, 'Paripiranga', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3354, 'Pau Brasil', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3355, 'Paulo Afonso', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3356, 'Pilao Arcado', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3357, 'Pindobacu', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3358, 'Piritiba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3359, 'Planalto', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3360, 'Pocoes', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3361, 'Pojuca', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3362, 'Ponto Novo', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3363, 'Porto Seguro', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3364, 'Prado', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3365, 'Presidente Tancredo Neves', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3366, 'Queimadas', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3367, 'Quijingue', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3368, 'Rafael Jambeiro', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3369, 'Remanso', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3370, 'Riachao das Neves', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3371, 'Riachao do Jacuipe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3372, 'Riacho de Santana', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3373, 'Ribeira do Pombal', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3374, 'Rio Real', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3375, 'Ruy Barbosa', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3376, 'Salvador', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3377, 'Santa Cruz Cabralia', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3378, 'Santa Ines', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3379, 'Santa Maria da Vitoria', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3380, 'Santa Rita de Cassia', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3381, 'Santaluz', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3382, 'Santo Amaro', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3383, 'Santo Antonio de Jesus', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3384, 'Santo Estevao', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3385, 'Sao Desiderio', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3386, 'Sao Felipe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3387, 'Sao Francisco do Conde', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3388, 'Sao Gabriel', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3389, 'Sao Goncalo dos Campos', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3390, 'Sao Sebastiao do Passe', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3391, 'Saubara', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3392, 'Seabra', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3393, 'Senhor do Bonfim', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3394, 'Sento Se', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3395, 'Serra Dourada', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3396, 'Serra do Ramalho', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3397, 'Serrinha', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3398, 'Simoes Filho', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3399, 'Sobradinho', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3400, 'Souto Soares', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3401, 'Tanhacu', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3402, 'Taperoa', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3403, 'Tapiramuta', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3404, 'Teixeira de Freitas', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3405, 'Teofilandia', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3406, 'Terra Nova', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3407, 'Tremedal', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3408, 'Tucano', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3409, 'Uaua', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3410, 'Ubaira', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3411, 'Ubaitaba', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3412, 'Ubata', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3413, 'Una', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3414, 'Urucuca', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3415, 'Utinga', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3416, 'Valenca', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3417, 'Valente', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3418, 'Vera Cruz', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3419, 'Vitoria da Conquista', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3420, 'Wenceslau Guimaraes', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3421, 'Xique-Xique', 512, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, 1), -(3422, 'Acarau', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3423, 'Acopiara', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3424, 'Amontada', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3425, 'Aquiraz', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3426, 'Aracati', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3427, 'Aracoiaba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3428, 'Araripe', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3429, 'Assare', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3430, 'Aurora', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3431, 'Barbalha', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3432, 'Barro', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3433, 'Barroquinha', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3434, 'Baturite', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3435, 'Beberibe', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3436, 'Bela Cruz', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3437, 'Boa Viagem', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3438, 'Brejo Santo', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3439, 'Camocim', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3440, 'Campos Sales', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3441, 'Caninde', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3442, 'Carire', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3443, 'Caririacu', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3444, 'Cascavel', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3445, 'Caucaia', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3446, 'Cedro', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3447, 'Chorozinho', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3448, 'Coreau', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3449, 'Crateus', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3450, 'Crato', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3451, 'Cruz', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3452, 'Eusebio', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3453, 'Farias Brito', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3454, 'Forquilha', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3455, 'Fortaleza', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3456, 'Granja', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3457, 'Guaiuba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3458, 'Guaraciaba do Norte', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3459, 'Hidrolandia', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3460, 'Horizonte', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3461, 'Ibiapina', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3462, 'Ico', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3463, 'Iguatu', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3464, 'Independencia', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3465, 'Ipu', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3466, 'Ipueiras', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3467, 'Iraucuba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3468, 'Itaitinga', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3469, 'Itapage', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3470, 'Itapipoca', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3471, 'Itarema', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3472, 'Jaguaribe', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3473, 'Jaguaruana', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3474, 'Jardim', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3475, 'Juazeiro do Norte', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3476, 'Jucas', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3477, 'Lavras da Mangabeira', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3478, 'Limoeiro do Norte', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3479, 'Maracanau', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3480, 'Maranguape', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3481, 'Marco', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3482, 'Massape', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3483, 'Mauriti', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3484, 'Missao Velha', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3485, 'Mombaca', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3486, 'Morada Nova', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3487, 'Nova Russas', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3488, 'Novo Oriente', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3489, 'Ocara', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3490, 'Oros', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3491, 'Pacajus', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3492, 'Pacatuba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3493, 'Paracuru', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3494, 'Paraipaba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3495, 'Parambu', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3496, 'Pedra Branca', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3497, 'Pentecoste', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3498, 'Quixada', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3499, 'Quixeramobim', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3500, 'Quixere', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3501, 'Redencao', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3502, 'Reriutaba', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3503, 'Russas', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3504, 'Santa Quiteria', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3505, 'Santana do Acarau', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3506, 'Sao Benedito', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3507, 'Sao Goncalo do Amarante', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3508, 'Senador Pompeu', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3509, 'Sobral', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3510, 'Tabuleiro do Norte', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3511, 'Tamboril', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3512, 'Taua', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3513, 'Tiangua', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3514, 'Trairi', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3515, 'Ubajara', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3516, 'Umirim', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3517, 'Uruburetama', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3518, 'Varjota', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3519, 'Varzea Alegre', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3520, 'Vicosa do Ceara', 513, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3521, 'Abadiania', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3522, 'Acreuna', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3523, 'Aguas Lindas de Goias', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3524, 'Alexania', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3525, 'Anapolis', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3526, 'Anicuns', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3527, 'Aparecida de Goiania', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3528, 'Aragarcas', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3529, 'Bela Vista de Goias', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3530, 'Bom Jesus de Goias', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3531, 'Buriti Alegre', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3532, 'Cacu', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3533, 'Caiaponia', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3534, 'Caldas Novas', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3535, 'Campos Belos', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3536, 'Campos Verdes', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3537, 'Carmo do Rio Verde', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3538, 'Catalao', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3539, 'Cavalcante', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3540, 'Ceres', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3541, 'Cidade Ocidental', 516, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, 1), -(3542, 'Cocalzinho de Coias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3543, 'Cristalina', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3544, 'Crixas', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3545, 'Doverlandia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3546, 'Edeia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3547, 'Firminopolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3548, 'Goianapolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3549, 'Goianesia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3550, 'Goiania', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3551, 'Goianira', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3552, 'Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3553, 'Goiatuba', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3554, 'Guapo', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3555, 'Iaciara', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3556, 'Indiara', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3557, 'Inhumas', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3558, 'Ipameri', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3559, 'Ipora', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3560, 'Itaberai', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3561, 'Itapaci', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3562, 'Itapirapua', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3563, 'Itapuranga', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3564, 'Itumbiara', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3565, 'Jaragua', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3566, 'Jatai', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3567, 'Luziania', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3568, 'Mara Rosa', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3569, 'Minacu', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3570, 'Mineiros', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3571, 'Morrinhos', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3572, 'Mozarlandia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3573, 'Neropolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3574, 'Niquelandia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3575, 'Nova Crixas', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3576, 'Novo Gama', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3577, 'Orizona', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3578, 'Padre Bernardo', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3579, 'Palmeiras de Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3580, 'Parauna', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3581, 'Petrolina de Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3582, 'Piracanjuba', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3583, 'Pirenopolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3584, 'Pires do Rio', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3585, 'Planaltina', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3586, 'Pontalina', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3587, 'Porangatu', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3588, 'Posse', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3589, 'Quirinopolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3590, 'Rialma', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3591, 'Rio Verde', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3592, 'Rubiataba', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3593, 'Santa Helena de Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3594, 'Santa Terezinha de Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3595, 'Santo Antonio do Descoberto', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3596, 'Sao Domingos', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3597, 'Sao Luis de Montes Belos', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3598, 'Sao Miguel do Araguaia', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3599, 'Sao Simao', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3600, 'Senador Canedo', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3601, 'Silvania', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3602, 'Trindade', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3603, 'Uruacu', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3604, 'Uruana', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3605, 'Valparaiso de Goias', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3606, 'Vianopolis', 516, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3607, 'Acailandia', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3608, 'Alcantara', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3609, 'Aldeias Altas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3610, 'Alto Alegre do Pindare', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3611, 'Amarante do Maranhao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3612, 'Anajatuba', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3613, 'Araioses', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3614, 'Arame', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3615, 'Arari', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3616, 'Bacabal', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3617, 'Balsas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3618, 'Barra do Corda', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3619, 'Barreirinhas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3620, 'Bequimao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3621, 'Bom Jardim', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3622, 'Brejo', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3623, 'Buriti', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3624, 'Buriti Bravo', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3625, 'Buriticupu', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3626, 'Candido Mendes', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3627, 'Cantanhede', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3628, 'Carolina', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3629, 'Carutapera', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3630, 'Caxias', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3631, 'Chapadinha', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3632, 'Codo', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3633, 'Coelho Neto', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3634, 'Colinas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3635, 'Coroata', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3636, 'Cururupu', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3637, 'Davinopolis', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3638, 'Dom Pedro', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3639, 'Esperantinopolis', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3640, 'Estreito', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3641, 'Fortuna', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3642, 'Godofredo Viana', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3643, 'Governador Eugenio Barros', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3644, 'Governador Nunes Freire', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3645, 'Grajau', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3646, 'Humberto de Campos', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3647, 'Icatu', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3648, 'Imperatriz', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3649, 'Itapecuru Mirim', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3650, 'Itinga do Maranhao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3651, 'Joao Lisboa', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3652, 'Lago da Pedra', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3653, 'Lago do Junco', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3654, 'Maracacume', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3655, 'Matinha', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3656, 'Matoes', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3657, 'Mirador', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3658, 'Miranda do Norte', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3659, 'Moncao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3660, 'Montes Altos', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3661, 'Morros', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3662, 'Nova Olinda do Maranhao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3663, 'Olho d Agua das Cunhas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3664, 'Paco do Lumiar', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3665, 'Paraibano', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3666, 'Parnarama', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3667, 'Passagem Franca', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3668, 'Pastos Bons', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3669, 'Paulo Ramos', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3670, 'Pedreiras', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3671, 'Penalva', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3672, 'Pindare Mirim', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3673, 'Pinheiro', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3674, 'Pio XII', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3675, 'Pirapemas', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3676, 'Pocao de Pedras', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3677, 'Porto Franco', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3678, 'Presidente Dutra', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3679, 'Raposa', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3680, 'Riachao', 517, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, 1), -(3681, 'Rosario', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3682, 'Santa Helena', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3683, 'Santa Luzia', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3684, 'Santa Luzia do Parua', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3685, 'Santa Quiteria do Maranhao', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3686, 'Santa Rita', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3687, 'Sao Benedito do Rio Preto', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3688, 'Sao Bento', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3689, 'Sao Bernardo', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3690, 'Sao Domingos do Maranhao', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3691, 'Sao Joao Batista', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3692, 'Sao Joao dos Patos', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3693, 'Sao Jose de Ribamar', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3694, 'Sao Luis', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3695, 'Sao Luis Gonzaga do Maranhao', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3696, 'Sao Mateus do Maranhao', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3697, 'Sao Pedro da Agua Branca', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3698, 'Sao Raimundo das Mangabeiras', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3699, 'Timbiras', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3700, 'Timon', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3701, 'Trizidela do Vale', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3702, 'Tuntum', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3703, 'Turiacu', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3704, 'Tutoia', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3705, 'Urbano Santos', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3706, 'Vargem Grande', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3707, 'Viana', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3708, 'Vitoria do Mearim', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3709, 'Vitorino Freire', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3710, 'Ze Doca', 517, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3711, 'Abaetetuba', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3712, 'Acara', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3713, 'Afua', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3714, 'Agua Azul do Norte', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3715, 'Alenquer', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3716, 'Almeirim', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3717, 'Altamira', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3718, 'Ananindeua', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3719, 'Augusto Correa', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3720, 'Baiao', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3721, 'Barcarena', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3722, 'Belem', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3723, 'Benevides', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3724, 'Braganca', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3725, 'Breu Branco', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3726, 'Breves', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3727, 'Bujaru', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3728, 'Cameta', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3729, 'Capanema', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3730, 'Capitao Poco', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3731, 'Castanhal', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3732, 'Conceicao do Araguaia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3733, 'Concordia do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3734, 'Curionopolis', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3735, 'Curuca', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3736, 'Dom Eliseu', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3737, 'Eldorado dos Carajas', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3738, 'Garrafao do Norte', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3739, 'Goianesia do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3740, 'Gurupa', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3741, 'Igarape-Acu', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3742, 'Igarape-Miri', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3743, 'Irituia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3744, 'Itaituba', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3745, 'Itupiranga', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3746, 'Jacareacanga', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3747, 'Jacunda', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3748, 'Juruti', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3749, 'Limoeiro do Ajuru', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3750, 'Mae do Rio', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3751, 'Maraba', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3752, 'Maracana', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3753, 'Marapanim', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3754, 'Marituba', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3755, 'Medicilandia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3756, 'Mocajuba', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3757, 'Moju', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3758, 'Monte Alegre', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3759, 'Muana', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3760, 'Novo Progresso', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3761, 'Novo Repartimento', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3762, 'Obidos', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3763, 'Oeiras do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3764, 'Oriximina', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3765, 'Ourem', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3766, 'Ourilandia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3767, 'Pacaja', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3768, 'Paragominas', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3769, 'Parauapebas', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3770, 'Portel', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3771, 'Porto de Moz', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3772, 'Prainha', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3773, 'Rio Maria', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3774, 'Rondon do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3775, 'Ruropolis', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3776, 'Salinopolis', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3777, 'Santa Isabel do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3778, 'Santa Luzia do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3779, 'Santa Maria do Para', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3780, 'Santana do Araguaia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3781, 'Santarem', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3782, 'Santo Antonio do Taua', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3783, 'Sao Caetano de Odivelas', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3784, 'Sao Domingos do Araguaia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3785, 'Sao Domingos do Capim', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3786, 'Sao Felix do Xingu', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3787, 'Sao Geraldo do Araguaia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3788, 'Sao Joao de Pirabas', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3789, 'Sao Miguel do Guama', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3790, 'Senador Jose Porfirio', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3791, 'Soure', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3792, 'Tailandia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3793, 'Terra Santa', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3794, 'Tome-Acu', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3795, 'Tucuma', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3796, 'Tucurui', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3797, 'Ulianopolis', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3798, 'Uruara', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3799, 'Vigia', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3800, 'Viseu', 521, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, 1), -(3801, 'Xinguara', 521, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3802, 'Alagoa Grande', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3803, 'Alagoa Nova', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3804, 'Alagoinha', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3805, 'Alhandra', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3806, 'Aracagi', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3807, 'Arara', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3808, 'Araruna', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3809, 'Areia', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3810, 'Aroeiras', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3811, 'Bananeiras', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3812, 'Barra de Santa Rosa', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3813, 'Bayeux', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3814, 'Boqueirao', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3815, 'Brejo do Cruz', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3816, 'Caapora', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3817, 'Cabedelo', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3818, 'Cacimba de Dentro', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3819, 'Cajazeiras', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3820, 'Campina Grande', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3821, 'Catole do Rocha', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3822, 'Conceicao', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3823, 'Coremas', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3824, 'Cruz do Espirito Santo', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3825, 'Cuite', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(3826, 'Desterro', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3827, 'Dona Ines', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3828, 'Esperanca', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3829, 'Fagundes', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3830, 'Guarabira', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3831, 'Gurinhem', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3832, 'Imaculada', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3833, 'Inga', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3834, 'Itabaiana', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3835, 'Itaporanga', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3836, 'Itapororoca', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3837, 'Itatuba', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3838, 'Jacarau', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3839, 'Joao Pessoa', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3840, 'Juazeirinho', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3841, 'Juripiranga', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3842, 'Juru', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3843, 'Lagoa Seca', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3844, 'Mamanguape', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3845, 'Manaira', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3846, 'Mari', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3847, 'Massaranduba', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3848, 'Mogeiro', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3849, 'Monteiro', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3850, 'Mulungu', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3851, 'Natuba', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3852, 'Nova Floresta', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3853, 'Paulista', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3854, 'Pedras de Fogo', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3855, 'Pianco', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3856, 'Picui', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3857, 'Pirpirituba', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3858, 'Pitimbu', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3859, 'Pocinhos', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3860, 'Pombal', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3861, 'Princesa Isabel', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3862, 'Puxinana', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3863, 'Remigio', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3864, 'Rio Tinto', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3865, 'Salgado de Sao Felix', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3866, 'Sao Joao do Rio do Peixe', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3867, 'Sao Jose de Piranhas', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3868, 'Sao Sebastiao de Lagoa de Roca', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3869, 'Sape', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3870, 'Serra Branca', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3871, 'Solanea', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3872, 'Soledade', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3873, 'Sousa', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3874, 'Sume', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3875, 'Tavares', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3876, 'Teixeira', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3877, 'Triunfo', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3878, 'Uirauna', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3879, 'Umbuzeiro', 522, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3880, 'Almirante Tamandare', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3881, 'Alto Parana', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3882, 'Alto Piquiri', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3883, 'Altonia', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3884, 'Ampere', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3885, 'Andira', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3886, 'Antonina', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3887, 'Apucarana', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3888, 'Arapongas', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3889, 'Arapoti', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3890, 'Araucaria', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3891, 'Assai', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3892, 'Assis Chateaubriand', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3893, 'Astorga', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3894, 'Bandeirantes', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3895, 'Barbosa Ferraz', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3896, 'Bela Vista do Paraiso', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3897, 'Cambara', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3898, 'Cambe', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3899, 'Campina Grande do Sul', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3900, 'Campina da Lagoa', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3901, 'Campo Largo', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3902, 'Campo Murao', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3903, 'Candido de Abreu', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3904, 'Capitao Leonidas Marques', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3905, 'Carambei', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3906, 'Castro', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3907, 'Centenario do Sul', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3908, 'Chopinzinho', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3909, 'Cianorte', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3910, 'Clevelandia', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3911, 'Colombo', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3912, 'Colorado', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3913, 'Contenda', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3914, 'Corbelia', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3915, 'Cornelio Procopio', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3916, 'Coronel Vivida', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3917, 'Cruzeiro do Oeste', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3918, 'Curitiba', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3919, 'Dois Vizinhos', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3920, 'Engenheiro Beltrao', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3921, 'Faxinal', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3922, 'Fazenda Rio Grande', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3923, 'Florestopolis', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3924, 'Foz do Iguacu', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3925, 'Francisco Beltrao', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3926, 'Goioere', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3927, 'Guaira', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3928, 'Guaraniacu', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3929, 'Guarapuava', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3930, 'Guaratuba', 523, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, 1), -(3931, 'Ibaiti', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3932, 'Ibipora', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3933, 'Imbituva', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3934, 'Irati', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3935, 'Itaperucu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3936, 'Ivaipora', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3937, 'Jacarezinho', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3938, 'Jaguariaiva', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3939, 'Jandaia do Sul', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3940, 'Jataizinho', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3941, 'Lapa', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3942, 'Laranjeiras do Sul', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3943, 'Loanda', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3944, 'Londrina', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3945, 'Mandaguacu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3946, 'Mandaguari', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3947, 'Marechal Candido Rondon', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3948, 'Marialva', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3949, 'Maringa', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3950, 'Matelandia', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3951, 'Matinhos', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3952, 'Medianeira', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3953, 'Moreira Sales', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3954, 'Nova Aurora', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3955, 'Nova Esperanca', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3956, 'Nova Londrina', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3957, 'Ortigueira', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3958, 'Paicandu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3959, 'Palmas', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3960, 'Palmeira', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3961, 'Palotina', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3962, 'Paranagua', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3963, 'Paranavai', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3964, 'Pato Branco', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3965, 'Peabiru', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3966, 'Pinhais', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3967, 'Pinhao', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3968, 'Pirai do Sul', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3969, 'Piraquara', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3970, 'Pitanga', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3971, 'Ponta Grossa', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3972, 'Pontal do Parana', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3973, 'Porecatu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3974, 'Primero de Maio', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3975, 'Prudentopolis', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3976, 'Quatro Barras', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3977, 'Quedas do Iguacu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3978, 'Realeza', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3979, 'Reserva', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3980, 'Ribeirao do Pinhal', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3981, 'Rio Branco do Sul', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3982, 'Rio Negro', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3983, 'Rolandia', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3984, 'Santa Terezinha de Itaipu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3985, 'Santo Antonio da Platina', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3986, 'Santo Antonio do Sudoeste', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3987, 'Sao Joao do Ivai', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3988, 'Sao Jose dos Pinhais', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3989, 'Sao Mateus do Sul', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3990, 'Sao Miguel do Iguacu', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3991, 'Sarandi', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3992, 'Senges', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3993, 'Sertanopolis', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3994, 'Siquera Campos', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3995, 'Tapejara', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3996, 'Telemaco Borba', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3997, 'Terra Boa', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3998, 'Terra Rica', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(3999, 'Terra Roxa', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4000, 'Tibagi', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4001, 'Toledo', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4002, 'Ubirata', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4003, 'Umuarama', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4004, 'Uniao da Victoria', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4005, 'Wenceslau Braz', 523, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4006, 'Abreu e Lima', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4007, 'Afogados da Ingazeira', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4008, 'Agrestina', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4009, 'Agua Preta', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4010, 'Aguas Belas', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4011, 'Alianca', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4012, 'Altinho', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4013, 'Amaraji', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4014, 'Araripina', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4015, 'Arcoverde', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4016, 'Barra de Guabiraba', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4017, 'Barreiros', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4018, 'Belem de Sao Francisco', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4019, 'Belo Jardim', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4020, 'Bezerros', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4021, 'Bodoco', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4022, 'Bom Conselho', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4023, 'Bonito', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4024, 'Brejo da Madre de Deus', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4025, 'Buique', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4026, 'Cabo de Santo Agostinho', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4027, 'Cabrobo', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4028, 'Cachoeirinha', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4029, 'Caetes', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4030, 'Camaragibe', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4031, 'Camocim de Sao Felix', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4032, 'Canhotinho', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4033, 'Capoeiras', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4034, 'Carnaiba', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4035, 'Carpina', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4036, 'Caruaru', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4037, 'Catende', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4038, 'Cha Grande', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4039, 'Condado', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4040, 'Cumaru', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4041, 'Cupira', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4042, 'Custodia', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4043, 'Escada', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4044, 'Exu', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4045, 'Feira Nova', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4046, 'Fernando de Noronha', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4047, 'Flores', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4048, 'Floresta', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4049, 'Gameleira', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4050, 'Garanhuns', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4051, 'Gloria do Goita', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4052, 'Goiana', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4053, 'Gravata', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4054, 'Ibimirim', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4055, 'Igarassu', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4056, 'Inaja', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4057, 'Ipojuca', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4058, 'Ipubi', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4059, 'Itaiba', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4060, 'Itamaraca', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4061, 'Itapissuma', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4062, 'Itaquitinga', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4063, 'Jaboatao', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4064, 'Joao Alfredo', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4065, 'Joaquim Nabuco', 524, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, 1), -(4066, 'Lagoa do Itaenga', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4067, 'Lajedo', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4068, 'Limoeiro', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4069, 'Macaparana', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4070, 'Maraial', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4071, 'Moreno', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4072, 'Nazare da Mata', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4073, 'Orobo', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4074, 'Ouricuri', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4075, 'Palmares', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4076, 'Panelas', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4077, 'Parnamirim', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4078, 'Passira', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4079, 'Paudalho', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4080, 'Pedra', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4081, 'Pesqueira', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4082, 'Petrolandia', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4083, 'Petrolina', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4084, 'Pombos', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4085, 'Quipapa', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4086, 'Recife', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4087, 'Ribeirao', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4088, 'Rio Formoso', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4089, 'Salgueiro', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4090, 'Santa Cruz do Capibaribe', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4091, 'Santa Maria da Boa Vista', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4092, 'Sao Bento do Una', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4093, 'Sao Caitano', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4094, 'Sao Joao', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4095, 'Sao Joaquim do Monte', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4096, 'Sao Jose da Coroa Grande', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4097, 'Sao Jose do Belmonte', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4098, 'Sao Jose do Egito', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4099, 'Sao Lourenco da Mata', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4100, 'Serra Talhada', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4101, 'Sertania', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4102, 'Sirinhaem', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4103, 'Surubim', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4104, 'Tabira', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4105, 'Tamandare', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4106, 'Taquaritinga do Norte', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4107, 'Timbauba', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4108, 'Toritama', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4109, 'Tupanatinga', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4110, 'Vicencia', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4111, 'Vitoria de Santo Antao', 524, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4112, 'Alto Longa', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4113, 'Altos', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4114, 'Amarante', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4115, 'Avelino Lopes', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4116, 'Barras', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4117, 'Beneditinos', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4118, 'Bom Jesus', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4119, 'Buriti dos Lopes', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4120, 'Campo Maior', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4121, 'Canto do Buriti', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4122, 'Castelo do Piaui', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4123, 'Cocal', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4124, 'Corrente', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4125, 'Demerval Lobao', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4126, 'Elesbao Veloso', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4127, 'Esperantina', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4128, 'Floriano', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4129, 'Gilbues', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4130, 'Guadalupe', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4131, 'Inhuma', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4132, 'Itainopolis', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4133, 'Itaueira', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4134, 'Jaicos', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4135, 'Joaquim Pires', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4136, 'Jose de Freitas', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4137, 'Luis Correia', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4138, 'Luzilandia', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4139, 'Matias Olimpio', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4140, 'Miguel Alves', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4141, 'Monsenhor Gil', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4142, 'Oeiras', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4143, 'Palmeirais', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4144, 'Parnaiba', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4145, 'Pedro II', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4146, 'Picos', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4147, 'Pimenteiras', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4148, 'Pio IX', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4149, 'Piracuruca', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4150, 'Piripiri', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4151, 'Porto', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4152, 'Regeneracao', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4153, 'Sao Joao do Piaui', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4154, 'Sao Miguel do Tapuio', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4155, 'Sao Pedro do Piaui', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4156, 'Sao Raimundo Nonato', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4157, 'Simoes', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4158, 'Simplicio Mendes', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4159, 'Teresina', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4160, 'Uniao', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4161, 'Urucui', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4162, 'Valenca do Piaui', 525, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4163, 'Alta Floresta d Oeste', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4164, 'Alto Alegre do Parecis', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4165, 'Alto Paraiso', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4166, 'Alvorada d Oeste', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4167, 'Ariquemes', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4168, 'Buritis', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4169, 'Cacoal', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4170, 'Candeias do Jamari', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4171, 'Cerejeiras', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4172, 'Colorado do Oeste', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4173, 'Corumbiara', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4174, 'Espigao d Oeste', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4175, 'Governador Jorge Teixeira', 529, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, 1), -(4176, 'Guajara-Mirim', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4177, 'Jaru', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4178, 'Ji-Parana', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4179, 'Machadinho d Oeste', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4180, 'Ministro Andreazza', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4181, 'Mirante da Serra', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4182, 'Nova Brasilandia d Oeste', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4183, 'Nova Mamore', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4184, 'Novo Horizonte do Oeste', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4185, 'Ouro Preto do Oeste', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4186, 'Pimenta Bueno', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4187, 'Porto Velho', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4188, 'Presidente Medici', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4189, 'Rolim de Moura', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4190, 'Santa Luzia d Oeste', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4191, 'Sao Miguel do Guapore', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4192, 'Urupa', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4193, 'Vale do Paraiso', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4194, 'Vilhena', 529, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4195, 'Alto Alegre', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4196, 'Boa Vista', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4197, 'Bonfim', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4198, 'Caracarai', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4199, 'Mucajai', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4200, 'Normandia', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4201, 'Sao Joao da Baliza', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4202, 'Sao Luiz', 530, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4203, 'Aquidaba', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4204, 'Aracaju', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4205, 'Araua', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4206, 'Areia Branca', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4207, 'Barra dos Coqueiros', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4208, 'Boquim', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4209, 'Campo do Brito', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4210, 'Caninde de Sao Francisco', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4211, 'Carira', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4212, 'Cristinapolis', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4213, 'Estancia', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4214, 'Frei Paulo', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4215, 'Gararu', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4216, 'Indiaroba', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4217, 'Itabaianinha', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4218, 'Itaporanga d Ajuda', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4219, 'Japaratuba', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4220, 'Japoata', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4221, 'Lagarto', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4222, 'Laranjeiras', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4223, 'Malhador', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4224, 'Maruim', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4225, 'Moita Bonita', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4226, 'Monte Alegre de Sergipe', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4227, 'Neopolis', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4228, 'Nossa Senhora da Gloria', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4229, 'Nossa Senhora das Dores', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4230, 'Nossa Senhora do Socorro', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4231, 'Poco Verde', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4232, 'Porto da Folha', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4233, 'Propria', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4234, 'Riachao do Dantas', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4235, 'Ribeiropolis', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4236, 'Salgado', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4237, 'Santa Luzia do Itanhy', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4238, 'Santo Amaro das Brotas', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4239, 'Sao Cristovao', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4240, 'Simao Dias', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4241, 'Tobias Barreto', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4242, 'Tomar do Geru', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4243, 'Umbauba', 533, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4244, 'Alvorada', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4245, 'Ananas', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4246, 'Araguacu', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4247, 'Araguaina', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4248, 'Araguatins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4249, 'Arraias', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4250, 'Augustinopolis', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4251, 'Axixa do Tocantins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4252, 'Colinas do Tocantins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4253, 'Dianopolis', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4254, 'Formoso do Araguaia', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4255, 'Goiatins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4256, 'Guarai', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4257, 'Gurupi', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4258, 'Miracema do Tocantins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4259, 'Miranorte', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4260, 'Paraiso', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4261, 'Parana', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4262, 'Porto Nacional', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4263, 'Sitio Novo do Tocantins', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4264, 'Taguatinga', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4265, 'Tocantinopolis', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4266, 'Wanderlandia', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4267, 'Xambioa', 534, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4268, 'Kuala Belait', 536, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4269, 'Seria', 536, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4270, 'Bandar Seri Begawan', 537, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4271, 'Bangar', 538, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4272, 'Tutong', 539, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, 1), -(4273, 'Bansko', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4274, 'Belica', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4275, 'Blagoevgrad', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4276, 'Goce Delchev', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4277, 'Hadzhidimovo', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4278, 'Jakoruda', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4279, 'Kresna', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4280, 'Melnik', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4281, 'Petrich', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4282, 'Razlog', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4283, 'Sandanski', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4284, 'Simitli', 540, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4285, 'Ahtopol', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4286, 'Ajtos', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4287, 'Balgarovo', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4288, 'Bourgas', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4289, 'Burgas', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4290, 'Carevo', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4291, 'Kableshkovo', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4292, 'Kameno', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4293, 'Karnobat', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4294, 'Malko Tarnovo', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4295, 'Nesebar', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4296, 'Obzor', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4297, 'Pomorie', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4298, 'Primorsko', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4299, 'Sozopol', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4300, 'Sredec', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4301, 'Sungurlare', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4302, 'Tvardica', 541, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4303, 'Balchik', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4304, 'Dobrich', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4305, 'General-Toshevo', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4306, 'Kavarna', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4307, 'Loznica', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4308, 'Shabla', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4309, 'Tervel', 542, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4310, 'Drjanovo', 543, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4311, 'Gabrovo', 543, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4312, 'Plachkovci', 543, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4313, 'Sevlievo', 543, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4314, 'Trjavna', 543, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4315, 'Dimitrovgrad', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4316, 'Harmanli', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4317, 'Haskovo', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4318, 'Ivajlovgrad', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4319, 'Ljubimec', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4320, 'Madzharovo', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4321, 'Merichleri', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4322, 'Simeonovgrad', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4323, 'Svilengrad', 544, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4324, 'Boljarovo', 545, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4325, 'Elhovo', 545, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4326, 'Jambol', 545, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4327, 'Straldzha', 545, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4328, 'Topolovgrad', 545, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4329, 'Ardino', 546, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4330, 'Dzhebel', 546, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4331, 'Kardzhali', 546, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4332, 'Krumovgrad', 546, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4333, 'Momchilgrad', 546, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4334, 'Boboshevo', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4335, 'Bobovdol', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4336, 'Dupnica', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4337, 'Kjustendil', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4338, 'Kocherinovo', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4339, 'Rila', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4340, 'Sapareva Banja', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4341, 'Zemen', 547, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4342, 'Aprilci', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4343, 'Jablanica', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4344, 'Letnica', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4345, 'Lovech', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4346, 'Lukovit', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4347, 'Sopot', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4348, 'Teteven', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4349, 'Trojan', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4350, 'Ugarchin', 548, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4351, 'Berkovica', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4352, 'Bojchinovci', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4353, 'Brusarci', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4354, 'Chiprovci', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4355, 'Lom', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4356, 'Montana', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4357, 'Valchedram', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4358, 'Varshec', 549, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4359, 'Batak', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4360, 'Belovo', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4361, 'Bracigovo', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4362, 'Koprivshtica', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4363, 'Panagjurishte', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4364, 'Pazardzhik', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4365, 'Peshtera', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4366, 'Rakitovo', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4367, 'Septemvri', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4368, 'Strelcha', 551, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, 1), -(4369, 'Velingrad', 551, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4370, 'Bankja', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4371, 'Batanovci', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4372, 'Breznik', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4373, 'Pernik', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4374, 'Radomir', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4375, 'Tran', 552, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4376, 'Belene', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4377, 'Cherven Brjag', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4378, 'Dolna Mitropolija', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4379, 'Dolni Dabnik', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4380, 'Guljanci', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4381, 'Levski', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4382, 'Nikopol', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4383, 'Pleven', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4384, 'Pordim', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4385, 'Slavjanovo', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4386, 'Trashtenik', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4387, 'Varbica', 553, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4388, 'Asenovgrad', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4389, 'Brezovo', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4390, 'Car Kalojan', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4391, 'Hisarja', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4392, 'Kalofer', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4393, 'Karlovo', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4394, 'Klisura', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4395, 'Krichim', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4396, 'Parvomaj', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4397, 'Perushtica', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4398, 'Plovdiv', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4399, 'Rakovski', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4400, 'Sadovo', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4401, 'Saedinenie', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4402, 'Stambolijski', 554, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4403, 'Isperih', 555, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4404, 'Kubrat', 555, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4405, 'Razgrad', 555, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4406, 'Senovo', 555, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4407, 'Zavet', 555, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4408, 'Bjala', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4409, 'Borovo', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4410, 'Dve Mogili', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4411, 'Ruse', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4412, 'Russe', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4413, 'Vetovo', 556, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4414, 'Kaolinovo', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4415, 'Kaspichan', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4416, 'Novi Pazar', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4417, 'Pliska', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4418, 'Shumen', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4419, 'Smjadovo', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4420, 'Veliki Preslav', 557, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4421, 'Alfatar', 558, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4422, 'Dulovo', 558, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4423, 'Glavinica', 558, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4424, 'Silistra', 558, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4425, 'Tutrakan', 558, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4426, 'Kermen', 559, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4427, 'Kotel', 559, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4428, 'Nova Zagora', 559, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4429, 'Shivachevo', 559, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4430, 'Sliven', 559, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4431, 'Chepelare', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4432, 'Devin', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4433, 'Dospat', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4434, 'Laki', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4435, 'Madan', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4436, 'Nedelino', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4437, 'Rudozem', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4438, 'Smoljan', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4439, 'Zlatograd', 560, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4440, 'Antonovo', 564, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4441, 'Omurtag', 564, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4442, 'Opaka', 564, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4443, 'Popovo', 564, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4444, 'Targovishte', 564, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4445, 'Beloslav', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4446, 'Dalgopol', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4447, 'Devnja', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(4448, 'Iskar', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4449, 'Provadija', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4450, 'Suvorovo', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4451, 'Valchi Dol', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4452, 'Varna', 565, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, 1), -(4453, 'Belogradchik', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4454, 'Bregovo', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4455, 'Dimovo', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4456, 'Dolni Chiflik', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4457, 'Dunavci', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4458, 'Gramada', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4459, 'Kula', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4460, 'Vidin', 567, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4461, 'Bjala Slatina', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4462, 'Knezha', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4463, 'Kojnare', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4464, 'Kozloduj', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4465, 'Krivodol', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4466, 'Mezdra', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4467, 'Mizija', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4468, 'Orjahovo', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4469, 'Roman', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4470, 'Vraca', 568, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4471, 'Yablaniza', 569, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4472, 'Boromo', 570, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4473, 'Kongoussi', 571, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4474, 'Kombissiri', 572, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4475, 'Diebougou', 573, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4476, 'Pa', 573, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4477, 'Garango', 574, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4478, 'Tenkodogo', 574, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4479, 'Koudougou', 575, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4480, 'Banfora', 576, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4481, 'Zorgo', 577, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4482, 'Bogande', 578, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4483, 'Fada N gourma', 579, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4484, 'Bekuy', 580, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4485, 'Bobo Dioulasso', 580, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4486, 'Dano', 581, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4487, 'Ouagadougou', 582, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4488, 'Koalla', 583, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4489, 'Koloko', 583, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4490, 'Orodara', 583, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4491, 'Gayeri', 584, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4492, 'Pama', 585, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4493, 'Nouna', 586, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4494, 'Koupela', 587, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4495, 'Bousse', 588, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, 1), -(4496, 'Sindou', 589, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4497, 'Dedougou', 590, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4498, 'Po', 591, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4499, 'Boulsa', 592, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4500, 'Batie', 593, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4501, 'Ziniare', 594, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4502, 'Gorom-Gorom', 595, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4503, 'Yako', 596, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4504, 'Gaoua', 597, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4505, 'Kampti', 597, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4506, 'Loropeni', 597, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4507, 'Reo', 598, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4508, 'Kaya', 599, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4509, 'Dori', 600, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4510, 'Gao', 601, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4511, 'Leo', 601, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4512, 'Aribinda', 602, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4513, 'Djibo', 602, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4514, 'Louta', 603, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4515, 'Tougan', 603, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4516, 'Diapaga', 604, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4517, 'Kantchari', 604, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4518, 'Hounde', 605, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4519, 'Ouahigouya', 606, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4520, 'Gourcy', 607, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4521, 'Manga', 608, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4522, 'Bubanza', 609, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4523, 'Bujumbura', 610, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4524, 'Bururi', 611, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4525, 'Cankuzo', 612, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4526, 'Cibitoke', 613, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4527, 'Gitega', 614, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, 1), -(4528, 'Karuzi', 615, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4529, 'Kayanza', 616, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4530, 'Kirundo', 617, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4531, 'Makamba', 618, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4532, 'Muramvya', 619, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4533, 'Muyinga', 620, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4534, 'Ngozi', 621, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4535, 'Rutana', 622, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4536, 'Ruyigi', 623, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4537, 'Kampot', 630, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4538, 'Ta Khmau', 631, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4539, 'Kracheh', 633, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4540, 'Pousat', 640, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, 1), -(4541, 'Phumi Takaev', 647, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4542, 'Banyo', 648, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4543, 'Meiganga', 648, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4544, 'Ngaoundere', 648, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4545, 'Tibati', 648, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4546, 'Tignere', 648, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4547, 'Akonolinga', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4548, 'Bafia', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4549, 'Eseka', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4550, 'Mbalmayo', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4551, 'Mfou', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4552, 'Monatele', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4553, 'Nanga Eboko', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4554, 'Obala', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4555, 'Ombesa', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4556, 'Saa', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4557, 'Yaounde', 649, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4558, 'Abong Mbang', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4559, 'Batouri', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4560, 'Bertoua', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4561, 'Betare Oya', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4562, 'Djoum', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4563, 'Doume', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4564, 'Lomie', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4565, 'Yokadouma', 650, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4566, 'Bonaberi', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4567, 'Dibombari', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4568, 'Douala', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4569, 'Edea', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4570, 'Loum', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4571, 'Manjo', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4572, 'Mbanga', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4573, 'Nkongsamba', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4574, 'Yabassi', 450, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4575, 'Figuif', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4576, 'Garoua', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4577, 'Guider', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4578, 'Lagdo', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4579, 'Poli', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4580, 'Rey Bouba', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4581, 'Tchollire', 651, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4582, 'Bamenda', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4583, 'Kumbo', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4584, 'Mbengwi', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4585, 'Mme', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4586, 'Njinikom', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4587, 'Nkambe', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4588, 'Wum', 653, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4589, 'Bafang', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4590, 'Bafoussam', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4591, 'Bafut', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4592, 'Bali', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4593, 'Bana', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4594, 'Bangangte', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4595, 'Djang', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4596, 'Fontem', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4597, 'Foumban', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4598, 'Foumbot', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4599, 'Mbouda', 654, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4600, 'Akom', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4601, 'Ambam', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4602, 'Ebolowa', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4603, 'Kribi', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4604, 'Lolodorf', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4605, 'Moloundou', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4606, 'Mvangue', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4607, 'Sangmelima', 655, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4608, 'Buea', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4609, 'Idenao', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4610, 'Kumba', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4611, 'Limbe', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4612, 'Mamfe', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4613, 'Muyuka', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4614, 'Tiko', 656, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4615, 'Airdrie', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4616, 'Athabasca', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4617, 'Banff', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4618, 'Barrhead', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4619, 'Bassano', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4620, 'Beaverlodge', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4621, 'Black Diamond', 657, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, 1), -(4622, 'Blackfalds', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4623, 'Blairmore', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4624, 'Bon Accord', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4625, 'Bonnyville', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4626, 'Bow Island', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4627, 'Brooks', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4628, 'Calgary', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4629, 'Calmar', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4630, 'Camrose', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4631, 'Canmore', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4632, 'Cardston', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4633, 'Carstairs', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4634, 'Chateau Lake Louise', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4635, 'Chestermere', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4636, 'Clairmont', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4637, 'Claresholm', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4638, 'Coaldale', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4639, 'Coalhurst', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4640, 'Cochrane', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4641, 'Crossfield', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4642, 'Devon', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4643, 'Didsbury', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4644, 'Drayton Valley', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4645, 'Drumheller', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4646, 'Edmonton', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4647, 'Edson', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4648, 'Elk Point', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4649, 'Fairview', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4650, 'Falher', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4651, 'Fort MacLeod', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4652, 'Fox Creek', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4653, 'Gibbons', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4654, 'Grand Centre', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4655, 'Grande Cache', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4656, 'Grande Prairie', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4657, 'Grimshaw', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4658, 'Hanna', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4659, 'High Level', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4660, 'High Prairie', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4661, 'High River', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4662, 'Hinton', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4663, 'Irricana', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4664, 'Jasper', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4665, 'Killam', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4666, 'La Crete', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4667, 'Lac la Biche', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4668, 'Lacombe', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4669, 'Lamont', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4670, 'Leduc', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4671, 'Lethbridge', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4672, 'Lloydminster', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4673, 'Magrath', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4674, 'Manning', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4675, 'Mayerthorpe', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4676, 'McMurray', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4677, 'Medicine Hat', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4678, 'Millet', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4679, 'Morinville', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4680, 'Nanton', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4681, 'Okotoks', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4682, 'Olds', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4683, 'Peace River', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4684, 'Penhold', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4685, 'Picture Butte', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4686, 'Pincher Creek', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4687, 'Ponoka', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4688, 'Provost', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4689, 'Raymond', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4690, 'Red Deer', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4691, 'Redwater', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4692, 'Rimbey', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4693, 'Rocky Mountain House', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4694, 'Rocky View', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4695, 'Saint Paul', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4696, 'Sexsmith', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4697, 'Sherwood Park', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4698, 'Slave Lake', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4699, 'Smoky Lake', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4700, 'Spirit River', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4701, 'Spruce Grove', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4702, 'Stettler', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4703, 'Stony Plain', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4704, 'Strathmore', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4705, 'Sundre', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4706, 'Swan Hills', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4707, 'Sylvan Lake', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4708, 'Taber', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4709, 'Three Hills', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4710, 'Tofield', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4711, 'Two Hills', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4712, 'Valleyview', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4713, 'Vegreville', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4714, 'Vermilion', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4715, 'Viking', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4716, 'Vulcan', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4717, 'Wainwright', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4718, 'Wembley', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4719, 'Westlock', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4720, 'Wetaskiwin', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4721, 'Whitecourt', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4722, 'Wood Buffalo', 657, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4723, 'Altona', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4724, 'Beausejour', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4725, 'Boissevain', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4726, 'Brandon', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4727, 'Carberry', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4728, 'Carman', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4729, 'Dauphin', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4730, 'Deloraine', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4731, 'Dugald', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4732, 'Flin Flon', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4733, 'Gimli', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4734, 'Hamiota', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4735, 'Killarney', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4736, 'Lac du Bonnet', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4737, 'Leaf Rapids', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4738, 'Lorette', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4739, 'Melita', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4740, 'Minnedosa', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4741, 'Morden', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4742, 'Morris', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4743, 'Neepawa', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4744, 'Niverville', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4745, 'Pinawa', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4746, 'Portage la Prairie', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4747, 'Ritchot', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4748, 'Rivers', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4749, 'Roblin', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4750, 'Saint Adolphe', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4751, 'Sainte Anne', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4752, 'Sainte Rose du Lac', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4753, 'Selkirk', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4754, 'Shilo', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4755, 'Snow Lake', 659, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, 1), -(4756, 'Souris', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4757, 'Springfield', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4758, 'Steinbach', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4759, 'Stonewall', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4760, 'Stony Mountain', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4761, 'Swan River', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4762, 'The Pas', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4763, 'Thompson', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4764, 'Virden', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4765, 'Winkler', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4766, 'Winnipeg', 659, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4767, 'Clyde River', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4768, 'Iqaluit', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4769, 'Kangerdlinerk', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4770, 'Oqsuqtooq', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4771, 'Pangnirtung', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4772, 'Tununirusiq', 664, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4773, 'Acton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4774, 'Ajax', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4775, 'Alexandria', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4776, 'Alfred', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4777, 'Alliston', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4778, 'Almonte', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4779, 'Amherstburg', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4780, 'Amigo Beach', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4781, 'Angus-Borden', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4782, 'Arnprior', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4783, 'Arthur', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4784, 'Athens', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4785, 'Atikokan', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4786, 'Attawapiskat', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4787, 'Aylmer', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4788, 'Barrie', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4789, 'Barry s Bay', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4790, 'Beamsville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4791, 'Beaverton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4792, 'Beeton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4793, 'Belleville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4794, 'Blenheim', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4795, 'Blind River', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4796, 'Bobcaygeon', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4797, 'Bolton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4798, 'Bourget', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4799, 'Bowmanville-Newcastle', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4800, 'Bracebridge', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4801, 'Bradford', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4802, 'Brampton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4803, 'Brantford', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4804, 'Bridgenorth-Chemong Park Area', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4805, 'Brighton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4806, 'Brockville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4807, 'Brooklin', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4808, 'Burford', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4809, 'Burlington', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4810, 'Caledon', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4811, 'Caledon East', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4812, 'Caledonia', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4813, 'Cambridge', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4814, 'Campbellford', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4815, 'Campbellville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4816, 'Cannington', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4817, 'Capreol', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4818, 'Cardinal', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4819, 'Carleton Place', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4820, 'Carlisle', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4821, 'Casselman', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4822, 'Cayuga', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4823, 'Chalk River', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4824, 'Chapleau', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4825, 'Chatham', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4826, 'Chesley', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4827, 'Chesterville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4828, 'Clinton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4829, 'Cobourg', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4830, 'Colborne', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4831, 'Colchester', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4832, 'Concord', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4833, 'Constance Bay', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4834, 'Cookstown', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4835, 'Cornwall', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4836, 'Creemore', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4837, 'Crystal Beach', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4838, 'Deep River', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4839, 'Delhi', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4840, 'Deseronto', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4841, 'Downsview', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4842, 'Drayton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4843, 'Dresden', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4844, 'Dryden', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4845, 'Dundalk', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4846, 'Dunnville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4847, 'Durham', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4848, 'Dutton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4849, 'Eganville', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4850, 'Elliot Lake', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4851, 'Elmira', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4852, 'Elmvale', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4853, 'Embrun', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4854, 'Englehart', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4855, 'Erin', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4856, 'Espanola', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4857, 'Essex', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4858, 'Etobicoke', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4859, 'Everett', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4860, 'Exeter', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4861, 'Fenelon Falls', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4862, 'Fergus', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4863, 'Forest', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4864, 'Fort Erie', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4865, 'Fort Frances', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4866, 'Frankford', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4867, 'Gananoque', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4868, 'Georgetown', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4869, 'Georgina', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4870, 'Geraldton', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4871, 'Glencoe', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4872, 'Goderich', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4873, 'Golden', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4874, 'Gormley', 431, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, 1), -(4875, 'Grand Bend', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4876, 'Grand Valley', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4877, 'Gravenhurst', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4878, 'Guelph', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4879, 'Hagersville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4880, 'Haileybury', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4881, 'Hanover', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4882, 'Harriston', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4883, 'Harrow', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4884, 'Havelock', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4885, 'Hawkesbury', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4886, 'Hearst', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4887, 'Hensall', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4888, 'Hillsburgh', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4889, 'Hornepayne', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4890, 'Huntsville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4891, 'Ingersoll', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4892, 'Innisfil', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4893, 'Iroquois', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4894, 'Iroquois Falls', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4895, 'Jarvis', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4896, 'Kanata', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4897, 'Kapuskasing', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4898, 'Kars', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4899, 'Kemptville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4900, 'Kenora', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4901, 'Kincardine', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4902, 'Kingston', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4903, 'Kirkland Lake', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4904, 'Kitchener', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4905, 'L Original', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4906, 'Lakefield', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4907, 'Lanark', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4908, 'Leamington', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4909, 'Lindsay', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4910, 'Listowel', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4911, 'Little Current', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4912, 'Lively', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4913, 'London', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4914, 'Longlac', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4915, 'Lucan', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4916, 'Lucknow', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4917, 'Madoc', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4918, 'Manitouwadge', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4919, 'Maple', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4920, 'Marathon', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4921, 'Markdale', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4922, 'Markham', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4923, 'Marmora', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4924, 'Mattawa', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4925, 'Meaford', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4926, 'Metcalfe', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4927, 'Midland', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4928, 'Mildmay', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4929, 'Millbrook', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4930, 'Milverton', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4931, 'Mississauga', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4932, 'Mississauga Beach', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4933, 'Mitchell', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4934, 'Moose Factory', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4935, 'Morrisburg', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4936, 'Mount Albert', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4937, 'Mount Brydges', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4938, 'Mount Forest', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4939, 'Munster', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4940, 'Nanticoke', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4941, 'Napanee', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4942, 'Nepean', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4943, 'New Hamburg', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4944, 'Newmarket', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4945, 'Newtonville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4946, 'Nobleton', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4947, 'North Bay', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4948, 'North Gower', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4949, 'North York', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4950, 'Norwich', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4951, 'Norwood', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4952, 'Oakville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4953, 'Omemee', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4954, 'Onaping-Levack', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4955, 'Ontario', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4956, 'Orangeville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4957, 'Orillia', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4958, 'Orono', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4959, 'Osgoode', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4960, 'Oshawa', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4961, 'Ottawa', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4962, 'Owen Sound', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4963, 'Paisley', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4964, 'Palmerston', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4965, 'Paris', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4966, 'Parkhill', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4967, 'Parry Sound', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4968, 'Pembroke', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4969, 'Perth', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4970, 'Petawawa', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4971, 'Peterborough', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4972, 'Petrolia', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4973, 'Pickering', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4974, 'Picton', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4975, 'Porcupine', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4976, 'Port Credit', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4977, 'Port Dover', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4978, 'Port Elgin', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4979, 'Port Hope', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4980, 'Port Perry', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4981, 'Port Stanley', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4982, 'Powassan', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4983, 'Prescott', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4984, 'Queensville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4985, 'Renfrew', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4986, 'Richmond', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4987, 'Richmond Hill', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4988, 'Ridgetown', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4989, 'Rockland', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4990, 'Rockwood', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4991, 'Rodney', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4992, 'Saint Catharines', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4993, 'Saint Catharines-Niagara', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4994, 'Saint George', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4995, 'Saint Jacobs', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4996, 'Saint Marys', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4997, 'Saint Thomas', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4998, 'Sarnia', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(4999, 'Sault Sainte Marie', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5000, 'Scarborough', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5001, 'Schomberg', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5002, 'Seaforth', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5003, 'Shelburne', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5004, 'Simcoe', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5005, 'Sioux Lookout', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5006, 'Smiths Falls', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5007, 'Smithville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5008, 'South River', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5009, 'Southampton', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5010, 'Stayner', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5011, 'Stirling', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5012, 'Stoney Creek', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5013, 'Stoney Point', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5014, 'Stouffville', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5015, 'Stratford', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5016, 'Strathroy', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5017, 'Sturgeon Falls', 431, '2024-01-21 12:04:13', '2024-01-21 12:04:13', NULL, 1), -(5018, 'Sudbury', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5019, 'Sutton', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5020, 'Tavistock', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5021, 'Teeswater', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5022, 'Terrace Bay', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5023, 'Thamesford', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5024, 'Thessalon', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5025, 'Thornhill', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5026, 'Thunder Bay', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5027, 'Tilbury', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5028, 'Tilsonburg', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5029, 'Timmins', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5030, 'Toronto', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5031, 'Tory Hill', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5032, 'Tottenham', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5033, 'Tweed', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5034, 'Uxbridge', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5035, 'Valley East', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5036, 'Vankleek Hill', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5037, 'Vaughan', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5038, 'Vineland', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5039, 'Walkerton', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5040, 'Wallaceburg', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5041, 'Wasaga Beach', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5042, 'Waterdown', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5043, 'Waterford', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5044, 'Waterloo', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5045, 'Watford', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5046, 'Wawa', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5047, 'Welland', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5048, 'Wellesley', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5049, 'Wellington', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5050, 'West Lorne', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5051, 'Wheatley', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5052, 'Whitby', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5053, 'Whitchurch-Stouffville', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5054, 'Wiarton', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5055, 'Wikwemikong', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5056, 'Willowdale', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5057, 'Winchester', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5058, 'Windsor', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5059, 'Wingham', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5060, 'Woodbridge', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5061, 'Woodstock', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5062, 'Wyoming', 431, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5063, 'Acton Vale', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5064, 'Albanel', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5065, 'Alencon', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5066, 'Alma', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5067, 'Amos', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5068, 'Amqui', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5069, 'Anjou', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5070, 'Asbestos', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5071, 'Bagotville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5072, 'Baie-Comeau', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5073, 'Baie-Saint-Paul', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5074, 'Barraute', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5075, 'Beauceville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5076, 'Beaupre', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5077, 'Bedford', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5078, 'Bernierville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5079, 'Berthierville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5080, 'Betsiamites', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5081, 'Boisbriand', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5082, 'Bonaventure', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5083, 'Boucherville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(5084, 'Bromont', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5085, 'Brossard', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5086, 'Brownsburg', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5087, 'Buckingham', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5088, 'Cabano', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5089, 'Candiac', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5090, 'Cap-Chat', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5091, 'Cap-aux-Meules', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5092, 'Carleton', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5093, 'Causapscal', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5094, 'Chandler', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5095, 'Chapais', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5096, 'Charlesbourg', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5097, 'Chateau-Richer', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5098, 'Chibougamou', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5099, 'Chicoutimi-Jonquiere', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5100, 'Chisasibi', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5101, 'Chute-aux-Outardes', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5102, 'Clermont', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5103, 'Coaticook', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5104, 'Coleraine', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5105, 'Contrecoeur', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5106, 'Cookshire', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5107, 'Cowansville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5108, 'Crabtree', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5109, 'Danville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5110, 'Daveluyville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5111, 'Degelis', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5112, 'Desbiens', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5113, 'Disraeli', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5114, 'Dolbeau', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5115, 'Donnacona', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5116, 'Dorval', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5117, 'Drummondville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5118, 'East Angus', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5119, 'East Broughton', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5120, 'Farnham', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5121, 'Ferme-Neuve', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5122, 'Fermont', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5123, 'Filion', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5124, 'Forestville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5125, 'Fort-Coulonge', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5126, 'Gaspe', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5127, 'Gentilly', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5128, 'Granby', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5129, 'Grande-Riviere', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5130, 'Grenville', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5131, 'Ham Nord', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5132, 'Hampstead', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5133, 'Hauterive', 666, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, 1), -(5134, 'Havre-Saint-Pierre', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5135, 'Hebertville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5136, 'Huntingdon', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5137, 'Joliette', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5138, 'Kingsey Falls', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5139, 'L Annonciation', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5140, 'L Ascension-de-Notre-Seigneur', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5141, 'L Epiphanie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5142, 'La Malbaie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5143, 'La Pocatiere', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5144, 'La Sarre', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5145, 'La Tuque', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5146, 'Labelle', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5147, 'Lac-Etchemin', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5148, 'Lac-Lapierre', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5149, 'Lac-Megantic', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5150, 'Lac-au-Saumon', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5151, 'Lachine', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5152, 'Lachute', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5153, 'Lacolle', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5154, 'Lasalle', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5155, 'Laurentides', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5156, 'Laurier-Station', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5157, 'Laval', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5158, 'Lavaltrie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5159, 'Le Bic', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5160, 'Lebel-sur-Quevillon', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5161, 'Les Cedres', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5162, 'Les Coteaux', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5163, 'Les Escoumins', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5164, 'Liniere', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5165, 'Longueuil', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5166, 'Louiseville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5167, 'Luceville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5168, 'Macamic', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5169, 'Magog', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5170, 'Malartic', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5171, 'Maniwaki', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5172, 'Marieville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5173, 'Maskinonge', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5174, 'Matagami', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5175, 'Matane', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5176, 'Metabetchouan', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5177, 'Mirabel', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5178, 'Mistissini', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5179, 'Mont-Joli', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5180, 'Mont-Laurier', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5181, 'Montmagny', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5182, 'Montreal', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5183, 'Murdochville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5184, 'Napierville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5185, 'New Richmond', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5186, 'Nicolet', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5187, 'Normandin', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5188, 'Notre-Dame-du-Bon-Conseil', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5189, 'Notre-Dame-du-Lac', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5190, 'Notre-Dame-du-Mont-Carmel', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5191, 'Oka-Kanesatake', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5192, 'Ormstown', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5193, 'Papineauville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5194, 'Pierreville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5195, 'Plessisville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5196, 'Pointe-Claire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5197, 'Pont-Rouge', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5198, 'Port-Alfred-Bagotville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5199, 'Port-Cartier', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5200, 'Portneuf', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5201, 'Price', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5202, 'Princeville', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5203, 'Quebec', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5204, 'Rawdon', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5205, 'Repentigny', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5206, 'Rigaud', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5207, 'Rimouski', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5208, 'Riviere-au-Renard', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5209, 'Riviere-du-Loup', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5210, 'Roberval', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5211, 'Rougemont', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5212, 'Rouyn-Noranda', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5213, 'Saint-Agapit', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5214, 'Saint-Alexandre', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5215, 'Saint-Alexis-des-Monts', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5216, 'Saint-Ambroise', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5217, 'Saint-Andre-Avellin', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5218, 'Saint-Anselme', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5219, 'Saint-Apollinaire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5220, 'Saint-Augustin', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5221, 'Saint-Basile-Sud', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5222, 'Saint-Bruno', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5223, 'Saint-Canut', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5224, 'Saint-Cesaire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5225, 'Saint-Cyrill-de-Wendover', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5226, 'Saint-Damase', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5227, 'Saint-Damien-de-Buckland', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5228, 'Saint-Denis', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5229, 'Saint-Donat-de-Montcalm', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5230, 'Saint-Ephrem-de-Tring', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5231, 'Saint-Fabien', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5232, 'Saint-Felicien', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5233, 'Saint-Felix-de-Valois', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5234, 'Saint-Gabriel', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5235, 'Saint-Gedeon', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5236, 'Saint-Georges', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5237, 'Saint-Germain-de-Grantham', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5238, 'Saint-Gregoire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5239, 'Saint-Henri-de-Levis', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5240, 'Saint-Honore', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5241, 'Saint-Hyacinthe', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5242, 'Saint-Jacques', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5243, 'Saint-Jean-Port-Joli', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5244, 'Saint-Jean-de-Dieu', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5245, 'Saint-Jean-sur-Richelieu', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5246, 'Saint-Jerome', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5247, 'Saint-Josephe-de-Beauce', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5248, 'Saint-Josephe-de-Lanoraie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5249, 'Saint-Josephe-de-la-Riviere-Bl', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5250, 'Saint-Jovite', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5251, 'Saint-Laurent', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5252, 'Saint-Liboire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5253, 'Saint-Marc-des-Carrieres', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5254, 'Saint-Martin', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5255, 'Saint-Michel-des-Saints', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5256, 'Saint-Pacome', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5257, 'Saint-Pascal', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5258, 'Saint-Pie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5259, 'Saint-Prosper', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5260, 'Saint-Raphael', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5261, 'Saint-Raymond', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5262, 'Saint-Remi', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5263, 'Saint-Roch-de-l Achigan', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5264, 'Saint-Sauveur-des-Monts', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5265, 'Saint-Tite', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5266, 'Sainte-Adele', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5267, 'Sainte-Agathe-des-Monts', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5268, 'Sainte-Anne-des-Monts', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5269, 'Sainte-Anne-des-Plaines', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5270, 'Sainte-Catherine', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5271, 'Sainte-Claire', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5272, 'Sainte-Julienne', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5273, 'Sainte-Justine', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5274, 'Sainte-Madeleine', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5275, 'Sainte-Marie', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5276, 'Sainte-Martine', 666, '2024-01-21 12:04:15', '2024-01-21 12:04:15', NULL, 1), -(5277, 'Sainte-Sophie', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5278, 'Sainte-Thecle', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5279, 'Sainte-Therese', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5280, 'Salaberry-de-Valleyfield', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5281, 'Sayabec', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5282, 'Senneterre', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5283, 'Sept-Iles', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5284, 'Shawinigan', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5285, 'Shawville', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5286, 'Sherbrooke', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5287, 'Sorel', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5288, 'St Faustin', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5289, 'St. Hubert', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5290, 'St. Jean Chrysostome', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5291, 'Temiscaming', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5292, 'Terrebonne', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5293, 'Thetford Mines', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5294, 'Thurso', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5295, 'Trois-Pistoles', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5296, 'Trois-Rivieres', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5297, 'Val-David', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5298, 'Val-d Or', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5299, 'Valcourt', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5300, 'Vallee-Jonction', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5301, 'Vaudreuil', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5302, 'Vercheres', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5303, 'Victoriaville', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5304, 'Ville-Marie', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5305, 'Weedon Centre', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5306, 'Westmount', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5307, 'Wickham', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5308, 'Yamachiche', 666, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5309, 'Assiniboia', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5310, 'Biggar', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5311, 'Canora', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5312, 'Carlyle', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5313, 'Carnduff', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5314, 'Caronport', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5315, 'Carrot', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5316, 'Dalmeny', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5317, 'Davidson', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5318, 'Esterhazy', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5319, 'Estevan', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5320, 'Eston', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5321, 'Foam Lake', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5322, 'Fort Qu Appelle', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5323, 'Gravelbourg', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5324, 'Grenfell', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5325, 'Gull Lake', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5326, 'Hudson Bay', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5327, 'Humboldt', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5328, 'Indian Head', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5329, 'Kamsack', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5330, 'Kelvington', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5331, 'Kerrobert', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5332, 'Kindersley', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5333, 'Kipling', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5334, 'La Ronge', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5335, 'Langenburg', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5336, 'Langham', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5337, 'Lanigan', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5338, 'Lumsden', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5339, 'Macklin', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5340, 'Maple Creek', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5341, 'Martensville', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5342, 'Meadow Lake', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5343, 'Melfort', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5344, 'Melville', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5345, 'Moose Jaw', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5346, 'Moosomin', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5347, 'Nipawin', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5348, 'North Battleford', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5349, 'Outlook', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5350, 'Oxbow', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5351, 'Pilot Butte', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5352, 'Preeceville', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5353, 'Prince Albert', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5354, 'Regina', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5355, 'Rosetown', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5356, 'Rosthem', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5357, 'Saskatoon', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5358, 'Shaunavon', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5359, 'Shellbrook', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5360, 'Swift Current', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5361, 'Tisdale', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5362, 'Unity', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5363, 'Wadena', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5364, 'Warman', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5365, 'Watrous', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5366, 'Weyburn', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5367, 'White City', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5368, 'Wilkie', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5369, 'Wynyard', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5370, 'Yorkton', 667, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5371, 'Haines Junction', 668, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5372, 'Mayo', 668, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5373, 'Whitehorse', 668, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5374, 'Sal Rei', 669, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5375, 'Nova Sintra', 670, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5376, 'Mosteiros', 671, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5377, 'Sao Filipe', 671, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5378, 'Vila do Maio', 672, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5379, 'Santa Maria', 673, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, 1), -(5380, 'Ndele', 679, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5381, 'Bangui', 680, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5382, 'Alindao', 681, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5383, 'Kembe', 681, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5384, 'Mobaye', 681, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5385, 'Obo', 682, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5386, 'Zemio', 682, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5387, 'Bria', 683, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5388, 'Ouadda', 683, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5389, 'Dekoa', 684, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5390, 'Sibut', 684, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5391, 'Boda', 685, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5392, 'Mbaiki', 685, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5393, 'Mongoumba', 685, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5394, 'Berberati', 686, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5395, 'Carnot', 686, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5396, 'Gamboula', 686, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5397, 'Bangassou', 687, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5398, 'Gambo', 687, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5399, 'Ouango', 687, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5400, 'Rafai', 687, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5401, 'Kaga-Bandoro', 688, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5402, 'Baboua', 689, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5403, 'Baoro', 689, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5404, 'Bouar', 689, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5405, 'Bambari', 691, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5406, 'Grimari', 691, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5407, 'Ippy', 691, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5408, 'Kouango', 691, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5409, 'Batangafo', 692, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5410, 'Bossangoa', 692, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5411, 'Bouca', 692, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5412, 'Kabo', 692, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5413, 'Bocaranga', 693, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5414, 'Bozoum', 693, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5415, 'Paoua', 693, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5416, 'Nola', 694, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5417, 'Birao', 695, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5418, 'Ati', 696, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5419, 'Oum Hadjer', 696, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5420, 'Biltine', 697, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, 1), -(5421, 'Aouzou', 698, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5422, 'Bardai', 698, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5423, 'Fada', 698, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5424, 'Faya', 698, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5425, 'Bokoro', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5426, 'Bousso', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5427, 'Dourbali', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5428, 'Massaguet', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5429, 'Massakory', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5430, 'Massenya', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5431, 'N Djamena', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5432, 'Ngama', 699, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5433, 'Bitkine', 700, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5434, 'Melfi', 700, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5435, 'Mongo', 700, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5436, 'Mao', 701, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5437, 'Moussoro', 701, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5438, 'Rig-Rig', 701, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5439, 'Bol', 702, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5440, 'Bongor', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5441, 'Fianga', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5442, 'Gounou Gaya', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5443, 'Guelengdeng', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5444, 'Lere', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5445, 'Pala', 705, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5446, 'Goundi', 706, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5447, 'Koumra', 706, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5448, 'Kyabe', 706, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5449, 'Moissala', 706, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5450, 'Sarh', 706, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5451, 'Abeche', 707, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5452, 'Adre', 707, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5453, 'Am Dam', 707, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5454, 'Abou Deia', 708, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5455, 'Am Timan', 708, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5456, 'Mangueigne', 708, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5457, 'Benoy', 709, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5458, 'Kelo', 709, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5459, 'Lai', 709, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5460, 'Aisen', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5461, 'Chile Chico', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5462, 'Cisnes', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5463, 'Coihaique', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5464, 'Guaitecas', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5465, 'Lago Verde', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5466, 'O Higgins', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5467, 'Rio Ibanez', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5468, 'Tortel', 710, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5469, 'Antofagasta', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5470, 'Calama', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5471, 'Maria Elena', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5472, 'Mejilones', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5473, 'Ollague', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5474, 'San Pedro de Atacama', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5475, 'Sierra Gorda', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5476, 'Taltal', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5477, 'Tocopilla', 711, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5478, 'Angol', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5479, 'Carahue', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5480, 'Collipulli', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5481, 'Cunco', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5482, 'Curacautin', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5483, 'Curarrehue', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5484, 'Ercilla', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5485, 'Freire', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5486, 'Galvarino', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5487, 'Gorbea', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5488, 'Lautaro', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5489, 'Loncoche', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5490, 'Lonquimay', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5491, 'Los Sauces', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5492, 'Lumaco', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5493, 'Melipeuco', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5494, 'Nueva Imperial', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5495, 'Padre las Casas', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5496, 'Perquenco', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5497, 'Pitrufquen', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5498, 'Pucon', 712, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, 1), -(5499, 'Puren', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5500, 'Renaico', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5501, 'Saavedra', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5502, 'Temuco', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5503, 'Teodoro Schmidt', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5504, 'Tolten', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5505, 'Traiguen', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5506, 'Victoria', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5507, 'Vilcun', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5508, 'Villarica', 712, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5509, 'Alto del Carmen', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5510, 'Caldera', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5511, 'Chanaral', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5512, 'Copiapo', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5513, 'Diego de Almagro', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5514, 'Freirina', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5515, 'Huasco', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5516, 'Tierra Amarilla', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5517, 'Vallenar', 713, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5518, 'Andacollo', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5519, 'Canela', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5520, 'Combarbala', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5521, 'Coquimbo', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5522, 'Illapel', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5523, 'La Higuera', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5524, 'La Serena', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5525, 'Los Vilos', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5526, 'Monte Patria', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5527, 'Ovalle', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5528, 'Paiguano', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5529, 'Punitaci', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5530, 'Rio Hurtado', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5531, 'Salamanca', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5532, 'Vicuna', 715, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5533, 'Cabo de Horno', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5534, 'Laguna Blanca', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5535, 'Natales', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5536, 'Porvenir', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5537, 'Primavera', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5538, 'Punta Arenas', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5539, 'San Gregorio', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5540, 'Timaukel', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5541, 'Torres del Paine', 718, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5542, 'Cauquenes', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5543, 'Chanco', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5544, 'Colbun', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5545, 'Constitucion', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5546, 'Curepto', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5547, 'Curico', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5548, 'Empedrado', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5549, 'Hualane', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5550, 'Licanten', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5551, 'Linares', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5552, 'Longavi', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5553, 'Maule', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5554, 'Molina', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5555, 'Parral', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5556, 'Pelarco', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5557, 'Pelluhue', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5558, 'Pencahue', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5559, 'Rauco', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5560, 'Retiro', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5561, 'Rio Claro', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5562, 'Romeral', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5563, 'Sagrada Familia', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5564, 'San Clemente', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5565, 'San Javier', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5566, 'Talca', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5567, 'Teno', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5568, 'Vichuquen', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5569, 'Villa Alegre', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5570, 'Yerbas Buenas', 719, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5571, 'Alhue', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5572, 'Buin', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5573, 'Calera de Tango', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5574, 'Colina', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5575, 'Curacavi', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5576, 'El Monte', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5577, 'Isla de Maipo', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5578, 'Lampa', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5579, 'Maria Pinto', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5580, 'Melipilla', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5581, 'Padre Hurtado', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5582, 'Paine', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5583, 'Penaflor', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5584, 'Pirque', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5585, 'Puente Alto', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5586, 'Quilicura', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5587, 'San Bernardo', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5588, 'San Jose de Maipo', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5589, 'Santiago', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5590, 'Talagante', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5591, 'Tiltil', 720, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5592, 'Arica', 722, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5593, 'Camarones', 722, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5594, 'Camina', 722, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, 1), -(5595, 'Colchane', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5596, 'General Lagos', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5597, 'Huara', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5598, 'Iquique', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5599, 'Pica', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5600, 'Pozo Almonte', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5601, 'Putre', 722, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5602, 'Algarrobo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5603, 'Cabildo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5604, 'Calera', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5605, 'Calle Larga', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5606, 'Cartagena', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5607, 'Casablanca', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5608, 'Catemu', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5609, 'Concon', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5610, 'El Quisco', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5611, 'El Tabo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5612, 'Hijuelas', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5613, 'La Cruz', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5614, 'La Ligua', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5615, 'Limache', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5616, 'Llaillay', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5617, 'Los Andes', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5618, 'Nogales', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5619, 'Olmue', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5620, 'Panquehue', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5621, 'Papudo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5622, 'Petorca', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5623, 'Puchuncavi', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5624, 'Putaendeo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5625, 'Quillota', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5626, 'Quilpue', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5627, 'Quintero', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5628, 'Rinconada', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5629, 'San Antonio', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5630, 'San Esteban', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5631, 'San Felipe', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5632, 'Santo Domingo', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5633, 'Valparaiso', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5634, 'Villa Alemana', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5635, 'Vina del Mar', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5636, 'Zapallar', 723, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5637, 'Fengyang', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5638, 'Guangde', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5639, 'Liuan', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5640, 'Ningguo', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5641, 'Shucheng', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5642, 'Xinchang', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5643, 'Xuancheng', 724, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5644, 'Aomen', 725, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5645, 'Beijing', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5646, 'Changping', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5647, 'Fangshan', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5648, 'Huangcun', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5649, 'Liangxiang', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5650, 'Mentougou', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5651, 'Shunyi', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5652, 'Tongzhou', 726, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5653, 'Beibei', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5654, 'Chongqing', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5655, 'Fuling', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5656, 'Longhua', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5657, 'Nantongkuang', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5658, 'Wanxian', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5659, 'Xiuma', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5660, 'Yubei', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5661, 'Yudong', 728, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5662, 'Bantou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5663, 'Dongshan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5664, 'Fuan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5665, 'Fujian', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5666, 'Fuqing', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5667, 'Fuzhou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5668, 'Gantou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5669, 'Hanyang', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5670, 'Jiangkou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5671, 'Jiaocheng', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5672, 'Jinjiang', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5673, 'Jinshang', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5674, 'Longhai', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5675, 'Longyan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5676, 'Luoyang', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5677, 'Nanan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5678, 'Nanping', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5679, 'Nanpu', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5680, 'Putian', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5681, 'Qingyang', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5682, 'Quanzhou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5683, 'Rongcheng', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5684, 'Sanming', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5685, 'Shaowu', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5686, 'Shima', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5687, 'Shishi', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5688, 'Tantou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5689, 'Tongshan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5690, 'Xiamen', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5691, 'Xiapu', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5692, 'Xiapu Ningde', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5693, 'Ximei', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5694, 'Yongan', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5695, 'Zhangzhou', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5696, 'Zhicheng', 729, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5697, 'Baiyin', 730, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5698, 'Baoji', 730, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5699, 'Beidao', 730, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5700, 'Jiayuguan', 730, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, 1), -(5701, 'Jinchang', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5702, 'Jiuquan', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5703, 'Lanzhou', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5704, 'Linxia', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5705, 'Pingliang', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5706, 'Qincheng', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5707, 'Wuwei', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5708, 'Yaojie', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5709, 'Yumen', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5710, 'Zhangye', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5711, 'Zhuanglang', 730, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(5712, 'Anbu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5713, 'Chaozhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5714, 'Chenghai', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5715, 'Chuncheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5716, 'Daliang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5717, 'Danshui', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5718, 'Dongguan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5719, 'Donghai', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5720, 'Dongli', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5721, 'Dongzhen', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5722, 'Ducheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5723, 'Encheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5724, 'Foahn', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5725, 'Foshan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5726, 'Gaozhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5727, 'Guangdong', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5728, 'Guangzhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5729, 'Guanjiao', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5730, 'Haicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5731, 'Haimen', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5732, 'Hepo', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5733, 'Houpu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5734, 'Huaicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5735, 'Huanggang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5736, 'Huangpu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5737, 'Huazhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5738, 'Huicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5739, 'Huizhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5740, 'Humen', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5741, 'Jiangmen', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5742, 'Jiazi', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5743, 'Jieshi', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5744, 'Jieyang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5745, 'Lecheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5746, 'Leicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5747, 'Liancheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5748, 'Lianzhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5749, 'Licheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5750, 'Liusha', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5751, 'Longgang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5752, 'Lubu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5753, 'Luocheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5754, 'Luohu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5755, 'Maba', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5756, 'Maoming', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5757, 'Mata', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5758, 'Meilu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5759, 'Meizhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5760, 'Mianchang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5761, 'Nanfeng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5762, 'Nanhai', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5763, 'Pingshan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5764, 'Qingtang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5765, 'Qingyuan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5766, 'Sanbu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5767, 'Shantou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5768, 'Shanwei', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5769, 'Shaoguan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5770, 'Shaping', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5771, 'Shenzhen', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5772, 'Shilong', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5773, 'Shiqiao', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5774, 'Shiwan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5775, 'Shuizhai', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5776, 'Shunde', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5777, 'Suicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5778, 'Taicheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5779, 'Tangping', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5780, 'Xiaolan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5781, 'Xinan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5782, 'Xingcheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5783, 'Xiongzhou', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5784, 'Xucheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5785, 'Yangjiang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5786, 'Yingcheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5787, 'Yuancheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5788, 'Yuncheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5789, 'Yunfu', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5790, 'Zengcheng', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5791, 'Zhanjiang', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5792, 'Zhaoqing', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5793, 'Zhilong', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5794, 'Zhongshan', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5795, 'Zhuhai', 731, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5796, 'Babu', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5797, 'Baihe', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5798, 'Baise', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5799, 'Beihai', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5800, 'Binzhou', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5801, 'Bose', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5802, 'Fangchenggang', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5803, 'Guicheng', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5804, 'Guilin', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5805, 'Guiping', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5806, 'Jinchengjiang', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5807, 'Jinji', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5808, 'Laibin', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5809, 'Liuzhou', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5810, 'Luorong', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5811, 'Matong', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5812, 'Nandu', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5813, 'Nanning', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5814, 'Pingnan', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5815, 'Pumiao', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5816, 'Qinzhou', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5817, 'Songhua', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5818, 'Wuzhou', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5819, 'Yashan', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5820, 'Yulin', 732, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5821, 'Anshun', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5822, 'Bijie', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5823, 'Caohai', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5824, 'Duyun', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5825, 'Guiyang', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5826, 'Kaili', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5827, 'Liupanshui', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5828, 'Pingzhai', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5829, 'Tongren', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5830, 'Tongzi', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5831, 'Xiaoweizhai', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5832, 'Xingyi', 733, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, 1), -(5833, 'Zunyi', 733, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5834, 'Chengmai', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5835, 'Dingan', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5836, 'Haikou', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5837, 'Lingao', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5838, 'Qiongshan', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5839, 'Sansha ', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5840, 'Sanya', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5841, 'Wanning', 734, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5842, 'Anping', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5843, 'Baoding', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5844, 'Botou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5845, 'Cangzhou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5846, 'Changli', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5847, 'Chengde', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5848, 'Dingzhou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5849, 'Fengfeng', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5850, 'Fengrun', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5851, 'Guye', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5852, 'Handan', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5853, 'Hebei', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5854, 'Hecun', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5855, 'Hejian', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5856, 'Hengshui', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5857, 'Huanghua', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5858, 'Jingxingkuang', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5859, 'Jinzhou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5860, 'Langfang', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5861, 'Linshui', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5862, 'Linxi', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5863, 'Longyao County', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5864, 'Nangong', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5865, 'Pengcheng', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5866, 'Qinhuangdao', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5867, 'Renqiu', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5868, 'Shahe', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5869, 'Shijiazhuang', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5870, 'Tangjiazhuang', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5871, 'Tangshan', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5872, 'Wuan', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5873, 'Xian County', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5874, 'Xingtai', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5875, 'Xinji', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5876, 'Xinle', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5877, 'Xuanhua', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5878, 'Zhangjiakou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5879, 'Zhaogezhuang', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5880, 'Zhuozhou', 735, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5881, 'Acheng', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5882, 'Anda', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5883, 'Angangxi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5884, 'Baiquan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5885, 'Bamiantong', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5886, 'Baoqing', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5887, 'Baoshan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5888, 'Bayan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5889, 'Beian', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5890, 'Boli', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5891, 'Chaihe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5892, 'Chengzihe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5893, 'Cuiluan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5894, 'Daqing', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5895, 'Didao', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5896, 'Dongning', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5897, 'Fujin', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5898, 'Fuli', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5899, 'Fulitun', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5900, 'Fuyu', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5901, 'Gannan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5902, 'Hailin', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5903, 'Hailun', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5904, 'Harbin', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5905, 'Hegang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5906, 'Heihe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5907, 'Hengshan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5908, 'Honggang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5909, 'Huanan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5910, 'Hulan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5911, 'Hulan Ergi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5912, 'Jiamusi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5913, 'Jidong', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5914, 'Jixi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5915, 'Keshan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5916, 'Langxiang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5917, 'Lanxi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5918, 'Lingdong', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5919, 'Linkou', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5920, 'Lishu', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5921, 'Longfeng', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5922, 'Longjiang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5923, 'Mingshui', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5924, 'Mishan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5925, 'Mudanjiang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5926, 'Nancha', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5927, 'Nehe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5928, 'Nenjiang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5929, 'Nianzishan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5930, 'Ningan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5931, 'Qingan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5932, 'Qinggang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5933, 'Qiqihar', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5934, 'Qitaihe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5935, 'Ranghulu', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5936, 'Saertu', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5937, 'Shangzhi', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5938, 'Shanhetun', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5939, 'Shuangcheng', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5940, 'Shuangyashan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5941, 'Sifantan', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5942, 'Suifenhe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5943, 'Suihua', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5944, 'Suileng', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5945, 'Tahe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5946, 'Taikang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5947, 'Tailai', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5948, 'Tieli', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5949, 'Wangkui', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5950, 'Weihe', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5951, 'Wuchang', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5952, 'Xinglongzhen', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5953, 'Xinqing', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5954, 'Yian', 736, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, 1), -(5955, 'Yichun', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5956, 'Yilan', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5957, 'Youhao', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5958, 'Zhaodong', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5959, 'Zhaoyuan', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5960, 'Zhaozhou', 736, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5961, 'Anyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5962, 'Changying', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5963, 'Dancheng', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5964, 'Daokou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5965, 'Dengzhou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5966, 'Gongyi', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5967, 'Gushi', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5968, 'Hebi', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5969, 'Huaidian', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5970, 'Huangchuan', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5971, 'Huangzhai', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5972, 'Jiaozuo', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5973, 'Jishui', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5974, 'Kaifeng', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5975, 'Liupen', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5976, 'Luohe', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5977, 'Luyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5978, 'Mengzhou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5979, 'Minggang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5980, 'Nandun', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5981, 'Nanyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5982, 'Pingdingshan', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5983, 'Puyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5984, 'Sanmenxia', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5985, 'Shangqiu', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5986, 'Tanghe', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5987, 'Xiaoyi', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5988, 'Xihua', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5989, 'Xinxiang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5990, 'Xinyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5991, 'Xinye', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5992, 'Xixiang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5993, 'Xuanwu', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5994, 'Xuchang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5995, 'Yigou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5996, 'Yima', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5997, 'Yinzhuang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5998, 'Yunyang', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(5999, 'Yuzhou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6000, 'Zhecheng', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6001, 'Zhengzhou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6002, 'Zhenping', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6003, 'Zhoukou', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6004, 'Zhumadian', 737, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6005, 'Anlu', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6006, 'Baisha', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6007, 'Buhe', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6008, 'Caidian', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6009, 'Caohe', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6010, 'Danjiangkou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6011, 'Daye', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6012, 'Duobao', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6013, 'Enshi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6014, 'Ezhou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6015, 'Fengkou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6016, 'Guangshui', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6017, 'Gucheng', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6018, 'Hanchuan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6019, 'Hongan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6020, 'Honghu', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6021, 'Huangmei', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6022, 'Huangpi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6023, 'Huangshi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6024, 'Huangzhou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6025, 'Jingmen', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6026, 'Jingzhou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6027, 'Laohekou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6028, 'Lichuan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6029, 'Macheng', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6030, 'Nanzhang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6031, 'Puqi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6032, 'Qianjiang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6033, 'Qingquan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6034, 'Qixingtai', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6035, 'Shashi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6036, 'Shishou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6037, 'Shiyan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6038, 'Suizhou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6039, 'Tianmen', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6040, 'Tongcheng', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6041, 'Wuhan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6042, 'Wuxue', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6043, 'Xiangfan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6044, 'Xianning', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6045, 'Xiantao', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6046, 'Xiaogan', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6047, 'Xiaoxita', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6048, 'Xiaxindian', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6049, 'Xihe', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6050, 'Xinpu', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6051, 'Xinshi', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6052, 'Xinzhou', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6053, 'Yichang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6054, 'Yicheng', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6055, 'Yingzhong', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6056, 'Zaoyang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6057, 'Zhengchang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6058, 'Zhifang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6059, 'Zhongxiang', 738, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6060, 'Anjiang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6061, 'Anxiang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6062, 'Changde', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6063, 'Changsha', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6064, 'Chenzhou', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6065, 'Dayong', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6066, 'Hengyang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6067, 'Hongjiang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6068, 'Huaihua', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6069, 'Jinshi', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6070, 'Jishou', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6071, 'Leiyang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6072, 'Lengshuijiang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6073, 'Lengshuitan', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6074, 'Lianyuan', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6075, 'Liling', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6076, 'Liuyang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6077, 'Loudi', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6078, 'Matian', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6079, 'Nanzhou', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6080, 'Ningxiang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6081, 'Qidong', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6082, 'Qiyang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6083, 'Shaoyang', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6084, 'Xiangtan', 739, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, 1), -(6085, 'Xiangxiang', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6086, 'Xiangyin', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6087, 'Xinhua', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6088, 'Yiyang', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6089, 'Yongfeng', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6090, 'Yongzhou', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6091, 'Yuanjiang', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6092, 'Yueyang', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6093, 'Zhuzhou', 739, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6094, 'Baoying', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6095, 'Changzhou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6096, 'Dachang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6097, 'Dafeng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6098, 'Danyang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6099, 'Dingshu', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6100, 'Dongkan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6101, 'Dongtai', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6102, 'Fengxian', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6103, 'Gaogou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6104, 'Gaoyou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6105, 'Guiren', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6106, 'Haian', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6107, 'Haizhou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6108, 'Hede', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6109, 'Huaiyin', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6110, 'Huilong', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6111, 'Hutang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6112, 'Jiangdu', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6113, 'Jiangyan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6114, 'Jiangyin', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6115, 'Jiangyuan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6116, 'Jianhu', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6117, 'Jingcheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6118, 'Jinsha', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6119, 'Jintan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6120, 'Juegang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6121, 'Jurong', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6122, 'Kunshan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6123, 'Lianyungang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6124, 'Liucheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6125, 'Liyang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6126, 'Luodu', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6127, 'Mudu', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6128, 'Nanjing', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6129, 'Nantong', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6130, 'Pecheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6131, 'Pukou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6132, 'Qinnan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6133, 'Qixia', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6134, 'Rucheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6135, 'Songling', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6136, 'Sucheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6137, 'Suqian', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6138, 'Suzhou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6139, 'Taicang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6140, 'Taixing', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6141, 'Wujiang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6142, 'Wuxi', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6143, 'Xiaolingwei', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6144, 'Xiaoshi', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6145, 'Xuzhou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6146, 'Yancheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6147, 'Yangshe', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6148, 'Yangzhou', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6149, 'Yizheng', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6150, 'Yunhe', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6151, 'Yushan', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6152, 'Zhangjiagang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6153, 'Zhangjiangang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6154, 'Zhaoyang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6155, 'Zhenjiang', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6156, 'Zhongxing', 740, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6157, 'Fengxin', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6158, 'Fenyi', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6159, 'Ganzhou', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6160, 'Jian', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6161, 'Jiangguang', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6162, 'Jingdezhen', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6163, 'Jiujiang', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6164, 'Leping', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6165, 'Linchuan', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6166, 'Nanchang', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6167, 'Pingxiang', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6168, 'Poyang', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6169, 'Shangrao', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6170, 'Xiangdong', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6171, 'Xingan', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6172, 'Xinjian', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6173, 'Xinyu', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6174, 'Xiongshi', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6175, 'Yingtai', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6176, 'Yingtan', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6177, 'Zhangshui', 741, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6178, 'Badaojiang', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6179, 'Baicheng', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6180, 'Baishishan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6181, 'Changchun', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6182, 'Changling', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6183, 'Chaoyang', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6184, 'Daan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6185, 'Dashitou', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6186, 'Dehui', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6187, 'Dongchang', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6188, 'Dongfeng', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6189, 'Dunhua', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6190, 'Erdaojiang', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6191, 'Gongzhuling', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6192, 'Helong', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6193, 'Hongmei', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6194, 'Huadian', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6195, 'Huangnihe', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6196, 'Huinan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6197, 'Hunchun', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6198, 'Jiaohe', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6199, 'Jilin', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6200, 'Jishu', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6201, 'Jiutai', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6202, 'Kaitong', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6203, 'Kouqian', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6204, 'Liaoyuan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6205, 'Linjiang', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6206, 'Liuhe', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6207, 'Longjing', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6208, 'Meihekou', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6209, 'Mingyue', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6210, 'Nongan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6211, 'Panshi', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6212, 'Pizhou', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6213, 'Qianan', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6214, 'Qianguo', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6215, 'Sanchazi', 742, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, 1), -(6216, 'Shuangyang', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6217, 'Shulan', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6218, 'Siping', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6219, 'Songjianghe', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6220, 'Taonan', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6221, 'Tumen', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6222, 'Wangou', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6223, 'Wangqing', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6224, 'Xinglongshan', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6225, 'Yanji', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6226, 'Yantongshan', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6227, 'Yushu', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6228, 'Zhengjiatun', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6229, 'Zhenlai', 742, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6230, 'Anshan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6231, 'Beipiao', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6232, 'Benxi', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6233, 'Changtu', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6234, 'Dalian', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6235, 'Dalianwan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6236, 'Dalinghe', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6237, 'Dandong', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6238, 'Dashiqiao', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6239, 'Dongling', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6240, 'Fengcheng', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6241, 'Fushun', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6242, 'Fuxin', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6243, 'Heishan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6244, 'Huanren', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6245, 'Huludao', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6246, 'Hushitai', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6247, 'Jinxi', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6248, 'Jiupu', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6249, 'Kaiyuan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6250, 'Kuandian', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6251, 'Langtou', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6252, 'Liaoyang', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6253, 'Liaozhong', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6254, 'Lingyuan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6255, 'Liuerbao', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6256, 'Lushunkou', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6257, 'Nantai', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6258, 'Panjin', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6259, 'Pulandian', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6260, 'Shenyang', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6261, 'Sujiatun', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6262, 'Tieling', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6263, 'Wafangdian', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6264, 'Xifeng', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6265, 'Xinchengxi', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6266, 'Xinmin', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6267, 'Xiongyue', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6268, 'Xiuyan', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6269, 'Yebaishou', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6270, 'Yingkou', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6271, 'Yuhong', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6272, 'Zhuanghe', 743, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6273, 'Qiatou', 746, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6274, 'Xining', 746, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6275, 'Ankang', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6276, 'Guozhen', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6277, 'Hancheng', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6278, 'Hanzhong', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6279, 'Lishan', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6280, 'Qili', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6281, 'Tongchuan', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6282, 'Weinan', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6283, 'Xian', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6284, 'Xianyang', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6285, 'Yanan', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6286, 'Yanliang', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6287, 'Yuxia', 747, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6288, 'Anqiu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6289, 'Bianzhuang', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6290, 'Boshan', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6291, 'Boxing County', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6292, 'Caocheng', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6293, 'Changqing', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6294, 'Chengyang', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6295, 'Dezhou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6296, 'Dingtao', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6297, 'Dongcun', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6298, 'Dongdu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6299, 'Donge County', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6300, 'Dongying', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6301, 'Feicheng', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6302, 'Fushan', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6303, 'Gaomi', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6304, 'Haiyang', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6305, 'Hanting', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6306, 'Hekou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6307, 'Heze', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6308, 'Jiaonan', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6309, 'Jiaozhou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6310, 'Jiehu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6311, 'Jimo', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6312, 'Jinan', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6313, 'Jining', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6314, 'Juxian', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6315, 'Juye', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6316, 'Kunlun', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6317, 'Laiwu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6318, 'Laiyang', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6319, 'Laizhou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6320, 'Leling', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6321, 'Liaocheng', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6322, 'Licung', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6323, 'Linqing', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6324, 'Linqu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6325, 'Linshu', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6326, 'Linyi', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6327, 'Longkou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6328, 'Mengyin', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6329, 'Nanchou', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6330, 'Nanding', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6331, 'Nanma', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6332, 'Ninghai', 748, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, 1), -(6333, 'Ningyang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6334, 'Pingdu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6335, 'Pingyi', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6336, 'Pingyin', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6337, 'Qingdao', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6338, 'Qingzhou', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6339, 'Qufu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6340, 'Rizhao', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6341, 'Shancheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6342, 'Shanting', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6343, 'Shengzhuang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6344, 'Shenxian', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6345, 'Shizilu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6346, 'Shouguang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6347, 'Shuiji', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6348, 'Sishui', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6349, 'Suozhen', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6350, 'Taian', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6351, 'Tancheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6352, 'Taozhuang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6353, 'Tengzhou', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6354, 'Weifang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6355, 'Weihai', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6356, 'Wencheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6357, 'Wendeng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6358, 'Wenshang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(6359, 'Wudi', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6360, 'Xiazhen', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6361, 'Xincheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6362, 'Xindian', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6363, 'Xintai', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6364, 'Yanggu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6365, 'Yangshan', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6366, 'Yantai', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6367, 'Yanzhou', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6368, 'Yatou', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6369, 'Yidu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6370, 'Yishui', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6371, 'Yucheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6372, 'Zaozhuang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6373, 'Zhangdian', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6374, 'Zhangjiawa', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6375, 'Zhangqiu', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6376, 'Zhaocheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6377, 'Zhoucheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6378, 'Zhoucun', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6379, 'Zhucheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6380, 'Zhuwang', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6381, 'Zicheng', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6382, 'Zouping', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6383, 'Zouxian', 748, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6384, 'Jiading', 749, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6385, 'Minhang', 749, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6386, 'Shanghai', 749, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6387, 'Songjiang', 749, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6388, 'Trencin', 749, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6389, 'Changzhi', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6390, 'Datong', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6391, 'Houma', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6392, 'Jiexiu', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6393, 'Jincheng', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6394, 'Linfen', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6395, 'Taiyuan', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6396, 'Xinzhi', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6397, 'Yangquan', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6398, 'Yuanping', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6399, 'Yuci', 750, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6400, 'Anju', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6401, 'Baoning', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6402, 'Chengdu', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6403, 'Dawan', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6404, 'Daxian', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6405, 'Deyang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6406, 'Dujiangyan City', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6407, 'Guangkou', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6408, 'Guangyuan', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6409, 'Guihu', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6410, 'Heyang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6411, 'Huayang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6412, 'Jiancheng', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6413, 'Jiangyou', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6414, 'Jijiang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6415, 'Leshan', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6416, 'Linqiong', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6417, 'Luzhou', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6418, 'Mianyang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6419, 'Nanchong', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6420, 'Nanlong', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6421, 'Neijiang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6422, 'Panzhihua', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6423, 'Shifang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6424, 'Suining', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6425, 'Taihe', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6426, 'Tianpeng', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6427, 'Xichang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6428, 'Xunchang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6429, 'Yaan', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6430, 'Yibin', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6431, 'Yongchang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6432, 'Zhonglong', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6433, 'Zigong', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6434, 'Ziyang', 751, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6435, 'Beichen', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6436, 'Gangdong', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6437, 'Hangu', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6438, 'Jinghai', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6439, 'Nankai', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6440, 'Tanggu', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6441, 'Tianjin', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6442, 'Xianshuigu', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6443, 'Yangcun', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6444, 'Yangliuqing', 752, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6445, 'Guiqing', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6446, 'Jiulong', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6447, 'Quanwan', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6448, 'Saigong', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6449, 'Shatin', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6450, 'Taipo', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6451, 'Tuanmun', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6452, 'Xianggang', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6453, 'Yuanlong', 753, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, 1), -(6454, 'Aksu', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6455, 'Baijiantan', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6456, 'Changji', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6457, 'Hami', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6458, 'Hetian', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6459, 'Karamay', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6460, 'Kashi', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6461, 'Korla', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6462, 'Kuche', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6463, 'Kuytun', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6464, 'Shache', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6465, 'Shihezi', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6466, 'Shuimogou', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6467, 'Toutunhe', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6468, 'Urumqi', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6469, 'Yining', 754, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6470, 'Lasa', 755, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6471, 'Dali', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6472, 'Gejiu', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6473, 'Heilin', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6474, 'Jinma', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6475, 'Kaihua', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6476, 'Kunming', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6477, 'Lianran', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6478, 'Longquan', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6479, 'Lucheng', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6480, 'Mabai', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6481, 'Majie', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6482, 'Miyang', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6483, 'Qujing', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6484, 'Simao', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6485, 'Wufeng', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6486, 'Yunjinghong', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6487, 'Yuxi Municipal', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6488, 'Zhaotong', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6489, 'Zhenhai', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6490, 'Zhongshu', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6491, 'Zhuocheng', 756, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6492, 'Aojiang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6493, 'Choucheng', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6494, 'Cixi', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6495, 'Daqiao', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6496, 'Deqing', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6497, 'Dinghai', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6498, 'Dongyang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6499, 'Fuyang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6500, 'Haining', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6501, 'Haiyan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6502, 'Hangzhou', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6503, 'Huangyan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6504, 'Hushan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6505, 'Huzhou', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6506, 'Jiaojiang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6507, 'Jiaxing', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6508, 'Jinhua', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6509, 'Jinxiang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6510, 'Kunyang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6511, 'Linan City', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6512, 'Linhai', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6513, 'Linping', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6514, 'Lishui', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6515, 'Liushi', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6516, 'Ningbo', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6517, 'Pinghu', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6518, 'Quzhou', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6519, 'Ruian', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6520, 'Shangyu', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6521, 'Shaoxing', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6522, 'Shenjiamen', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6523, 'Taizhou City', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6524, 'Tonglu', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6525, 'Wenling', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6526, 'Wenzhou', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6527, 'Wuning', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6528, 'Wuyi', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6529, 'Xianju', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6530, 'Xiaoshan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6531, 'Xiashi', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6532, 'Xushan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6533, 'Yiwu', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6534, 'Yongkang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6535, 'Yueqing', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6536, 'Yuhuan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6537, 'Yuyao', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6538, 'Zhejiang', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6539, 'Zhuji', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6540, 'fenghua', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6541, 'jiashan', 757, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6542, 'Leticia', 511, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6543, 'Puerto Narino', 511, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6544, 'Abejorral', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6545, 'Abriaqui', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6546, 'Alejandria', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6547, 'Amaga', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6548, 'Amalfi', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6549, 'Andes', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6550, 'Angelopolis', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6551, 'Angostura', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6552, 'Antioquia', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6553, 'Anza', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6554, 'Apartado', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6555, 'Arboletes', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6556, 'Argelia', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6557, 'Armenia', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6558, 'Barbosa', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6559, 'Bello', 760, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, 1), -(6560, 'Belmira', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6561, 'Betania', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6562, 'Betulia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6563, 'Bolivar', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6564, 'Briceno', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6565, 'Buritica', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6566, 'Caceres', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6567, 'Caicedo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6568, 'Caldas', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6569, 'Campamento', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6570, 'Canasgordas', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6571, 'Caracoli', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6572, 'Caramanta', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6573, 'Carepa', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6574, 'Carmen de Viboral', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6575, 'Caucasia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6576, 'Chigorodo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6577, 'Cisneros', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6578, 'Cocorna', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6579, 'Concepcion', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6580, 'Concordia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6581, 'Copacabana', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6582, 'Dabeiba', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6583, 'Don Matias', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6584, 'Ebejico', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6585, 'El Bagre', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6586, 'Entrerrios', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6587, 'Envigado', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6588, 'Fredonia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6589, 'Frontino', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6590, 'Giraldo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6591, 'Girardota', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6592, 'Gomez Plata', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6593, 'Granada', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6594, 'Guarne', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6595, 'Guatape', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6596, 'Heliconia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6597, 'Hispania', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6598, 'Itagui', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6599, 'Ituango', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6600, 'Jardin', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6601, 'Jerico', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6602, 'La Ceja', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6603, 'La Estrella', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6604, 'La Pintada', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6605, 'La Union', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6606, 'Liborina', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6607, 'Maceo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6608, 'Marinilla', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6609, 'Medellin', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6610, 'Montebello', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6611, 'Murindo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6612, 'Mutata', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6613, 'Narino', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6614, 'Nechi', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6615, 'Necocli', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6616, 'Olaya', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6617, 'Penol', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6618, 'Peque', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6619, 'Pueblorrico', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6620, 'Puerto Berrio', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6621, 'Puerto Nare', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6622, 'Puerto Triunfo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6623, 'Remedios', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6624, 'Rionegro', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6625, 'Sabanalarga', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6626, 'Sabaneta', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6627, 'Salgar', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6628, 'San Andres', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6629, 'San Carlos', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6630, 'San Jeronimo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6631, 'San Jose de la Montana', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6632, 'San Juan de Uraba', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6633, 'San Luis', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6634, 'San Pedro de Uraba', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6635, 'San Roque', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6636, 'San Vicente', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6637, 'Santa Rosa de Osos', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6638, 'Santuario', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6639, 'Segovia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6640, 'Sonson', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6641, 'Sopetran', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6642, 'Tamesis', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6643, 'Taraza', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6644, 'Tarso', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6645, 'Titiribi', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6646, 'Turbo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6647, 'Uramita', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6648, 'Urrao', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6649, 'Valdivia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6650, 'Vegachi', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6651, 'Venecia', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6652, 'Vigia del Fuerte', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6653, 'Yali', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6654, 'Yarumal', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6655, 'Yolombo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6656, 'Yondo', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6657, 'Zaragoza', 760, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6658, 'Arauca', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6659, 'Arauquita', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6660, 'Cravo Norte', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6661, 'Fortul', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6662, 'Puerto Rondon', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6663, 'Saravena', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6664, 'Tame', 761, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6665, 'Baranoa', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6666, 'Barranquilla', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6667, 'Campo de la Cruz', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6668, 'Candelaria', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6669, 'Galapa', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6670, 'Juan de Acosta', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6671, 'Luruaco', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6672, 'Malambo', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6673, 'Manati', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6674, 'Palmar de Varela', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6675, 'Piojo', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6676, 'Polo Nuevo', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6677, 'Ponedera', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6678, 'Puerto Colombia', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6679, 'Repelon', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6680, 'Sabanagrande', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6681, 'Santa Lucia', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6682, 'Santo Tomas', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6683, 'Soledad', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6684, 'Suan', 762, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, 1), -(6685, 'Tubara', 762, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6686, 'Usiacuri', 762, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6687, 'Bogota', 763, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6688, 'Achi', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6689, 'Altos del Rosario', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6690, 'Arenal', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6691, 'Arjona', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6692, 'Arroyohondo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6693, 'Barranco de Loba', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6694, 'Calamar', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6695, 'Cantagallo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6696, 'Cicuco', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6697, 'Clemencia', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6698, 'El Carmen de Bolivar', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6699, 'El Guamo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6700, 'El Penon', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6701, 'Hatillo de Loba', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6702, 'Magangue', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6703, 'Mahates', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6704, 'Margarita', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6705, 'Maria la Baja', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6706, 'Mompos', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6707, 'Montecristo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6708, 'Morales', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6709, 'Pinillos', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6710, 'Regidor', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6711, 'Rio Viejo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6712, 'San Cristobal', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6713, 'San Estanislao', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6714, 'San Fernando', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6715, 'San Jacinto', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6716, 'San Jacinto del Cauca', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6717, 'San Juan Nepomuceno', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6718, 'San Martin de Loba', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6719, 'San Pablo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6720, 'Santa Catalina', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6721, 'Santa Rosa del Sur', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6722, 'Simiti', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6723, 'Soplaviento', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6724, 'Talaigua Nuevo', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6725, 'Tiquisio', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6726, 'Turbaco', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6727, 'Turbana', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6728, 'Villanueva', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6729, 'Zambrano', 764, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6730, 'Almeida', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6731, 'Aquitania', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6732, 'Arcabuco', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6733, 'Belen', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6734, 'Berbeo', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6735, 'Beteitiva', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6736, 'Boavita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6737, 'Boyaca', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6738, 'Buenavista', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6739, 'Busbanza', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6740, 'Campohermoso', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6741, 'Cerinza', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6742, 'Chinavita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6743, 'Chiquinquira', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6744, 'Chiquiza', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6745, 'Chiscas', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6746, 'Chita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6747, 'Chitaraque', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6748, 'Chivata', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6749, 'Chivor', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6750, 'Cienega', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6751, 'Combita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6752, 'Coper', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6753, 'Corrales', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6754, 'Covarachia', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6755, 'Cubara', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6756, 'Cucaita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6757, 'Cuitiva', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6758, 'Duitama', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6759, 'El Cocuy', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6760, 'El Espino', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6761, 'Firavitoba', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6762, 'Gachantiva', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6763, 'Gameza', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6764, 'Garagoa', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6765, 'Guacamayas', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6766, 'Guateque', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6767, 'Guayata', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6768, 'Guican', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6769, 'Iza', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6770, 'Jenesano', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6771, 'La Capilla', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6772, 'La Uvita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6773, 'La Victoria', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6774, 'Labranzagrande', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6775, 'Leiva', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6776, 'Macanal', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6777, 'Maripi', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6778, 'Miraflores', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6779, 'Mongua', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6780, 'Mongui', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6781, 'Moniquira', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6782, 'Motavita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6783, 'Muzo', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6784, 'Nobsa', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6785, 'Nuevo Colon', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6786, 'Oicata', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6787, 'Otanche', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6788, 'Pachavita', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6789, 'Paez', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6790, 'Paipa', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6791, 'Pajarito', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6792, 'Panqueba', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6793, 'Pauna', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6794, 'Paya', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6795, 'Paz del Rio', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6796, 'Pesca', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6797, 'Pisba', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6798, 'Puerto Boyaca', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6799, 'Quipama', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6800, 'Ramiriqui', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6801, 'Raquira', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6802, 'Rondon', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6803, 'Saboya', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6804, 'Sachica', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6805, 'Samaca', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6806, 'San Eduardo', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6807, 'San Jose de Pare', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6808, 'San Luis de Gaceno', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6809, 'San Mateo', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6810, 'San Miguel de Sema', 765, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, 1), -(6811, 'San Pablo de Borbur', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6812, 'Santa Rosa de Viterbo', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6813, 'Santa Sofia', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6814, 'Sativanorte', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6815, 'Sativasur', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6816, 'Siachoque', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6817, 'Soata', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6818, 'Socha', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6819, 'Socota', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6820, 'Sogamoso', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6821, 'Somondoco', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6822, 'Sora', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6823, 'Soraca', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6824, 'Sotaquira', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6825, 'Susacon', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6826, 'Sutamarchan', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6827, 'Sutatenza', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6828, 'Tasco', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6829, 'Tenza', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6830, 'Tibana', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6831, 'Tibasosa', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6832, 'Tinjaca', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6833, 'Tipacoque', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6834, 'Toca', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6835, 'Togui', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6836, 'Topaga', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6837, 'Tota', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6838, 'Tunja', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6839, 'Tunungua', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6840, 'Turmeque', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6841, 'Tuta', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6842, 'Tutasa', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6843, 'Umbita', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6844, 'Ventaquemada', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6845, 'Viracacha', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6846, 'Zetaquira', 765, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6847, 'Aguadas', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6848, 'Anserma', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6849, 'Aranzazu', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6850, 'Belalcazar', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6851, 'Chinchina', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6852, 'La Dorada', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6853, 'La Merced', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6854, 'Manizales', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6855, 'Manzanares', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6856, 'Marmato', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6857, 'Marquetalia', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6858, 'Marulanda', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6859, 'Neira', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6860, 'Norcasia', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6861, 'Pacora', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6862, 'Palestina', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6863, 'Pensilvania', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6864, 'Riosucio', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6865, 'Risaralda', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6866, 'Salamina', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6867, 'Samana', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6868, 'San Jose', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6869, 'Supia', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6870, 'Villamaria', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6871, 'Viterbo', 766, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6872, 'Albania', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6873, 'Belen Andaquies', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6874, 'Cartagena del Chaira', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6875, 'Curillo', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6876, 'El Doncello', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6877, 'El Paujil', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6878, 'Florencia', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6879, 'La Montanita', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6880, 'Milan', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6881, 'Morelia', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6882, 'Puerto Rico', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6883, 'San Jose de Fragua', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6884, 'San Vicente del Caguan', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6885, 'Solano', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6886, 'Solita', 767, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6887, 'Aguazul', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6888, 'Chameza', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6889, 'Hato Corozal', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6890, 'La Salina', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6891, 'Mani', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6892, 'Monterrey', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6893, 'Nunchia', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6894, 'Orocue', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6895, 'Paz de Ariporo', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6896, 'Pore', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6897, 'Recetor', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6898, 'Sacama', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6899, 'San Luis de Palenque', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6900, 'Tamara', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6901, 'Tauramena', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6902, 'Yopal', 768, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6903, 'Almaguer', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6904, 'Balboa', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6905, 'Buenos Aires', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6906, 'Cajibio', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6907, 'Caldono', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6908, 'Caloto', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6909, 'Corinto', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6910, 'El Bordo', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6911, 'El Tambo', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6912, 'Guapi', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6913, 'Inza', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6914, 'Jambalo', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6915, 'La Sierra', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6916, 'La Vega', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6917, 'Lopez', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6918, 'Mercaderes', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6919, 'Miranda', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6920, 'Piamonte', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6921, 'Piendamo', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6922, 'Popayan', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6923, 'Puerto Tejada', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6924, 'Purace', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6925, 'Rosas', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6926, 'San Sebastian', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6927, 'Santander de Quilichao', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6928, 'Silvia', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6929, 'Sotara', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6930, 'Suarez', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6931, 'Timbio', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6932, 'Timbiqui', 769, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, 1), -(6933, 'Toribio', 769, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6934, 'Totoro', 769, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6935, 'Villa Rica', 769, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6936, 'Aguachica', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6937, 'Agustin Codazzi', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6938, 'Astrea', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6939, 'Becerril', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6940, 'Bosconia', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6941, 'Chimichagua', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6942, 'Chiriguana', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6943, 'Curumani', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6944, 'El Copey', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6945, 'El Paso', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6946, 'Gamarra', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6947, 'Gonzalez', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6948, 'La Gloria', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6949, 'La Jagua Ibirico', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6950, 'Manaure', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6951, 'Pailitas', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6952, 'Pelaya', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6953, 'Pueblo Bello', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6954, 'Rio de Oro', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6955, 'Robles la Paz', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6956, 'San Alberto', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6957, 'San Diego', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6958, 'Tamalameque', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6959, 'Valledupar', 770, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6960, 'Acandi', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6961, 'Alto Baudo', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6962, 'Atrato', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6963, 'Bagado', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6964, 'Bahia Solano', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6965, 'Bajo Baudo', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6966, 'Bojaya', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6967, 'Canton de San Pablo', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6968, 'Carmen del Darien', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6969, 'Certegui', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6970, 'Condoto', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6971, 'El Carmen', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6972, 'Istmina', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6973, 'Jurado', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6974, 'Litoral del San Juan', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6975, 'Lloro', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6976, 'Medio Atrato', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6977, 'Medio Baudo', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6978, 'Medio San Juan', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6979, 'Novita', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6980, 'Nuqui', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6981, 'Quibdo', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6982, 'Rio Iro', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6983, 'Rio Quito', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6984, 'San Jose del Palmar', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6985, 'Sipi', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6986, 'Tado', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6987, 'Unguia', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6988, 'Union Panamericana', 771, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6989, 'Ayapel', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6990, 'Canalete', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6991, 'Cerete', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6992, 'Chima', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6993, 'Chinu', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6994, 'Cienaga de Oro', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6995, 'Cotorra', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6996, 'La Apartada', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(6997, 'Lorica', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6998, 'Los Cordobas', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(6999, 'Momil', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7000, 'Monitos', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7001, 'Montelibano', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7002, 'Monteria', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7003, 'Planeta Rica', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7004, 'Pueblo Nuevo', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7005, 'Puerto Escondido', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7006, 'Puerto Libertador', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7007, 'Purisima', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7008, 'Sahagun', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7009, 'San Andres Sotavento', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7010, 'San Antero', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7011, 'San Bernardo Viento', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7012, 'San Pelayo', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7013, 'Tierralta', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7014, 'Valencia', 188, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7015, 'Agua de Dios', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7016, 'Alban', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7017, 'Anapoima', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7018, 'Anolaima', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7019, 'Arbelaez', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7020, 'Beltran', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7021, 'Bituima', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7022, 'Bojaca', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7023, 'Cabrera', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7024, 'Cachipay', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7025, 'Cajica', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7026, 'Caparrapi', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7027, 'Caqueza', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7028, 'Carmen de Carupa', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7029, 'Chaguani', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7030, 'Chia', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7031, 'Chipaque', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7032, 'Choachi', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7033, 'Choconta', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7034, 'Cogua', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7035, 'Cota', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7036, 'Cucunuba', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7037, 'El Colegio', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7038, 'El Rosal', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7039, 'Facatativa', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7040, 'Fomeque', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7041, 'Fosca', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7042, 'Funza', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7043, 'Fuquene', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7044, 'Fusagasuga', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7045, 'Gachala', 772, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, 1), -(7046, 'Gachancipa', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7047, 'Gacheta', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7048, 'Gama', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7049, 'Girardot', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7050, 'Guacheta', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7051, 'Guaduas', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7052, 'Guasca', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7053, 'Guataqui', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7054, 'Guatavita', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7055, 'Guayabal de Siquima', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7056, 'Guayabetal', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7057, 'Gutierrez', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7058, 'Jerusalen', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7059, 'Junin', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7060, 'La Calera', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7061, 'La Mesa', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7062, 'La Palma', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7063, 'La Pena', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7064, 'Lenguazaque', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7065, 'Macheta', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7066, 'Madrid', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7067, 'Manta', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7068, 'Medina', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7069, 'Mosquera', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7070, 'Nemocon', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7071, 'Nilo', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7072, 'Nimaima', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7073, 'Nocaima', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7074, 'Ospina Perez', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7075, 'Pacho', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7076, 'Paime', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7077, 'Pandi', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7078, 'Paratebueno', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7079, 'Pasca', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7080, 'Puerto Salgar', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7081, 'Puli', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7082, 'Quebradanegra', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7083, 'Quetame', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7084, 'Quipile', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7085, 'Rafael Reyes', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7086, 'Ricaurte', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7087, 'San Antonio del Tequendama', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7088, 'San Cayetano', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7089, 'San Juan de Rioseco', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7090, 'Sasaima', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7091, 'Sesquile', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7092, 'Sibate', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7093, 'Simijaca', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7094, 'Soacha', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7095, 'Sopo', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7096, 'Subachoque', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7097, 'Suesca', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7098, 'Supata', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7099, 'Sutatausa', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7100, 'Tabio', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7101, 'Tausa', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7102, 'Tena', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7103, 'Tenjo', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7104, 'Tibacuy', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7105, 'Tibirita', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7106, 'Tocaima', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7107, 'Tocancipa', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7108, 'Topaipi', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7109, 'Ubala', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7110, 'Ubaque', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7111, 'Ubate', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7112, 'Une', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7113, 'Utica', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7114, 'Vergara', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7115, 'Viani', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7116, 'Villagomez', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7117, 'Villapinzon', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7118, 'Villeta', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7119, 'Viota', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7120, 'Yacopi', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7121, 'Zipacon', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7122, 'Zipaquira', 772, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7123, 'Inirida', 773, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7124, 'El Retorno', 774, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7125, 'San Jose del Guaviare', 774, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7126, 'Acevedo', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7127, 'Agrado', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7128, 'Aipe', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7129, 'Algeciras', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7130, 'Baraya', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7131, 'Campoalegre', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7132, 'Colombia', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7133, 'Elias', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7134, 'Garzon', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7135, 'Gigante', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7136, 'Hobo', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7137, 'Iquira', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7138, 'Isnos', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7139, 'La Argentina', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7140, 'La Plata', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7141, 'Nataga', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7142, 'Neiva', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7143, 'Oporapa', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7144, 'Paicol', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7145, 'Palermo', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7146, 'Pital', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7147, 'Pitalito', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7148, 'Rivera', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7149, 'Saladoblanco', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7150, 'San Agustin', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7151, 'Suaza', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7152, 'Tarqui', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7153, 'Tello', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7154, 'Teruel', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7155, 'Tesalia', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7156, 'Timana', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7157, 'Villavieja', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7158, 'Yaguara', 157, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7159, 'Aracataca', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7160, 'Ariguani', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7161, 'Cerro San Antonio', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7162, 'Chivolo', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7163, 'Cienaga', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7164, 'El Banco', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7165, 'El Pinon', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7166, 'El Reten', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7167, 'Fundacion', 776, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, 1), -(7168, 'Guamal', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7169, 'Nueva Granada', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7170, 'Pedraza', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7171, 'Pijino del Carmen', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7172, 'Pivijay', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7173, 'Plato', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7174, 'Puebloviejo', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7175, 'Remolino', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7176, 'Sabanas de San Angel', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7177, 'San Zenon', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7178, 'Santa Barbara de Pinto', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7179, 'Santa Marta', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7180, 'Sitionuevo', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7181, 'Tenerife', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7182, 'Zapayan', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7183, 'Zona Bananera', 776, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7184, 'Acacias', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7185, 'Barranca de Upia', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7186, 'Cabuyaro', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7187, 'Castilla la Nueva', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7188, 'Cubarral', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7189, 'Cumaral', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7190, 'El Calvario', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7191, 'El Castillo', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7192, 'El Dorado', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7193, 'Fuente de Oro', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7194, 'La Macarena', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7195, 'La Uribe', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7196, 'Lejanias', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7197, 'Mapiripan', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7198, 'Mesetas', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7199, 'Puerto Concordia', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7200, 'Puerto Gaitan', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7201, 'Puerto Lleras', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7202, 'Puerto Lopez', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7203, 'Restrepo', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7204, 'San Carlos Guaroa', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7205, 'San Juan de Arama', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7206, 'San Juanito', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7207, 'Villavicencio', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7208, 'Vista Hermosa', 777, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7209, 'Aldana', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7210, 'Ancuya', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7211, 'Arboleda', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7212, 'Barbacoas', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7213, 'Buesaco', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7214, 'Chachagui', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7215, 'Colon', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7216, 'Consaca', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7217, 'Contadero', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7218, 'Cuaspud', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7219, 'Cumbal', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7220, 'Cumbitara', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7221, 'El Charco', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7222, 'El Penol', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7223, 'El Rosario', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7224, 'El Tablon', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7225, 'Funes', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7226, 'Guachucal', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7227, 'Guaitarilla', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7228, 'Gualmatan', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7229, 'Iles', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7230, 'Imues', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7231, 'Ipiales', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7232, 'La Florida', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7233, 'La Llanada', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7234, 'La Tola', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7235, 'Magui', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7236, 'Mallama', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7237, 'Olaya Herrera', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7238, 'Ospina', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7239, 'Pasto', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7240, 'Pizarro', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7241, 'Policarpa', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7242, 'Providencia', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7243, 'Puerres', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7244, 'Pupiales', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7245, 'Roberto Payan', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7246, 'Samaniego', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7247, 'San Pedro de Cartago', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7248, 'Sandona', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7249, 'Santacruz', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7250, 'Sapuyes', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7251, 'Taminango', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7252, 'Tangua', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7253, 'Tumaco', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7254, 'Tuquerres', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7255, 'Yacuanquer', 778, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7256, 'Mocoa', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7257, 'Orito', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7258, 'Puerto Asis', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7259, 'Puerto Caycedo', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7260, 'Puerto Guzman', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7261, 'Puerto Leguizamo', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7262, 'San Miguel', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7263, 'Sibundoy', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7264, 'Valle del Guamuez', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7265, 'Villagarzon', 780, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7266, 'Calarca', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7267, 'Circasia', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7268, 'Filandia', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7269, 'Genova', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7270, 'La Tebaida', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7271, 'Montenegro', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7272, 'Pijao', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7273, 'Quimbaya', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7274, 'Salento', 781, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7275, 'Apia', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7276, 'Belen de Umbria', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7277, 'Dos Quebradas', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7278, 'Guatica', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7279, 'La Celia', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7280, 'La Virginia', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7281, 'Marsella', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7282, 'Mistrato', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7283, 'Pereira', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7284, 'Pueblo Rico', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7285, 'Quinchia', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7286, 'Santa Rosa de Cabal', 782, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, 1), -(7287, 'Aguada', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7288, 'Aratoca', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7289, 'Barichara', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7290, 'Barrancabermeja', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7291, 'Bucaramanga', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7292, 'California', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7293, 'Capitanejo', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7294, 'Carcasi', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7295, 'Cepita', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7296, 'Cerrito', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7297, 'Charala', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7298, 'Charta', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7299, 'Chipata', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7300, 'Cimitarra', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7301, 'Confines', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7302, 'Contratacion', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7303, 'Coromoro', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7304, 'Curiti', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7305, 'El Guacamayo', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7306, 'El Playon', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7307, 'Encino', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7308, 'Enciso', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7309, 'Florian', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7310, 'Floridablanca', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7311, 'Galan', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7312, 'Gambita', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7313, 'Giron', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7314, 'Guaca', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7315, 'Guapota', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7316, 'Guavata', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7317, 'Guepsa', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7318, 'Hato', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7319, 'Jesus Maria', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7320, 'Jordan', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7321, 'La Belleza', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7322, 'La Paz', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7323, 'Landazuri', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7324, 'Lebrija', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7325, 'Los Santos', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7326, 'Macaravita', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7327, 'Malaga', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7328, 'Matanza', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7329, 'Mogotes', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7330, 'Molagavita', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7331, 'Ocamonte', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7332, 'Oiba', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7333, 'Onzaga', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7334, 'Palmar', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7335, 'Palmas del Socorro', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7336, 'Paramo', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7337, 'Piedecuesta', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7338, 'Pinchote', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7339, 'Puente Nacional', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7340, 'Puerto Parra', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7341, 'Puerto Wilches', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7342, 'Sabana de Torres', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7343, 'San Benito', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7344, 'San Gil', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7345, 'San Joaquin', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7346, 'San Jose de Miranda', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7347, 'San Vicente de Chucuri', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7348, 'Simacota', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7349, 'Socorro', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7350, 'Suaita', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7351, 'Surata', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7352, 'Tona', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7353, 'Valle San Jose', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7354, 'Velez', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7355, 'Vetas', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7356, 'Zapatoca', 784, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7357, 'Caimito', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7358, 'Chalan', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7359, 'Coloso', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7360, 'El Roble', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7361, 'Galeras', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7362, 'Guaranda', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7363, 'Los Palmitos', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7364, 'Majagual', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7365, 'Morroa', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7366, 'Ovejas', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7367, 'Palmito', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7368, 'Sampues', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7369, 'San Benito Abad', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7370, 'San Juan de Betulia', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7371, 'San Marcos', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7372, 'San Onofre', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7373, 'Since', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7374, 'Sincelejo', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7375, 'Tolu', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7376, 'Toluviejo', 785, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7377, 'Alpujarra', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7378, 'Alvarado', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7379, 'Ambalema', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7380, 'Anzoategui', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7381, 'Ataco', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7382, 'Cajamarca', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7383, 'Carmen de Apicala', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7384, 'Casabianca', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7385, 'Chaparral', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7386, 'Coello', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7387, 'Coyaima', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7388, 'Cunday', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7389, 'Dolores', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7390, 'Espinal', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7391, 'Falan', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7392, 'Flandes', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7393, 'Fresno', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7394, 'Guamo', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7395, 'Guayabal', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7396, 'Herveo', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7397, 'Honda', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7398, 'Ibague', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7399, 'Icononzo', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7400, 'Lerida', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7401, 'Libano', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7402, 'Mariquita', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7403, 'Melgar', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7404, 'Murillo', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7405, 'Natagaima', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7406, 'Ortega', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7407, 'Palocabildo', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7408, 'Piedras', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7409, 'Planadas', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7410, 'Purificacion', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7411, 'Rioblanco', 786, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, 1), -(7412, 'Roncesvalles', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7413, 'Rovira', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7414, 'Saldana', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7415, 'Santa Isabel', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7416, 'Valle de San Juan', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7417, 'Venadillo', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7418, 'Villahermosa', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7419, 'Villarrica', 786, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7420, 'Alcala', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7421, 'Andalucia', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7422, 'Ansermanuevo', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7423, 'Buenaventura', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7424, 'Buga', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7425, 'Bugalagrande', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7426, 'Caicedonia', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7427, 'Cali', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7428, 'Calima - El Darien', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7429, 'Cartago', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7430, 'Dagua', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7431, 'El Aguila', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7432, 'El Cairo', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7433, 'El Cerrito', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7434, 'El Dovio', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7435, 'Florida', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7436, 'Ginebra', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7437, 'Guacari', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7438, 'Jamundi', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7439, 'La Cumbre', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7440, 'Obando', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7441, 'Palmira', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7442, 'Pradera', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7443, 'Riofrio', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7444, 'Roldanillo', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7445, 'Sevilla', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7446, 'Toro', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7447, 'Trujillo', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7448, 'Tulua', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7449, 'Ulloa', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7450, 'Versalles', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7451, 'Vijes', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7452, 'Yotoco', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7453, 'Yumbo', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7454, 'Zarzal', 787, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7455, 'Acaricuara', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7456, 'Mitu', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7457, 'Papunaua', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7458, 'Taraira', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7459, 'Villa Fatima', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7460, 'Yavarate', 788, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7461, 'Cumaribo', 789, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7462, 'La Primavera', 789, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7463, 'Puerto Carreno', 789, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7464, 'Santa Rosalia', 789, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7465, 'Fomboni', 790, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7466, 'Mitsamiouli', 791, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7467, 'Moroni', 791, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7468, 'Domoni', 792, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7469, 'Mutsamudu', 792, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7470, 'Loudima', 793, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7471, 'Madingou', 793, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7472, 'Nkayi', 793, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7473, 'Brazzaville', 794, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7474, 'Ewo', 795, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7475, 'Kelle', 795, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7476, 'Makoua', 795, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7477, 'Mossaka', 795, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7478, 'Owando', 795, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7479, 'Loandjili', 796, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7480, 'Ngamaba-Mfilou', 796, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7481, 'Pointe Noire', 796, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7482, 'Sibiti', 797, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7483, 'Zanaga', 797, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7484, 'Dongou', 798, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7485, 'Epena', 798, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7486, 'Impfondo', 798, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7487, 'Kibangou', 799, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7488, 'Loubomo', 799, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7489, 'Matsanga', 799, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7490, 'Mossendjo', 799, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7491, 'Djambala', 800, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7492, 'Gamboma', 800, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, 1), -(7493, 'Boko', 801, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7494, 'Kinkala', 801, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7495, 'Mindouli', 801, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7496, 'Ikelemba', 802, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7497, 'Ouesso', 802, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7498, 'Sembe', 802, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7499, 'Souanke', 802, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7500, 'Bandundu', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7501, 'Bolobo', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7502, 'Bulungu', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7503, 'Gungu', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7504, 'Idiofa', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7505, 'Inongo', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7506, 'Kahemba', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7507, 'Kasongo-Lunda', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7508, 'Kenge', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7509, 'Kikwit', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7510, 'Kiri', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7511, 'Kutu', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7512, 'Lusanga', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7513, 'Mangai', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7514, 'Mushie', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7515, 'Nioki', 803, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7516, 'Boma', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7517, 'Kasangulu', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7518, 'Kimpese', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7519, 'Madimba', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7520, 'Matadi', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7521, 'Mbanza-Ngungu', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7522, 'Muanda', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7523, 'Tshela', 804, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7524, 'Basankusu', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7525, 'Binga', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7526, 'Bodalangi', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7527, 'Boende', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7528, 'Bongandanga', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7529, 'Bosobolo', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7530, 'Bumba', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7531, 'Businga', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7532, 'Gbadolite', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7533, 'Gemena', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7534, 'Ikela', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7535, 'Libenge', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7536, 'Lisala', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7537, 'Makanza', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7538, 'Mbandaka', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7539, 'Mobayi-Mbongo', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7540, 'Yakoma', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7541, 'Yandongi', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7542, 'Yumbi', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7543, 'Zongo', 805, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7544, 'Aba', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7545, 'Aketi', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7546, 'Bafwasende', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7547, 'Banalia', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7548, 'Basoko', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7549, 'Bondo', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7550, 'Bunia', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7551, 'Buta', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7552, 'Djugu', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7553, 'Faradje', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7554, 'Gwane', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7555, 'Isiro', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7556, 'Itoko', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7557, 'Kisangani', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7558, 'Mambasa', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7559, 'Mongbwalu', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7560, 'Niangara', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7561, 'Poko', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7562, 'Simba', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7563, 'Titule', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7564, 'Ubundu', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7565, 'Wamba', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7566, 'Watsa', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7567, 'Yangambi', 806, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7568, 'Demba', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7569, 'Dibaya', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7570, 'Ilebo', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7571, 'Kananga', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7572, 'Kazumba', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7573, 'Luebo', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7574, 'Mweka', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7575, 'Tshikapa', 807, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7576, 'Gandajika', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7577, 'Kabinda', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7578, 'Katako-Kombe', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7579, 'Kole', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7580, 'Lodja', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7581, 'Lubao', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7582, 'Lubefu', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7583, 'Lusambo', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7584, 'Mbuji-Mayi', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7585, 'Mwene-Ditu', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7586, 'Tshilenge', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7587, 'Tshofa', 808, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7588, 'Bukama', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7589, 'Dilolo', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7590, 'Kabalo', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7591, 'Kalemie', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7592, 'Kambove', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7593, 'Kamina', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7594, 'Kaniama', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7595, 'Kikondjo', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7596, 'Kipushi', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7597, 'Kolwezi', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7598, 'Kongolo', 809, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, 1), -(7599, 'Le Marinel', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7600, 'Likasi', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7601, 'Lubudi', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7602, 'Lubumbashi', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7603, 'Malemba-Nkulu', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7604, 'Manono', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7605, 'Moba', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7606, 'Mulongo', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7607, 'Mwanza', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7608, 'Nyunzu', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7609, 'Sakania', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7610, 'Shinkolobwe', 809, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7611, 'Kinshasa', 810, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7612, 'Kalima', 811, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7613, 'Kasongo', 811, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7614, 'Kindu', 811, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7615, 'Beni', 812, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7616, 'Butembo', 812, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7617, 'Goma', 812, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7618, 'Bukavu', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7619, 'Kabare', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7620, 'Kama', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7621, 'Kampene', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7622, 'Kibombo', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7623, 'Uvira', 813, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7624, 'Amuri', 814, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7625, 'Atiu', 815, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7626, 'Mangaia', 816, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7627, 'Tauhunu', 817, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7628, 'Mauke', 818, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7629, 'Mitiaro', 819, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7630, 'Nassau', 820, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7631, 'Roto', 821, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7632, 'Rakahanga', 822, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7633, 'Avarua', 823, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7634, 'Omoka', 824, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(7635, 'Alajuela', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7636, 'Atenas', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7637, 'Bijagua', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7638, 'Carrillos', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7639, 'Desemparados', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7640, 'Dos Rios', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7641, 'Esquipulas', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7642, 'Grecia', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7643, 'Guacimo', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7644, 'Laguna', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7645, 'Los Chiles', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7646, 'Mastate', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7647, 'Naranjo', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7648, 'Orotina', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7649, 'Piedades Norte', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7650, 'Pocosol', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7651, 'Quesada', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7652, 'Rio Segundo', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7653, 'Sabanilla', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7654, 'San Juan', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7655, 'Sarchi Norte', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7656, 'Sarchi Sur', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7657, 'Tigra', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7658, 'Turricares', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7659, 'Upala', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7660, 'Venado', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7661, 'Zarcero', 825, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7662, 'Aguacaliente', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7663, 'Capellades', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7664, 'Carmen', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7665, 'Cot', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7666, 'Dulce Nombre', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7667, 'El Tejar', 826, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, 1), -(7668, 'Juan Vinas', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7669, 'La Suiza', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7670, 'Orosi', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7671, 'Pacayas', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7672, 'Pejibaye', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7673, 'San Isidro', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7674, 'San Nicolas', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7675, 'Tierra Blanca', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7676, 'Tobosi', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7677, 'Tres Rios', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7678, 'Tucurrique', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7679, 'Turrialba', 826, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7680, 'Bagaces', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7681, 'Canas', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7682, 'Filadeldia', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7683, 'Hojancha', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7684, 'Juntas', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7685, 'Liberia', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7686, 'Mogote', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7687, 'Nandayure', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7688, 'Nicoya', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7689, 'Samara', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7690, 'Santa Cruz', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7691, 'Sardinal', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7692, 'Tilaran', 827, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7693, 'Angeles', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7694, 'Asuncion', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7695, 'Barrantes', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7696, 'Barva', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7697, 'Heredia', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7698, 'Horquetas', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7699, 'Llorente', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7700, 'Puerto Viejo', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7701, 'San Josecito', 828, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7702, 'Batan', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7703, 'Cahuita', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7704, 'Cariari', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7705, 'Guapiles', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7706, 'Jimenez', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7707, 'Limon', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7708, 'Matina', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7709, 'Pocora', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7710, 'Rita', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7711, 'Roxana', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7712, 'Siquirres', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7713, 'Sixaola', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7714, 'Valle la Estrella', 829, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7715, 'Canoas', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7716, 'Chacarita', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7717, 'Corredor', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7718, 'Esparta', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7719, 'Espiritu Santo', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7720, 'Golfito', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7721, 'Guaycara', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7722, 'Jaco', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7723, 'La Cuesta', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7724, 'Macacona', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7725, 'Manzanillo', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7726, 'Miramar', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7727, 'Paquera', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7728, 'Parrita', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7729, 'Puerto Cortes', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7730, 'Puerto Jimenez', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7731, 'Puntarenas', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7732, 'Quepos', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7733, 'San Vito', 830, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7734, 'Marcory', 832, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7735, 'Adzope', 833, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7736, 'Affery', 833, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7737, 'Agboville', 833, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7738, 'Akoupe', 833, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7739, 'Rubino', 833, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7740, 'Touba', 834, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7741, 'Bako', 835, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7742, 'Odienne', 835, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7743, 'Gagnoa', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7744, 'Guiberoua', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7745, 'Hire', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7746, 'Ndouci', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7747, 'Oume', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7748, 'Ouragahio', 837, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7749, 'Daloa', 838, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7750, 'Issia', 838, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7751, 'Vavoua', 838, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, 1), -(7752, 'Ndiekro', 839, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7753, 'Tiebissou', 839, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7754, 'Toumodi', 839, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7755, 'Yamoussoukro', 839, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7756, 'Abidjan', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7757, 'Alepe', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7758, 'Anyama', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7759, 'Bingerville', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7760, 'Dabou', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7761, 'Grand-Lahou', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7762, 'Jacqueville', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7763, 'Tiassale', 840, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7764, 'Bouafle', 841, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7765, 'Sinfra', 841, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7766, 'Zuenoula', 841, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7767, 'Duekoue', 842, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7768, 'Guiglo', 842, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7769, 'Toulepleu', 842, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7770, 'Abengourou', 843, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7771, 'Agnibilekrou', 843, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7772, 'Arrah', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7773, 'Bocanda', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7774, 'Bongouanou', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7775, 'Daoukro', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7776, 'Dimbokro', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7777, 'M bahiakro', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7778, 'Mbatto', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7779, 'N zi-Comoe', 844, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7780, 'San-Pedro', 845, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7781, 'Sassandra', 845, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7782, 'Soubre', 845, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7783, 'Tabou', 845, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7784, 'Boundiali', 846, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7785, 'Dikodougou', 846, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7786, 'Ferkessedougou', 846, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7787, 'Korhogo', 846, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7788, 'Tingrela', 846, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7789, 'Divo', 847, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7790, 'Fresco', 847, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7791, 'Lakota', 847, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7792, 'Aboisso', 848, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7793, 'Adiake', 848, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7794, 'Ayame', 848, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7795, 'Bonoua', 848, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7796, 'Grand Bassam', 848, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7797, 'Kani', 850, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7798, 'Mankono', 850, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7799, 'Seguela', 850, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7800, 'Bondoukou', 851, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7801, 'Bouna', 851, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7802, 'Tanda', 851, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7803, 'Bjelovar', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7804, 'Brezovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7805, 'Chazma', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7806, 'Daruvar', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7807, 'Daruvarski Brestovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7808, 'Dezhanovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7809, 'Dhulovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7810, 'Gareshnica', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7811, 'Gareshnichki Brestovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7812, 'Grubishno Polje', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7813, 'Gudovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7814, 'Hercegovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7815, 'Ivanska', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7816, 'Klokochevac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7817, 'Konchanica', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7818, 'Predavac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7819, 'Rovishce', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7820, 'Shandrovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7821, 'Sirach', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7822, 'Trojstveni Markovac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7823, 'Velika Pisanica', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7824, 'Veliki Grdhevac', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7825, 'Veliki Zdenci', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7826, 'Veliko Trojstvo', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7827, 'Zhdralovi', 852, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7828, 'Blato', 853, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7829, 'Cavtat', 853, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, 1), -(7830, 'Chibacha', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7831, 'Chilipi', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7832, 'Dubrovnik', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7833, 'Komin', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7834, 'Korchula', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7835, 'Lumbarda', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7836, 'Metkovic', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7837, 'Mlini', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7838, 'Mokoshica', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7839, 'Nova Mokoshica', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7840, 'Opuzen', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7841, 'Orebic', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7842, 'Otrich-Seoci', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7843, 'Ploche', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7844, 'Smokvica', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7845, 'Stashevica', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7846, 'Vela Luka', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7847, 'Zaton', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7848, 'Zhrnovo', 853, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7849, 'Bale', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7850, 'Banjole', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7851, 'Brtonigla', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7852, 'Buje', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7853, 'Buzet', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7854, 'Fazhana', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7855, 'Funtana', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7856, 'Galizhana', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7857, 'Labin', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7858, 'Lizhnjan', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7859, 'Marchana', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7860, 'Medulin', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7861, 'Novigrad', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7862, 'Pazin', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7863, 'Porech', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7864, 'Premantura', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7865, 'Pula', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7866, 'Rabac', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7867, 'Rasha', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7868, 'Rovinj', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7869, 'Sveti Petar u Shumi', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7870, 'Tar', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7871, 'Umag', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7872, 'Vinezh', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7873, 'Vodnjan', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7874, 'Vrsar', 855, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7875, 'Cerovac Vukmansichki', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7876, 'Draganic', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7877, 'Duga Resa', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7878, 'Josipdol', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7879, 'Karlovac', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7880, 'Mrezhnichki Varosh', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7881, 'Ogulin', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7882, 'Oshtarije', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7883, 'Ozalj', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7884, 'Plashki', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7885, 'Slunj', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7886, 'Vojnic', 856, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7887, 'Dhelekovec', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7888, 'Dhurdhevac', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7889, 'Drnje', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7890, 'Ferdinandovac', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7891, 'Glogovac', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7892, 'Gola', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7893, 'Hlebine', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7894, 'Kalinovac', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7895, 'Kloshtar Podravski', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7896, 'Koprivnica', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7897, 'Koprivnichki Bregi', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7898, 'Koprivnichki Ivanec', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7899, 'Krizhevci', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7900, 'Legrad', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7901, 'Molve', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7902, 'Novigrad Podravski', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7903, 'Novo Virje', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7904, 'Peteranec', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7905, 'Podravske Sesvete', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7906, 'Rasinja', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7907, 'Reka', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7908, 'Sigetec', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7909, 'Starigrad', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7910, 'Sveti Ivan Zhabno', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7911, 'Trema', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7912, 'Virje', 857, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7913, 'Andrashevec', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7914, 'Bedekovchina', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7915, 'Dhurmanec', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7916, 'Donja Pachetina', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7917, 'Donja Shemnica', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7918, 'Donja Stubica', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7919, 'Dubrovchan', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7920, 'Gornja Stubica', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7921, 'Hum na Sutli', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7922, 'Klanjec', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7923, 'Konjishchina', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7924, 'Krapina', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7925, 'Krapinske Toplice', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7926, 'Laz Bistrichki', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7927, 'Marija Bistrica', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7928, 'Mihovljan', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7929, 'Oroslavje', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7930, 'Podgorje Bistrichko', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7931, 'Poznanovec', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7932, 'Pregrada', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7933, 'Radoboj', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7934, 'Shkaricevo', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7935, 'Shpichkovina', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7936, 'Stubichke Toplice', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7937, 'Sveti Krizh Zachretje', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7938, 'Veliko Trgovishce', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7939, 'Zabok', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7940, 'Zlatar', 858, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, 1), -(7941, 'Zlatar-Bistrica', 858, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7942, 'Brinje', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7943, 'Donji Lapac', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7944, 'Gospic', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7945, 'Korenica', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7946, 'Lichki Osik', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7947, 'Lichko Leshce', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7948, 'Novalja', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7949, 'Otochac', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7950, 'Perushic', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7951, 'Prozor', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7952, 'Senj', 859, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7953, 'Chakovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7954, 'Cirkovljan', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7955, 'Dekanovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7956, 'Domashinec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7957, 'Donja Dubrava', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7958, 'Donji Kraljevec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7959, 'Donji Vidovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7960, 'Drzhimurec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7961, 'Dunjkovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7962, 'Gardinovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7963, 'Gorichan', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7964, 'Gornji Hrashcan', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7965, 'Hodoshan', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7966, 'Ivanovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7967, 'Kotoriba', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7968, 'Kurshanec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7969, 'Lopatinec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7970, 'Machkovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7971, 'Mala Subotica', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7972, 'Mursko Sredishce', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7973, 'Nedelishce', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7974, 'Novakovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7975, 'Novo Selo Rok', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7976, 'Orehovica', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7977, 'Palovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7978, 'Peklenica', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7979, 'Podturen', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7980, 'Prelog', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7981, 'Pribislavec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7982, 'Pushcine', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7983, 'Savska Ves', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7984, 'Selnica', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7985, 'Shenkovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7986, 'Strahoninec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7987, 'Sveta Marija', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7988, 'Trnovec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7989, 'Vratishinec', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7990, 'Zasadbreg', 860, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7991, 'Antunovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7992, 'Batina', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7993, 'Beli Manastir', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7994, 'Belishce', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7995, 'Beljevina', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7996, 'Bijelo Brdo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7997, 'Bilje', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7998, 'Bistrinci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(7999, 'Bizovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8000, 'Branjin Vrh', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8001, 'Brijeshce', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8002, 'Brijest', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8003, 'Ceminac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8004, 'Chepin', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8005, 'Crnkovci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8006, 'Dalj', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8007, 'Darda', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8008, 'Dhakovo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8009, 'Dhurdhenovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8010, 'Donja Motichina', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8011, 'Donji Miholac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8012, 'Erdut', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8013, 'Ernestinovo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8014, 'Ferichanci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8015, 'Gashinci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8016, 'Gorjani', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8017, 'Grabovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8018, 'Ivanovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8019, 'Ivanovci Gorjanski', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8020, 'Jagodnjak', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8021, 'Jelisavac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8022, 'Josipovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8023, 'Josipovac Punitovachki', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8024, 'Karanac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8025, 'Keshinci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8026, 'Knezhevi Vinogradi', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8027, 'Knezhevo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8028, 'Koritna', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8029, 'Koshka', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8030, 'Kushevac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8031, 'Ladimirevci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8032, 'Laslovo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8033, 'Lug', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8034, 'Marijanci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8035, 'Markovac Nashichki', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8036, 'Martin', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8037, 'Mece', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8038, 'Moslavina Podravska', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8039, 'Nashice', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8040, 'Osijek', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8041, 'Ovchara', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8042, 'Petlovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8043, 'Petrijevci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8044, 'Pishkorevci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8045, 'Podgorach', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8046, 'Popvac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8047, 'Rakitovica', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8048, 'Sarvash', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8049, 'Satnica Dhakovachka', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8050, 'Selci Dhakovacki', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8051, 'Semeljci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8052, 'Shiroko Polje', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8053, 'Strizivojna', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8054, 'Sveti Dhuradh', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8055, 'Tenja', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8056, 'Valpovo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8057, 'Velimirovac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8058, 'Viljevo', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8059, 'Vishkovci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8060, 'Vishnjevac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8061, 'Vladislavci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8062, 'Vuka', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8063, 'Vukojevci', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8064, 'Zmajevac', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8065, 'Zoljan', 862, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, 1), -(8066, 'Badljevina', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8067, 'Brodski Drenovac', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8068, 'Dervishaga', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8069, 'Gradac', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8070, 'Jakshic', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8071, 'Kaptol', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8072, 'Kutjevo', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8073, 'Lipik', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8074, 'Pakrac', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8075, 'Pleternica', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8076, 'Pozhega', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8077, 'Prekopkra', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8078, 'Trenkovo', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8079, 'Velika', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8080, 'Vidovci', 864, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8081, 'Bilice', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8082, 'Brodarica', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8083, 'Drnish', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8084, 'Dubrava kod Shibenika', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8085, 'Grebashtica', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8086, 'Jezera', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8087, 'Kistanje', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8088, 'Knin', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8089, 'Kovachic', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8090, 'Murter', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8091, 'Pirovac', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8092, 'Primoshten', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8093, 'Rogoznica', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8094, 'Shibenik', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8095, 'Skradin', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8096, 'Tisno', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8097, 'Tribunj', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8098, 'Vodice', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8099, 'Vrpolje', 866, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8100, 'Brestacha', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8101, 'Brochice', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8102, 'Budashevo', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8103, 'Donja Grachenica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8104, 'Dvor', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8105, 'Glina', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8106, 'Gornja Grachenica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8107, 'Gornja Jelenska', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8108, 'Greda', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8109, 'Gvozd', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8110, 'Hrastelnica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8111, 'Hrvatska Dubica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8112, 'Hrvatska Kostajnica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8113, 'Husain', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8114, 'Ilova', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8115, 'Kutina', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8116, 'Lekenik', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8117, 'Lipovljani', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8118, 'Moshchenica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8119, 'Novska', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8120, 'Odra Sisachka', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8121, 'Osekovo', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8122, 'Peshcenica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8123, 'Petrinja', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8124, 'Popovacha', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8125, 'Potok', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8126, 'Rajic', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8127, 'Repushnica', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8128, 'Sisak', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8129, 'Staro Prachno', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8130, 'Sunja', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8131, 'Topolovac', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8132, 'Voloder', 867, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8133, 'Bashka Voda', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8134, 'Brela', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8135, 'Brnaze', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8136, 'Cista Velika', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8137, 'Donji Prolozhac', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8138, 'Donji Vinjani', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8139, 'Duce', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8140, 'Dugi Rat', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8141, 'Dugopolje', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8142, 'Gala', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8143, 'Glavice', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8144, 'Glavina Donja', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8145, 'Gornji Vincjani', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8146, 'Grubine', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8147, 'Hrvace', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8148, 'Hvar', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8149, 'Imotski', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8150, 'Jelsa', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8151, 'Jesenice', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8152, 'Kamen', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8153, 'Kashtel Gambelovac', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8154, 'Kashtel Gomilica', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8155, 'Kashtel Lukshic', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8156, 'Kashtel Novi', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8157, 'Kashtel Shtafilic', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8158, 'Kashtel Stari', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8159, 'Kashtel Sucurac', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8160, 'Katuni', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8161, 'Klis', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8162, 'Komizha', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8163, 'Koshute', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8164, 'Lovrec', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8165, 'Makarska', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8166, 'Marina', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8167, 'Mastrinka', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8168, 'Milna', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8169, 'Mravince', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8170, 'Neoric', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8171, 'Obrovac Sinjski', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8172, 'Okrug Gornji', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8173, 'Omish', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8174, 'Otok', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8175, 'Podgora', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8176, 'Podstrana', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8177, 'Poljica', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8178, 'Postira', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8179, 'Postranje', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8180, 'Potravlje', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8181, 'Primorski Dolac', 869, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, 1), -(8182, 'Puchishca', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8183, 'Ruda', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8184, 'Runovic', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8185, 'Seget Donji', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8186, 'Seget Vranjica', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8187, 'Selca', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8188, 'Sinj', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8189, 'Slatine', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8190, 'Solin', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8191, 'Split', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8192, 'Srinjine', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8193, 'Stari Grad', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8194, 'Stobrech', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8195, 'Supetar', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8196, 'Trilj', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8197, 'Trogir', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8198, 'Tuchepi', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8199, 'Turjaci', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8200, 'Vinishce', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8201, 'Vis', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8202, 'Vranjic', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8203, 'Vrgorac', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8204, 'Vrlika', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8205, 'Zagvozd', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8206, 'Zhrnovnica', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8207, 'Zmijavci', 869, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8208, 'Bedenec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8209, 'Beletinec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8210, 'Beretinec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8211, 'Breznica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8212, 'Chreshnjevo', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8213, 'Donja Voca', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8214, 'Donje Ladanje', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8215, 'Gornje Ladanje', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8216, 'Gornje Vratno', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8217, 'Gornji Kneginec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8218, 'Gornji Kucan', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8219, 'Hrashcica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8220, 'Hrastovsko', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8221, 'Hrzhenica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8222, 'Ivanec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8223, 'Jalkovec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8224, 'Jalzhabet', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8225, 'Jerovec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8226, 'Klenovnik', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8227, 'Kljuch', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8228, 'Kucan Marof', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8229, 'Lepoglava', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8230, 'Ljubeshcica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8231, 'Ludbreg', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8232, 'Madzharevo', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8233, 'Mali Bukovec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8234, 'Nedeljanec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8235, 'Nova Ves Petrijanec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8236, 'Novi Marof', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8237, 'Petrijanec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8238, 'Podevchevo', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8239, 'Presechno', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8240, 'Remetinec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8241, 'Selnik', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8242, 'Shemovec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8243, 'Srachinec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8244, 'Sveti Petar', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8245, 'Svibovec Podravski', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8246, 'Turchin', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8247, 'Tuzhno', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8248, 'Varazhdin', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8249, 'Varazhdin Breg', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8250, 'Varazhdinske Toplice', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8251, 'Vidovec', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8252, 'Vinica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8253, 'Zavrshje Podbelsko', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8254, 'Zharovnica', 870, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8255, 'Borova', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8256, 'Busetina', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8257, 'Cabuna', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8258, 'Chachinci', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8259, 'Gradina', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8260, 'Korija', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8261, 'Mikleush', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8262, 'Milanovac', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8263, 'Nova Bukovica', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8264, 'Orahovica', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8265, 'Pitomacha', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8266, 'Podgorje', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8267, 'Rezovac', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(8268, 'Shpishic Bukovica', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8269, 'Slatina', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8270, 'Suhopolje', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8271, 'Turanovac', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8272, 'Virovitica', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8273, 'Vocin', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8274, 'Zdenci', 871, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8275, 'Andrijashevci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8276, 'Antin', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8277, 'Babina Greda', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8278, 'Bapska', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8279, 'Bobota', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8280, 'Bogdanovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8281, 'Boshnjaci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8282, 'Brshadin', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8283, 'Ceric', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8284, 'Cerna', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8285, 'Drenovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8286, 'Gradishte', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8287, 'Gunja', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8288, 'Ilacha', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8289, 'Ilok', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8290, 'Ivankovo', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8291, 'Jarmina', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8292, 'Komletinci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8293, 'Lipovac', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8294, 'Lovas', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8295, 'Markushica', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8296, 'Mirkovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8297, 'Negoslavci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8298, 'Nijemci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8299, 'Novi Jankovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8300, 'Nushtar', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8301, 'Petrovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8302, 'Posavski Podgajci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8303, 'Privlaka', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8304, 'Rachinovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8305, 'Rajevo Selo', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8306, 'Retkovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8307, 'Rokovci', 872, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, 1), -(8308, 'Sharengrad', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8309, 'Shishkovci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8310, 'Shtitar', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8311, 'Slakovci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8312, 'Soljani', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8313, 'Sotin', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8314, 'Stari Jankovci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8315, 'Stari Mikanovci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8316, 'Tordinci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8317, 'Tovarnik', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8318, 'Trpinja', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8319, 'Vinkovci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8320, 'Vodhinci', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8321, 'Vrbanja', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8322, 'Vukovar', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8323, 'Zhupanja', 872, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8324, 'Benkovac', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8325, 'Bibinje', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8326, 'Biograd na Moru', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8327, 'Debeljak', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8328, 'Galovac', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8329, 'Gorica', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8330, 'Gornji Karin', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8331, 'Grachac', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8332, 'Jasenice', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8333, 'Kali', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8334, 'Krushevo', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8335, 'Nin', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8336, 'Obrovac', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8337, 'Pag', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8338, 'Pakoshtane', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8339, 'Polacha', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8340, 'Polichnik', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8341, 'Posedarje', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8342, 'Preko', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8343, 'Pridraga', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8344, 'Razhanac', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8345, 'Shkabrnja', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8346, 'Slivnica', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8347, 'Sukoshan', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8348, 'Sveti Filip i Jakov', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8349, 'Turanj', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8350, 'Ugljan', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8351, 'Vir', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8352, 'Vrsi', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8353, 'Zadar', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8354, 'Zemunik Donji', 873, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8355, 'Bestovje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8356, 'Bishkupec Zelinski', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8357, 'Brckovljani', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8358, 'Brdovec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8359, 'Bregana', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8360, 'Brezje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8361, 'Bushevec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8362, 'Celine', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8363, 'Domaslovec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8364, 'Donja Bistra', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8365, 'Donja Kupchina', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8366, 'Donja Lomnica', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8367, 'Donja Zdenchina', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8368, 'Donji Desinec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8369, 'Donji Stupnik', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8370, 'Dubrava', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8371, 'Dugo Selo', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8372, 'Gornja Bistra', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8373, 'Gornji Laduch', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8374, 'Gornji Stupnik', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8375, 'Grachec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8376, 'Gradici', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8377, 'Ivan Bistranski', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8378, 'Ivanic-Grad', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8379, 'Jablanovec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8380, 'Jakovlje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8381, 'Jastrebarsko', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8382, 'Kerestinec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8383, 'Klincha Sela', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8384, 'Kloshtar Ivanic', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8385, 'Kozinshchak', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8386, 'Krizh', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8387, 'Kupinec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8388, 'Lonjica', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8389, 'Luka', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8390, 'Lukarishce', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8391, 'Lukavec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8392, 'Lupoglav', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8393, 'Michevec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8394, 'Mraclin', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8395, 'Novaki', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8396, 'Novo Chiche', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8397, 'Novoselec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8398, 'Oborovo Bistranski', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8399, 'Oreshje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8400, 'Pojatno', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8401, 'Poljanica Bistranska', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8402, 'Prigorje Brdovechko', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8403, 'Rakitje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8404, 'Rakov Potok', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8405, 'Rude', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8406, 'Samobor', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8407, 'Strmec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8408, 'Sveta Nedelja', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8409, 'Sveti Ivan Zelina', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8410, 'Turopolje', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8411, 'Velika Gorica', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8412, 'Velika Mlaka', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8413, 'Velika Ostrna', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8414, 'Vrbovec', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8415, 'Vukovina', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8416, 'Zapreshic', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8417, 'Zdenci Brdovechki', 874, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8418, 'Camaguey', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8419, 'Caney', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8420, 'Carlos Manuel de Cespedes', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8421, 'Esmeralda', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8422, 'Guaimaro', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8423, 'Minas', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8424, 'Nuevitas', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8425, 'Santa Cruz del Sur', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8426, 'Sibanicu', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8427, 'Vertientes', 875, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, 1), -(8428, 'Cienfuegos', 877, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8429, 'Cruces', 877, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8430, 'Cumanayagua', 877, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8431, 'Rodas', 877, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8432, 'Bayamo', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8433, 'Campechuela', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8434, 'Guisa', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8435, 'Jiguani', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8436, 'Media Luna', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8437, 'Niquero', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8438, 'Pilon', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8439, 'Rio Cauto', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8440, 'Yara', 879, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8441, 'Baracoa', 880, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8442, 'Guantanamo', 880, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8443, 'Yateras', 880, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8444, 'Havana', 881, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8445, 'Antilla', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8446, 'Baguanos', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8447, 'Banes', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8448, 'Cacocum', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8449, 'Cauto Cristo', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8450, 'Cueto', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8451, 'Gibara', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8452, 'Holguin', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8453, 'Jobabo', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8454, 'Moa', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8455, 'Sagua de Tanamo', 882, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8456, 'Abreus', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8457, 'Agramonte', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8458, 'Aguacate', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8459, 'Aguada de Pasajeros', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8460, 'Alacranes', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8461, 'Bolondron', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8462, 'Calimete', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8463, 'Cardenas', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8464, 'Carlos Rojas', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8465, 'Corralillo', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8466, 'Jaguey Grande', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8467, 'Jovellanos', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8468, 'Juan Gualberto Gomez', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8469, 'Los Arabos', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8470, 'Manguito', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8471, 'Marti', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8472, 'Matanzas', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8473, 'Maximo Gomez', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8474, 'Pedro Betancourt', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8475, 'Perico', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8476, 'Union de Reyes', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8477, 'Varadero', 886, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8478, 'Limassol', 892, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8479, 'Paphos', 894, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, 1), -(8480, 'Frycovice', 897, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8481, 'Bechyne', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8482, 'Blatna', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8483, 'Cheske Budejovice', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8484, 'Chesky Krumlov', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8485, 'Dachice', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8486, 'Jindrichuv Hradec', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8487, 'Kaplice', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8488, 'Milevsko', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8489, 'Pisek', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8490, 'Prachatice', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8491, 'Protivin', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8492, 'Sezimovo Usti', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8493, 'Sobeslav', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8494, 'Strakonice', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8495, 'Tabor', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8496, 'Trebon', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8497, 'Tyn nad Vltavou', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8498, 'Veseli nad Luzhnici', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8499, 'Vimperk', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8500, 'Vodnany', 899, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8501, 'Adamov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8502, 'Blansko', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8503, 'Boskovice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8504, 'Breclav', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8505, 'Brno', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8506, 'Buchovice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8507, 'Dubnany', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8508, 'Hodonin', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8509, 'Hrusky', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8510, 'Hustopeche', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8511, 'Ivanchice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8512, 'Kurim', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8513, 'Kyjov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8514, 'Letovice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8515, 'Mikulov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8516, 'Moravsky Krumlov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8517, 'Namesht nad Oslavou', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8518, 'Rosice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8519, 'Shlapanice', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8520, 'Slavkov u Brna', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8521, 'Tishnov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8522, 'Vyshkov', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8523, 'Znojmo', 900, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8524, 'Ash', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8525, 'Bozicany', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8526, 'Cheb', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8527, 'Chodov', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8528, 'Frantishkovy Lazne', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8529, 'Horni Slavkov', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8530, 'Karlovy Vary', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8531, 'Kraslice', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8532, 'Kynshperk nad Ohri', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8533, 'Marianske Lazne', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8534, 'Nejdek', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8535, 'Ostrov', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8536, 'Sokolov', 901, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8537, 'Klecany', 902, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8538, 'Broumov', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8539, 'Cherveny Kostelec', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8540, 'Cheska Skalice', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8541, 'Chlumec nad Cidlinou', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8542, 'Dobrushka', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8543, 'Dvur Kralove', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8544, 'Habartov', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8545, 'Holice', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8546, 'Horice', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8547, 'Hostinne', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8548, 'Hradec Kralove', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8549, 'Hronov', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8550, 'Jaromer', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8551, 'Jichin', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8552, 'Kostelec nad Orlici', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8553, 'Nachod', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8554, 'Nova Paka', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8555, 'Nove Mesto nad Metuji', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8556, 'Novy Bydzhov', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8557, 'Rychnov nad Knezhnou', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8558, 'Trebechovice pod Orebem', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8559, 'Trutnov', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8560, 'Tynishte nad Orlici', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8561, 'Upice', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8562, 'Vrchlabi', 903, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8563, 'Ceska Lipa', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8564, 'Cheska Kamenice', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8565, 'Cheska Lipa', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8566, 'Chrastava', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8567, 'Doksy', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8568, 'Frydlant', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8569, 'Hradek', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8570, 'Jablonec', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8571, 'Jilemnice', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8572, 'Liberec', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8573, 'Lomnice nad Popelkou', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8574, 'Mimon', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8575, 'Novy Bor', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8576, 'Semily', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8577, 'Tanvald', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8578, 'Turnov', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8579, 'Zhelezny Brod', 904, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8580, 'Lipov', 905, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, 1), -(8581, 'Bilovec', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8582, 'Bohumin', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8583, 'Bruntal', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8584, 'Chesky Teshin', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8585, 'Frenshtat', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8586, 'Frydek-Mistek', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8587, 'Frydlant nad Ostravici', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8588, 'Fulnek', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8589, 'Havirov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8590, 'Hluchin', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8591, 'Hradec nad Moravice', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8592, 'Jablunkov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8593, 'Karvina', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8594, 'Koprivnice', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8595, 'Kravare', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8596, 'Krnov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8597, 'Novy Jichin', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8598, 'Odry', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8599, 'Opava', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8600, 'Orlova', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8601, 'Ostrava', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8602, 'Petrvald', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8603, 'Pribor', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8604, 'Rychvald', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8605, 'Rymarov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8606, 'Shenov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8607, 'Studenka', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8608, 'Trinec', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8609, 'Vitkov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8610, 'Vratimov', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8611, 'Vrbno pod Pradedem', 906, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8612, 'Hranice', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8613, 'Jesenik', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8614, 'Kojetin', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8615, 'Lipnik nad Becvou', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8616, 'Litovel', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8617, 'Mohelnice', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8618, 'Olomouc', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8619, 'Prerov', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8620, 'Prostejov', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8621, 'Shternberk', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8622, 'Shumperk', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8623, 'Unichov', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8624, 'Zabreh', 907, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8625, 'Cheska Trebova', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8626, 'Chocen', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8627, 'Chrudim', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8628, 'Chvaletice', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8629, 'Hermanuv Mestec', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8630, 'Hlinsko', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8631, 'Lanshkroun', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8632, 'Letohrad', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8633, 'Litomyshl', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8634, 'Moravska Trebova', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8635, 'Pardubice', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8636, 'Polichka', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8637, 'Policka', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8638, 'Prelouch', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8639, 'Skutech', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8640, 'Svitavy', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8641, 'Usti nad Orlici', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8642, 'Vysoke Myto', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8643, 'Zhamberk', 909, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8644, 'Dobrany', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8645, 'Domazhlice', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8646, 'Horazhd ovice', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8647, 'Horshovky Tyn', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8648, 'Kdyne', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8649, 'Klatovy', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8650, 'Nyrany', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8651, 'Nyrsko', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8652, 'Plana', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8653, 'Plzen', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8654, 'Preshtice', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8655, 'Radnice', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8656, 'Rokycany', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8657, 'Stribro', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8658, 'Sushice', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8659, 'Tachov', 910, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8660, 'Prague', 911, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8661, 'Praha', 911, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8662, 'Rajhrad', 912, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8663, 'Smirice', 913, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8664, 'Benatky nad Jizerou', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8665, 'Beneshov', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8666, 'Beroun', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8667, 'Brandys nad Labem-Stara Bolesl', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8668, 'Chaslav', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8669, 'Chavaletice', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8670, 'Chelakovice', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8671, 'Chesky Brod', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8672, 'Dobrish', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8673, 'Horovice', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8674, 'Kladno', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8675, 'Kolin', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8676, 'Kralupy nad Vltavou', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8677, 'Kutna Hora', 916, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, 1), -(8678, 'Lysa nad Labem', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8679, 'Mlada Boleslav', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8680, 'Mnichovo Hradishte', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8681, 'Neratovice', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8682, 'Nove Strasheci', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8683, 'Nymburk', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8684, 'Podebrady', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8685, 'Pribram', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8686, 'Rakovnik', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8687, 'Richany', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8688, 'Rousinov', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8689, 'Roztoky', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8690, 'Sedlcany', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8691, 'Slany', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8692, 'Stochov', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8693, 'Vlashim', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8694, 'Zruch nad Sazavou', 916, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8695, 'Unicov', 917, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8696, 'Bilina', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8697, 'Chomutov', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8698, 'Dechin', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8699, 'Dubi', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8700, 'Duchcov', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8701, 'Jilove', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8702, 'Jirkov', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8703, 'Kadan', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8704, 'Klasterec nad Ohri', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8705, 'Krupka', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8706, 'Litomerice', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8707, 'Litvinov', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8708, 'Louny', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8709, 'Lovosice', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8710, 'Mezibori', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8711, 'Most', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8712, 'Osek', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8713, 'Podborany', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8714, 'Roudnice', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8715, 'Rumburk', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8716, 'Shluknov', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8717, 'Shteti', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8718, 'Teplice', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8719, 'Usti', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8720, 'Varnsdorf', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8721, 'Zatec', 918, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8722, 'Valletta', 919, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8723, 'Velesin', 920, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8724, 'Bystrice nad Pernshtejnem', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8725, 'Chotebor', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8726, 'Havlichkuv Brod', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8727, 'Humpolec', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8728, 'Jihlava', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8729, 'Ledech', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8730, 'Moravske Budejovice', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8731, 'Nove Mesto na Morave', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8732, 'Okrisky', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8733, 'Pacov', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8734, 'Pelhrimov', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8735, 'Polna', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8736, 'Svetla nad Sazavou', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8737, 'Telch', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8738, 'Trebich', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8739, 'Tresht ', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8740, 'Velke Mezirichi', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8741, 'Zhd ar', 921, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8742, 'Brumov', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8743, 'Bystrice pod Hostynem', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8744, 'Chropyne', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8745, 'Holeshov', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8746, 'Hulin', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8747, 'Kromerizh', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8748, 'Kunovice', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8749, 'Napajedla', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8750, 'Otrokovice', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8751, 'Rozhnov', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8752, 'Roznov pod Radhostem', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8753, 'Slavicin', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8754, 'Slusovice', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8755, 'Stare Mesto', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8756, 'Strazhnice', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8757, 'Uherske Hradishte', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8758, 'Uhersky Brod', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8759, 'Valashske Klobouky', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8760, 'Valashske Mezirichi', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8761, 'Veseli nad Moravou', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8762, 'Vsetin', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8763, 'Zborovice', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8764, 'Zlin', 922, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8765, 'Aarhus', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8766, 'Allingabro', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8767, 'Arhus', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8768, 'Assentoft', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8769, 'Auning', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8770, 'Beder', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8771, 'Brabrand', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8772, 'Ebeltoft', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8773, 'Framlev', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8774, 'Galten', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8775, 'Grenaa', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8776, 'Hadsten', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8777, 'Hammel', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8778, 'Hinnerup', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8779, 'Hjortshoj', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8780, 'Horning', 923, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, 1), -(8781, 'Hornslet', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8782, 'Kolt', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8783, 'Langa', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8784, 'Logten', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8785, 'Lystrup', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8786, 'Malling', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8787, 'Mariager', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8788, 'Marslet', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8789, 'Odder', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8790, 'Randers', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8791, 'Risskov', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8792, 'Ronde', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8793, 'Ry', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8794, 'Ryomgard', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8795, 'Sabro', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8796, 'Silkeborg', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8797, 'Skanderborg', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8798, 'Skovby', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8799, 'Soften', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8800, 'Solbjerg', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8801, 'Spentrup', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8802, 'Stavtrup', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8803, 'Stilling', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8804, 'Svejbak', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8805, 'Tranbjerg', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8806, 'Trige', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8807, 'Virklund', 923, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8808, 'Aakirkeby', 924, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8809, 'Allinge-Sandvig', 924, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8810, 'Nexo', 924, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8811, 'Ronne', 924, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8812, 'Allerod', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8813, 'Birkerod', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8814, 'Blovstrod', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8815, 'Espergarde', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8816, 'Farum', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8817, 'Fredensborg', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8818, 'Frederikssund', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8819, 'Frederiksvark', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8820, 'Ganlose', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8821, 'Gilleleje', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8822, 'Grasted', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8823, 'Hellebak', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8824, 'Helsinge', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8825, 'Helsingor', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8826, 'Hillerod', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8827, 'Hornbak', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8828, 'Horsholm', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8829, 'Humlebak', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8830, 'Hundested', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8831, 'Jagerspris', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8832, 'Kvistgaard', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8833, 'Lillerod', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8834, 'Liseleje', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8835, 'Lynge', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8836, 'Niva', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8837, 'Nodebo', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8838, 'Olstykke', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8839, 'Skibby', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8840, 'Slangerup', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8841, 'Stavnsholt', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8842, 'Stenlose', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8843, 'Valby', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8844, 'Vekso', 925, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8845, 'Aarup', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8846, 'Arslev', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8847, 'Assens', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8848, 'Bellinge', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8849, 'Blommenslyst', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8850, 'Bogense', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8851, 'Brenderup', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8852, 'Broby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8853, 'Bullerup', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8854, 'Ejby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8855, 'Faaborg', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8856, 'Glamsbjerg', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8857, 'Haarby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8858, 'Hojby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8859, 'Kerteminde', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8860, 'Langeskov', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8861, 'Marstal', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8862, 'Middelfart', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8863, 'Munkebo', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8864, 'Neder Holluf', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8865, 'Norre Aaby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8866, 'Nyborg', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8867, 'Odense', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8868, 'Otterup', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8869, 'Ringe', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8870, 'Rudkobing', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8871, 'Sankt Klemens', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8872, 'Seden', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8873, 'Sonderso', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8874, 'Stige', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8875, 'Strib', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8876, 'Svendborg', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8877, 'Thuro', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8878, 'Tommerup', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8879, 'Ullerslev', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8880, 'Vindeby', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8881, 'Vissenbjerg', 926, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8882, 'Ballerup', 927, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8883, 'Brondby', 927, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8884, 'Vallensbaek', 927, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8885, 'Dragor', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8886, 'Flong', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8887, 'Gentofte', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8888, 'Glostrup', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8889, 'Herlev', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8890, 'Hvidovre', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8891, 'Ishoj', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8892, 'Kastrup', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8893, 'Lyngby', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8894, 'Malov', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8895, 'Smorumnedre', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8896, 'Taastrup', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8897, 'Trorod', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8898, 'Vanlose', 928, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, 1), -(8899, 'Varlose', 928, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(8900, 'Aabybro', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8901, 'Aalborg', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8902, 'Aars', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8903, 'Arden', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8904, 'Bindslev', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8905, 'Bronderslev', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8906, 'Brovst', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8907, 'Dronninglund', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8908, 'Farso', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8909, 'Fjerritslev', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8910, 'Frederikshavn', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8911, 'Frejlev', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8912, 'Gistrup', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8913, 'Gorlose', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8914, 'Hadsund', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8915, 'Hals', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8916, 'Hirtshals', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8917, 'Hjallerup', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8918, 'Hjorring', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8919, 'Hobro', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8920, 'Kas', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8921, 'Klarup', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8922, 'Logstor', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8923, 'Nibe', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8924, 'Norresundby', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8925, 'Nørresundby', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8926, 'Pandrup', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8927, 'Saby', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8928, 'Sindal', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8929, 'Skagen', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8930, 'Skorping', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8931, 'Storvorde', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8932, 'Stovring', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8933, 'Strandby', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8934, 'Sulsted', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8935, 'Svenstrup', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8936, 'Tars', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8937, 'Tranekaer', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8938, 'Vadum', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8939, 'Vestbjerg', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8940, 'Vester Hassing', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8941, 'Vodskov', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8942, 'Vra', 931, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8943, 'Ansager', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8944, 'Billund', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8945, 'Bramming', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8946, 'Brorup', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8947, 'Esbjerg', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8948, 'Grindsted', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8949, 'Holsted', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8950, 'Nordby', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8951, 'Oksbol', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8952, 'Olgod', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8953, 'Ribe', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8954, 'Tjareborg', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8955, 'Varde', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8956, 'Vejen', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8957, 'Vorbasse', 932, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8958, 'Aulum', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8959, 'Bording', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8960, 'Brande', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8961, 'Gjellerup Kirkeby', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8962, 'Hammerum', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8963, 'Harboore', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8964, 'Herning', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8965, 'Holstebro', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8966, 'Hvide Sande', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8967, 'Ikast', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8968, 'Kibak', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8969, 'Lemvig', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8970, 'Lind', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8971, 'Ringkobing', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8972, 'Skaerbaek', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8973, 'Skjern', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8974, 'Snejbjerg', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8975, 'Struer', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8976, 'Sunds', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8977, 'Tarm', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8978, 'Thyboron', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8979, 'Ulfborg', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8980, 'Videbak', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8981, 'Vildbjerg', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8982, 'Vinderup', 933, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8983, 'Roervig', 934, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8984, 'Bjaverskov', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8985, 'Borup', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8986, 'Greve Strand', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8987, 'Gundsomagle', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8988, 'Harlev', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8989, 'Havdrup', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8990, 'Hvalso', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8991, 'Jyllinge', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8992, 'Koge', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8993, 'Lejre', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8994, 'Osted', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8995, 'Roskilde', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8996, 'Solrod', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8997, 'Stroby Egede', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8998, 'Svogerslev', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(8999, 'Tune', 935, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, 1), -(9000, 'Viby', 935, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9001, 'Vindinge', 935, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9002, 'Glyngore', 936, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9003, 'Karise', 937, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9004, 'Naestved', 937, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9005, 'Soeborg', 938, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9006, 'Aabenraa', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9007, 'Aarsleve', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9008, 'Augustenborg', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9009, 'Broager', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9010, 'Christiansfeld', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9011, 'Dybbol', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9012, 'Gram', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9013, 'Grasten', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9014, 'Guderup', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9015, 'Haderslev', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9016, 'Horuphav', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9017, 'Krusa', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9018, 'Logumkloster', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9019, 'Lojt Kirkeby', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9020, 'Nordborg', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9021, 'Padborg', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9022, 'Rodding', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9023, 'Rodekro', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9024, 'Skarbak', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9025, 'Sonderborg', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9026, 'Starup', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9027, 'Tinglev', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9028, 'Toftlund', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9029, 'Tonder', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9030, 'Vojens', 939, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9031, 'Fakse', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9032, 'Fakse Ladeplads', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9033, 'Fensmark', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9034, 'Holeby', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9035, 'Maribo', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9036, 'Nakskov', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9037, 'Nastved', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9038, 'Neder Vindinge', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9039, 'Norre Alslev', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9040, 'Nykobing', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9041, 'Nyrad', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9042, 'Orslev', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9043, 'Prasto', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9044, 'Rodby', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9045, 'Rodbyhavn', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9046, 'Ronnede', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9047, 'Sakskobing', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9048, 'Stege', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9049, 'Store Heddinge', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9050, 'Stubbekobing', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9051, 'Sundby', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9052, 'Vordingborg', 940, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9053, 'Bylderup-Bov', 941, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9054, 'Fovling', 941, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9055, 'Toelloese', 942, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9056, 'Borkop', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9057, 'Bradstrup', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9058, 'Brejning', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9059, 'Egtved', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9060, 'Fredericia', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9061, 'Give', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9062, 'Hedensted', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9063, 'Horsens', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9064, 'Jelling', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9065, 'Juelsminde', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9066, 'Kolding', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9067, 'Lunderskov', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9068, 'Snoghoj', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9069, 'Sonder Bjert', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9070, 'Taulov', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9071, 'Torring', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9072, 'Vamdrup', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9073, 'Vejle', 943, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9074, 'Asnas', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9075, 'Dianalund', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9076, 'Forlev', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9077, 'Frederiksberg', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9078, 'Fuglebjerg', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9079, 'Gorlev', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9080, 'Haslev', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9081, 'Holbaek', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9082, 'Hong', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9083, 'Horve', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9084, 'Jyderup', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9085, 'Kalundborg', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9086, 'Korsor', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9087, 'Ringsted', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9088, 'Skalskor', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9089, 'Slagelse', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9090, 'Soro', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9091, 'Svebolle', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9092, 'Svinninge', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9093, 'Tollose', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9094, 'Vipperod', 944, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9095, 'Aalestrup', 945, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9096, 'Bjerringbro', 945, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9097, 'Hanstholm', 945, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9098, 'Hojslev', 945, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, 1), -(9099, 'Hurup', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9100, 'Karup', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9101, 'Kjellerup', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9102, 'Skive', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9103, 'Stoholm', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9104, 'Thisted', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9105, 'Ulstrup', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9106, 'Viborg', 945, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9107, 'Dikhil', 947, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9108, 'Jibuti', 948, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9109, 'Tajurah', 949, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9110, 'Ubuk', 950, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9111, 'Azua', 955, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9112, 'Sabana Yegua', 955, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9113, 'Neyba', 956, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9114, 'Tamayo', 956, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9115, 'Barahona', 957, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9116, 'Cabral', 957, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9117, 'Dajabon', 958, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9118, 'Las Guaranas', 960, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9119, 'Pimentel', 960, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9120, 'San Francisco de Macoris', 960, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9121, 'Moca', 963, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9122, 'Duverge', 965, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9123, 'Jimani', 965, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, 1), -(9124, 'Pedernales', 973, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9125, 'Bani', 974, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9126, 'Ocoa', 974, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9127, 'Salcedo', 976, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9128, 'Sanchez', 977, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9129, 'Villa Bisono', 981, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9130, 'Esperanza', 983, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9131, 'Cuenca', 984, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9132, 'Gualaceo', 984, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9133, 'Azogues', 985, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9134, 'Canar', 985, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9135, 'La Troncal', 985, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9136, 'El Angel', 986, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9137, 'San Gabriel', 986, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9138, 'Tulcan', 986, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9139, 'Alausi', 987, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9140, 'Guano', 987, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9141, 'Riobamba', 987, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9142, 'La Mana', 988, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9143, 'Latacunga', 988, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9144, 'Pujili', 988, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9145, 'Saquisili', 988, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9146, 'Esmeraldas', 990, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9147, 'Muisne', 990, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9148, 'Rosa Zarate', 990, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9149, 'Valdez', 990, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, 1), -(9150, 'Puerto Ayora', 991, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9151, 'Puerto Baquerizo Moreno', 991, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9152, 'Alfredo Baquerizo Moreno', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9153, 'Balao', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9154, 'Balzar', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9155, 'Colimes', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9156, 'Coronel Mariduena', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9157, 'Daule', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9158, 'El Salitre', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9159, 'El Triunfo', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9160, 'Eloy Alfaro', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9161, 'Guayaquil', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9162, 'La Libertad', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9163, 'Lomas de Sargentillo', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9164, 'Mapasingue', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9165, 'Milagro', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9166, 'Naranjal', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9167, 'Naranjito', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9168, 'Pedro Carbo', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9169, 'Playas', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9170, 'Salinas', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9171, 'Samborondon', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9172, 'Santa Elena', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9173, 'Velasco Ibarra', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9174, 'Yaguachi', 992, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9175, 'Atuntaqui', 993, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9176, 'Cotacachi', 993, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9177, 'Ibarra', 993, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9178, 'Otavalo', 993, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9179, 'Pimampiro', 993, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9180, 'Alamor', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9181, 'Cariamanga', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9182, 'Catacocha', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9183, 'Catamayo', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9184, 'Celica', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9185, 'Loja', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9186, 'Macara', 994, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9187, 'Bahia de Caraquez', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9188, 'Calceta', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9189, 'Chone', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9190, 'Jipijapa', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9191, 'Montecristi', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9192, 'Pajan', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9193, 'Portoviejo', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9194, 'Rocafuerte', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9195, 'Tosagua', 996, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9196, 'Archidona', 998, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9197, 'Orellana', 999, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9198, 'Puyo', 1000, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9199, 'Cayambe', 1001, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9200, 'Machachi', 1001, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9201, 'Quito', 1001, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9202, 'Sangolqui', 1001, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9203, 'Nueva Loja', 1002, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9204, 'Shushufindi', 1002, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9205, 'Ambato', 1003, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9206, 'Banos', 1003, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9207, 'Pelileo', 1003, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9208, 'Pillaro', 1003, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9209, 'Aswan', 1005, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9210, 'Daraw', 1005, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9211, 'Kawm Umbu', 1005, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9212, 'an-Nasir', 1005, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9213, 'Abnub', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9214, 'Abu Tij', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9215, 'Asyut', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9216, 'Bani Muhammadiyat', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9217, 'Dayrut', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9218, 'Dayrut-ash-Sharif', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9219, 'Manfalut', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9220, 'Musha', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9221, 'Sahil Salim', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9222, 'Sanabu', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9223, 'Umm-al-Qusur', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9224, 'al-Badari', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9225, 'al-Qusiyah', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9226, 'an-Nukhaylah', 1006, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, 1), -(9227, '6th of October City', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9228, 'Ataba', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9229, 'Cairo', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9230, 'Nasr', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9231, 'Nasr City', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9232, 'Obour City', 1009, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9233, ' Izbat-al-Burj', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9234, 'Damietta', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9235, 'Dumyat', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9236, 'El-Zarka', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9237, 'Faraskur', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9238, 'Kafr Sa d', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9239, 'Kafr-al-Battikh', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9240, 'az-Zarqa', 1010, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9241, 'Biyala', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9242, 'Disuq', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9243, 'Fuwah', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9244, 'Kafr-al-Jara idah', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9245, 'Kafr-ash-Shaykh', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9246, 'Mutubis', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9247, 'Qallin', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9248, 'Sidi Salim', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9249, 'al-Burj', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9250, 'al-Burullus', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9251, 'al-Haddadi', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9252, 'al-Hamul', 1011, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9253, 'Marsa Matruh', 1012, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9254, 'Sidi Barrani', 1012, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9255, 'Zawiyat Shammas', 1012, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9256, 'ad-Da ba', 1012, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9257, 'Armant', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9258, 'Asfun-al-Mata inah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9259, 'Dandarah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9260, 'Dishna', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9261, 'Farshut', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9262, 'Hijazah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9263, 'Hiw', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9264, 'Idfu', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9265, 'Isna', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9266, 'Kiman-al-Mata inah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9267, 'Naj Hammadi', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9268, 'Naqadah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9269, 'Qift', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9270, 'Qina', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9271, 'Qus', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9272, 'ad-Dabbiyah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9273, 'ad-Dayr', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9274, 'al-Ballas', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9275, 'al-Karnak', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9276, 'al-Waqf', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9277, 'ar-Radisiyat-al-Bahriyah', 1018, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9278, 'Akhmim', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9279, 'Awlad Tawq Sharq', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9280, 'Dar-as-Salam', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9281, 'Jirja', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9282, 'Juhaynah', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9283, 'Sawhaj', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9284, 'Tahta', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9285, 'Tima', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9286, 'al-Balyana', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9287, 'al-Manshah', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9288, 'al-Maragah', 1019, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9289, 'Aja', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9290, 'Bahut', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9291, 'Bilqas', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9292, 'Dikirnis', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9293, 'Minyat-an-Nasr', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9294, 'Mit Gamr', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9295, 'Shirbin', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9296, 'Talkha', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9297, 'al-Jamaliyah', 1022, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, 1), -(9298, 'al-Ma sarah', 1022, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9299, 'al-Manzilah', 1022, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9300, 'al-Matariyah', 1022, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9301, 'as-Sinbillawayn', 1022, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9302, 'Ras Gharib', 1023, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9303, 'Safaja', 1023, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9304, 'al-Ghardaqah', 1023, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9305, 'al-Qusayr', 1023, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9306, 'Abu Hummus', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9307, 'Abu al-Matamir', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9308, 'Buturis', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9309, 'Damanhur', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9310, 'Edfina', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9311, 'Hawsh Isa', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9312, 'Idku', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9313, 'Ityay-al-Barud', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9314, 'Kafr Salim', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9315, 'Kafr-ad-Dawwar', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9316, 'Kawm Hamada', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9317, 'Nubaria', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9318, 'Rashid', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9319, 'Shubra Khit', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9320, 'Zawiyat Sidi Gazi', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9321, 'ad-Dilinjat', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9322, 'al-Kawm-al-Akhdar', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9323, 'al-Mahmudiyah', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9324, 'ar-Rahmaniyah', 1024, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9325, 'Fidimin', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9326, 'Ibshaway', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9327, 'Itsa', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9328, 'Qasr Qarun', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9329, 'Sanhur', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9330, 'Sinnuris', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9331, 'Tamiyah', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9332, 'al-Fayyum', 1025, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9333, 'Abyar', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9334, 'Basyun', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9335, 'Kafr-az-Zayyat', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9336, 'Mahallat Marhum', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9337, 'Nisf Thani Bashbish', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9338, 'Qutur', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9339, 'Samannud', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9340, 'Tanta', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9341, 'Zifta', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9342, 'ad-Daljamun', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9343, 'al-Mahallah al-Kubra', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9344, 'as-Santah', 1026, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9345, 'Agamy', 1027, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9346, 'al-Iskandariyah', 1027, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9347, 'al-Maks', 1027, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9348, 'Fa id', 1028, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9349, 'Sarabiyum', 1028, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9350, 'al-Ismailiyah', 1028, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9351, 'Atfih', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9352, 'Awsim', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9353, 'Giza', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9354, 'Madinat Sittah Uktubar', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9355, 'Nahya', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9356, 'Saqqarah', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9357, 'al- Ayyat', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9358, 'al-Badrashayn', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9359, 'al-Hawamidiyah', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9360, 'al-Jizah', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9361, 'al-Mansuriyah', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9362, 'al-Wahat-al-Bahriyah', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9363, 'as-Saff', 1029, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9364, 'Ashmun', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9365, 'Birkat-as-Sab ', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9366, 'Milij', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9367, 'Minuf', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9368, 'Quwaysina', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9369, 'Shibin-al-Kawm', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9370, 'Sirs-al-Layyanah', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9371, 'Tala', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9372, 'al-Bajur', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9373, 'al-Batanun', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9374, 'ash-Shuhada', 1030, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9375, 'Abu Qurqas', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9376, 'Bani Mazar', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9377, 'Dayr Mawas', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9378, 'Magagah', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9379, 'Mallawi', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9380, 'Matay', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9381, 'Samalut', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9382, 'Tallah', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9383, 'Tandah', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9384, 'al-Anayim', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9385, 'al-Fikriyah', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9386, 'al-Minya', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9387, 'ar-Rawdah', 1031, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9388, 'Badr City', 1032, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9389, 'Heliopolis', 1032, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9390, 'al-Qahira', 1032, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9391, 'Abu Za bal', 1033, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9392, 'Banha', 1033, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9393, 'Qalyub', 1033, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, 1), -(9394, 'Shubra al-Khaymah', 1033, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9395, 'Sibin-al-Qanatir', 1033, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9396, 'Tukh', 1033, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9397, 'al-Khankah', 1033, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9398, 'al-Qanatir-al-Khayriyah', 1033, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9399, 'al-Uqsur', 1034, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9400, 'as-Suways', 1036, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9401, 'Abu Hammad', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9402, 'Abu Kabir', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9403, 'Bilbays', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9404, 'Diyarb Najm', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9405, 'Faqus', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9406, 'Hihya', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9407, 'Kafr Saqr', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9408, 'Mashtul-as-Suq', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9409, 'Minyat-al-Qamh', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9410, 'al-Ashir mir-Ramadan', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9411, 'al-Husayniyah', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9412, 'al-Ibrahimiyah', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9413, 'al-Qanayat', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9414, 'al-Qassasin', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9415, 'al-Qurayn', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9416, 'as-Salihiyah', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9417, 'at-Tall-al-Kabir', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9418, 'az-Zaqaziq', 1037, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9419, 'Ahuachapan', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9420, 'Atiquizaya', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9421, 'Concepcion de Ataco', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9422, 'Guaymango', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9423, 'Jujutla', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9424, 'San Francisco Menendez', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9425, 'Tacuba', 1038, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9426, 'Ilobasco', 1039, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9427, 'Sensuntepeque', 1039, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9428, 'Chalatenango', 1040, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9429, 'Nueva Concepcion', 1040, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9430, 'San Francisco Morazan', 1040, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9431, 'Cojutepeque', 1041, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9432, 'San Pedro Perulapan', 1041, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9433, 'Suchitoto', 1041, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9434, 'Tecoluca', 1041, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9435, 'Tenancingo', 1041, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9436, 'Cacaopera', 1044, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9437, 'Gotera', 1044, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9438, 'Guatajiagua', 1044, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9439, 'Jocoro', 1044, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9440, 'Sociedad', 1044, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9441, 'Acajutla', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9442, 'Izalco', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9443, 'Juayua', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9444, 'Nahuizalco', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9445, 'San Antonio del Monte', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9446, 'San Julian', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9447, 'Sonsonate', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9448, 'Sonzacate', 1048, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9449, 'Berlin', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9450, 'Concepcion Batres', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9451, 'Estanzuelas', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9452, 'Jiquilisco', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9453, 'Jucuapa', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9454, 'Jucuaran', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9455, 'Ozatlan', 1049, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, 1), -(9456, 'Puerto El Triunfo', 1049, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9457, 'Santiago de Maria', 1049, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9458, 'Usulutan', 1049, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9459, 'Pale', 1050, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9460, 'Ebebiyin', 1054, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9461, 'Mikomeseng', 1054, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9462, 'Bata', 1055, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9463, 'Mbini', 1055, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9464, 'Aconibe', 1056, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9465, 'Anisoc', 1056, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9466, 'Mongomo', 1056, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9467, 'Nsok', 1056, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9468, 'Keren', 1057, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9469, 'Addi Kwala', 1058, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9470, 'Addi Ugri', 1058, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9471, 'Asseb', 1059, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9472, 'Beylul', 1059, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9473, 'Edd', 1059, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9474, 'Mersa Fatma', 1059, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9475, 'Ak ordat', 1060, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9476, 'Barentu', 1060, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9477, 'Teseney', 1060, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9478, 'Asmara', 1061, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9479, 'Ginda', 1061, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9480, 'Himbirti', 1061, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9481, 'Nefasit', 1061, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9482, 'Addi K eyih', 1062, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9483, 'Dek emhare', 1062, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9484, 'Mitsiwa', 1062, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9485, 'Sen afe', 1062, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9486, 'Aasmae', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9487, 'Aaviku', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9488, 'Aegviidu', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9489, 'Aigrumae', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9490, 'Aila', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9491, 'Alavere', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9492, 'Alliku', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9493, 'Amari', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9494, 'Anija', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9495, 'Ardu', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9496, 'Arukula', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9497, 'Aruvalla', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9498, 'Assaku', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9499, 'Ellamaa', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9500, 'Haabneeme', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9501, 'Habaja', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9502, 'Haiba', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9503, 'Haljava', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9504, 'Hara', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9505, 'Harju-Risti', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9506, 'Harku', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9507, 'Harkujarve', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9508, 'Harma', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9509, 'Huuru', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9510, 'Ilmandu', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9511, 'Iru', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9512, 'Jagala', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9513, 'Jalgimae', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9514, 'Jarsi', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9515, 'Jarvekula', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9516, 'Jogisoo', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9517, 'Juri', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9518, 'Kaasiku', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9519, 'Kaberneeme', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9520, 'Kahala', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9521, 'Kalesi', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9522, 'Kallavere', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9523, 'Karjakula', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9524, 'Karla', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9525, 'Kasepere', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9526, 'Kasispea', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9527, 'Kehra', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9528, 'Keila', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9529, 'Keila-Joa', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9530, 'Kelvingi', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(9531, 'Kiia', 1063, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, 1), -(9532, 'Kiili', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9533, 'Kiisa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9534, 'Kiiu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9535, 'Klooga', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9536, 'Kloogaranna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9537, 'Kohatu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9538, 'Kolga', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9539, 'Kolga-Aabla', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9540, 'Kolgakula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9541, 'Konnu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9542, 'Kose', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9543, 'Kose-Uuemoisa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9544, 'Kostivere', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9545, 'Krei', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9546, 'Kuivajoe', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9547, 'Kumna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9548, 'Kurtna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9549, 'Kuusalu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9550, 'Laabi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9551, 'Laagri', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9552, 'Lagedi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9553, 'Laitse', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9554, 'Laulasmaa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9555, 'Lehetu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9556, 'Lehola', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9557, 'Lehtmetsa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9558, 'Leppneeme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9559, 'Liikva', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9560, 'Lilli', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9561, 'Lohusalu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9562, 'Loksa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9563, 'Lokuti', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9564, 'Loo', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9565, 'Lubja', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9566, 'Luige', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9567, 'Maardu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9568, 'Maidla', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9569, 'Manniku', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9570, 'Metsakasti', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9571, 'Metsanurme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9572, 'Miiduranna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9573, 'Munalaskme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9574, 'Muraste', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9575, 'Muuga', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9576, 'Nabala', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9577, 'Neeme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9578, 'Ohtu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9579, 'Ojasoo', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9580, 'Oru', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9581, 'Padise', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9582, 'Pae', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9583, 'Paekna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9584, 'Pajupea', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9585, 'Paldiski', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9586, 'Palvere', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9587, 'Parispea', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9588, 'Patika', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9589, 'Paunkula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9590, 'Peetri', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9591, 'Peningi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9592, 'Perila', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9593, 'Pikva', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9594, 'Pillapalu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9595, 'Pringi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9596, 'Puunsi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9597, 'Raasiku', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9598, 'Rae', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9599, 'Randvere', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9600, 'Rannamoisa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9601, 'Ravila', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9602, 'Riisipere', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9603, 'Rohuneeme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9604, 'Roobuka', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9605, 'Ruila', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9606, 'Rummu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9607, 'Saha', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9608, 'Saku', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9609, 'Saue', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9610, 'Saula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9611, 'Saunja', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9612, 'Suurpea', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9613, 'Suurupi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9614, 'Tabasalu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9615, 'Tagadi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9616, 'Tagametsa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9617, 'Tallinn', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9618, 'Tammneeme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9619, 'Tiskre', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9620, 'Todva', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9621, 'Turba', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9622, 'Turisalu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9623, 'Tutermaa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9624, 'Tuula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9625, 'Tuulna', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9626, 'Uksnurme', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9627, 'Ulejoe', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9628, 'Uuri', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9629, 'Uuskula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9630, 'Vaana', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9631, 'Vaana-Joesuu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9632, 'Vaida', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9633, 'Vaidasoo', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9634, 'Valingu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9635, 'Valkla', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9636, 'Vanamoisa', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9637, 'Vardja', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9638, 'Vasalemma', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9639, 'Vaskjala', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9640, 'Vatsla', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9641, 'Veskikula', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9642, 'Vihasoo', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9643, 'Viimsi', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9644, 'Viinistu', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9645, 'Viti', 1063, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9646, 'Emmaste', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9647, 'Jausa', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9648, 'Kaina', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9649, 'Kardla', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9650, 'Korgessaare', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9651, 'Lauka', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9652, 'Lope', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9653, 'Mannamaa', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9654, 'Putkaste', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9655, 'Suuremoisa', 1064, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9656, 'Aa', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9657, 'Alajoe', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9658, 'Aseri', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9659, 'Avinurme', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9660, 'Edise', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9661, 'Erra', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9662, 'Iisaku', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9663, 'Jarve', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9664, 'Johvi', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9665, 'Kahula', 1065, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, 1), -(9666, 'Kiikla', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9667, 'Kivioli', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9668, 'Kohtla-Jarve', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9669, 'Kohtla-Nomme', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9670, 'Konju', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9671, 'Kuremae', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9672, 'Lohusuu', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9673, 'Luganuse', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9674, 'Maetaguse', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9675, 'Narva', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9676, 'Narva-Joesuu', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9677, 'Olgina', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9678, 'Pagari', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9679, 'Puhajoe', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9680, 'Purtse', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9681, 'Pussi', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9682, 'Rannu', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9683, 'Saka', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9684, 'Savala', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9685, 'Sillamae', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9686, 'Sinimae', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9687, 'Soldina', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9688, 'Sompa', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9689, 'Sonda', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9690, 'Tammiku', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9691, 'Toila', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9692, 'Tudulinna', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9693, 'Ulvi', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9694, 'Vaivara', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9695, 'Varja', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9696, 'Vasavere', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9697, 'Voka', 1065, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9698, 'Ahula', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9699, 'Aiamaa', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9700, 'Albu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9701, 'Ambla', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9702, 'Anari', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9703, 'Anna', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9704, 'Aravete', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9705, 'Ervita', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9706, 'Imavere', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9707, 'Janeda', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9708, 'Jarva-Jaani', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9709, 'Jootme', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9710, 'Kaalepi', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9711, 'Kabala', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9712, 'Karavete', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9713, 'Karevere', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9714, 'Karinu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9715, 'Kasukonna', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9716, 'Kirna', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9717, 'Koeru', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9718, 'Koigi', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9719, 'Kolu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9720, 'Kuksema', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9721, 'Laupa', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9722, 'Lehtse', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9723, 'Lokuta', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9724, 'Loola', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9725, 'Muusleri', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9726, 'Oisu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9727, 'Paide', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9728, 'Painurme', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9729, 'Poikva', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9730, 'Reopalu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9731, 'Retla', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9732, 'Roa', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9733, 'Roosna', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9734, 'Roosna-Alliku', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9735, 'Sarevere', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9736, 'Sargvere', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9737, 'Taikse', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9738, 'Tarbja', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9739, 'Turi', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9740, 'Turi-Alliku', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9741, 'Vaatsa', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9742, 'Vahukula', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9743, 'Vao', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9744, 'Viisu', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9745, 'Villevere', 1066, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9746, 'Adavere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9747, 'Esku', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9748, 'Harjanurme', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9749, 'Jogeva', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9750, 'Kaarepere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9751, 'Kalana', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9752, 'Kalme', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9753, 'Kamari', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9754, 'Karde', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9755, 'Kasepaa', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9756, 'Kassinurme', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9757, 'Kudina', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9758, 'Kukita', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9759, 'Kuremaa', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9760, 'Kurista', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9761, 'Lahavere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9762, 'Laiuse', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9763, 'Laiusevalja', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9764, 'Leedi', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9765, 'Lustivere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9766, 'Luua', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9767, 'Maarja', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9768, 'Mallikvere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9769, 'Metsakula', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9770, 'Mohkula', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9771, 'Mustvee', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9772, 'Neanurme', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9773, 'Nova', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9774, 'Omedu', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9775, 'Ouna', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9776, 'Painkula', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9777, 'Pajusi', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9778, 'Palamuse', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9779, 'Pataste', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9780, 'Pauastvere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9781, 'Pikkjarve', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9782, 'Pikknurme', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9783, 'Pisisaare', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9784, 'Poltsamaa', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9785, 'Poora', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9786, 'Puurmani', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9787, 'Raabise', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9788, 'Raja', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9789, 'Saare', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9790, 'Sadala', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9791, 'Sadukula', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9792, 'Siimusti', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9793, 'Tabivere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9794, 'Tahkvere', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9795, 'Tiheda', 1067, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, 1), -(9796, 'Toikvere', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9797, 'Torma', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9798, 'Umbusi', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9799, 'Vagari', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9800, 'Vaiatu', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9801, 'Vaike-Kamari', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9802, 'Vaimastvere', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9803, 'Valgma', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9804, 'Visusti', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9805, 'Voduvere', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9806, 'Vohmanomme', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9807, 'Voisiku', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9808, 'Voldi', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9809, 'Voore', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9810, 'Votikvere', 1067, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9811, 'Haapsalu', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9812, 'Hullo', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9813, 'Joodre', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9814, 'Kirbla', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9815, 'Kirimae', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9816, 'Koluvere', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9817, 'Komsi', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9818, 'Kullamaa', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9819, 'Lihula', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9820, 'Liivi', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9821, 'Linnamae', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9822, 'Martna', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9823, 'Nigula', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9824, 'Palivere', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9825, 'Palli', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9826, 'Panga', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9827, 'Paralepa', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9828, 'Piirsalu', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9829, 'Purksi', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9830, 'Rannakula', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9831, 'Risti', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9832, 'Roude', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9833, 'Sutlepa', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9834, 'Taebla', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9835, 'Tuudi', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9836, 'Uuemoisa', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9837, 'Variku', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9838, 'Vatla', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9839, 'Virtsu', 1068, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9840, 'Aaspere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9841, 'Ama', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9842, 'Arkna', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9843, 'Assamalla', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9844, 'Avanduse', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9845, 'Avispea', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9846, 'Ebavere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9847, 'Eipri', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9848, 'Essu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9849, 'Haljala', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9850, 'Hulja', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9851, 'Imastu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9852, 'Inju', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9853, 'Kadapiku', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9854, 'Kadila', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9855, 'Kadrina', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9856, 'Kakumae', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9857, 'Karitsa', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9858, 'Karu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9859, 'Kasmu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9860, 'Kihlevere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9861, 'Kiku', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9862, 'Kiltsi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9863, 'Kohala', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9864, 'Kunda', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9865, 'Kuti', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9866, 'Laekvere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9867, 'Lasila', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9868, 'Lepna', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9869, 'Levala', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9870, 'Liigvalla', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9871, 'Modriku', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9872, 'Moe', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9873, 'Moora', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9874, 'Napi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9875, 'Paasvere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9876, 'Pajusti', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9877, 'Pandivere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9878, 'Piira', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9879, 'Pikevere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9880, 'Podrangu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9881, 'Podruse', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9882, 'Porkuni', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9883, 'Rahkla', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9884, 'Rakke', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9885, 'Rakvere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9886, 'Ridakula', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9887, 'Roela', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9888, 'Roodevalja', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9889, 'Saase', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9890, 'Salda', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9891, 'Salla', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9892, 'Simuna', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9893, 'Someru', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9894, 'Taaravainu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9895, 'Tamsalu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9896, 'Tapa', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9897, 'Torremae', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9898, 'Triigi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9899, 'Tudu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9900, 'Ubja', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9901, 'Udriku', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9902, 'Uhtna', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9903, 'Undla', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9904, 'Ussimae', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9905, 'Uudekula', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9906, 'Vaekula', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9907, 'Vahakulmu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9908, 'Vaike-Maarja', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9909, 'Vajangu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9910, 'Veltsi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9911, 'Venevere', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9912, 'Vergi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9913, 'Vetiku', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9914, 'Vihula', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9915, 'Viitna', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9916, 'Vinni', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9917, 'Viru-Jaagupi', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9918, 'Viru-Kabala', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9919, 'Viru-Nigula', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9920, 'Vohnja', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9921, 'Vosu', 1069, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, 1), -(9922, 'Vosupere', 1069, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9923, 'Ahaste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9924, 'Aluste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9925, 'Are', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9926, 'Arumetsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9927, 'Audru', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9928, 'Eametsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9929, 'Haademeeste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9930, 'Halinga', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9931, 'Ikla', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9932, 'Ilvese', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9933, 'Jaamakula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9934, 'Jaarja', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9935, 'Joesuu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9936, 'Joopre', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9937, 'Kaansoo', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9938, 'Kabli', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9939, 'Kadjaste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9940, 'Kaisma', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9941, 'Kalita', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9942, 'Kanakula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9943, 'Kergu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9944, 'Kihlepa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9945, 'Kilingi-Nomme', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9946, 'Kilksama', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9947, 'Koima', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9948, 'Koonga', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9949, 'Krundikula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9950, 'Laadi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9951, 'Langerma', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9952, 'Lavassaare', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9953, 'Leipste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9954, 'Lemmetsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9955, 'Lemsi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9956, 'Libatse', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9957, 'Linakula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9958, 'Lindi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9959, 'Liu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9960, 'Malda', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9961, 'Mannikuste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9962, 'Massiaru', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9963, 'Metsaaare', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9964, 'Metsapoole', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9965, 'Moisakula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9966, 'Muraka', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9967, 'Niidu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9968, 'Nurme', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9969, 'Oara', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9970, 'Oidrema', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9971, 'Paikuse', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9972, 'Papsaare', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9973, 'Parnjoe', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9974, 'Parnu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9975, 'Parnu-Jaagupi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9976, 'Penu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9977, 'Piistaoja', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9978, 'Pohara', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9979, 'Poldeotsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9980, 'Pootsi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9981, 'Pulli', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9982, 'Rannametsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9983, 'Ratsepa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9984, 'Reiu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9985, 'Ridalepa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9986, 'Rootsikula', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9987, 'Saarde', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9988, 'Sauga', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9989, 'Seliste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9990, 'Selja', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9991, 'Seljametsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9992, 'Silla', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9993, 'Sindi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9994, 'Soeva', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9995, 'Soometsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9996, 'Suigu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9997, 'Surju', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9998, 'Suurejoe', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(9999, 'Taali', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10000, 'Tahkuranna', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10001, 'Tali', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10002, 'Tammiste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10003, 'Tammuru', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10004, 'Tihemetsa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10005, 'Tolla', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10006, 'Tootsi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10007, 'Tori', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10008, 'Tostamaa', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10009, 'Tousi', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10010, 'Treimani', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10011, 'Urge', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10012, 'Uulu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10013, 'Vahenurme', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10014, 'Vaki', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10015, 'Vandra', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10016, 'Varbla', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10017, 'Veelikse', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10018, 'Vihtra', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10019, 'Voidu', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10020, 'Voiste', 1070, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10021, 'Aarna', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10022, 'Ahja', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10023, 'Erastvere', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10024, 'Himma', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10025, 'Himmaste', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10026, 'Holvandi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10027, 'Ihamaru', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10028, 'Jaanimoisa', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10029, 'Kanepi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10030, 'Karilatsi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10031, 'Karsa', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10032, 'Karste', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10033, 'Kauksi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10034, 'Kiidjarve', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10035, 'Kostrimae', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10036, 'Krootuse', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10037, 'Leevaku', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10038, 'Leevi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10039, 'Leevijoe', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10040, 'Linte', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10041, 'Lootvina', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10042, 'Maaritsa', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10043, 'Mammaste', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10044, 'Metste', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10045, 'Mikitamae', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10046, 'Mooste', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10047, 'Naha', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10048, 'Orava', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10049, 'Pahtpaa', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10050, 'Partsi', 1071, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, 1), -(10051, 'Peri', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10052, 'Piigandi', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10053, 'Polgaste', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10054, 'Polva', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10055, 'Prangli', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10056, 'Puuri', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10057, 'Raadama', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10058, 'Rahumae', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10059, 'Raigla', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10060, 'Rapina', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10061, 'Rasina', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10062, 'Ristipalo', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10063, 'Rosma', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10064, 'Ruusa', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10065, 'Saverna', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10066, 'Sillapaa', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10067, 'Soodoma', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10068, 'Suurkula', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10069, 'Taevaskoja', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10070, 'Tannassilma', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10071, 'Tilsi', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10072, 'Treski', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10073, 'Vaike-Rosna', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10074, 'Valgjarve', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10075, 'Vana-Koiola', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10076, 'Varska', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10077, 'Vastse-Kuuste', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10078, 'Veriora', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10079, 'Viluste', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10080, 'Voopsu', 1071, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10081, 'Aespa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10082, 'Alu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10083, 'Eidapere', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10084, 'Hageri', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10085, 'Hagudi', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10086, 'Haimre', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10087, 'Hertu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10088, 'Iira', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10089, 'Ingliste', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10090, 'Jarlepa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10091, 'Jarvakandi', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10092, 'Juuru', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10093, 'Kaerepere', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10094, 'Kaiu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10095, 'Kalbu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10096, 'Kasti', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10097, 'Keava', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10098, 'Kehtna', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10099, 'Kivi-Vigala', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10100, 'Kodila', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10101, 'Kohila', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10102, 'Kuimetsa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10103, 'Kuusiku', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10104, 'Laukna', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10105, 'Lelle', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10106, 'Lipa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10107, 'Lohu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10108, 'Marjamaa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10109, 'Masti', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10110, 'Moisamaa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10111, 'Naravere', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10112, 'Orgita', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10113, 'Paardu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10114, 'Pahkla', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10115, 'Pihali', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10116, 'Pirgu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10117, 'Prillimae', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10118, 'Purila', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10119, 'Purku', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10120, 'Rabivere', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10121, 'Raikkula', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10122, 'Rangu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10123, 'Rapla', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10124, 'Salutaguse', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10125, 'Sipa', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10126, 'Sotke', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10127, 'Sutlema', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10128, 'Tamme', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10129, 'Teenuse', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10130, 'Vahastu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10131, 'Valgu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10132, 'Valtu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10133, 'Vana-Kaiu', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10134, 'Vana-Vigala', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10135, 'Varbola', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10136, 'Vilivere', 1072, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10137, 'Arandi', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10138, 'Aste', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10139, 'Eikla', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10140, 'Hellamaa', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10141, 'Kao', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10142, 'Karja', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10143, 'Kihelkonna', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10144, 'Koimla', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10145, 'Koljala', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10146, 'Korkkula', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10147, 'Korkvere', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10148, 'Kudjape', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10149, 'Kuressaare', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10150, 'Laatsa', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10151, 'Lahekula', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10152, 'Laimjala', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10153, 'Leisi', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10154, 'Liiva', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10155, 'Lumanda', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10156, 'Metskula', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10157, 'Mustjala', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10158, 'Nasva', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10159, 'Nommkula', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10160, 'Orissaare', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10161, 'Parsama', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10162, 'Pihtla', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10163, 'Sakla', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10164, 'Salme', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10165, 'Sandla', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10166, 'Tagavere', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10167, 'Tornimae', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10168, 'Valjala', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10169, 'Vohma', 1073, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10170, 'Aardla', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(10171, 'Aksi', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10172, 'Alasoo', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10173, 'Alatskivi', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10174, 'Annikoru', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10175, 'Aravu', 1074, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, 1), -(10176, 'Elva', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10177, 'Erala', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10178, 'Ervu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10179, 'Haage', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10180, 'Haaslava', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10181, 'Ignase', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10182, 'Illi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10183, 'Ilmatsalu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10184, 'Kaagvere', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10185, 'Kaardi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10186, 'Kaarlijarve', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10187, 'Kallaste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10188, 'Kambja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10189, 'Kandikula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10190, 'Karkna', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10191, 'Kavastu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10192, 'Kirepi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10193, 'Kodukula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10194, 'Kokora', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10195, 'Kolkja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10196, 'Konguta', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10197, 'Koosa', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10198, 'Koruste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10199, 'Korvekula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10200, 'Kulitse', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10201, 'Kurekula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10202, 'Laaniste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10203, 'Laeva', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10204, 'Lahte', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10205, 'Lalli', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10206, 'Lapetukme', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10207, 'Lemmatsi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10208, 'Lohkva', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10209, 'Lossimae', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10210, 'Luke', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10211, 'Luunja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10212, 'Maksa', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10213, 'Maramaa', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10214, 'Marja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10215, 'Meeksi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10216, 'Meeri', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10217, 'Mehikoorma', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10218, 'Melliste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10219, 'Metsakivi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10220, 'Metsalaane', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10221, 'Moisanurme', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10222, 'Nina', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10223, 'Nogiaru', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10224, 'Noo', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10225, 'Pilka', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10226, 'Poka', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10227, 'Pooritsa', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10228, 'Puhja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10229, 'Rahinge', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10230, 'Raigaste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10231, 'Ramsi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10232, 'Rani', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10233, 'Rebase', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10234, 'Reola', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10235, 'Rohu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10236, 'Roiu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10237, 'Rongu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10238, 'Saadjarve', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10239, 'Sinikula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10240, 'Sirgu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10241, 'Soinaste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10242, 'Sojamaa', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10243, 'Tahtvere', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10244, 'Tammistu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10245, 'Tartu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10246, 'Teedla', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10247, 'Tilga', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10248, 'Toravere', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10249, 'Torvandi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10250, 'Tuki', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10251, 'Uderna', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10252, 'Uhti', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10253, 'Ulenurme', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10254, 'Ulila', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10255, 'Unikula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10256, 'Vahi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10257, 'Vaike-Rakke', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10258, 'Valguta', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10259, 'Vana-Kuuste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10260, 'Vara', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10261, 'Varnja', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10262, 'Vasula', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10263, 'Vedu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10264, 'Vesneri', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10265, 'Vissi', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10266, 'Voibla', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10267, 'Voika', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10268, 'Vonnu', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10269, 'Voopste', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10270, 'Vorbuse', 1074, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10271, 'Aakre', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10272, 'Ala', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10273, 'Hargla', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10274, 'Hellenurme', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10275, 'Helme', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10276, 'Hummuli', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10277, 'Jeti', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10278, 'Jogeveste', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10279, 'Kaagjarve', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10280, 'Karjatnurme', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10281, 'Karula', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10282, 'Keeni', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10283, 'Koikkula', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10284, 'Laanemetsa', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10285, 'Laatre', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10286, 'Laukula', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10287, 'Leebiku', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10288, 'Linna', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10289, 'Lossikula', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10290, 'Lullemae', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10291, 'Moldre', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10292, 'Nouni', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10293, 'Nupli', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10294, 'Oruste', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10295, 'Otepaa', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10296, 'Paidla', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10297, 'Paju', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10298, 'Palupera', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10299, 'Patkula', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10300, 'Piiri', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10301, 'Pikasilla', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10302, 'Pilkuse', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10303, 'Puhajarve', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10304, 'Puka', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10305, 'Restu', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10306, 'Riidaja', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10307, 'Sangaste', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10308, 'Sihva', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10309, 'Sooru', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10310, 'Taagepera', 1075, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, 1), -(10311, 'Tagula', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10312, 'Taheva', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10313, 'Tiidu', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10314, 'Tolliste', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10315, 'Torva', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10316, 'Tsirguliina', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10317, 'Valga', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10318, 'Vana-Otepaa', 1075, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10319, 'Abja-Paluoja', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10320, 'Abja-Vanamoisa', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10321, 'Aidu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10322, 'Angi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10323, 'Anikatsi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10324, 'Arikula', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10325, 'Halliste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10326, 'Heimtali', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10327, 'Holstre', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10328, 'Intsu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10329, 'Jamejala', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10330, 'Jaska', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10331, 'Kaavere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10332, 'Kamara', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10333, 'Karksi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10334, 'Karksi-Nuia', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10335, 'Karstna', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10336, 'Kobruvere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10337, 'Koidama', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10338, 'Koksvere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10339, 'Kolga-Jaani', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10340, 'Koo', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10341, 'Kopu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10342, 'Kulla', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10343, 'Lalsi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10344, 'Leie', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10345, 'Lohavere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10346, 'Loodi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10347, 'Maeltkula', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10348, 'Matapera', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10349, 'Meleski', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10350, 'Monnaste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10351, 'Mustivere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10352, 'Mustla', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10353, 'Navesti', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10354, 'Odiste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10355, 'Olustvere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10356, 'Pahuvere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10357, 'Paistu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10358, 'Parakula', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10359, 'Pari', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10360, 'Parsti', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10361, 'Peetrimoisa', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10362, 'Pilistvere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10363, 'Pinska', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10364, 'Polde', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10365, 'Polli', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10366, 'Puiatu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10367, 'Reegoldi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10368, 'Saarepeedi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10369, 'Savikoti', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10370, 'Sinialliku', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10371, 'Soe', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10372, 'Soomevere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10373, 'Sudiste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10374, 'Suislepa', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10375, 'Sultsi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10376, 'Supsi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10377, 'Surgavere', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10378, 'Suure-Jaani', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10379, 'Taaksi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10380, 'Tanassilma', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10381, 'Tinnikuru', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10382, 'Tohvri', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10383, 'Tuhalaane', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10384, 'Tusti', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10385, 'Ulde', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10386, 'Ulensi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10387, 'Uusna', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10388, 'Valgita', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10389, 'Valma', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10390, 'Valuste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10391, 'Vana-Kariste', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10392, 'Vana-Voidu', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10393, 'Vardi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10394, 'Vastemoisa', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10395, 'Verilaske', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10396, 'Veskimae', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10397, 'Viiratsi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10398, 'Viljandi', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10399, 'Villa', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10400, 'Voivaku', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10401, 'Vooru', 1076, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10402, 'Antsla', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10403, 'Haanja', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10404, 'Jarvere', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10405, 'Kaapa', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10406, 'Kirumpaa', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10407, 'Kobela', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10408, 'Kollino', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10409, 'Kraavi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10410, 'Krabi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10411, 'Kulaoru', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10412, 'Kuldre', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10413, 'Kuutsi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10414, 'Lasva', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10415, 'Loosu', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10416, 'Lusti', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10417, 'Meegomae', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10418, 'Meremae', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10419, 'Misso', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10420, 'Moniste', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10421, 'Navi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10422, 'Nursi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10423, 'Obinitsa', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10424, 'Osula', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10425, 'Otsa', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10426, 'Parksepa', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10427, 'Puiga', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10428, 'Raiste', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10429, 'Rimmi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10430, 'Rouge', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10431, 'Ruusmae', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10432, 'Saru', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10433, 'Somerpalu', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10434, 'Sulbi', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10435, 'Taberlaane', 1077, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, 1), -(10436, 'Tagakula', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10437, 'Tsolgo', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10438, 'Tsooru', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10439, 'Urvaste', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10440, 'Uue-Antsla', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10441, 'Vaabina', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10442, 'Vagula', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10443, 'Vaimela', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10444, 'Vana-Antsla', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10445, 'Vana-Roosa', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10446, 'Vana-Vastseliina', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10447, 'Varstu', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10448, 'Vastseliina', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10449, 'Verijarve', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10450, 'Viitina', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10451, 'Viitka', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10452, 'Visela', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10453, 'Voru', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10454, 'Vorumoisa', 1077, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10455, 'Asayita', 1079, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10456, 'Awash', 1079, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10457, 'Dubti', 1079, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10458, 'Gewane', 1079, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10459, 'Addi Ark ay', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10460, 'Addis Alem', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10461, 'Addis Zemen', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10462, 'Adet', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10463, 'Bahir Dar', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10464, 'Bati', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10465, 'Bichena', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10466, 'Bure', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10467, 'Chagni', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10468, 'Dabat', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10469, 'Dangla', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10470, 'Debark', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10471, 'Debre Birhan', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10472, 'Debre Mark os', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10473, 'Debre Sina', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10474, 'Debre Tabor', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10475, 'Debre Werk', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10476, 'Dejen', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10477, 'Dese', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10478, 'Finote Selam', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10479, 'Gondar', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10480, 'K obo', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10481, 'Kembolcha', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10482, 'Kemise', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10483, 'Lalibela', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10484, 'Mott a', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10485, 'Nefas Mewcha', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10486, 'Sek ot a', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10487, 'Shewa Robit', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10488, 'Weldiya', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10489, 'Were Ilu', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10490, 'Werota', 1080, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10491, 'Asosa', 1081, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10492, 'Dire Dawa', 1082, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10493, 'Gambela', 1083, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10494, 'Harer', 1084, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10495, 'Jigjiga', 1085, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10496, ' Alem Maya', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10497, 'Abomsa', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10498, 'Agaro', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10499, 'Asasa', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10500, 'Asbe Teferi', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10501, 'Assela', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10502, 'Bedele', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10503, 'Bedesa', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10504, 'Burayu', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10505, 'Debre Zeyit', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10506, 'Deder', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10507, 'Dembi Dolo', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10508, 'Dodola', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10509, 'Fiche', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10510, 'Gebre Guracha', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10511, 'Gedo', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10512, 'Gelemso', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10513, 'Gimbi', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10514, 'Ginch i', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10515, 'Ginir', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10516, 'Giyon', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10517, 'Goba', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10518, 'Gore', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10519, 'Guder', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10520, 'Hagere Hiywet', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10521, 'Hagere Maryam', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10522, 'Hirna', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10523, 'Holeta Genet', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10524, 'Huruta', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10525, 'Jimma', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10526, 'Kibre Mengist', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10527, 'Kofele', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10528, 'Mega', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10529, 'Mek i', 1087, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, 1), -(10530, 'Mendi', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10531, 'Metehara', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10532, 'Metu', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10533, 'Mojo', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10534, 'Moyale', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10535, 'Nazret', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10536, 'Nedjo', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10537, 'Negele', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10538, 'Nek emte', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10539, 'Robe', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10540, 'Sebeta', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10541, 'Sendafa', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10542, 'Shakiso', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10543, 'Shambu', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10544, 'Shashemenne', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10545, 'Sheh Hussen', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10546, 'Sire', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10547, 'Tulu Bolo', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10548, 'Welench iti', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10549, 'Welk it e', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10550, 'Wonji', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10551, 'Yabelo', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10552, 'Ziway', 1087, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10553, 'Bircot', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10554, 'Degeh Bur', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10555, 'Dollo Odo', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10556, 'Imi', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10557, 'Jijiga', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10558, 'Werder', 1088, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10559, 'Alaba Kulito', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10560, 'Arba Minch', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10561, 'Areka', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10562, 'Awassa', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10563, 'Boditi', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10564, 'Bonga', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10565, 'Butajira', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10566, 'Ch ench a', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10567, 'Dilla', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10568, 'Gidole', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10569, 'Hossa ina', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10570, 'Jinka', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10571, 'Leku', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10572, 'Mizan Teferi', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10573, 'Sawla', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10574, 'Soddo', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10575, 'Teppi', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10576, 'Wendo', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10577, 'Yirga Alem', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10578, 'Yirga Ch efe', 1089, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10579, 'Abiy Adi', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10580, 'Addigrat', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10581, 'Adwa', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10582, 'Aksum', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10583, 'Alamat a', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10584, 'Endasilasie', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10585, 'Hagere Selam', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10586, 'Himora', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10587, 'Korem', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10588, 'Maych ew', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10589, 'Mek ele', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10590, 'Mekele', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10591, 'Wik ro', 1090, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10592, 'Hvannasund', 1093, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10593, 'Klaksvik', 1093, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10594, 'Husavik', 1096, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10595, 'Sands', 1096, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10596, 'Skalavik', 1096, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10597, 'Skopun', 1096, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10598, 'Skuvoy', 1096, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10599, 'Haldarsvik', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10600, 'Hests', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10601, 'Hosvik', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10602, 'Hvalvik', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10603, 'Kirkjubo', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10604, 'Kollafjar ', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10605, 'Kvivik', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10606, 'Nolsoy', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10607, 'Saksun', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10608, 'Torshavn', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10609, 'Vestmanna', 1097, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, 1), -(10610, 'Biggjar', 1101, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10611, 'Midvags', 1101, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10612, 'Mykines', 1101, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10613, 'Sandavags', 1101, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10614, 'Sorvags', 1101, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10615, 'Deuba', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10616, 'Korovou', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10617, 'Lami', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10618, 'Namosi', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10619, 'Nausori', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10620, 'Navua', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10621, 'Suva', 1102, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10622, 'Levuka', 140, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10623, 'Malhaha', 140, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10624, 'Tubou', 140, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10625, 'Vunisea', 140, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10626, 'Korokade', 1103, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10627, 'Labasa', 1103, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10628, 'Savusavu', 1103, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10629, 'Ba', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10630, 'Lautoka', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10631, 'Nadi', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10632, 'Rakiraki', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10633, 'Sigatoka', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10634, 'Tavua', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10635, 'Vatukoula', 143, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10636, 'Maarianhamina', 1105, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10637, 'Imatra', 1106, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10638, 'Joutseno', 1106, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10639, 'Lappeenranta', 1106, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10640, 'Hyllykallio', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10641, 'Ilmajoki', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10642, 'Kauhajoki', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10643, 'Kurikka', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10644, 'Lapua', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10645, 'Seinajoki', 1107, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10646, 'Mikkeli', 1108, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10647, 'Savonlinna', 1108, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10648, 'Loviisa', 1111, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10649, 'Orimattila', 1111, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10650, 'Porvoo', 1111, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10651, 'Kajaani', 1112, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10652, 'Forssa', 1113, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10653, 'Hameenlinna', 1113, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10654, 'Janakkala', 1113, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10655, 'Riihimaki', 1113, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10656, 'Kokkola', 1114, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10657, 'Aanekoski', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10658, 'Jamsa', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10659, 'Jyvaskyla', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10660, 'Keuruu', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10661, 'Laukaa', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10662, 'Lieto', 1115, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10663, 'Anjalankoski', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10664, 'Hamina', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10665, 'Kotka', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10666, 'Kouvola', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10667, 'Kuusankoski', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10668, 'Valkeala', 1116, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, 1), -(10669, 'Vehkalahti', 1116, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10670, 'Kemi', 1118, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10671, 'Kemijarvi', 1118, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10672, 'Rovaniemi', 1118, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10673, 'Sonka', 1118, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10674, 'Tornio', 1118, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10675, 'Jakobstad', 1120, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10676, 'Oulunsalo', 1120, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10677, 'Heinola', 1122, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10678, 'Hollola', 1122, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10679, 'Lahti', 1122, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10680, 'Nastola', 1122, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10681, 'Kangasala', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10682, 'Lempaala', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10683, 'Nokia', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10684, 'Pirkkala', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10685, 'Sastamala', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10686, 'Tampere', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10687, 'Valkeakoski', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10688, 'Ylojarvi', 1123, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10689, 'Kristiinankaupunki', 1124, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10690, 'Mustasaari', 1124, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10691, 'Pietarsaari', 1124, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10692, 'Uusikarlepyy', 1124, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10693, 'Vaasa', 1124, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10694, 'Joensuu', 1125, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10695, 'Lieksa', 1125, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10696, 'Haukipudas', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10697, 'Kempele', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10698, 'Kuusamo', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10699, 'Muhos', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10700, 'Nivala', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10701, 'Oulainen', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10702, 'Oulu', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10703, 'Raahe', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10704, 'Ylivieska', 1126, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10705, 'Iisalmi', 1127, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10706, 'Kuopio', 1127, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10707, 'Sillinjarvi', 1127, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10708, 'Varkaus', 1127, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10709, 'Saarijarvi', 1128, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10710, 'Eura', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10711, 'Eurajoki', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10712, 'Harjavalta', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10713, 'Huittinen', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10714, 'Kankaanpaa', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10715, 'Kokemaki', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10716, 'Lappi', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10717, 'Nakkila', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10718, 'Noormarkku', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10719, 'Pori', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10720, 'Rauma', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10721, 'Sakyla', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10722, 'Ulvila', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10723, 'Vammala', 1129, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10724, 'Espoo', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10725, 'Hanko', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10726, 'Helsinki', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10727, 'Hyvinkaa', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10728, 'Jarvenpaa', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10729, 'Kauniainen', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10730, 'Kerava', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10731, 'Kirkkonummi', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10732, 'Lohja', 1133, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, 1), -(10733, 'Mantsala', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10734, 'Nurmijarvi', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10735, 'Sipoo', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10736, 'Tammisaari', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10737, 'Tuusula', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10738, 'Vantaa', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10739, 'Vihti', 1133, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10740, 'Kaarina', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10741, 'Naantali', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10742, 'Parainen', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10743, 'Raisio', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10744, 'Salo', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10745, 'Turku', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10746, 'Uusikaupunki', 1134, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10747, 'Amberieu-en-Bugey', 1135, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10748, 'Bellegarde-sur-Valserine', 1135, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10749, 'Bourg-en-Bresse', 1135, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10750, 'Oyonnax', 1135, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10751, 'Chateau-Thierry', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10752, 'Chauny', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10753, 'Hirson', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10754, 'Laon', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10755, 'Saint-Quentin', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10756, 'Soissons', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10757, 'Strassbourg', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10758, 'Tergnier', 1136, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10759, 'Cusset', 1138, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10760, 'Montlucon', 1138, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10761, 'Moulins', 1138, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10762, 'Vichy', 1138, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10763, 'Yzeure', 1138, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10764, 'Antibes', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10765, 'Beausoleil', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10766, 'Cagnes-sur-Mer', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10767, 'Cannes', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10768, 'Carros', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10769, 'Grasse', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10770, 'La Trinite', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10771, 'Le Cannet', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10772, 'Mandelieu-la-Napoule', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10773, 'Menton', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10774, 'Mougins', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10775, 'Nice', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10776, 'Roquebrune-Cap-Martin', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10777, 'Saint-Laurent-du-Var', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10778, 'Valbonne', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10779, 'Vallauris', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10780, 'Vence', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10781, 'Villeneuve-Loubet', 1140, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10782, 'Digne-les-Bains', 1141, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10783, 'Manosque', 1141, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10784, 'Adainville', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10785, 'Alby-sur-Cheran', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10786, 'Aubervilliers', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10787, 'Auterive', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10788, 'Baillet', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10789, 'Beaune', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10790, 'Beauzelle', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10791, 'Bonnet De Mure', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10792, 'Bormes-les-Mimosas', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10793, 'Brindas', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10794, 'Burlats', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10795, 'Buzancais', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10796, 'Candillargues', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10797, 'Carry-le-Rouet', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10798, 'Cassis', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(10799, 'Cessenon-Sur-Orb', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10800, 'Chanac', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10801, 'Chevigny', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10802, 'Cogolin', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10803, 'Collioure', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10804, 'Cremieu', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10805, 'Drulingen', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10806, 'Ecouen', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10807, 'Eschau', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10808, 'Feignies', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10809, 'Ferus', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10810, 'Fourqueux', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10811, 'Franqueville', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10812, 'Gignac', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10813, 'Gravigny', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10814, 'Hangenbieten', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10815, 'Hunspach', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10816, 'Kilstett', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10817, 'La Chevroliere', 1142, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, 1), -(10818, 'La-Fare-Les-Oliviers', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10819, 'Lanvellec', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10820, 'Le Faget', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10821, 'Lesigny', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10822, 'Lesquin', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10823, 'Limonest', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10824, 'Messein', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10825, 'Morgat', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10826, 'Mundolsheim', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10827, 'Nantiat', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10828, 'Niederbronn-les-Bain', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10829, 'Nimes', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10830, 'Opoul', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10831, 'Pance', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10832, 'Peronne', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10833, 'Ploneour Lanvern', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10834, 'Realmont', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10835, 'Reichstett', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10836, 'Saint Aubin', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10837, 'Saint Christophe', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10838, 'Saint Martin d’Here', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10839, 'Saint-Berthevin', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10840, 'Saint-Cergues', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10841, 'Sancerre', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10842, 'Sarzeau', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10843, 'Seltz', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10844, 'Seyssins', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10845, 'Souffelweyersheim', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10846, 'Vireux-Molhain', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10847, 'Voves', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10848, 'Wambrechies', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10849, 'Wervocq Sud', 1142, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10850, 'Abzac', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10851, 'Bidart', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10852, 'Biganos', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10853, 'Buzet-sur-Baise', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10854, 'Coursac', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10855, 'Hasparren', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10856, 'Landiras', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10857, 'Le Haillan', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10858, 'Ledat', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10859, 'Martillac', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10860, 'Puyoo', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10861, 'Saint-Jean-dIllac', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10862, 'Seignosse', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10863, 'Tresses', 1143, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10864, 'Annonay', 1144, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10865, 'Aubenas', 1144, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10866, 'Guilherand-Granges', 1144, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10867, 'Privas', 1144, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10868, 'Tournon-sur-Rhone', 1144, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10869, 'Charleville-Mezieres', 1145, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10870, 'Les Hautes-Rivieres', 1145, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10871, 'Revin', 1145, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10872, 'Sedan', 1145, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10873, 'Foix', 1146, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10874, 'Pamier', 1146, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10875, 'Bar-sur-Seine', 1147, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10876, 'Romilly-sur-Seine', 1147, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10877, 'Saint-Andre-les-Vergers', 1147, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10878, 'Sainte-Savine', 1147, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10879, 'Troyes', 1147, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10880, 'Carcassonne', 1148, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10881, 'Castelnaudary', 1148, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10882, 'Limoux', 1148, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10883, 'Narbonne', 1148, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10884, 'Ambert', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10885, 'Creuzier-le-Vieux', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10886, 'Peschadoires', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10887, 'Riotord', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10888, 'Saint-Pal-de-Chalencon', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10889, 'Saint-Romain-Lachalm', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10890, 'Saint-Vidal', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10891, 'Sainte-Sigolene', 1149, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10892, 'Millau', 1150, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10893, 'Onet-le-Chataeu', 1150, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10894, 'Rodez', 1150, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10895, 'Villefranche-de-Rouergue', 1150, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10896, 'Bischheim', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10897, 'Bischwiller', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10898, 'Haguenau', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10899, 'Hoenheim', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10900, 'Illkirch-Graffenstaden', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10901, 'Lingolsheim', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10902, 'Obernai', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10903, 'Ostwald', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10904, 'Saverne', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10905, 'Schiltigheim', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10906, 'Selestat', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10907, 'Strasbourg', 1151, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10908, 'Deauville', 1152, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10909, 'Aix-en-Provence', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10910, 'Allauch', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10911, 'Arles', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10912, 'Aubagne', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10913, 'Berre-l Etang', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10914, 'Bouc-Bel-Air', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10915, 'Chateauneuf-les-Martigues', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10916, 'Chateaurenard', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10917, 'Fos-sur-Mer', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10918, 'Gardanne', 1153, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, 1), -(10919, 'Istres', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10920, 'La Ciotat', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10921, 'Les Pennes-Mirabeau', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10922, 'Maillane', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10923, 'Marignane', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10924, 'Marseille', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10925, 'Martigues', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10926, 'Miramas', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10927, 'Plan-de-Cuques', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10928, 'Port-de-Bouc', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10929, 'Rognac', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10930, 'Saint-Martin-de-Crau', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10931, 'Saint-Remy-de-Provence', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10932, 'Salon-de-Provence', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10933, 'Septemes-les-Vallons', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10934, 'Tarascon', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10935, 'Vitrolles', 1153, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10936, 'Migennes', 1154, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10937, 'Javene', 1155, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10938, 'Plouha', 1155, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10939, 'Brehan', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10940, 'Broons', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10941, 'Guipry', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10942, 'Miniac-Morvan', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10943, 'Ploudaniel', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10944, 'Vern-sur-Seiche', 1156, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10945, 'Aillant-sur-Tholon', 1157, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10946, 'Caen', 1158, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10947, 'Herouville-Saint-Clair', 1158, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10948, 'Lisieux', 1158, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10949, 'Mondeville', 1158, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10950, 'Vire', 1158, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10951, 'Aurillac', 1159, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10952, 'Brumath', 1160, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10953, 'Courtaboeuf', 1160, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10954, 'Iregny', 1160, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10955, 'cedex', 1160, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10956, 'Azay-le-Rideau', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10957, 'Chevillon-sur-Huillard', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10958, 'Cloyes-sur-le-Loir', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10959, 'Gellainville', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10960, 'La Chaussse-Saint-Victor', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10961, 'La Ville-aux-Clercs', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10962, 'Ladon', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10963, 'Le Chatelet', 649, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10964, 'Angouleme', 1161, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10965, 'Cognac', 1161, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10966, 'Lencloitre', 1161, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10967, 'Soyaux', 1161, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10968, 'La Rochelle', 1162, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10969, 'Royan', 1162, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10970, 'Saintes', 1162, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10971, 'Bourges', 1163, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10972, 'Saint-Amand-Montrond', 1163, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10973, 'Saint-Doulchard', 1163, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10974, 'Vierzon', 1163, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10975, 'Brive-la-Gaillarde', 1164, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10976, 'Tulle', 1164, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10977, 'Ussel', 1164, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10978, 'Ajaccio', 1165, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10979, 'Porto-Vecchio', 1165, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10980, 'Chenove', 1166, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10981, 'Dijon', 1166, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10982, 'Quetigny', 1166, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10983, 'Talant', 1166, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10984, 'Dinan', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10985, 'Lamballe', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10986, 'Lannion', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10987, 'Loudeac', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10988, 'Plerin', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10989, 'Ploufragan', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10990, 'Saint-Brieuc', 1167, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10991, 'Gueret', 1168, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, 1), -(10992, 'Crolles', 1169, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10993, 'Bressuire', 1170, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10994, 'Niort', 1170, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10995, 'Parthenay', 1170, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10996, 'Thouars', 1170, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10997, 'Bergerac', 1171, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10998, 'Perigueux', 1171, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(10999, 'Sarlat-la-Caneda', 1171, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11000, 'Audincourt', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11001, 'Besancon', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11002, 'Beure', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11003, 'Montbeliard', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11004, 'Pontarlier', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11005, 'Valentigney', 1172, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11006, 'Bourg-les-Valence', 1173, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11007, 'Montelimar', 1173, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11008, 'Pierrelatte', 1173, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11009, 'Romans-sur-Isere', 1173, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11010, 'Valence', 1173, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11011, 'Athis-Mons', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11012, 'Bretigny-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11013, 'Brunoy', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11014, 'Bures-sur-Yvette', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11015, 'Chilly-Mazarin', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11016, 'Corbeil-Essonnes', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11017, 'Courcouronnes', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11018, 'Dourdan', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11019, 'Draveil', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11020, 'Epinay-sous-Senart', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11021, 'Epinay-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11022, 'Etampes', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11023, 'Evry', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11024, 'Fleury-Merogis', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11025, 'Gif-sur-Yvette', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11026, 'Grigny', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11027, 'Igny', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11028, 'Juvisy-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11029, 'Les Ulis', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11030, 'Longjumeau', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11031, 'Massy', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11032, 'Mennecy', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11033, 'Montgeron', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11034, 'Morangis', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11035, 'Morsang-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11036, 'Orsay', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11037, 'Palaiseau', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11038, 'Ris-Orangis', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11039, 'Saint-Michel-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11040, 'Sainte-Genevieve-des-Bois', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11041, 'Savigny-sur-Orge', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11042, 'Verrieres-le-Buisson', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11043, 'Vigneux-sur-Seine', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11044, 'Villebon-sur-Yvette', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11045, 'Viry-Chatillon', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11046, 'Yerres', 1174, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11047, 'Bernay', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11048, 'Evreux', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11049, 'Gisors', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11050, 'Louviers', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11051, 'Pont-Audemer', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11052, 'Val-de-Reuil', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11053, 'Vernon', 1175, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11054, 'Chartres', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11055, 'Chateaudun', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11056, 'Dreux', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11057, 'Luce', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11058, 'Mainvillier', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11059, 'Nogent-le-Rotrou', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11060, 'Vernouillet', 1176, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11061, 'Feucherolles', 1177, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11062, 'Concarneau', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11063, 'Douarnenez', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11064, 'Guipavas', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11065, 'Landerneau', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11066, 'Le Relecq-Kerhoun', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11067, 'Morlaix', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11068, 'Plougastel-Daoulas', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11069, 'Plouzane', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11070, 'Quimper', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11071, 'Quimperle', 1178, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11072, 'Charquemont', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11073, 'Chemaudin', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11074, 'Pelousey', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11075, 'Perrigny', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11076, 'Pirey', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11077, 'Villers-le-Lac', 1179, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11078, 'Ales', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11079, 'Bagnols-sur-Ceze', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11080, 'Beaucaire', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11081, 'Pont-Saint-Esprit', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11082, 'Saint-Gilles', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11083, 'Vauvert', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11084, 'Villeneuve-les-Avignon', 1180, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, 1), -(11085, 'Auch', 1181, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11086, 'Beraut', 1181, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11087, 'Ambares-et-Lagrave', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11088, 'Arcachon', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11089, 'Begles', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11090, 'Blanquefort', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11091, 'Bordeaux', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11092, 'Bruges', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11093, 'Cenon', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11094, 'Cestas', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11095, 'Eysines', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11096, 'Floirac', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11097, 'Gradignan', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11098, 'Gujan-Mestras', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11099, 'La Teste-de-Buch', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11100, 'Le Bouscat', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11101, 'Libourne', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11102, 'Lormont', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11103, 'Merignac', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11104, 'Pessac', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11105, 'Saint-Medard-en-Jalles', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11106, 'Talence', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11107, 'Villenave-d Ornon', 1182, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11108, 'Cernay', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11109, 'Colmar', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11110, 'Guebwiller', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11111, 'Illzach', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11112, 'Kingersheim', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11113, 'Mulhouse', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11114, 'Riediesheim', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11115, 'Rixheim', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11116, 'Saint-Louis', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11117, 'Wittelsheim', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11118, 'Wittenheim', 1183, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11119, 'Bastia', 1184, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11120, 'Balma', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11121, 'Blagnac', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11122, 'Colomiers', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11123, 'Cugnaux', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11124, 'L Union', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11125, 'Muret', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11126, 'Plaisance-du-Touch', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11127, 'Ramonville-Saint-Agne', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11128, 'Saint-Gaudens', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11129, 'Saint-Orens-de-Gameville', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11130, 'Toulouse', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11131, 'Tournefeuille', 1185, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11132, 'Blanzac', 1186, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11133, 'Le Puy-en-Velay', 1186, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11134, 'Chaumont', 1187, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11135, 'Langres', 1187, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11136, 'Saint-Dizier', 1187, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11137, 'Hericourt', 1188, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11138, 'Lure', 1188, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11139, 'Luxeuil-les-Bains', 1188, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11140, 'Vesoul', 1188, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11141, 'Annecy', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11142, 'Annecy-le-Vieux', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11143, 'Annemasse', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11144, 'Archamps', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11145, 'Bonneville', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11146, 'Chamonix-Mont-Blanc', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11147, 'Cluses', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11148, 'Contamine sur Arve', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11149, 'Cran-Gevrier', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11150, 'Passy', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11151, 'Rumilly', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11152, 'Sallanches', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11153, 'Seynod', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11154, 'Thonon-les-Bains', 1189, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11155, 'Gaillard', 1190, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11156, 'Limoges', 1190, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11157, 'Saint-Junien', 1190, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11158, 'Briancon', 1191, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11159, 'Gap', 1191, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11160, 'Lourdes', 1192, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11161, 'Tarbes', 1192, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11162, 'Antony', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11163, 'Asnieres-sur-Seine', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11164, 'Bagneux', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11165, 'Bois-Colombes', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11166, 'Boulogne-Billancourt', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11167, 'Bourg-la-Reine', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11168, 'Chatenay-Malabry', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11169, 'Chatillon', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11170, 'Chaville', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11171, 'Clamart', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11172, 'Clichy', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11173, 'Colombes', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11174, 'Courbevoie', 1193, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, 1), -(11175, 'Fontenay-aux-Roses', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11176, 'Garches', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11177, 'Gennevillers', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11178, 'Issy-les-Moulineaux', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11179, 'La Garenne-Colombes', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11180, 'Le Plessis-Robinson', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11181, 'Levallois-Perret', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11182, 'Malakoff', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11183, 'Meudon', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11184, 'Montrouge', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11185, 'Nanterre', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11186, 'Neuilly-sur-Seine', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11187, 'Puteaux', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11188, 'Rueil-Malmaison', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11189, 'Saint-Cloud', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11190, 'Sceaux', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11191, 'Sevres', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11192, 'Suresnes', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11193, 'Vanves', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11194, 'Ville-d Avray', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11195, 'Villeneuve-la-Garenne', 1193, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11196, 'Agde', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11197, 'Beziers', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11198, 'Castelnau-le-Lez', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11199, 'Frontignan', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11200, 'Lattes', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11201, 'Lunel', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11202, 'Mauguio', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11203, 'Montpellier', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11204, 'Sete', 1194, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11205, 'Champagne-sur-Oise', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11206, 'Croissy-Beaubourg', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11207, 'Gennevilliers', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11208, 'Le Mesnil-le-Roi', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11209, 'Le Plessis-Bouchard', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11210, 'Rebais', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11211, 'Saint-Thibault-des-Vignes', 1195, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11212, 'Cesson-Sevigne', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11213, 'Dinard', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11214, 'Fougeres', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11215, 'Rennes', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11216, 'Saint-Malo', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11217, 'Vitre', 1196, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11218, 'Chateauroux', 1197, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11219, 'Issoudun', 1197, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11220, 'Amboise', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11221, 'Joue-les-Tours', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11222, 'Saint-Avertin', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11223, 'Saint-Cyr-sur-Loire', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11224, 'Saint-Pierre-des-Corps', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11225, 'Tours', 1198, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11226, 'Bourgoin-Jallieu', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11227, 'Echirolles', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11228, 'Fontaine', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11229, 'Grenoble', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11230, 'Le Pont-de-Claix', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11231, 'Meylan', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11232, 'Saint-Egreve', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11233, 'Saint-Martin-d Heres', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11234, 'Seyssinet-Pariset', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11235, 'Vienne', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11236, 'Villefontaine', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11237, 'Voiron', 1199, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11238, 'Champagnole', 1200, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11239, 'Dole', 1200, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11240, 'Lons-le-Saunier', 1200, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11241, 'Saint-Claude', 1200, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11242, 'Sebastiangasse', 1201, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11243, 'Biscarrosse', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11244, 'Dax', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11245, 'Hagetmau', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11246, 'Landes', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11247, 'Mont-de-Marsan', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11248, 'Saint-Paul-les-Dax', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11249, 'Tarnos', 1202, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11250, 'Codolet', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11251, 'Cuxac-d Aude', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11252, 'Gigean', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11253, 'Grabels', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11254, 'Lamalou-les-Bains', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11255, 'Perols', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11256, 'Peyrens', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11257, 'Tuchan', 1203, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11258, 'Larcay', 1204, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, 1), -(11259, 'Voutezac', 1207, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11260, 'Blois', 1208, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11261, 'Romorantin-Lanthenay', 1208, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11262, 'Vendome', 1208, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11263, 'Andrezieux-Boutheon', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11264, 'Firminy', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11265, 'La Ricamarie', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11266, 'Le Chambon-Feugerolles', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11267, 'Montbrison', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11268, 'Riorges', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11269, 'Rive-de-Gier', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11270, 'Roanne', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11271, 'Roche-la-Moliere', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11272, 'Saint-Chamond', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11273, 'Saint-Etienne', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11274, 'Saint-Just-Saint-Rambert', 1209, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11275, 'Bouguenais', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11276, 'Carquefou', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11277, 'Chateaubriant', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11278, 'Coueron', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11279, 'Guerande', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11280, 'La Baule-Escoublac', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11281, 'La Chapelle-sur-Erdre', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11282, 'Nantes', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11283, 'Orvault', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11284, 'Reze', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11285, 'Saint Etienne de Mer Morte', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11286, 'Saint-Herblain', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11287, 'Saint-Nazaire', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11288, 'Saint-Sebastien-sur-Loire', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11289, 'Sainte-Luce-sur-Loire', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11290, 'Vertou', 1210, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11291, 'Amilly', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11292, 'Chalette-sur-Loing', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11293, 'Fleury-les-Aubrais', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11294, 'Gien', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11295, 'Montargis', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11296, 'Olivet', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11297, 'Orleans', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11298, 'Pithiviers', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11299, 'Saint-Jean-de-Braye', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11300, 'Saint-Jean-de-la-Ruelle', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11301, 'Saran', 1211, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11302, 'Montbronn', 1212, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11303, 'Cahors', 1213, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11304, 'Figeac', 1213, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11305, 'Agen', 1214, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11306, 'Le Passage', 1214, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11307, 'Marmande', 1214, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11308, 'Tonneins', 1214, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11309, 'Villeneuve-sur-Lot', 1214, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11310, 'Mende', 1216, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11311, 'Angers', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11312, 'Avrille', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11313, 'Cholet', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11314, 'Les Ponts-de-Ce', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11315, 'Saint-Barthelemy-d Anjou', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11316, 'Saumur', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11317, 'Torfou', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11318, 'Trelaze', 1217, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11319, 'Cherbourg', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11320, 'Coutances', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11321, 'Equeurdreville-Hainneville', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11322, 'Granville', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11323, 'Octeville', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11324, 'Saint-Lo', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11325, 'Tourlaville', 1218, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11326, 'Chalons-en-Champagne', 1219, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11327, 'Epernay', 1219, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11328, 'Reims', 1219, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11329, 'Tinqueux', 1219, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11330, 'Vitry-le-Francois', 1219, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11331, 'Chateau-Gontier', 1220, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11332, 'Mayenne', 1220, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11333, 'Montsurs', 1220, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, 1), -(11334, 'Dombasle-sur-Meurthe', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11335, 'Jarville-la-Malgrange', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11336, 'Laxou', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11337, 'Longwy', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11338, 'Luneville', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11339, 'Nancy', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11340, 'Pont-a-Mousson', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11341, 'Saint-Max', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11342, 'Toul', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11343, 'Vandoeuvre-les-Nancy', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11344, 'Villers-les-Nancy', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11345, 'Villerupt', 1221, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11346, 'Bar-le-Duc', 1222, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11347, 'Verdun', 1222, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11348, 'Boissezon', 1223, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11349, 'Launaguet', 1223, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11350, 'Mauleon', 1223, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11351, 'Maurens-Scopont', 1223, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11352, 'Auray', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11353, 'Guidel', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11354, 'Hennebont', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11355, 'Lanester', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11356, 'Lorient', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11357, 'Ploemeur', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11358, 'Pontivy', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11359, 'Vannes', 1224, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11360, 'Amneville', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11361, 'Behren-les-Forbach', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11362, 'Creutzwald', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11363, 'Fameck', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11364, 'Florange', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11365, 'Forbach', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11366, 'Freyming-Merlebach', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11367, 'Hagondange', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11368, 'Hayange', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11369, 'Hombourg-Haut', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11370, 'Maizieres-les-Metz', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11371, 'Marly', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11372, 'Metz', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11373, 'Montigny-les-Metz', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11374, 'Moyeuvre-Grande', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11375, 'Rombas', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11376, 'Saint-Avold', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11377, 'Sarrebourg', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11378, 'Sarreguemines', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11379, 'Stiring-Wendel', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11380, 'Thionville', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11381, 'Uckange', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11382, 'Woippy', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11383, 'Yutz', 1225, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11384, 'Cosne-Cours-sur-Loire', 1226, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11385, 'Nevers', 1226, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11386, 'Varennes-Vauzelles', 1226, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11387, 'Aniche', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11388, 'Annoeullin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11389, 'Anzin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11390, 'Armentieres', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11391, 'Aulnoye-Aymeries', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11392, 'Bailleul', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11393, 'Bondues', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11394, 'Bruay-sur-l Escaut', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11395, 'Cambrai', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11396, 'Cappelle-la-Grande', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11397, 'Caudry', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11398, 'Comines', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11399, 'Conde-sur-l Escaut', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11400, 'Coudekerque-Branche', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11401, 'Croix', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11402, 'Denain', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(11403, 'Douai', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11404, 'Douchy-les-Mines', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11405, 'Dunkerque', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11406, 'Escaudain', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11407, 'Fache-Thumesnil', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11408, 'Fourmies', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11409, 'Grande-Synthe', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11410, 'Graveline', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11411, 'Halluin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11412, 'Haubourdin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11413, 'Hautmont', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11414, 'Hazebrouck', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11415, 'Hem', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11416, 'Hulluch', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11417, 'Jeumont', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11418, 'La Madeleine', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11419, 'Lambersart', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11420, 'Leers', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11421, 'Lomme', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11422, 'Loos', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11423, 'Lys-lez-Lannoy', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11424, 'Marcq-en-Baroeul', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11425, 'Marennes', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11426, 'Marquette-lez-Lille', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11427, 'Maubeuge', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11428, 'Merville', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11429, 'Mons-en-Baroeul', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11430, 'Mouvaux', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11431, 'Neuville-en-Ferrain', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11432, 'Onnaing', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11433, 'Raismes', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11434, 'Ronchin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11435, 'Roncq', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11436, 'Roubaix', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11437, 'Saint-Amand-les-Eaux', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11438, 'Saint-Andre-lez-Lille', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11439, 'Saint-Pol-sur-Mer', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11440, 'Saint-Saulve', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11441, 'Seclin', 651, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, 1), -(11442, 'Sin-le-Noble', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11443, 'Somain', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11444, 'Tourcoing', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11445, 'Valenciennes', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11446, 'Vieux-Conde', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11447, 'Villeneuve-d Ascq', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11448, 'Wasquehal', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11449, 'Wattignies', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11450, 'Wattrelos', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11451, 'Waziers', 651, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11452, 'Esquelbecq', 1227, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11453, 'Beauvais', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11454, 'Chantilly', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11455, 'Compiegne', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11456, 'Creil', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11457, 'Crepy-en-Valois', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11458, 'Gouvieux', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11459, 'Meru', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11460, 'Montataire', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11461, 'Nogent-sur-Oise', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11462, 'Noyon', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11463, 'Pont-Sainte-Maxence', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11464, 'Senlis', 1228, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11465, 'Argentan', 1229, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11466, 'Flers', 1229, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11467, 'L Aigle', 1229, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11468, 'Aire-sur-la-Lys', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11469, 'Arras', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11470, 'Auchel', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11471, 'Avion', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11472, 'Berck', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11473, 'Bethune', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11474, 'Boulogne-sur-Mer', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11475, 'Bruay-la-Brussiere', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11476, 'Bully-les-Mines', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11477, 'Calais', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11478, 'Carvin', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11479, 'Courrieres', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11480, 'Etaples', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11481, 'Harnes', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11482, 'Henin-Beaumont', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11483, 'Le Portel', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11484, 'Libercourt', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11485, 'Lievin', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11486, 'Lillers', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11487, 'Longuenesse', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11488, 'Marck', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11489, 'Mericourt', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11490, 'Montigny-en-Gohelle', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11491, 'Noeux-les-Mines', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11492, 'Oignies', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11493, 'Outreau', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11494, 'Saint-Martin-Boulogne', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11495, 'Saint-Omer', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11496, 'Sallaumines', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11497, 'Vendin-le-Vieil', 1231, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11498, 'Loiron', 1233, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11499, 'Marolles-les-Braults', 1233, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11500, 'Mortagne-sur-Sevre', 1233, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11501, 'Mouzillon', 1233, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11502, 'Noirmoutier-en-l Île', 1233, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11503, 'Friville', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11504, 'Liancourt', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11505, 'Maizy', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11506, 'Oust-Marest', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11507, 'Puiseux-le-Hauberger', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11508, 'Saint-Crepin-Ibouvillers', 1234, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11509, 'Aubiere', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11510, 'Chamalieres', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11511, 'Clermont-Ferrand', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11512, 'Cournon-d Auvergne', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11513, 'Gerzat', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11514, 'Issoire', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11515, 'Riom', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11516, 'Thiers', 1235, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11517, 'Anglet', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11518, 'Bayonne', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11519, 'Biarritz', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11520, 'Billere', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11521, 'Hendaye', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11522, 'Lons', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11523, 'Oloron-Sainte-Marie', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11524, 'Orthez', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11525, 'Pau', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11526, 'Saint-Jean-de-Luz', 1236, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11527, 'Perpignan', 1237, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11528, 'Saint-Esteve', 1237, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, 1), -(11529, 'Quelmes', 1238, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11530, 'Brignais', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11531, 'Bron', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11532, 'Caluire-et-Cuire', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11533, 'Decines-Charpieu', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11534, 'Ecully', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11535, 'Francheville', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11536, 'Genas', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11537, 'Genay', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11538, 'Givors', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11539, 'Lyon', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11540, 'Meyzieu', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11541, 'Mions', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11542, 'Oullins', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11543, 'Pierre-Benite', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11544, 'Rillieux-la-Pape', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11545, 'Saint-Fons', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11546, 'Saint-Genis-Laval', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11547, 'Saint-Priest', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11548, 'Sainte-Foy-les-Lyon', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11549, 'Tarare', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11550, 'Tassin-la-Demi-Lune', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11551, 'Vaulx-en-Velin', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11552, 'Venissieux', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11553, 'Villefranche-sur-Saone', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11554, 'Villeurbanne', 1239, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11555, 'Beauvoir-en-Royans', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11556, 'Belley', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11557, 'Bons-en-Chablais', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11558, 'Chalain-d Uzore', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11559, 'Chavanod', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11560, 'Chazay-d-Azergues', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11561, 'Chimilin', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11562, 'Civrieux-d Azergues', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11563, 'Corbas', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11564, 'Courzieu', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11565, 'Dardilly', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11566, 'Guereins', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11567, 'Izernore', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11568, 'La Talaudiere', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11569, 'La Tronche', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11570, 'La Verpilliere', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11571, 'Le Cheylard', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11572, 'Le Cheylas', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11573, 'Mery', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11574, 'Moirans', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11575, 'Montalieu-Vercieu', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11576, 'Montmiral', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11577, 'Peronnas', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11578, 'Poncin', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11579, 'Quincie-en-Beaujolais', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11580, 'Saint-Quentin-sur-Isere', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11581, 'Sainte Agathe la Bouteresse', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11582, 'Sainte-Consorce', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11583, 'Sisteron', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11584, 'Trevoux', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11585, 'Villard-Bonnot', 1240, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11586, 'Autun', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11587, 'Chalon-sur-Saone', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11588, 'Digoin', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11589, 'Gueugnon', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11590, 'Le Creusot', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11591, 'Macon', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11592, 'Montceau-les-Mines', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11593, 'Paray-le-Monial', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11594, 'Saint-Vallier', 1243, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11595, 'Allonnes', 1244, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11596, 'La Ferte-Bernard', 1244, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11597, 'La Fleche', 1244, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11598, 'Le Mans', 1244, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11599, 'Sable-sur-Sarthe', 1244, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11600, 'Aix-les-Bains', 1245, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11601, 'Albertville', 1245, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11602, 'Chambery', 1245, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11603, 'La Motte-Servolex', 1245, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11604, 'Saint-Jean-de-Maurienne', 1245, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11605, 'Barentin', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11606, 'Bihorel', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11607, 'Bois-Guillaume', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11608, 'Bolbec', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11609, 'Canteleu', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11610, 'Caudebec-les-Elbeuf', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11611, 'Darnetal', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11612, 'Deville-les-Rouen', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11613, 'Dieppe', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11614, 'Elbeuf', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11615, 'Fecamp', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11616, 'Gonfreville-l Orcher', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11617, 'Grand-Couronne', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11618, 'Harfleur', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11619, 'Le Grand-Quevilly', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11620, 'Le Havre', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11621, 'Le Petit-Quevilly', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11622, 'Lillebonne', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11623, 'Maromme', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11624, 'Mont-Saint-Aignan', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11625, 'Montivilliers', 1246, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, 1), -(11626, 'Notre-Dame-de-Gravenchon', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11627, 'Oissel', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11628, 'Rouen', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11629, 'Saint-Etienne-du-Rouvray', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11630, 'Sotteville-les-Rouen', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11631, 'Yvetot', 1246, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11632, 'Aubervillers', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11633, 'Aulnay-sous-Bois', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11634, 'Bagnolet', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11635, 'Bobigny', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11636, 'Bondy', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11637, 'Clichy-sous-Bois', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11638, 'Drancy', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11639, 'Epinay-sur-Seine', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11640, 'Gagny', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11641, 'La Courneuve', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11642, 'Le Blanc-Mesnil', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11643, 'Le Bourget', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11644, 'Le Pre-Saint-Gervais', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11645, 'Le Raincy', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11646, 'Les Lilas', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11647, 'Les Pavillons-sous-Bois', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11648, 'Livry-Gargan', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11649, 'Montfermeil', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11650, 'Montreuil', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11651, 'Neuilly-Plaisance', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11652, 'Neuilly-sur-Marne', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11653, 'Noisy-le-Grand', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11654, 'Noisy-le-Sec', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11655, 'Pantin', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11656, 'Pierrefitte-sur-Seine', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11657, 'Romainville', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11658, 'Rosny-sous-Bois', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11659, 'Saint-Ouen', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11660, 'Sevran', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11661, 'Stains', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11662, 'Tremblay-en-France', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11663, 'Villemomble', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11664, 'Villepinte', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11665, 'Villetaneuse', 1247, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11666, 'Avon', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11667, 'Brie-Comte-Robert', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11668, 'Champs-sur-Marne', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11669, 'Chelles', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11670, 'Claye-Souilly', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11671, 'Combs-la-Ville', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11672, 'Coulommiers', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11673, 'Dammarie-les-Lys', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11674, 'Fontainebleau', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11675, 'Lagny-sur-Marne', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11676, 'Le Mee-sur-Seine', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11677, 'Lognes', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11678, 'Meaux', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11679, 'Melun', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11680, 'Mitry-Mory', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11681, 'Moissy-Cramayel', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11682, 'Montereau-Fault-Yonne', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11683, 'Nemours', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11684, 'Noisiel', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11685, 'Ozoir-la-Ferriere', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11686, 'Pontault-Combault', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11687, 'Provins', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11688, 'Roissy-en-Brie', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11689, 'Saint-Fargeau-Ponthierry', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11690, 'Savigny-le-Temple', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11691, 'Torcy', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11692, 'Vaires-sur-Marne', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11693, 'Veneux', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11694, 'Villeparisis', 1248, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11695, 'Abbeville', 1249, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11696, 'Albert', 1249, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11697, 'Amiens', 1249, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11698, 'Souvans', 1251, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11699, 'Albi', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11700, 'Carmaux', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11701, 'Castres', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11702, 'Gaillac', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11703, 'Graulhet', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11704, 'Mazamet', 1252, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11705, 'Castelsarassin', 1253, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11706, 'Moissac', 1253, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11707, 'Montauban', 1253, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11708, 'Chamberet', 1255, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11709, 'Argenteuil', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11710, 'Arnouville-les-Gonesse', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11711, 'Beauchamps', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11712, 'Bezons', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11713, 'Cergy', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11714, 'Cormeilles-en-Parisis', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11715, 'Deuil-la-Barre', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11716, 'Domont', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11717, 'Eaubonne', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11718, 'Enghien-les-Bains', 1257, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, 1), -(11719, 'Eragny', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11720, 'Ermont', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11721, 'Ezanville', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11722, 'Fosses', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11723, 'Franconville', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11724, 'Garges-les-Gonesse', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11725, 'Gonesse', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11726, 'Goussainville', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11727, 'Herblay', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11728, 'Jouy-le-Moutier', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11729, 'L Isle-Adam', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11730, 'Montigny-les-Cormeilles', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11731, 'Montmorency', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11732, 'Osny', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11733, 'Persan', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11734, 'Pontoise', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11735, 'Saint-Brice-sous-Foret', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11736, 'Saint-Gratien', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11737, 'Saint-Leu-la-Foret', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11738, 'Saint-Ouen-l Aumone', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11739, 'Sannois', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11740, 'Sarcelles', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11741, 'Soisy-sous-Montmorency', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11742, 'Taverny', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11743, 'Vaureal', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11744, 'Villiers-le-Bel', 1257, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11745, 'Alfortville', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11746, 'Arcueil', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11747, 'Boissy-Saint-Leger', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11748, 'Bonneuil', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11749, 'Bry-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11750, 'Cachan', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11751, 'Champigny-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11752, 'Charenton-le-Pont', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11753, 'Chennevieres-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11754, 'Chevilly-Larue', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11755, 'Choisy-le-Roi', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11756, 'Creteil', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11757, 'Fontenay-sous-Bois', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11758, 'Fresnes', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11759, 'Ivry-sur-Seine', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11760, 'Joinville-le-Pont', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11761, 'L Hay-les-Roses', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11762, 'La Queue-en-Brie', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11763, 'Le Kremlin-Bicetre', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11764, 'Le Perreux-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11765, 'Le Plessis-Trevise', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11766, 'Limeil-Brevannes', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11767, 'Maisons-Alfort', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11768, 'Nogent-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11769, 'Orly', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11770, 'Ormesson-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11771, 'Saint-Mande', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11772, 'Saint-Maur-des-Fosses', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11773, 'Saint-Maurice', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11774, 'Sucy-en-Brie', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11775, 'Thiais', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11776, 'Valenton', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11777, 'Villejuif', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11778, 'Villeneuve-Saint-Georges', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11779, 'Villeneuve-le-Roi', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11780, 'Villiers-sur-Marne', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11781, 'Vincennes', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11782, 'Vitry-sur-Seine', 1258, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11783, 'Brignoles', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11784, 'Draguignan', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11785, 'Frejus', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11786, 'Hyeres', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11787, 'La Crau', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11788, 'La Garde', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11789, 'La Seyne-sur-Mer', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11790, 'La Valette-du-Var', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11791, 'Le Pradet', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11792, 'Ollioules', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11793, 'Roquebrune-sur-Argens', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11794, 'Saint-Maximin-la-Sainte-Baume', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11795, 'Sainte-Maxime', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11796, 'Sanary-sur-Mer', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11797, 'Six-Fours-les-Plages', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11798, 'Sollies-Pont', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11799, 'Toulon', 1259, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11800, 'Apt', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11801, 'Avignon', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11802, 'Bollene', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11803, 'Carpentras', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11804, 'Cavaillon', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11805, 'L Isle-sur-la-Sorgue', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11806, 'Le Pontet', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11807, 'Orange', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11808, 'Pertuis', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11809, 'Sorgues', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11810, 'Valreas', 1260, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11811, 'Vellise', 1261, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11812, 'Challans', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11813, 'Chateau-d Olonne', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11814, 'Fontenay-le-Comte', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11815, 'La Chasnis', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11816, 'La Roche-sur-Yon', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11817, 'Les Herbiers', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11818, 'Les Sables-d Olonne', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11819, 'Longeville-sur-Mer', 1262, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11820, 'Chatellerault', 1263, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11821, 'Poitiers', 1263, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, 1), -(11822, 'Epinal', 1264, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11823, 'Gerardmer', 1264, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11824, 'Remiremont', 1264, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11825, 'Saint-Die', 1264, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11826, 'Auxerre', 1265, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11827, 'Avallon', 1265, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11828, 'Joigny', 1265, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11829, 'Sens', 1265, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11830, 'Acheres', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11831, 'Andresy', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11832, 'Aubergenville', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11833, 'Bois-d Arcy', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11834, 'Carrieres-sous-Poissy', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11835, 'Carrieres-sur-Seine', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11836, 'Chanteloup-les-Vignes', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11837, 'Chatou', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11838, 'Conflans-Sainte-Honorine', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11839, 'Croissy-sur-Seine', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11840, 'Elancourt', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11841, 'Fontenay-le-Fleury', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11842, 'Guyancourt', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11843, 'Houilles', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11844, 'La Celle-Saint-Cloud', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11845, 'Le Chesnay', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11846, 'Le Pecq', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11847, 'Le Vesinet', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11848, 'Les Clayes-sous-Bois', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11849, 'Les Mureaux', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11850, 'Limay', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11851, 'Maisons-Laffitte', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11852, 'Mantes-la-Jolie', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11853, 'Mantes-la-Ville', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11854, 'Marly-le-Roi', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11855, 'Maurepas', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11856, 'Montesson', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11857, 'Montigny-le-Bretonneux', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11858, 'Plaisir', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11859, 'Poissy', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11860, 'Rambouillet', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11861, 'Saint-Cyr-l Ecole', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11862, 'Saint-Germain-en-Laye', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11863, 'Sartrouville', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11864, 'Trappes', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11865, 'Triel-sur-Seine', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11866, 'Velizy-Villacoublay', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11867, 'Verneuil-sur-Seine', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11868, 'Versailles', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11869, 'Viroflay', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11870, 'Voisins-le-Bretonneux', 1266, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11871, 'Camopi', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11872, 'Cayenne', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11873, 'Iracoubo', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11874, 'Kourou', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11875, 'Macouria', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11876, 'Matoury', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11877, 'Remire-Montjoly', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11878, 'Roura', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11879, 'Sinnamary', 1267, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11880, 'Apatou', 1268, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11881, 'Grand-Santi', 1268, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11882, 'Mana', 1268, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11883, 'Maripasoula', 1268, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11884, 'Saint-Laurent-du-Maroni', 1268, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11885, 'Atuona', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11886, 'Fatu-Hiva', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11887, 'Hakahao', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11888, 'Hakamaii', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11889, 'Hatiheu', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11890, 'Tahuata', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11891, 'Taiohae', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11892, 'Taipivai', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11893, 'Ua-Huka', 1271, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11894, 'Ahe', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11895, 'Amanu', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11896, 'Anaa', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11897, 'Apataki', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11898, 'Arutua', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11899, 'Faaite', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11900, 'Fakahima', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11901, 'Fakarava', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11902, 'Fangatau', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11903, 'Hao', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11904, 'Hereheretue', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11905, 'Hikueru', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11906, 'Katiu', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11907, 'Kauehi', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11908, 'Kaukura', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11909, 'Makatea', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11910, 'Makemo', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11911, 'Manihi', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11912, 'Marokau', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11913, 'Napuka', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11914, 'Niau', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11915, 'Nukutavake', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11916, 'Puamau', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11917, 'Pukapuka', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11918, 'Pukarua', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11919, 'Rangiroa', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11920, 'Raroia', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11921, 'Reao', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11922, 'Rikitea', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11923, 'Taenga', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11924, 'Takapoto', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11925, 'Takaroa', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11926, 'Tatakoto', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11927, 'Tepoto', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11928, 'Tikehau', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11929, 'Tureia', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11930, 'Vahitahi', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11931, 'Vairaatea', 1272, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, 1), -(11932, 'Amaru', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11933, 'Anapoto', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11934, 'Anatonu', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11935, 'Auti', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11936, 'Avera', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11937, 'Mahu', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11938, 'Mataura', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11939, 'Moerai', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11940, 'Mutuaura', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11941, 'Rairua', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11942, 'Rapa', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11943, 'Taahuaia', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11944, 'Vaiuru', 1273, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11945, 'Martin-de-Vivies', 1274, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11946, 'Port-aux-Francais', 1276, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11947, 'Cocobeach', 1277, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11948, 'Kango', 1277, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11949, 'Libreville', 1277, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11950, 'Nkan', 1277, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11951, 'Ntoum', 1277, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11952, 'Lekoni', 1278, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11953, 'Masuku', 1278, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11954, 'Moanda', 1278, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11955, 'Mounana', 1278, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11956, 'Okandja', 1278, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11957, 'Lambarene', 1279, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11958, 'Ndjole', 1279, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11959, 'Fougamou', 1280, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11960, 'Mbigou', 1280, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11961, 'Mimongo', 1280, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11962, 'Mouila', 1280, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11963, 'Ndende', 1280, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11964, 'Mayumba', 1281, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11965, 'Tchibanga', 1281, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11966, 'Tsogni', 1281, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11967, 'Booue', 1282, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11968, 'Makokou', 1282, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11969, 'Mekambo', 1282, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11970, 'Koulamoutou', 1283, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11971, 'Lastoursville', 1283, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11972, 'Gamba', 1284, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11973, 'Omboue', 1284, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11974, 'Port-Gentil', 1284, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11975, 'Sette Cama', 1284, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11976, 'Bitam', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11977, 'Lalara', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11978, 'Medouneu', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11979, 'Minvoul', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11980, 'Mitzic', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11981, 'Oyem', 1285, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11982, 'Banjul', 1286, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11983, 'Basse', 1287, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11984, 'Gambissara', 1287, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11985, 'Sabi', 1287, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11986, 'Salikeni', 1287, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11987, 'Brikama', 1288, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11988, 'Brufut', 1288, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11989, 'Gunjur', 1288, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11990, 'Sukuta', 1288, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11991, 'Bansang', 1289, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11992, 'Janjanbureh', 1289, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11993, 'Bakau', 1290, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11994, 'Serekunda', 1290, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, 1), -(11995, 'Essau', 1291, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(11996, 'Farafenni', 1291, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(11997, 'Kerewan', 1291, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(11998, 'Lamin', 1291, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(11999, 'Kuntaur', 1292, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12000, 'Mansakonko', 1293, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12001, 'Ahali Atoni', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12002, 'Bihvinta', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12003, 'Gagra', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12004, 'Gali', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12005, 'Gudauta', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12006, 'Gulripshi', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12007, 'Ochamchira', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(12008, 'Suhumi', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12009, 'Tkvarcheli', 1294, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12010, 'Batumi', 1295, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12011, 'Dioknisi', 1295, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12012, 'Kobuleti', 1295, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12013, 'Mahindzhauri', 1295, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12014, 'Lanchhuti', 1296, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12015, 'Ozurgeti', 1296, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12016, 'Bagdadi', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12017, 'Chaltubo', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12018, 'Chiatura', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12019, 'Honi', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12020, 'Kutaisi', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12021, 'Sachhere', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12022, 'Samtredia', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12023, 'Terzhola', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12024, 'Tkibuli', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12025, 'Vani', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12026, 'Zestaponi', 1297, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12027, 'Ahmeta', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12028, 'Cnori', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12029, 'Dedoplisckaro', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12030, 'Gurdzhaani', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12031, 'Kvareli', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12032, 'Lagodehi', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12033, 'Sagaredzho', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12034, 'Signahi', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12035, 'Telavi', 1298, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12036, 'Dusheti', 1300, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12037, 'Mcheta', 1300, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12038, 'Ambrolauri', 1301, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12039, 'Cageri', 1301, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12040, 'Oni', 1301, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12041, 'Ahalcihe', 1303, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12042, 'Ahalkalaki', 1303, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12043, 'Borzhomi', 1303, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12044, 'Ninocminda', 1303, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12045, 'Vale', 1303, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12046, 'Tbilisi', 1305, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12047, 'Aalen', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12048, 'Achern', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12049, 'Aichtal', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12050, 'Albstadt', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12051, 'Aldingen', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12052, 'Allmersbach', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12053, 'Alpirsbach', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12054, 'Altensteig', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12055, 'Altlussheim', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12056, 'Ammerbuch', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12057, 'Appenweier', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12058, 'Asperg', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12059, 'Backnang', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12060, 'Bad Durrheim', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12061, 'Bad Friedrichshall', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12062, 'Bad Krozingen', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12063, 'Bad Liebenzell', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12064, 'Bad Mergentheim', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12065, 'Bad Rappenau', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12066, 'Bad Sackingen', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12067, 'Bad Schonborn', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12068, 'Bad Urach', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12069, 'Bad Waldsee', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12070, 'Bad Wurzach', 1306, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, 1), -(12071, 'Baden-Baden', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12072, 'Bahlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12073, 'Baiersbronn', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12074, 'Balgheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12075, 'Balingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12076, 'Ballrechten-Dottingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12077, 'Besigheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12078, 'Biberach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12079, 'Bietigheim-Bissingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12080, 'Binzen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12081, 'Birkenfeld', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12082, 'Bisingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12083, 'Bitz', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12084, 'Blaubeuren', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12085, 'Blaustein', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12086, 'Blumberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12087, 'Boblingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12088, 'Bodelshausen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12089, 'Bonndorf', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12090, 'Bonnigheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12091, 'Bopfingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12092, 'Bottingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12093, 'Brackenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12094, 'Breisach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12095, 'Bretten', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12096, 'Bretzfeld', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12097, 'Bruchsal', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12098, 'Bruhl', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12099, 'Buchen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12100, 'Buchenbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12101, 'Buhl', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12102, 'Burgstetten', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12103, 'Burladingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12104, 'Calw', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12105, 'Crailsheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12106, 'Denkendorf', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12107, 'Denzlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12108, 'Dettingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12109, 'Dietenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12110, 'Ditzingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12111, 'Donaueschingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12112, 'Donzdorf', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12113, 'Dornhan', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12114, 'Dornstadt', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12115, 'Dornstetten', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12116, 'Dossenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12117, 'Durbheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12118, 'Durmersheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12119, 'Eberbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12120, 'Ebersbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12121, 'Edingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12122, 'Edingen-Neckarhausen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12123, 'Eggenstein-Leopoldshafen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12124, 'Ehingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12125, 'Eislingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12126, 'Ellhofen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12127, 'Ellwangen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12128, 'Emmendingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12129, 'Emmingen-Liptingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12130, 'Engen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12131, 'Eningen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12132, 'Eppelheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12133, 'Eppingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12134, 'Erbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12135, 'Eriskirch', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12136, 'Eschach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12137, 'Esslingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12138, 'Ettenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12139, 'Ettlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12140, 'Fellbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12141, 'Filderstadt', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12142, 'Freiberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12143, 'Freiburg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12144, 'Freudenstadt', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12145, 'Frickenhausen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12146, 'Fridingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12147, 'Friedrichshafen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12148, 'Friesenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12149, 'Frittlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12150, 'Furtwangen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12151, 'Gaggenau', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12152, 'Gaildorf', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12153, 'Gartringen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12154, 'Gaufelden', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12155, 'Geislingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12156, 'Gengenbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12157, 'Gerlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12158, 'Gernsbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12159, 'Gerstetten', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12160, 'Giengen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12161, 'Goppingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12162, 'Gottmadingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12163, 'Graben-Neudorf', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12164, 'Grafenberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12165, 'Grafenhausen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12166, 'Grenzach-Wyhlen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12167, 'GroBbettlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12168, 'Grunkraut', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12169, 'Gschwend', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12170, 'Guglingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12171, 'Gundelfingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12172, 'Gutach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12173, 'Haigerloch', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12174, 'Haiterbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12175, 'Harmersabch', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12176, 'Hausach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12177, 'Hechingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12178, 'Heddesheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12179, 'Heidelberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12180, 'Heidenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12181, 'Heilbronn', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12182, 'Hemsbach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12183, 'Herbrechtingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12184, 'Herrenberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12185, 'Heubach', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12186, 'Hirschberg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12187, 'Hockenheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12188, 'Holzgerlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12189, 'Horb', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12190, 'Huttlingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12191, 'Isny', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12192, 'Ispringen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12193, 'Jungingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12194, 'Karlsbad', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12195, 'Karlsruhe', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12196, 'Kehl', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12197, 'Kernen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12198, 'Ketsch', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12199, 'Kieselbronn', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12200, 'Kirchberg an der Jagst', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12201, 'Kirchheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12202, 'Kirchzarten', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12203, 'Kisslegg', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12204, 'Klettgau', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12205, 'Kongen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12206, 'Konigsbach-Stein', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12207, 'Konigsbronn', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12208, 'Konstanz', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12209, 'Korb', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12210, 'Korntal-Munchingen', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12211, 'Kornwestheim', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12212, 'Kraichtal', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12213, 'Kressbronn an Bodensee', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12214, 'Kronau', 1306, '2024-01-21 12:05:25', '2024-01-21 12:05:25', NULL, 1), -(12215, 'Kuessaberg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12216, 'Kunzelsau', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12217, 'Ladenburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12218, 'Lahr', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12219, 'Laichingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12220, 'Langenau', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12221, 'Lauda-Konigshofen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12222, 'Lauffen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12223, 'Laupheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12224, 'Leimen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12225, 'Leinfelden-Echterdingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12226, 'Leingarten', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12227, 'Lenningen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12228, 'Lenzkirch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12229, 'Leonberg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12230, 'Leutenbach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12231, 'Leutkirch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12232, 'Lichtenstein', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12233, 'Linkenheim-Hochstetten', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12234, 'Lorch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12235, 'Lorrach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12236, 'Ludwigsburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12237, 'Malsch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12238, 'Mannheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12239, 'Marbach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12240, 'Markdorf', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12241, 'Markgroningen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12242, 'Maulburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12243, 'MeBstetten', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12244, 'Meckenbeuren', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12245, 'Meckesheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12246, 'Meersburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12247, 'Mengen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12248, 'Metzingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12249, 'Mockmuhl', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12250, 'Moglingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12251, 'Monsheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12252, 'Mosbach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12253, 'Mossingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12254, 'Muhlacker', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12255, 'Mullheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12256, 'Munsingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12257, 'Murrhardt', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12258, 'Nagold', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12259, 'Neckargemund', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12260, 'Neckarsulm', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12261, 'Neresheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12262, 'Neuenburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12263, 'Neuhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12264, 'Niederstetten', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12265, 'Niefern-Oschelbronn', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12266, 'NuBloch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12267, 'Nurtingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12268, 'Oberhausen-Rheinhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12269, 'Oberkirch', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12270, 'Oberstenfeld', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12271, 'Obersulm', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12272, 'Ochsenhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12273, 'Offenburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12274, 'Ofterdingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12275, 'Oftersheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12276, 'Oggelshausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12277, 'Ohringen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12278, 'Olbronn-Durrn', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12279, 'Oppenweiler', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12280, 'Ostfildern', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12281, 'Ostringen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12282, 'Otisheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12283, 'Pfalzgrafenweiler', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12284, 'Pfinztal', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12285, 'Pforzheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12286, 'Pfullendorf', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12287, 'Pfullingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12288, 'Philippsburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12289, 'Plankstadt', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12290, 'Pleidelsheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12291, 'Pliezhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12292, 'Plochingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12293, 'Pluderhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12294, 'Radolfzell', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12295, 'Rastatt', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12296, 'Ravensburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12297, 'Reilingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12298, 'Remchingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12299, 'Remseck', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12300, 'Remshalden', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12301, 'Renchen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12302, 'Renningen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12303, 'Reutlingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12304, 'Rheinau', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12305, 'Rheinfelden', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12306, 'Rheinmunster', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12307, 'Rheinstetten', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12308, 'Riederich', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12309, 'Riedlingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12310, 'Rielasingen-Worblingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12311, 'Rosenfeld', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12312, 'Rottenburg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12313, 'Rottweil', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12314, 'Rudersberg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12315, 'Rutesheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12316, 'Sachsenheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12317, 'Salem', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12318, 'Sandhausen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12319, 'Sankt Leon-Rot', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12320, 'Saulgau', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12321, 'Scheer', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12322, 'Schlierbach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12323, 'Schonaich', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12324, 'Schopfheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12325, 'Schorndorf', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12326, 'Schramberg', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12327, 'Schriesheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12328, 'Schwabisch Gmund', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12329, 'Schwabisch Hall', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12330, 'Schwaigern', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12331, 'Schwetzingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12332, 'Schwieberdingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12333, 'Seitingen-Oberflacht', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12334, 'Sexau', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12335, 'Sigmaringen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12336, 'Sindelfingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12337, 'Singen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12338, 'Sinsheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12339, 'Sinzheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12340, 'Sonnenbuhl', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12341, 'Sontheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12342, 'Spaichingen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12343, 'Stegen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12344, 'Steinen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12345, 'Steinheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12346, 'Steinmauern', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12347, 'Stockach', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12348, 'Straubenhardt', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12349, 'Stutensee', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12350, 'Stuttgart', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12351, 'SuBen', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12352, 'Sulz', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12353, 'Sulzfeld', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12354, 'Tamm', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12355, 'Tauberbischofsheim', 1306, '2024-01-21 12:05:26', '2024-01-21 12:05:26', NULL, 1), -(12356, 'Teningen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12357, 'Tettnang', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12358, 'Titisee-Neustadt', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12359, 'Trossingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12360, 'Tubingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12361, 'Tuningen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12362, 'Tuttlingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12363, 'Uberlingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12364, 'Ubstadt-Weiher', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12365, 'Uhingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12366, 'Ulm', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12367, 'Umkirch', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12368, 'Vaihingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12369, 'Villingen-Schwenningen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12370, 'Villingendorf', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12371, 'Waghausel', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12372, 'Waiblingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12373, 'Waldbronn', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12374, 'Waldkirch', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12375, 'Waldlaubersheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12376, 'Waldshut-Tiengen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12377, 'Walldorf', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12378, 'Walldurn', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12379, 'Walzbachtal', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12380, 'Wangen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12381, 'Wehr', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12382, 'Weikersheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12383, 'Weil', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12384, 'Weil am Rhein', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12385, 'Weil der Stadt', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12386, 'Weil im Schonbuch', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12387, 'Weilheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12388, 'Weingarten', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12389, 'Weinheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12390, 'Weinsberg', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12391, 'Weinstadt', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12392, 'Wellendingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12393, 'Welzheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12394, 'Wendlingen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12395, 'Wernau', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12396, 'Wertheim', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12397, 'Wiesloch', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12398, 'Wildbad', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12399, 'Wildberg', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12400, 'Winnenden', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12401, 'Wolpertshausen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12402, 'Zuzenhausen', 1306, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12403, 'Ahorn', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12404, 'Allershausen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12405, 'Attenhofen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12406, 'Bad Birnbach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12407, 'Bad Endorf', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12408, 'Bad Gronenbach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12409, 'Barbing', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12410, 'Benediktbeuern', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12411, 'Breitenberg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12412, 'Bruckberg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12413, 'Brunnthal', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12414, 'Burgheim', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12415, 'Chiemsee', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12416, 'Emersacker', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12417, 'Eresing', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12418, 'Fahrenzhausen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12419, 'Faulbach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12420, 'Finning', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12421, 'Forstinning', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12422, 'Georgensgmund', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12423, 'Haldenwang', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12424, 'Heideck', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12425, 'Heimenkirch', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12426, 'Hergensweiler', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12427, 'Hirschau', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12428, 'Iffeldorf', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12429, 'Karlstein', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12430, 'Kleinheubach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12431, 'Kleinwallstadt', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12432, 'Kotz', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12433, 'Krailling', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12434, 'Langenbach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12435, 'Laudenbach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12436, 'Leutershausen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12437, 'Mammendorf', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12438, 'Mombris', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12439, 'Munnerstadt', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12440, 'Neu-Ulm', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12441, 'Niederlauer', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12442, 'Obernburg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12443, 'Oberpfaffenhofen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12444, 'Ostallgau', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12445, 'Prittriching', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12446, 'Prutting', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12447, 'Pullach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12448, 'Putzbrunn', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12449, 'Randersacker', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12450, 'Rednitzhembach', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12451, 'Ronsberg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12452, 'Ruckersdorf', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12453, 'Schaufling', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12454, 'Schonberg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12455, 'Seefeld', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12456, 'Sengenthal', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12457, 'Sondheim v.d.Rhon', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12458, 'Steinwiesen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12459, 'Stockheim', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12460, 'Tagmersheim', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12461, 'Uettingen', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12462, 'Unterfohring', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12463, 'Weibensberg', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12464, 'Wiesthal', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12465, 'Wildflecken', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12466, 'Wolfertschwenden', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12467, 'Zorneding', 1307, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12468, 'Abensberg', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12469, 'Aichach', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12470, 'Ainring', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12471, 'Altdorf', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12472, 'Altotting', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12473, 'Altusried', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12474, 'Alzenau', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12475, 'Amberg', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12476, 'Amerang', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12477, 'Ansbach', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12478, 'Aschaffenburg', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12479, 'Augsburg', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12480, 'Bad Aibling', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12481, 'Bad Kissingen', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12482, 'Bad Neustadt', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12483, 'Bad Reichenhall', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12484, 'Bad Tolz', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12485, 'Bad Windsheim', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12486, 'Bad Worishofen', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12487, 'Bamberg', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12488, 'Bayreuth', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12489, 'Bobingen', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12490, 'Bogen', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12491, 'Bruckmuhl', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12492, 'Buchloe', 1308, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, 1), -(12493, 'Burghausen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12494, 'Burgkirchen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12495, 'Burglengenfeld', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12496, 'Burgthann', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12497, 'Buttenheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12498, 'Cadolzburg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12499, 'Castell', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12500, 'Cham', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12501, 'Dachau', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12502, 'Deggendorf', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12503, 'DieBen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12504, 'Diedorf', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12505, 'Dietramszell', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12506, 'Dillingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12507, 'Dingolfing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12508, 'Dinkelsbuhl', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12509, 'Dombuhl', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12510, 'Donauworth', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12511, 'Dorfen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12512, 'Ebersberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12513, 'Eching', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12514, 'Eckental', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12515, 'Eggenfelden', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12516, 'Eichenau', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12517, 'Eichstatt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12518, 'Elchingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12519, 'Erding', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12520, 'Ergolding', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12521, 'Erlangen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12522, 'Erlenbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12523, 'Essenbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12524, 'Feldafing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12525, 'Feldkirchen-Westerham', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12526, 'Feucht', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12527, 'Feuchtwangen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12528, 'Forchheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12529, 'Freilassing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12530, 'Freising', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12531, 'Fridolfing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12532, 'Friedberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12533, 'Furstenfeldbruck', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12534, 'Furth', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12535, 'Furth im Wald', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12536, 'Fussen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12537, 'Gachenbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12538, 'Gaimersheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12539, 'Garching', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12540, 'Garmisch-Partenkirchen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12541, 'Gauting', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12542, 'Gemunden', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12543, 'Geretsried', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12544, 'Germering', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12545, 'Gersthofen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12546, 'Gilching', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12547, 'Goldbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12548, 'Grafelfing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12549, 'Grafenau', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12550, 'Grafing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12551, 'GroBostheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12552, 'Grobenstadt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12553, 'Grobenzell', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12554, 'Grunwald', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12555, 'Gunzburg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12556, 'Gunzenhausen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12557, 'HaBfurt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12558, 'Haar', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12559, 'Hammelburg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12560, 'Hasloch', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12561, 'Hauzenberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12562, 'Helmbrechts', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12563, 'Henfenfeld', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12564, 'Hersbruck', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12565, 'Herzogenaurach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12566, 'Hilpoltstein', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12567, 'Hirschaid', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12568, 'Hochstadt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12569, 'Hof', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12570, 'Holzkirchen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12571, 'Hosbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12572, 'Illertissen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12573, 'Immenstadt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12574, 'Ingolstadt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12575, 'Inning', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12576, 'Ismaning', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12577, 'Karlsfeld', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12578, 'Karlstadt', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12579, 'Kaufbeuren', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12580, 'Kelheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12581, 'Kempten', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12582, 'Kiefersfelden', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12583, 'Kissing', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12584, 'Kitzingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12585, 'Kleinostheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12586, 'Klingenberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12587, 'Kolbermoor', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12588, 'Konigsbrunn', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12589, 'Kreuzwertheim', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12590, 'Kronach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12591, 'Krumbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12592, 'Kulmbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12593, 'Kummersbruck', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12594, 'Landau', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12595, 'Landsberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12596, 'Landshut', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12597, 'Langenzenn', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12598, 'Lappersdorf', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12599, 'Lauf', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12600, 'Lauingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12601, 'Leinburg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12602, 'Lenggries', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12603, 'Lichtenfels', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12604, 'Lindach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12605, 'Lindau', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12606, 'Lindenberg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12607, 'Lohr', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12608, 'Mainburg', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12609, 'Maisach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12610, 'Manching', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12611, 'Markt Schwaben', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12612, 'Marktheidenfeld', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12613, 'Marktoberdorf', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12614, 'Marktredwitz', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12615, 'Maxhutte-Haidhof', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12616, 'Meitingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12617, 'Memmingen', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12618, 'Mering', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(12619, 'Miesbach', 1308, '2024-01-21 12:05:28', '2024-01-21 12:05:28', NULL, 1), -(12620, 'Miltenberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12621, 'Mindelheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12622, 'Muhldorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12623, 'Munchberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12624, 'Munchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12625, 'Munningen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12626, 'Murnau', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12627, 'Naila', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12628, 'Neubiberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12629, 'Neuburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12630, 'Neufahrn', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12631, 'Neuried', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12632, 'NeusaB', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12633, 'Neustadt', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12634, 'Neutraubling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12635, 'Nordlingen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12636, 'Nuremberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12637, 'Nurnberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12638, 'Oberasbach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12639, 'Oberhaching', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12640, 'OberschleiBheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12641, 'Oberstdorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12642, 'Ochsenfurt', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12643, 'Olching', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12644, 'Osterhofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12645, 'Ostheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12646, 'Ottobrunn', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12647, 'Parsberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12648, 'Passau', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12649, 'Pegnitz', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12650, 'PeiBenberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12651, 'Peiting', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12652, 'Pentling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12653, 'Penzberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12654, 'Pfaffenhofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12655, 'Pfarrkirchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12656, 'Planegg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12657, 'Plattling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12658, 'Pocking', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12659, 'Poing', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12660, 'Polling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12661, 'Pommelsbrunn', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12662, 'Prien', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12663, 'Puchheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12664, 'Rannersdorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12665, 'Raubling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12666, 'Regen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12667, 'Regensburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12668, 'Regenstauf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12669, 'Rehau', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12670, 'Rodental', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12671, 'Roding', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12672, 'Rosenheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12673, 'Roth', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12674, 'Rothenbach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12675, 'Rothenburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12676, 'Ruhstorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12677, 'Schnelldorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12678, 'Schongau', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12679, 'Schrobenhausen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12680, 'Schwabach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12681, 'Schwabmunchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12682, 'Schwandorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12683, 'Schwarzenbach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12684, 'Schweinfurt', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12685, 'Selb', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12686, 'Selbitz', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12687, 'Senden', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12688, 'Simbach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12689, 'Sonthofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12690, 'Spalt', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12691, 'Stadtbergen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12692, 'Staffelstein', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12693, 'Starnberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12694, 'Stein', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12695, 'Stephanskirchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12696, 'Straubing', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12697, 'Sulzbach-Rosenberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12698, 'Taufkirchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12699, 'Thansau', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12700, 'Tirschenreuth', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12701, 'Toging', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12702, 'Traunreut', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12703, 'Traunstein', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12704, 'Treuchtlingen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12705, 'Trostberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12706, 'Tutzing', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12707, 'Unterbergen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12708, 'Unterhaching', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12709, 'UnterschleiBheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12710, 'Valley', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12711, 'Vaterstetten', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12712, 'Veitshochheim', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12713, 'Viechtach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12714, 'Vilgertshofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12715, 'Vilsbiburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12716, 'Vilshofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12717, 'Vohringen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12718, 'Volkach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12719, 'Waldkirchen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12720, 'Waldkraiburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12721, 'Walkertshofen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12722, 'Wasserburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12723, 'WeiBenburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12724, 'WeiBenhorn', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12725, 'Weiden', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12726, 'Weidenberg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12727, 'Wendelstein', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12728, 'Werneck', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12729, 'Wessling', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12730, 'Wolfratshausen', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12731, 'Wolnzach', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12732, 'Wunsiedel', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12733, 'Wurzburg', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12734, 'Zirndorf', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12735, 'Zwiesel', 1308, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12736, 'Panketal', 1310, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12737, 'Steinfeld', 1310, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12738, 'Angermunde', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12739, 'Bad Freienwalde', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12740, 'Bad Liebenwerda', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12741, 'Barnim', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12742, 'Beeskow', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12743, 'Bernau', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12744, 'Blankenfelde', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12745, 'Brandenburg', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12746, 'Brieselang', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12747, 'Cottbus', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12748, 'Dahlewitz', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12749, 'Dahme', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12750, 'Eberswalde', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12751, 'Eisenhuttenstadt', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12752, 'Elsterwerda', 1311, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, 1), -(12753, 'Erkner', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12754, 'Falkensee', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12755, 'Finsterwalde', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12756, 'Forst', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12757, 'Frankfurt', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12758, 'Fredersdorf-Vogelsdorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12759, 'Furstenwalde', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12760, 'Glienicke', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12761, 'Gransee', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12762, 'GroBraschen', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12763, 'Guben', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12764, 'Heidesee', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12765, 'Hennigsdorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12766, 'Herzberg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12767, 'Hohen Neuendorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12768, 'Jacobsdorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12769, 'Juterbog', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12770, 'Kleinmachnow', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12771, 'Kolkwitz', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12772, 'Konigs Wusterhausen', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12773, 'Kyritz', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12774, 'Lauchhammer', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12775, 'Lubben', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12776, 'Lubbenau', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12777, 'Luckenwalde', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12778, 'Ludwigsfelde', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12779, 'Nauen', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12780, 'Neuenhagen', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12781, 'Neuruppin', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12782, 'Oranienburg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12783, 'Perleberg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12784, 'Petershagen-Eggersdorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12785, 'Potsdam', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12786, 'Premnitz', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12787, 'Prenzlau', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12788, 'Pritzwalk', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12789, 'Rathenow', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12790, 'Rudersdorf', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12791, 'Schonefeld', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12792, 'Schoneiche', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12793, 'Schwedt', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12794, 'Schwielowsee', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12795, 'Senftenberg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12796, 'Spremberg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12797, 'Strausberg', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12798, 'Teltow', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12799, 'Templin', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12800, 'Velten', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12801, 'Wildau', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12802, 'Wittenberge', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12803, 'Wittstock', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12804, 'Zehdenick', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12805, 'Zepernick', 1311, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12806, 'Bremen', 1312, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12807, 'Bremerhaven', 1312, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12808, 'Berne', 1315, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12809, 'Hamburg', 1315, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12810, 'Diekholzen', 1316, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12811, 'Heroldstatt', 1317, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12812, 'ABlar', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12813, 'Alsbach-Hähnlein', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12814, 'Alsfeld', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12815, 'Altenstadt', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12816, 'Angelburg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12817, 'Arolsen', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12818, 'Asslar', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12819, 'Babenhausen', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12820, 'Bad Camberg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12821, 'Bad Hersfeld', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12822, 'Bad Homburg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12823, 'Bad Nauheim', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12824, 'Bad Orb', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12825, 'Bad Schwalbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12826, 'Bad Soden', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12827, 'Bad Soden-Salmunster', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12828, 'Bad Sooden-Allendorf', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12829, 'Bad Vilbel', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12830, 'Bad Wildungen', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12831, 'Baunatal', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12832, 'Bebra', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12833, 'Beerfelden', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12834, 'Bensheim', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12835, 'Berkatal', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12836, 'Biblis', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12837, 'Bickenbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12838, 'Biebertal', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12839, 'Biedenkopf', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12840, 'Birkenau', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12841, 'Bischofsheim', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12842, 'Borken', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12843, 'Braunfels', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12844, 'Breidenbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12845, 'Bruchkobel', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12846, 'Budingen', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12847, 'Burstadt', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12848, 'Buseck', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12849, 'Buttelborn', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12850, 'Butzbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12851, 'Darmstadt', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12852, 'Dautphetal', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12853, 'Dieburg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12854, 'Dietzenbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12855, 'Dillenburg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12856, 'Dreieich', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12857, 'Egelsbach', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12858, 'Eichenzell', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12859, 'Eltville', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12860, 'Eppstein', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12861, 'Erlensee', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12862, 'Erzhausen', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12863, 'Eschborn', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12864, 'Eschenburg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12865, 'Eschwege', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12866, 'Felsberg', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12867, 'Fernwald', 1318, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, 1), -(12868, 'Florsheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12869, 'Frankenberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12870, 'Freigericht', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12871, 'Friedrichsdorf', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12872, 'Fritzlar', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12873, 'Fulda', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12874, 'Fuldabruck', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12875, 'Fuldatal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12876, 'Geisenheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12877, 'Gelnhausen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12878, 'Gernsheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12879, 'GieBen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12880, 'Giessen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12881, 'Ginsheim-Gustavsburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12882, 'Gladenbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12883, 'Griesheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12884, 'GroB-Gerau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12885, 'GroB-Umstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12886, 'GroB-Zimmern', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12887, 'Grossenluder', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12888, 'Gruenberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12889, 'Grunberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12890, 'Grundau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12891, 'Hadamar', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12892, 'Haiger', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12893, 'Hanau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12894, 'Hattersheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12895, 'Heppenheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12896, 'Herborn', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12897, 'Hessisch Lichtenau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12898, 'Heuchelheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12899, 'Heusenstamm', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12900, 'Hochheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12901, 'Hofbieber', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12902, 'Hofgeismar', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12903, 'Hofheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12904, 'Homberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12905, 'Hunfeld', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12906, 'Hunfelden', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12907, 'Hungen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12908, 'Huttenberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12909, 'Idstein', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12910, 'Karben', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12911, 'Kassel', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12912, 'Kaufungen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12913, 'Kelkheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12914, 'Kelsterbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12915, 'Kirchhain', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12916, 'Konigstein', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12917, 'Korbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12918, 'Kriftel', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12919, 'Kronberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12920, 'Kunzell', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12921, 'Lahnau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12922, 'Lahntal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12923, 'Lampertheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12924, 'Langen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12925, 'Langenselbold', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12926, 'Langgons', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12927, 'Laubach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12928, 'Lauterbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12929, 'Lich', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12930, 'Limburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12931, 'Linden', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12932, 'Lindenholzhausen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12933, 'Linsengericht', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12934, 'Lohfelden', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12935, 'Lollar', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12936, 'Lorsch', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12937, 'Maintal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12938, 'Marburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12939, 'Melsungen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12940, 'Mengerskirchen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12941, 'Michelstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12942, 'Morfelden-Walldorf', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12943, 'Morlenbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12944, 'Mucke', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12945, 'Muhlheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12946, 'Muhltal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12947, 'Nauheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12948, 'Neu-Anspach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12949, 'Neu-Isenburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12950, 'Neuhof', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12951, 'Nidda', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12952, 'Niddatal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12953, 'Nidderau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12954, 'Niederdorfelden', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12955, 'Niedernhausen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12956, 'Niestetal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12957, 'Ober-Ramstedt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12958, 'Obertshausen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12959, 'Oberursel', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12960, 'Oestrich-Winkel', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12961, 'Offenbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12962, 'Petersberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12963, 'Pfungstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12964, 'Pohlheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12965, 'Raunheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12966, 'Reichelsheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12967, 'Reinheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12968, 'Reiskirchen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12969, 'Riedstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12970, 'Rimbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12971, 'RoBdorf', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12972, 'Rodenbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12973, 'Rodermark', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12974, 'Rodgau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12975, 'Rosbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12976, 'Rotenburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12977, 'Rudesheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12978, 'Runkel', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12979, 'Russelsheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12980, 'Schauenburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12981, 'Schlangenbad', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12982, 'Schlitz', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12983, 'Schluchtern', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12984, 'Schoneck', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12985, 'Schotten', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12986, 'Schwalbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12987, 'Schwalbach am Taunus', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12988, 'Schwalmstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12989, 'Seeheim-Jugenheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12990, 'Seligenstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12991, 'Selters', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12992, 'Sinntal', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12993, 'Solms', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12994, 'Sontra', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12995, 'Spangenberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12996, 'Stadtallendorf', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12997, 'Steinau', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12998, 'Taunusstein', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(12999, 'Trebur', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13000, 'Ulrichstein', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13001, 'Usingen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13002, 'Vellmar', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13003, 'Viernheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13004, 'Volkmarsen', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13005, 'Wachtersbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13006, 'Wald-Michelbach', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13007, 'Waldbrunn', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13008, 'Waldems', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13009, 'Wehrheim', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13010, 'Weilburg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13011, 'Weilmunster', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13012, 'Weiterstadt', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13013, 'Wettenberg', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13014, 'Wetter', 1318, '2024-01-21 12:05:31', '2024-01-21 12:05:31', NULL, 1), -(13015, 'Wetzlar', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13016, 'Wiesbaden', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13017, 'Witzenhausen', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13018, 'Wolfersheim', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13019, 'Wolfhagen', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13020, 'Zwingenberg', 1318, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13021, 'Laasdorf', 1320, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13022, 'Anklam', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13023, 'Bad Doberan', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13024, 'Barth', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13025, 'Bergen', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13026, 'Boizenburg', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13027, 'Butzow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13028, 'Demmin', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13029, 'Gagelow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13030, 'Gallin', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13031, 'Grabow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13032, 'Greifswald', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13033, 'Grevesmuhlen', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13034, 'Grimmen', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13035, 'Gustrow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13036, 'Hagenow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13037, 'Konigsee', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13038, 'Lubtheen', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13039, 'Ludersdorf', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13040, 'Ludwigslust', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13041, 'Malchin', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13042, 'Neubrandenburg', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13043, 'Neustrelitz', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13044, 'Parchim', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13045, 'Pasewalk', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13046, 'Ribnitz-Damgarten', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13047, 'Rostock', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13048, 'SaBnitz', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13049, 'Schweina', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13050, 'Schwerin', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13051, 'Selmsdorf', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13052, 'Stralsund', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13053, 'Teterow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13054, 'Torgelow', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13055, 'Ueckermunde', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13056, 'Waren', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13057, 'Wismar', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13058, 'Wolgast', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13059, 'Zarrentin', 1332, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13060, 'Mulfingen', 1333, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13061, 'Grafing bei Munchen', 1334, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13062, 'Neubeuern', 1335, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13063, 'Achim', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13064, 'Adendorf', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13065, 'Aerzen', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13066, 'Alfeld', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13067, 'Ankum', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13068, 'Apen', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13069, 'Aurich', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13070, 'Bad Bentheim', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13071, 'Bad Bevensen', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13072, 'Bad Essen', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13073, 'Bad Gandersheim', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13074, 'Bad Harzburg', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13075, 'Bad Iburg', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13076, 'Bad Laer', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13077, 'Bad Lauterberg', 1336, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, 1), -(13078, 'Bad Munder', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13079, 'Bad Nenndorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13080, 'Bad Pyrmont', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13081, 'Bad Sachsa', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13082, 'Bad Salzdetfurth', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13083, 'Bad Zwischenahn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13084, 'BarBel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13085, 'Barsinghausen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13086, 'Bassum', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13087, 'Beesten', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13088, 'Belm', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13089, 'Bissendorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13090, 'Bleckede', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13091, 'Bockenem', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13092, 'Bohmte', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13093, 'Bovenden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13094, 'Brake', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13095, 'Bramsche', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13096, 'Braunschweig', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13097, 'Bremervorde', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13098, 'Brockel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13099, 'Brunswick', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13100, 'Buchholz', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13101, 'Buckeburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13102, 'Burgdorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13103, 'Burgwedel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13104, 'Buxtehude', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13105, 'Celle', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13106, 'Clausthal-Zellerfeld', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13107, 'Clenze', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13108, 'Cloppenburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13109, 'Cremlingen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13110, 'Cuxhaven', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13111, 'Dahlenburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13112, 'Dannenberg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13113, 'Dassel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13114, 'Deinste', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13115, 'Delmenhorst', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13116, 'Diepholz', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13117, 'Dinklage', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13118, 'Dorverden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13119, 'Dransfeld', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13120, 'Drochtersen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13121, 'Duderstadt', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13122, 'Edemissen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13123, 'Edewecht', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13124, 'Einbeck', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13125, 'Elsfleth', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13126, 'Elze', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13127, 'Emden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13128, 'Emlichheim', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13129, 'Emmerthal', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13130, 'Emsburen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13131, 'Eppendorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13132, 'Fallingbostel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13133, 'Frellstedt', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13134, 'Friedeburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13135, 'Friedland', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13136, 'Friesoythe', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13137, 'Ganderkesee', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13138, 'Garbsen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13139, 'Garrel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13140, 'Geeste', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13141, 'Gehrden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13142, 'Georgsmarienhutte', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13143, 'Gifhorn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13144, 'Gleichen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13145, 'Goslar', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13146, 'Gottingen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13147, 'GroBefehn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13148, 'GroBenkneten', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13149, 'Hagen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13150, 'Hambergen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13151, 'Hameln', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13152, 'Hannover', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13153, 'Hannoversch Munden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13154, 'Haren', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13155, 'Harsum', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13156, 'Hasbergen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13157, 'Haselunne', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13158, 'Hatten', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13159, 'Hauslingen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13160, 'Helmstedt', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13161, 'Hemmingen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13162, 'Hessisch Oldendorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13163, 'Hildesheim', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13164, 'Hilter', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13165, 'Hittfeld', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13166, 'Holzminden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13167, 'Hoya', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13168, 'Hude', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13169, 'Ihlow', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13170, 'Ilsede', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13171, 'Isernhagen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13172, 'Jade', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13173, 'Jever', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13174, 'Jork', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13175, 'Kalefeld', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13176, 'Kirchlinteln', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13177, 'Knesebeck', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13178, 'Konigslutter', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13179, 'Krummhorn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13180, 'Laatzen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13181, 'Lahstedt', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13182, 'Langelsheim', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13183, 'Langenhagen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13184, 'Langwedel', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13185, 'Lastrup', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13186, 'Leer', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13187, 'Lehre', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13188, 'Lehrte', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13189, 'Lemforde', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13190, 'Lengede', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13191, 'Liebenburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13192, 'Lilienthal', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13193, 'Lingen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13194, 'Lohne', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13195, 'Loningen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13196, 'Lorup', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13197, 'Loxstedt', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13198, 'Luchow', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13199, 'Luneburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13200, 'Meppen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13201, 'Moormerland', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13202, 'Neu Wulmstorf', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13203, 'Nienburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13204, 'Norden', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13205, 'Nordenham', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13206, 'Nordhorn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13207, 'Nordstemmen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13208, 'Norten-Hardenberg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13209, 'Northeim', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13210, 'Obernkirchen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13211, 'Oldenburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13212, 'Osnabruck', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13213, 'Ostercappeln', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13214, 'Osterholz-Scharmbeck', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13215, 'Osterode', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13216, 'Ostrhauderfehn', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13217, 'Ottersberg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13218, 'Oyten', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13219, 'Papenburg', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13220, 'Pattensen', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13221, 'Peine', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13222, 'Quakenbruck', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13223, 'Rastede', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13224, 'Rehburg-Loccum', 1336, '2024-01-21 12:05:33', '2024-01-21 12:05:33', NULL, 1), -(13225, 'Rhauderfehn', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13226, 'Rinteln', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13227, 'Ritterhude', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13228, 'Ronnenberg', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13229, 'Rosdorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13230, 'Rosengarten', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13231, 'Salzgitter', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13232, 'Salzhemmendorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(13233, 'Sarstedt', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13234, 'Saterland', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13235, 'ScheeBel', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13236, 'Schiffdorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13237, 'Schneverdingen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13238, 'Schoningen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13239, 'Schortens', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13240, 'Schuttorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13241, 'Schwanewede', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13242, 'Seelze', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13243, 'Seesen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13244, 'Seevetal', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13245, 'Sehnde', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13246, 'Soltau', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13247, 'Springe', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13248, 'Stade', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13249, 'Stadthagen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13250, 'Stadtoldendorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13251, 'Stelle', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13252, 'Stuhr', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13253, 'Sudbrookmerland', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13254, 'Sulingen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13255, 'Syke', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13256, 'Tarmstedt', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13257, 'Tostedt', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13258, 'Twistringen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13259, 'Uchte', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13260, 'Uelzen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13261, 'Uetze', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13262, 'Uplengen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13263, 'Uslar', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13264, 'Varel', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13265, 'Vechelde', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13266, 'Vechta', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13267, 'Verden', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13268, 'Vienenburg', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13269, 'Visselhovede', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13270, 'Walkenried', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13271, 'Wallenhorst', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13272, 'Walsrode', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13273, 'Wangerland', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13274, 'Wardenburg', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13275, 'Wedemark', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13276, 'Weener', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13277, 'Wendeburg', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13278, 'Wennigsen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13279, 'Westerstede', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13280, 'Westoverledingen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13281, 'Weyhe', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13282, 'Wiefelstede', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13283, 'Wiesmoor', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13284, 'Wildeshausen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13285, 'Wilhelmshaven', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13286, 'Winsen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13287, 'Wittingen', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13288, 'Wittmund', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13289, 'Wolfenbuttel', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13290, 'Wolfsburg', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13291, 'Worpswede', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13292, 'Wunstorf', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13293, 'Zetel', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13294, 'Zeven', 1336, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13295, 'Middenbeemster', 1337, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13296, 'Aachen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13297, 'Ahaus', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13298, 'Ahlen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13299, 'Aldenhoven', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13300, 'Alfter', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13301, 'Alpen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13302, 'Alsdorf', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13303, 'Altena', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13304, 'Altendorf', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13305, 'Anrochte', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13306, 'Arnsberg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13307, 'Ascheberg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13308, 'Attendorn', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13309, 'Augustdorf', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13310, 'Bad Berleburg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13311, 'Bad Driburg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13312, 'Bad Honnef', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13313, 'Bad Laasphe', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13314, 'Bad Lippspringe', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13315, 'Bad Munstereifel', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13316, 'Bad Oeynhausen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13317, 'Bad Salzuflen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13318, 'Bad Sassendorf', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13319, 'Baesweiler', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13320, 'Balve', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13321, 'Barntrup', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13322, 'Beckum', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13323, 'Bedburg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13324, 'Bedburg-Hau', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13325, 'Bergisch Gladbach', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13326, 'Bergkamen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13327, 'Bergneustadt', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13328, 'Bestwig', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13329, 'Beverungen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13330, 'Bielefeld', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13331, 'Billerbeck', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13332, 'Blomberg', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13333, 'Bochum', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13334, 'Bocket', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13335, 'Bonen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13336, 'Bonn', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13337, 'Borchen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13338, 'Borgentreich', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13339, 'Borgholzhausen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13340, 'Bornheim', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13341, 'Bottrop', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13342, 'Brilon', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13343, 'Bruggen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13344, 'Bunde', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13345, 'Burbach', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13346, 'Buren', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13347, 'Burscheid', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13348, 'Castrop-Rauxel', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13349, 'Coesfeld', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13350, 'Cologne', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13351, 'Datteln', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13352, 'Delbruck', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13353, 'Denklingen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13354, 'Detmold', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13355, 'Dingden', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13356, 'Dinslaken', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13357, 'Dormagen', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13358, 'Dorsten', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13359, 'Dortmund', 1338, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, 1), -(13360, 'Drensteinfurt', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13361, 'Drolshagen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13362, 'Duisburg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13363, 'Dulmen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13364, 'Duren', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13365, 'Dusseldorf', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13366, 'Eitorf', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13367, 'Elsdorf', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13368, 'Emmerich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13369, 'Emsdetten', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13370, 'Engelskirchen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13371, 'Enger', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13372, 'Ennepetal', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13373, 'Ennigerloh', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13374, 'Ense', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13375, 'Erftstadt', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13376, 'Erkelenz', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13377, 'Erkrath', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13378, 'Erwitte', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13379, 'Espelkamp', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13380, 'Euskirchen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13381, 'Extertal', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13382, 'Finnentrop', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13383, 'Frechen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13384, 'Freudenberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13385, 'Frondenberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13386, 'Gangelt', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13387, 'Geilenkirchen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13388, 'Geldern', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13389, 'Gelsenkirchen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13390, 'Gescher', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13391, 'Geseke', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13392, 'Gevelsberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13393, 'Gladbeck', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13394, 'Goch', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13395, 'Grefrath', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13396, 'Greven', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13397, 'Grevenbroich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13398, 'Gronau', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13399, 'Gummersbach', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13400, 'Gutersloh', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13401, 'Haan', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13402, 'Haltern', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13403, 'Halver', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13404, 'Hamm', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13405, 'Hamminkeln', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13406, 'Harsewinkel', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13407, 'Hattingen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13408, 'Havixbeck', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13409, 'Heiligenhaus', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13410, 'Heinsberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13411, 'Hemer', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13412, 'Hennef', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13413, 'Herdecke', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13414, 'Herford', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13415, 'Herten', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13416, 'Herzebrock-Clarholz', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13417, 'Herzogenrath', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13418, 'Hiddenhausen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13419, 'Hilchenbach', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13420, 'Hilden', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13421, 'Hille', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13422, 'Holzwickede', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13423, 'Horn-Bad Meinberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13424, 'Horstel', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13425, 'Hovelhof', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13426, 'Hoxter', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13427, 'Huckelhoven', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13428, 'Huckeswagen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13429, 'Hullhorst', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13430, 'Hunxe', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13431, 'Hurth', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13432, 'Ibbenburen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13433, 'Iserlohn', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13434, 'Isselburg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13435, 'Issum', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13436, 'Juchen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13437, 'Julich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13438, 'Kaarst', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13439, 'Kalkar', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13440, 'Kall', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13441, 'Kalletal', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13442, 'Kamp-Lintfort', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13443, 'Kempen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13444, 'Kerken', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13445, 'Kerpen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13446, 'Kevelaer', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13447, 'Kierspe', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13448, 'Kirchhundem', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13449, 'Kirchlengern', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13450, 'Kleve', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13451, 'Koln', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13452, 'Konigswinter', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13453, 'Korschenbroich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13454, 'Krefeld', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13455, 'Kreuzau', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13456, 'Kreuztal', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13457, 'Kurten', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13458, 'Lage', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13459, 'Langenfeld', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13460, 'Langerwehe', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13461, 'Leichlingen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13462, 'Lemgo', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13463, 'Lengerich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13464, 'Lennestadt', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13465, 'Leopoldshohe', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13466, 'Leverkusen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13467, 'Lichtenau', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13468, 'Lindlar', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13469, 'Linnich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13470, 'Lippetal', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13471, 'Lippstadt', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13472, 'Lohmar', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13473, 'Lotte', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13474, 'Lubbecke', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13475, 'Ludenscheid', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13476, 'Ludinghausen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13477, 'Lugde', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13478, 'Lunen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13479, 'Marienheide', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13480, 'Marl', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13481, 'Marsberg', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13482, 'Mechernich', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13483, 'Meckenheim', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13484, 'Meerbusch', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13485, 'Meinerzhagen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13486, 'Menden', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13487, 'Meschede', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13488, 'Mettingen', 1338, '2024-01-21 12:05:35', '2024-01-21 12:05:35', NULL, 1), -(13489, 'Mettmann', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13490, 'Minden', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13491, 'Moers', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13492, 'Mohnesee', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13493, 'Monchengladbach', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13494, 'Monheim', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13495, 'Monschau', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13496, 'Morsbach', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13497, 'Much', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13498, 'Mulheim', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13499, 'Netphen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13500, 'Nettetal', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13501, 'Neuenkirchen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13502, 'Neuenrade', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13503, 'Neukirchen-Vluyn', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13504, 'Neunkirchen-Seelscheid', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13505, 'Neuss', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13506, 'Nideggen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13507, 'Niederkassel', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13508, 'Niederkruchten', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13509, 'Niederzier', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13510, 'Nordkirchen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13511, 'Norvenich', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13512, 'Nottuln', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13513, 'Numbrecht', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13514, 'Oberhausen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13515, 'Ochtrup', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13516, 'Odenthal', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13517, 'Oelde', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13518, 'Oer-Erkenschwick', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13519, 'Oerlinghausen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13520, 'Olfen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13521, 'Olpe', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13522, 'Olsberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13523, 'Overath', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13524, 'Paderborn', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13525, 'Petershagen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13526, 'Plettenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13527, 'Porta Westfalica', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13528, 'PreuBisch Oldendorf', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13529, 'Pulheim', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13530, 'Radevormwald', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13531, 'Raesfeld', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13532, 'Rahden', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13533, 'Ratingen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13534, 'Recke', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13535, 'Recklinghausen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13536, 'Rees', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13537, 'Reichshof', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13538, 'Reken', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13539, 'Remscheid', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13540, 'Rheda-Wiedenbruck', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13541, 'Rhede', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13542, 'Rheinbach', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13543, 'Rheinberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13544, 'Rheine', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13545, 'Rietberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13546, 'Rommerskirchen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13547, 'Rosendahl', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13548, 'Rosrath', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13549, 'Ruthen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13550, 'Salzkotten', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13551, 'Sassenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13552, 'Schalksmuhle', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13553, 'Schermbeck', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13554, 'Schieder-Schwalenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13555, 'Schleiden', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13556, 'SchloB Holte-Stukenbrock', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13557, 'Schmallenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13558, 'Schwalmtal', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13559, 'Schwelm', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13560, 'Schwerte', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13561, 'Selm', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13562, 'Sendenhorst', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13563, 'Siegburg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13564, 'Siegen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13565, 'Simmerath', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13566, 'Soest', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13567, 'Solingen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13568, 'Sonsbeck', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13569, 'Spenge', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13570, 'Sprockhovel', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13571, 'Stadtlohn', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13572, 'Steinfurt', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13573, 'Steinhagen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13574, 'Stemwede', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13575, 'Stolberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13576, 'Straelen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13577, 'Sundern', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13578, 'Swisttal', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13579, 'Tecklenburg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13580, 'Telgte', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13581, 'Tonisvorst', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13582, 'Troisdorf', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13583, 'Ubach-Palenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13584, 'Unna', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13585, 'Velbert', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13586, 'Velen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13587, 'Verl', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13588, 'Versmold', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13589, 'Viersen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13590, 'Vlotho', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13591, 'Voerde', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13592, 'Vreden', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13593, 'Wachtberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13594, 'Wachtendonk', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13595, 'Wadersloh', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13596, 'Waldbrol', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13597, 'Waltrop', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13598, 'Warburg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13599, 'Warendorf', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13600, 'Warstein', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13601, 'Wassenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13602, 'Weeze', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13603, 'Wegberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13604, 'Weilerswist', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13605, 'Welver', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13606, 'Wenden', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13607, 'Werdohl', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13608, 'Werl', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13609, 'Wermelskirchen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13610, 'Werne', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13611, 'Werther', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13612, 'Wesel', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13613, 'Wesseling', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13614, 'Westerkappeln', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13615, 'Wickede', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13616, 'Wiehl', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13617, 'Willich', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13618, 'Wilnsdorf', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13619, 'Windeck', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13620, 'Winterberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13621, 'Wipperfurth', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13622, 'Witten', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13623, 'Wulfrath', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13624, 'Wunnenberg', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13625, 'Wuppertal', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13626, 'Wurselen', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13627, 'Xanten', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13628, 'Zulpich', 1338, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, 1), -(13629, 'Herzberg am Harz', 1340, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13630, 'Alzey', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13631, 'Andernach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13632, 'Bad Durkheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13633, 'Bad Ems', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13634, 'Bad Kreuznach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13635, 'Bad Neuenahr-Ahrweiler', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13636, 'Bendorf', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13637, 'Betzdorf', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13638, 'Bingen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13639, 'Bitburg', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13640, 'Bobenheim-Roxheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13641, 'Bohl-Iggelheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13642, 'Boppard', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13643, 'Daun', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13644, 'Diez', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13645, 'Eisenberg', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13646, 'Essingen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13647, 'Frankenthal', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13648, 'Gau-Odernheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13649, 'Germersheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13650, 'Grunstadt', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13651, 'HaBloch', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13652, 'Hahnstatten', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13653, 'Hallschlag', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13654, 'Herschbach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13655, 'Herxheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13656, 'Hirschhorn', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13657, 'Hohr-Grenzhausen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13658, 'Holzheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13659, 'Idar-Oberstein', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13660, 'Ingelheim', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13661, 'Kaisersesch', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13662, 'Kaiserslautern', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13663, 'Kastellaun', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13664, 'Kindsbach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13665, 'Kirchen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13666, 'Kirn', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13667, 'Koblenz', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13668, 'Lahnstein', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13669, 'Limburgerhof', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13670, 'Luckenburg', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13671, 'Ludwigshafen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13672, 'Mainz', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13673, 'Mayen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13674, 'Montabaur', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13675, 'Morbach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13676, 'Mulheim-Karlich', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13677, 'Mundersbach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13678, 'Mutterstadt', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13679, 'Neitersen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13680, 'Neuwied', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13681, 'Niederzissen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13682, 'Pirmasens', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13683, 'Plaidt', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13684, 'Remagen', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13685, 'Schifferstadt', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13686, 'Schoenenberg Kuebelberg', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13687, 'Sinzig', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13688, 'Speyer', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13689, 'St. Goar', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13690, 'Trier', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13691, 'Vallendar', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13692, 'Winterbach', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13693, 'Wittlich', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13694, 'Worms', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13695, 'Worth', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13696, 'Zweibrucken', 1341, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13697, 'Adenau', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13698, 'Anhausen', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13699, 'Barbelroth', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13700, 'Berndroth', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13701, 'Bernkastel-Kues', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13702, 'Burgbrohl', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13703, 'Dieblich', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13704, 'Dierdorf', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13705, 'Dreisbach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13706, 'Elsoff', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13707, 'Enkenbach-Alsenborn', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13708, 'Etzbach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13709, 'Flonheim', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13710, 'Fohren', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13711, 'Grafschaft', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13712, 'Hochspeyer', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13713, 'Leiningen', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13714, 'Moschheim', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13715, 'Murlenbach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13716, 'Neuhofen', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13717, 'Nievern', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13718, 'Norken', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13719, 'Oberlahr', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13720, 'Otterstadt', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13721, 'Rennerod', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13722, 'Rheinbreitbach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13723, 'Rieschweiler-Muhlbach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13724, 'Saarburg', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13725, 'Stahlhofen', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13726, 'Steinebach', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13727, 'Weinsheim', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13728, 'Winnweiler', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13729, 'Wissen', 1342, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13730, 'Beckingen', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13731, 'Bexbach', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13732, 'Blieskastel', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13733, 'Duppenweiler', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13734, 'Eppelborn', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13735, 'Friedrichsthal', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13736, 'GroBrosseln', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13737, 'Heusweiler', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13738, 'Homburg', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13739, 'Illingen', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13740, 'Kirkel', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13741, 'Kleinblittersdorf', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13742, 'Lebach', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13743, 'Losheim', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13744, 'Mandelbachtal', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13745, 'Marpingen', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13746, 'Merchweiler', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13747, 'Merzig', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13748, 'Mettlach', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13749, 'Nalbach', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13750, 'Nohfelden', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13751, 'Nonnweiler', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13752, 'Oberthal', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13753, 'Ottweiler', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13754, 'Puttlingen', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13755, 'Quierschied', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13756, 'Rehlingen-Siersburg', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13757, 'Riegelsberg', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13758, 'Saarbrucken', 1343, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, 1), -(13759, 'Saarlouis', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13760, 'Saarwellingen', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13761, 'Sankt Ingbert', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13762, 'Sankt Wendel', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13763, 'Schiffweiler', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13764, 'Schmelz', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13765, 'Spiesen-Elversberg', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13766, 'Sulzbach', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13767, 'Tholey', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13768, 'Uberherrn', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13769, 'Volklingen', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13770, 'Wadern', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13771, 'Wadgassen', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13772, 'Wallerfangen', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13773, 'Weiskirchen', 1343, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13774, 'Annaberg-Buchholz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13775, 'Aue', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13776, 'Auerbach', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13777, 'Bautzen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13778, 'Bischofswerda', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13779, 'Borna', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13780, 'Brand-Erbisdorf', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13781, 'Burgstadt', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13782, 'Chemnitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13783, 'Coswig', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13784, 'Crimmitschau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13785, 'Delitzsch', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13786, 'Dobeln', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13787, 'Eilenburg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13788, 'Falkenstein', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13789, 'Floha', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13790, 'Freital', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13791, 'Friedewald', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13792, 'Glauchau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13793, 'Gorlitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13794, 'Grimma', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13795, 'GroBenhain', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13796, 'Groditz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13797, 'Hainichen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13798, 'Heidenau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13799, 'Hirschstein', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13800, 'Hohenstein-Ernstthal', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13801, 'Hoyerswerda', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13802, 'Kamenz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13803, 'Klingenthal', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13804, 'Leipzig', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13805, 'Limbach-Oberfrohna', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13806, 'LoBnitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13807, 'Lobau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13808, 'Lugau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13809, 'Marienberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13810, 'Markkleeberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13811, 'Meerane', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13812, 'MeiBen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13813, 'Mittweida', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13814, 'Muldenhammer', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13815, 'Niesky', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13816, 'Oelsnitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13817, 'Olbernhau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13818, 'Olbersdorf', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13819, 'Oschatz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13820, 'Pirna', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13821, 'Plauen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13822, 'Radeberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13823, 'Radebeul', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13824, 'Reichenbach', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13825, 'Riesa', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13826, 'Rietschen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13827, 'Schkeuditz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13828, 'Schneeberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13829, 'Schwarzenberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13830, 'Sebnitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13831, 'Stollberg', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13832, 'Taubenheim', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13833, 'Taucha', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13834, 'Torgau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13835, 'Waldheim', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13836, 'WeiBwasser', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13837, 'Werdau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13838, 'Wilkau-HaBlau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13839, 'Wurzen', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13840, 'Zittau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13841, 'Zschopau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13842, 'Zwickau', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13843, 'Zwonitz', 1344, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13844, 'Aken', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13845, 'Aschersleben', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13846, 'Bad Durrenberg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13847, 'Bebitz', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13848, 'Bernburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13849, 'Bitterfeld', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(13850, 'Blankenburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13851, 'Braunsbedra', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13852, 'Burg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13853, 'Calbe', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13854, 'Dessau', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13855, 'Eisleben', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13856, 'Gardelegen', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13857, 'Genthin', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13858, 'Gommern', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13859, 'Grafenhainichen', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13860, 'Halberstadt', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13861, 'Haldensleben', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13862, 'Hettstedt', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13863, 'Heyrothsberge', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13864, 'Hotensleben', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13865, 'Kothen', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13866, 'Leuna', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13867, 'Magdeburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13868, 'Merseburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13869, 'Naumburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13870, 'Oschersleben', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13871, 'Osterburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13872, 'Osterwieck', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13873, 'Quedlinburg', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13874, 'Querfurt', 1345, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, 1), -(13875, 'Raguhn', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13876, 'RoBlau', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13877, 'Salzwedel', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13878, 'Sangerhausen', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13879, 'Schonebeck', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13880, 'StaBfurt', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13881, 'Stendal', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13882, 'Tangermunde', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13883, 'Thale', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13884, 'WeiBenfels', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13885, 'Wittenberg', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13886, 'Wolfen', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13887, 'Wolmirstedt', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13888, 'Zeitz', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13889, 'Zerbst', 1345, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13890, 'Bad Lausick', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13891, 'Bernsdorf', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13892, 'Borde-Hakel', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13893, 'Gelenau', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13894, 'Groberkmannsdorf ', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13895, 'Hartha', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13896, 'Kreischa', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13897, 'Malschwitz', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13898, 'Naunhof', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13899, 'Pausa', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13900, 'Seiffen', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13901, 'Stutzengrun', 1346, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13902, 'Ahrensbok', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13903, 'Ahrensburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13904, 'Altenholz', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13905, 'Alveslohe', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13906, 'Ammersbek', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13907, 'Bad Bramstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13908, 'Bad Oldesloe', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13909, 'Bad Schwartau', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13910, 'Bad Segeberg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13911, 'Bargteheide', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13912, 'Barmstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13913, 'Barsbuttel', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13914, 'Bredstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13915, 'Brunsbuttel', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13916, 'Budelsdorf', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13917, 'Eckernforde', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13918, 'Eddelak', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13919, 'Elmshorn', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13920, 'Eutin', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13921, 'Flensburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13922, 'Friedrichstadt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13923, 'Geesthacht', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13924, 'Glinde', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13925, 'Gluckstadt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13926, 'Grob Pampau', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13927, 'Halstenbek', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13928, 'Hamfelde', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13929, 'Harrislee', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13930, 'Hartenholm', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13931, 'Heide', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13932, 'Heiligenhafen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13933, 'Henstedt-Ulzburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13934, 'Honenwestedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13935, 'Husum', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13936, 'Itzehoe', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13937, 'Kaltenkirchen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13938, 'Kappeln', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13939, 'Kiel', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13940, 'Kronshagen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13941, 'Lauenburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13942, 'Lensahn', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13943, 'Lubeck', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13944, 'Malente', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13945, 'Mielkendorf', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13946, 'Molfsee', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13947, 'Molln', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13948, 'Neuenbrook', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13949, 'Neumunster', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13950, 'Norderstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13951, 'Oststeinbek', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13952, 'Pinneberg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13953, 'Plon', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13954, 'Preetz', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13955, 'Quickborn', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13956, 'Ratekau', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13957, 'Ratzeburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13958, 'Reinbek', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13959, 'Reinfeld', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13960, 'Rellingen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13961, 'Rendsburg', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13962, 'Rethwisch', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13963, 'Satrup', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13964, 'Scharbeutz', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13965, 'Schenefeld', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13966, 'Schleswig', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13967, 'Schmalfeld', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13968, 'Schoenkirchen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13969, 'Schwarzenbek', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13970, 'Sievershutten', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13971, 'Stockelsdorf', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13972, 'Tangstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13973, 'Timmendorfer Strand', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13974, 'Tornesch', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13975, 'Travemunde', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13976, 'Uetersen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13977, 'Wahlstedt', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13978, 'Wedel', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13979, 'Wentorf', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13980, 'Westerland', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13981, 'Westerronfeld', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13982, 'Wohltorf', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13983, 'Wotersen', 290, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13984, 'Altenburg', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13985, 'Apolda', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13986, 'Arnstadt', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13987, 'Bad Frankenhausen', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13988, 'Bad Langensalza', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13989, 'Bad Salzungen', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13990, 'Cursdorf', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13991, 'Dornburg', 1347, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, 1), -(13992, 'Eisenach', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13993, 'Erfurt', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13994, 'Gera', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13995, 'Geschwenda', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13996, 'Gotha', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13997, 'Greiz', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13998, 'Heiligenstadt', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(13999, 'Hermsdorf', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14000, 'Hildburghausen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14001, 'Ilmenau', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14002, 'Immelborn', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14003, 'Jena', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14004, 'Leinefelde', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14005, 'Leutenberg', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14006, 'Meiningen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14007, 'Meuselwitz', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14008, 'Muhlhausen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14009, 'Nordhausen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14010, 'PoBneck', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14011, 'Rosenthal', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14012, 'Rositz', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14013, 'Rudolstadt', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14014, 'Ruhla', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14015, 'Saalfeld', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14016, 'Schmalkalden', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14017, 'Schmolln', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14018, 'Sommerda', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14019, 'Sondershausen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14020, 'Sonneberg', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14021, 'Suhl', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14022, 'Triptis', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14023, 'Uhlstadt', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14024, 'Waltershausen', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14025, 'Weida', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14026, 'Weimar', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14027, 'Wernigerode', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14028, 'Wormstedt', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14029, 'Zella-Mehlis', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14030, 'Zeulenroda', 1347, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14031, 'Webling', 1348, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14032, 'Schlobborn', 1350, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14033, 'Agogo', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14034, 'Bekwai', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14035, 'Konongo', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14036, 'Kumasi', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14037, 'Mampong', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14038, 'Mankranso', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14039, 'Obuasi', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14040, 'Ofinso', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14041, 'Tafo', 1351, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14042, 'Bechem', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14043, 'Berekum', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14044, 'Duayaw Nkwanta', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14045, 'Kintampo', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14046, 'Sunyani', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14047, 'Techiman', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14048, 'Wenchi', 1352, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14049, 'Apam', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14050, 'Cape Coast', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14051, 'Dunkwa', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14052, 'Elmina', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14053, 'Foso', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14054, 'Komenda', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14055, 'Mauri', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14056, 'Mumford', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14057, 'Nyakrom', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14058, 'Okitsiu', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14059, 'Saltpond', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14060, 'Swedru', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14061, 'Winneba', 1102, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14062, 'Aburi', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14063, 'Ada', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14064, 'Akim Swedru', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14065, 'Akropong', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14066, 'Asamankese', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14067, 'Begoro', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14068, 'Kade', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14069, 'Kibi', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14070, 'Koforidua', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14071, 'Mpraeso', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14072, 'Nkawkaw', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14073, 'Nsawam', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14074, 'Oda', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14075, 'Somanya', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14076, 'Suhum', 140, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14077, 'Kpandae', 1103, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14078, 'Salaga', 1103, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14079, 'Savelugu', 1103, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14080, 'Tamale', 1103, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14081, 'Yendi', 1103, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, 1), -(14082, 'Aflao', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14083, 'Anloga', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14084, 'Ho', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14085, 'Hohoe', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14086, 'Keta', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14087, 'Kete-Krachi', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14088, 'Kpandu', 1356, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14089, 'Aboso', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14090, 'Anomabu', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14091, 'Axim', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14092, 'Bibiani', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14093, 'Prestea', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14094, 'Sekondi', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14095, 'Shama', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14096, 'Takoradi', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14097, 'Tarkwa', 143, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14098, 'Gibraltar', 1357, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14099, 'Elassonos', 1358, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14100, 'Aiyion', 1359, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14101, 'Patra', 1359, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14102, 'Argos', 1361, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14103, 'Navplion', 1361, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14104, 'Tripoli', 1362, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14105, 'Arta', 1363, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14106, 'Acharnes', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14107, 'Agios Ioannis Rentis', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14108, 'Drapetsona', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14109, 'Koropi', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14110, 'Lavrion', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14111, 'Mandra', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14112, 'Spata', 1364, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14113, 'Aharna', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14114, 'Aiyaleo', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14115, 'Alimos', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14116, 'Amarousion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14117, 'Ano Liosia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14118, 'Aryiroupoli', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14119, 'Aspropirgos', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14120, 'Athina', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14121, 'Athinai', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14122, 'Ayia Barbara', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14123, 'Ayia Paraskevi', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14124, 'Ayios Anaryiros', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14125, 'Ayios Dimitrios', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14126, 'Dafne', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14127, 'Elevsis', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14128, 'Ellenikon', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14129, 'Galatsion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14130, 'Glifada', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14131, 'Haidarion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14132, 'Halandrion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14133, 'Holargos', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14134, 'Ilioupoli', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14135, 'Iraklion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14136, 'Kaisariani', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14137, 'Kallithea', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14138, 'Kamateron', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14139, 'Keratea', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14140, 'Keratsinion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14141, 'Kifisia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14142, 'Koridallos', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14143, 'Kropion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14144, 'Markopoulos Mesogaia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14145, 'Maroussi', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14146, 'Megara', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14147, 'Melission', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14148, 'Metamorfosios', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14149, 'Moshatos', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14150, 'Nea Filedelfia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14151, 'Nea Ionia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14152, 'Nea Liosia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14153, 'Nea Smirni', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14154, 'Nikaia', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14155, 'Palaion Faliron', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14156, 'Perama', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14157, 'Peristerion', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14158, 'Petroupoli', 1365, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, 1), -(14159, 'Pevka', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14160, 'Piraeus', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14161, 'Salamis', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14162, 'Tavros', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14163, 'Viron', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14164, 'Voula', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14165, 'Vrilission', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14166, 'Zografos', 1365, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14167, 'Heraklion', 1367, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14168, 'Arhangelos', 1368, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14169, 'Ialysos', 1368, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14170, 'Kos', 1368, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14171, 'Rodos', 1368, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14172, 'Drama', 1369, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14173, 'Chalkis', 1370, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14174, 'Karpenisi', 1371, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14175, 'Alexandroupoli', 1372, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14176, 'Orestias', 1372, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14177, 'Halkida', 1373, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14178, 'Florina', 1374, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14179, 'Amfissa', 1375, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14180, 'Lamia', 1376, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14181, 'Grevena', 1377, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14182, 'Halandri', 1378, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14183, 'Lakkoma', 1379, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14184, 'N. Kallikrateia', 1379, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14185, 'Poliyiros', 1379, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14186, 'Hania', 1380, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14187, 'Crete', 1381, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14188, 'Hios', 1382, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14189, 'Pirgos', 1383, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14190, 'Veroia', 1384, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14191, 'Ioannina', 1385, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, 1), -(14192, 'Karditsa', 1387, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14193, 'Kastoria', 1388, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14194, 'Kavala', 1389, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14195, 'Agioi Theodoroi', 1390, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14196, 'Argostolion', 1390, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14197, 'Kerkira', 1391, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14198, 'Ermoupoli', 1392, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14199, 'Fira', 1392, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14200, 'Mikonos', 1392, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14201, 'Kilkis', 1393, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14202, 'Korinthos', 1394, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14203, 'Kozani', 1395, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14204, 'Ptolemais', 1395, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14205, 'Sparti', 1396, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14206, 'Larisa', 1397, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14207, 'Larissa', 1397, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14208, 'Ayios Nikolaos', 1398, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14209, 'Ierapetra', 1398, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14210, 'Sitia', 1398, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14211, 'Mitilini', 1399, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14212, 'Levkas', 1400, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14213, 'Volos', 1401, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14214, 'Kalamata', 1402, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14215, 'Edessa', 1405, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14216, 'Yiannitsa', 1405, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14217, 'Katerini', 1406, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14218, 'Acharne', 1407, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14219, 'Pallini', 1407, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14220, 'Preveza', 1408, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14221, 'Rethimnon', 1409, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, 1), -(14222, 'Komotini', 1410, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14223, 'Samos', 1411, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14224, 'Serrai', 1412, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14225, 'Igoumenitsa', 1413, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14226, 'Ampelokipa', 1414, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14227, 'Kalamaria', 1414, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14228, 'Neapoli', 1414, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14229, 'Oristiada', 1414, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14230, 'Thessaloniki', 1414, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14231, 'Trikala', 1415, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14232, 'Levadia', 1416, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14233, 'Thivai', 1416, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14234, 'Xanthi', 1418, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14235, 'Zakinthos', 1419, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14236, 'Aasiaat', 1420, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14237, 'Akunnaaq', 1420, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14238, 'Kitsissuarsuit', 1420, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14239, 'Ikkatteq', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14240, 'Isortoq', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14241, 'Kulusuk', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14242, 'Kuumiut', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14243, 'Qernertuarssuit', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14244, 'Sermiligaaq', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14245, 'Tasiilaq', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14246, 'Tiniteqilaaq', 1421, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14247, 'Illoqqortoormiut', 1422, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14248, 'Itterajivit', 1422, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14249, 'Uunarteq', 1422, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14250, 'Ilimanaq', 1423, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14251, 'Ilulissat', 1423, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14252, 'Oqaatsut', 1423, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14253, 'Qeqertaq', 1423, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14254, 'Saqqaq', 1423, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14255, 'Ivittuut', 1424, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14256, 'Kangilinnguit', 1424, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14257, 'Attu', 1425, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14258, 'Iginniarfik', 1425, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14259, 'Ikerasaarsuk', 1425, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14260, 'Kangaatsiaq', 1425, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14261, 'Niaqornaarsuk', 1425, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14262, 'Atammik', 1426, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14263, 'Kangaamiut', 1426, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14264, 'Maniitsoq', 1426, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14265, 'Napasoq', 1426, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14266, 'Aappilattoq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14267, 'Akuliaruseq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14268, 'Alluitsoq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14269, 'Alluitsup Paa', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14270, 'Ammassivik', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14271, 'Ikerasassuaq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14272, 'Nanortalik', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14273, 'Narsarmijit', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14274, 'Nuugaarsuk', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14275, 'Qallimiut', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14276, 'Qortortorsuaq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14277, 'Tasiusaq', 1427, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, 1), -(14278, 'Amannguit', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14279, 'Atarnaatsoq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14280, 'Eqaluit Ilua', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14281, 'Igaliku', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14282, 'Igaliku Kujalleq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14283, 'Inneruulalik', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14284, 'Issormiut', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14285, 'Iterlak', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14286, 'Kangerlua', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14287, 'Narsaq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14288, 'Narsarsuaq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14289, 'Nunataaq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14290, 'Qassiarsuk', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14291, 'Qinngua', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14292, 'Qinngua Kangilleq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14293, 'Qolortup Itinnera', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14294, 'Sillisit', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14295, 'Timerliit', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14296, 'Uummannartuuaraq', 1428, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14297, 'Kangerluarsoruseq', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14298, 'Kapisillit', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14299, 'Neriunaq', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14300, 'Nuuk', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14301, 'Qeqertarsuatsiaat', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14302, 'Qooqqut', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14303, 'Qoornoq', 1429, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14304, 'Arsuk', 1430, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14305, 'Paamiut', 1430, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14306, 'Moriusaq', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14307, 'Qaanaaq', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14308, 'Qeqertarsuaq', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14309, 'Qeqertat', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14310, 'Savissivik', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14311, 'Siorapaluk', 1431, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14312, 'Eqalugaarsuit', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14313, 'Illorsuit', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14314, 'Kangerluarsorujuk', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14315, 'Kangerluarsorujuup Qinngua', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14316, 'Qanisartuut', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14317, 'Qaqortokolook', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14318, 'Qaqortoq', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14319, 'Qassimiut', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14320, 'Saarloq', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14321, 'Saqqamiut', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14322, 'Tasiluk', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14323, 'Upernaviarsuk', 1432, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14324, 'Ikamiut', 1433, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14325, 'Qasigiannguit', 1433, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14326, 'Kangerluk', 1434, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14327, 'Itilleq', 1435, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14328, 'Kangerlussuaq', 1435, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14329, 'Sarfannguit', 1435, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14330, 'Sisimiut', 1435, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14331, 'Ikerakuuk', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14332, 'Innarsuit', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14333, 'Kangersuatsiaq', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14334, 'Kullorsuaq', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14335, 'Naajaat', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14336, 'Nutaarmiut', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14337, 'Nuusuaq', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14338, 'Upernavik', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14339, 'Upernavik Kujalleq', 1437, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14340, 'Ikerasak', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14341, 'Niaqornat', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14342, 'Nuugaatsiaq', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14343, 'Qaarsut', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14344, 'Saattut', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14345, 'Ukkusissat', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14346, 'Uummannaq', 1438, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, 1), -(14347, 'Baie-Mahault', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14348, 'Baillif', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14349, 'Basse-Terre', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14350, 'Bouillante', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14351, 'Capesterre-Belle-Eau', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14352, 'Gourbeyre', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14353, 'Lamentin', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14354, 'Petit-Bourg', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14355, 'Pointe-Noire', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14356, 'Sainte-Rose', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14357, 'Vieux-Habitants', 1442, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14358, 'Anse-Bertrand', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14359, 'Le Gosier', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14360, 'Le Moule', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14361, 'Les Abymes', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14362, 'Morne-a-l Eau', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14363, 'Petit-Canal', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14364, 'Point-a-Pitre', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14365, 'Port-Louis', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14366, 'Saint-Francois', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14367, 'Sainte-Anne', 1443, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14368, 'Grand-Bourg', 1446, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14369, 'Agat', 1450, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14370, 'Barrigada', 1451, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14371, 'Barrigada Heights', 1451, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14372, 'Chalan Pago', 1452, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14373, 'Ordot', 1452, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14374, 'Astumbo', 1453, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14375, 'Dededo', 1453, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14376, 'Finegayan Station', 1453, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14377, 'Agana', 1454, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14378, 'Agana Station', 1454, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14379, 'Inarajan', 1455, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14380, 'Mangilao', 1456, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14381, 'Merizo', 1457, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14382, 'Mongmong', 1458, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14383, 'Toto', 1458, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, 1), -(14384, 'Sinajana', 1460, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14385, 'Talofofo', 1461, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14386, 'Tamuning', 1462, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14387, 'Anderson Air Force Base', 1463, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14388, 'Yigo', 1463, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14389, 'Yona', 1464, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14390, 'Chimaltenango', 1467, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14391, 'Comalapa', 1467, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14392, 'Itzapa', 1467, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14393, 'Patzun', 1467, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14394, 'Chiquimula', 1468, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14395, 'Cotzumalguapa', 1470, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14396, 'Escuintla', 1470, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14397, 'Palin', 1470, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14398, 'Tiquisate', 1470, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14399, 'Amatitlan', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14400, 'Chinautla', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14401, 'Guatemala', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14402, 'Mixco', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14403, 'Petapa', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14404, 'Villa Nueva', 1471, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14405, 'Huehuetenango', 1472, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14406, 'Puerto Barrios', 1473, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14407, 'Jalapa', 1474, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14408, 'Asuncion Mita', 1475, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14409, 'Jutiapa', 1475, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14410, 'Quezaltenango', 1477, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14411, 'Quiche', 1478, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14412, 'Retalhuleu', 1479, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14413, 'Antigua', 1480, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14414, 'Ciudad Vieja', 1480, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14415, 'Jocotenango', 1480, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14416, 'Santa Maria de Jesus', 1480, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14417, 'Sumpango', 1480, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, 1), -(14418, 'Atitlan', 1483, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14419, 'Solola', 1483, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14420, 'Mazatenango', 1484, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14421, 'Totonicapan', 1485, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14422, 'Zacapa', 1486, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14423, 'Beyla', 1487, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14424, 'Boffa', 1488, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14425, 'Boke', 1489, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14426, 'Conakry', 1490, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14427, 'Coyah', 1491, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14428, 'Dabola', 1492, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14429, 'Dalaba', 1493, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14430, 'Dinguiraye', 1494, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14431, 'Faranah', 1495, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14432, 'Forecariah', 1496, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14433, 'Fria', 1497, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14434, 'Gaoual', 1498, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14435, 'Guekedou', 1499, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14436, 'Kankan', 1500, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14437, 'Kerouane', 1501, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14438, 'Kindia', 1502, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14439, 'Kissidougou', 1503, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14440, 'Koubia', 1504, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, 1), -(14441, 'Koundara', 1505, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14442, 'Kouroussa', 1506, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14443, 'Labe', 1507, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14444, 'Lola', 1508, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14445, 'Macenta', 1509, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14446, 'Mali', 1510, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14447, 'Mamou', 1511, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14448, 'Mandiana', 1512, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14449, 'Nzerekore', 1513, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14450, 'Pita', 1514, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14451, 'Siguiri', 1515, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14452, 'Telimele', 1516, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14453, 'Tougue', 1517, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14454, 'Yomou', 1518, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14455, 'Bafata', 1519, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14456, 'Bissau', 1520, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14457, 'Bolama', 1521, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14458, 'Bubaque', 1521, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14459, 'Cacheu', 1522, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14460, 'Canchungo', 1522, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14461, 'Gabu', 1523, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14462, 'Bissora', 1524, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14463, 'Farim', 1524, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14464, 'Mansoa', 1524, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14465, 'Buba', 1525, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14466, 'Fulacunda', 1525, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14467, 'Quebo', 1525, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14468, 'Catio', 1526, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(14469, 'Mabaruma', 1527, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14470, 'Morawhanna', 1527, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14471, 'Bartica', 1528, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14472, 'Issano', 1528, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14473, 'Kamarang', 1528, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, 1), -(14474, 'Mahaica', 1529, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14475, 'Paradise', 1529, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14476, 'Queenstown', 1529, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14477, 'Fort Wellington', 1532, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14478, 'Mahaicony', 1532, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14479, 'Rosignol', 1532, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14480, 'Anna Regina', 1533, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14481, 'Charity', 1533, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14482, 'Suddie', 1533, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14483, 'Mahdia', 1534, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14484, 'Tumatumari', 1534, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14485, 'Desdunes', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14486, 'Dessalines', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14487, 'Gonaives', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14488, 'Gros-Morne', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14489, 'L Artibonite', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14490, 'Saint-Marc', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14491, 'Saint-Michel-de-l Atalaye', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14492, 'Verrettes', 1537, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14493, 'Hinche', 649, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14494, 'Mirebalais', 649, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14495, 'Anse-d Hainault', 1538, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14496, 'Dame Marie', 1538, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14497, 'Jeremie', 1538, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14498, 'Miragoane', 1538, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14499, 'Cap-Haitien', 651, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14500, 'Croix-des-Bouquets', 651, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14501, 'Grande Riviere du Nord', 651, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14502, 'Pignon', 651, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14503, 'Derac', 1539, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14504, 'Fort-Liberte', 1539, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14505, 'Ouanaminthe', 1539, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14506, 'Trou-du-Nord', 1539, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14507, 'Port-de-Paix', 1540, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14508, 'Saint-Louis-du-Nord', 1540, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14509, 'Anse-a-Galets', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14510, 'Carrefour', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14511, 'Delmas', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14512, 'Kenscoff', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14513, 'Lascahobas', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14514, 'Leogane', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14515, 'Petionville', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14516, 'Petit Goave', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14517, 'Port-au-Prince', 654, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14518, 'Aquin', 655, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14519, 'Les Cayes', 655, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14520, 'Jacmel', 1541, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14521, 'La Ceiba', 1544, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14522, 'Olanchito', 1544, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14523, 'Tela', 1544, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14524, 'Choluteca', 1545, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14525, 'Pespire', 1545, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, 1), -(14526, 'Sonaguera', 1546, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14527, 'Tocoa', 1546, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14528, 'Comayagua', 1547, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14529, 'Siguatepeque', 1547, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14530, 'Copan', 1548, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14531, 'Corquin', 1548, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14532, 'El Paraiso', 1548, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14533, 'Santa Rosa de Copan', 1548, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14534, 'Choloma', 1549, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14535, 'La Lima', 1549, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14536, 'Omoa', 1549, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14537, 'San Pedro Sula', 1549, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14538, 'Intibuca', 1554, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14539, 'La Esperanza', 1554, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14540, 'Utila', 1554, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14541, 'Gracias', 1556, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14542, 'Ocotepeque', 1557, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14543, 'Sinuapa', 1557, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14544, 'Catacamas', 1558, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14545, 'Juticalpa', 1558, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14546, 'Amapala', 1560, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14547, 'Langue', 1560, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14548, 'Nacaome', 1560, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14549, 'El Progreso', 1561, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14550, 'Morazan', 1561, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14551, 'Yoro', 1561, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14552, 'Akaszto', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14553, 'Bacsalmas', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14554, 'Bacsbokod', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14555, 'Baja', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14556, 'Bugac', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14557, 'Davod', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14558, 'Dunapataj', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14559, 'Dunavecse', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14560, 'Fulopszallas', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14561, 'Hajos', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14562, 'Harta', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14563, 'Izsak', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14564, 'Jakabszallas', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14565, 'Janoshalma', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14566, 'Kalocsa', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14567, 'Kecel', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14568, 'Kecskemet', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14569, 'Kiskoros', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14570, 'Kiskunfelegyhaza', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14571, 'Kiskunhalas', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14572, 'Kiskunmajsa', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14573, 'Kunfeherto', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14574, 'Kunszentmiklos', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14575, 'Lajosmizse', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14576, 'Lakitelek', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14577, 'Madaras', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14578, 'Melykut', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14579, 'Nagybaracska', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14580, 'Orgovany', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14581, 'Palmonostora', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14582, 'Solt', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14583, 'Soltvadkert', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14584, 'Sukosd', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14585, 'Szabadszallas', 1563, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, 1), -(14586, 'Szalkszentmarton', 1563, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14587, 'Tass', 1563, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14588, 'Tiszakecske', 1563, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14589, 'Tompa', 1563, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14590, 'Beremend', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14591, 'Boly', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14592, 'Dunaszekcso', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14593, 'Harkany', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14594, 'Hosszuheteny', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14595, 'Komlo', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14596, 'Magocs', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14597, 'Mohacs', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14598, 'Pecs', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14599, 'Pecsvarad', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14600, 'Sasd', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14601, 'Sellye', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14602, 'Siklos', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14603, 'Szentlorinc', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14604, 'Szigetvar', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14605, 'Vajszlo', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14606, 'Villany', 1564, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14607, 'Battonya', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14608, 'Bekes', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14609, 'Bekescsaba', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14610, 'Bekessamson', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14611, 'Bekesszentandras', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14612, 'Csorvas', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14613, 'Devavanya', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14614, 'Doboz', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14615, 'Elek', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14616, 'Endrod', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14617, 'Fuzesgyarmat', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14618, 'Gyula', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14619, 'Ketegyhaza', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14620, 'Kondoros', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14621, 'Korosladany', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14622, 'Kunagota', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14623, 'Lokoshaza', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14624, 'Mezobereny', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14625, 'Mezohegyes', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14626, 'Mezokovacshaza', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14627, 'Nagyszenas', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14628, 'Oroshaza', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14629, 'Sarkad', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14630, 'Szabadkigyos', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14631, 'Szarvas', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14632, 'Szeghalom', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14633, 'Totkomlos', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14634, 'Veszto', 1565, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14635, 'Abaujszanto', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14636, 'Arlo', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14637, 'Bogacs', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14638, 'Cigand', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14639, 'Edeleny', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14640, 'Emod', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14641, 'Encs', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14642, 'Gonc', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14643, 'Karcsa', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14644, 'Kazincbarcika', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14645, 'Mad', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14646, 'Megyaszo', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14647, 'Mezokeresztes', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14648, 'Mezokovesd', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14649, 'Miskolc', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14650, 'Monok', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14651, 'Nyekladhaza', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14652, 'Olaszliszka', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14653, 'Onod', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14654, 'Ozd', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14655, 'Putnok', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14656, 'Rudabanya', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14657, 'Sajokaza', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14658, 'Sajolad', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14659, 'Sajoszentpeter', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14660, 'Saly', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14661, 'Sarospatak', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14662, 'Satoraljaujhely', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14663, 'Szendro', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14664, 'Szentistvan', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14665, 'Szerencs', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14666, 'Szihalom', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14667, 'Szikszo', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14668, 'Taktaharkany', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14669, 'Taktaszada', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14670, 'Tallya', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14671, 'Tarcal', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14672, 'Tiszaluc', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14673, 'Tiszaujvaros', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14674, 'Tokaj', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14675, 'Tolcsva', 1566, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14676, 'Budapest', 1567, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14677, 'Csongrad', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14678, 'Fabiansebestyen', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14679, 'Foldeak', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14680, 'Hodmezovasarhely', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14681, 'Kiskundorozsma', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14682, 'Kistelek', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14683, 'Kiszombor', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14684, 'Mako', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14685, 'Mindszent', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14686, 'Morahalom', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14687, 'Pusztaszer', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14688, 'Roszke', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14689, 'Sandorfalva', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14690, 'Szatymaz', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14691, 'Szeged', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14692, 'Szegvar', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14693, 'Szekkutas', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14694, 'Szentes', 1568, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14695, 'Adony', 1569, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14696, 'Alap', 1569, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14697, 'Apostag', 1569, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14698, 'Bakonycsernye', 1569, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14699, 'Bicske', 1569, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, 1), -(14700, 'Bodajk', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14701, 'Cece', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14702, 'Csakvar', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14703, 'Deg', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14704, 'Dios', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14705, 'Dunaujvaros', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14706, 'Enying', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14707, 'Ercsi', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14708, 'Etyek', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14709, 'Fehervarcsurgo', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14710, 'Lovasbereny', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14711, 'Martonvasar', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14712, 'Mezofalva', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14713, 'Mezoszilas', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14714, 'Mor', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14715, 'Pazmand', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14716, 'Polgardi', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14717, 'Pusztavam', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14718, 'Rackeresztur', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14719, 'Sarbogard', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14720, 'Seregelyes', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14721, 'Soponya', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14722, 'Szabadbattyan', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14723, 'Szekesfehervar', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14724, 'Val', 1569, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14725, 'Asvanyraro', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14726, 'Beled', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14727, 'Bosarkany', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14728, 'Csorna', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14729, 'Fertod', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14730, 'Fertorakos', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14731, 'Fertoszentmiklos', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14732, 'Gyor', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14733, 'Gyorujbarat', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14734, 'Hunyadi u.', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14735, 'Kapuvar', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14736, 'Lebeny', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14737, 'Mihalyi', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14738, 'Mosonmagyarovar', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14739, 'Nyul', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14740, 'Pannonhalma', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14741, 'Rajka', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14742, 'Sopron', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14743, 'Szany', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14744, 'Tet', 1570, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14745, 'Balmazujvaros', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14746, 'Barand', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14747, 'Berettyoujfalu', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14748, 'Biharkeresztes', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14749, 'Biharnagybajom', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14750, 'Debrecen', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14751, 'Derecske', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14752, 'Egyek', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14753, 'Foldes', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14754, 'Hajduboszormeny', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14755, 'Hajdudorog', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14756, 'Hajduhadhaz', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14757, 'Hajdusamson', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14758, 'Hajduszoboszlo', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14759, 'Hajduszovat', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14760, 'Hortobagy', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14761, 'Hosszupalyi', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14762, 'Kaba', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14763, 'Komadi', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14764, 'Mikepercs', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14765, 'Monostorpalyi', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14766, 'Nadudvar', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14767, 'Nagyleta', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14768, 'Nyirabrany', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14769, 'Nyiracsad', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14770, 'Nyiradony', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14771, 'Polgar', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14772, 'Puspokladany', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14773, 'Sarretudvari', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14774, 'Tiszacsege', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14775, 'Ujfeherto', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14776, 'Vamospercs', 1571, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14777, 'Abasar', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14778, 'Andornaktalya', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14779, 'Belapatfalva', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14780, 'Domoszlo', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14781, 'Eger', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14782, 'Erdotelek', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14783, 'Felsotarkany', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14784, 'Fuzesabony', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14785, 'Gyongyos', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14786, 'Gyongyospata', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14787, 'Gyongyossolymos', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14788, 'Gyongyostarjan', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14789, 'Hatvan', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14790, 'Heves', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14791, 'Kal', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14792, 'Lorinci', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14793, 'Matraderecske', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14794, 'Parad', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14795, 'Petervasara', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14796, 'Recsk', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14797, 'Sirok', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14798, 'Tarnalelesz', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14799, 'Verpelet', 1572, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14800, 'Abadszalok', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14801, 'Besenyszog', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14802, 'Cserkeszolo', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14803, 'Fegyvernek', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14804, 'Hegyeshalom', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14805, 'Jaszalsoszentgyorgy', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14806, 'Jaszapati', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14807, 'Jaszarokszallas', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14808, 'Jaszbereny', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14809, 'Jaszfenyzaru', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14810, 'Jaszjakohalma', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14811, 'Jaszkiser', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14812, 'Jaszladany', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14813, 'Jaszszentandras', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14814, 'Karcag', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14815, 'Kenderes', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14816, 'Kisujszallas', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14817, 'Kunhegyes', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14818, 'Kunmadaras', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14819, 'Kunszentmarton', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14820, 'Martfu', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14821, 'Mezotur', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14822, 'Ocsod', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14823, 'Szolnok', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14824, 'Tiszabura', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14825, 'Tiszafoldvar', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14826, 'Tiszafured', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14827, 'Tiszapuspoki', 1573, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, 1), -(14828, 'Tiszaroff', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14829, 'Tiszasuly', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14830, 'Torokszentmiklos', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14831, 'Toszeg', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14832, 'Turkeve', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14833, 'Ujszasz', 1573, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14834, 'Acs', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14835, 'Almasfuzito', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14836, 'Babolna', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14837, 'Bajna', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14838, 'Dorog', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14839, 'Esztergom', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14840, 'Kesztolc', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14841, 'Kisber', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14842, 'Komarom', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14843, 'Kornye', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14844, 'Labatlan', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14845, 'Mocsa', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14846, 'Nagyigmand', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14847, 'Nyergesujfalu', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14848, 'Oroszlany', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14849, 'Sarisap', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14850, 'Tardos', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14851, 'Tarjan', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14852, 'Tata', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14853, 'Tatabanya', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14854, 'Tokod', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14855, 'Vertesszolos', 1574, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14856, 'Balassagyarmat', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14857, 'Batonyterenye', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14858, 'Bercel', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14859, 'Bujak', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14860, 'Diosjeno', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14861, 'Karancskeszi', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14862, 'Matraverebely', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14863, 'Nagyoroszi', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14864, 'Paszto', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14865, 'Retsag', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14866, 'Romhany', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14867, 'Salgotarjan', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14868, 'Szecseny', 1575, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14869, 'Abony', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14870, 'Albertirsa', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14871, 'Aszod', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14872, 'Biatorbagy', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14873, 'Budakalasz', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14874, 'Budakeszi', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14875, 'Budaors', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14876, 'Bugyi', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14877, 'Cegled', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14878, 'Csobanka', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14879, 'Dabas', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14880, 'Domsod', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14881, 'Dunabogdany', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14882, 'Dunaharaszti', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14883, 'Dunakeszi', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14884, 'Erd', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14885, 'Forro', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14886, 'Fot', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14887, 'Galgaheviz', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14888, 'God', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14889, 'Godollo', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14890, 'Gyomro', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14891, 'Hevizgyork', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14892, 'Isaszeg', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14893, 'Jaszkarajeno', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14894, 'Kiskunlachaza', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14895, 'Kocser', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14896, 'Koka', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14897, 'Kosd', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14898, 'Maglod', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14899, 'Monor', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14900, 'Nagykata', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14901, 'Nagykoros', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14902, 'Nagykovacsi', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14903, 'Nagymaros', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14904, 'Nagytarcsa', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14905, 'Nyaregyhaza', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14906, 'Ocsa', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14907, 'Orbottyan', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14908, 'Orkeny', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14909, 'Paty', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14910, 'Pecel', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14911, 'Perbal', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14912, 'Pilis', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14913, 'Pilisborosjeno', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14914, 'Piliscsaba', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14915, 'Pilisszanto', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14916, 'Pilisszentivan', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14917, 'Pilisszentkereszt', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14918, 'Pilisvorosvar', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14919, 'Pomaz', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14920, 'Racalmas', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14921, 'Rackeve', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14922, 'Solymar', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14923, 'Soskut', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14924, 'Szada', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14925, 'Szazhalombatta', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14926, 'Szentendre', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14927, 'Szentmartonkata', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14928, 'Szigetcsep', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14929, 'Szigetszentmiklos', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14930, 'Szigetujfalu', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14931, 'Szob', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14932, 'Tahitofalu', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14933, 'Tapiobicske', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14934, 'Tapioszecso', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14935, 'Tapioszele', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14936, 'Toalmas', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14937, 'Torokbalint', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14938, 'Tura', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14939, 'Ullo', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14940, 'Uri', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14941, 'Urom', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14942, 'Vac', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14943, 'Vecses', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14944, 'Veresegyhaz', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14945, 'Verocemaros', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14946, 'Visegrad', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14947, 'Zsambek', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14948, 'Zsambok', 1576, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14949, 'Adand', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14950, 'Balatonfoldvar', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14951, 'Balatonoszod', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14952, 'Balatonszabadi', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14953, 'Balatonszarszo', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14954, 'Barcs', 1577, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, 1), -(14955, 'Berzence', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14956, 'Boglarlelle', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14957, 'Bohonye', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14958, 'Csurgo', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14959, 'Fonyod', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14960, 'Kaposvar', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14961, 'Karad', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14962, 'Kethely', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14963, 'Lengyeltoti', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14964, 'Marcali', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14965, 'Nagyatad', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14966, 'Nagybajom', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14967, 'Siofok', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14968, 'Somogyvar', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14969, 'Tab', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14970, 'Zamardi', 1577, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14971, 'Ajak', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14972, 'Baktaloranthaza', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14973, 'Balkany', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14974, 'Buj', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14975, 'Demecser', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14976, 'Dombrad', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14977, 'Fehergyarmat', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14978, 'Ibrany', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14979, 'Kemecse', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14980, 'Kisvarda', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14981, 'Kotaj', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14982, 'Mandok', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14983, 'Mariapocs', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14984, 'Mateszalka', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14985, 'Nagyecsed', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14986, 'Nagyhalasz', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14987, 'Nagykallo', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14988, 'Nyirbator', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14989, 'Nyirbeltek', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14990, 'Nyiregyhaza', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14991, 'Nyirmada', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14992, 'Nyirpazony', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14993, 'Nyirtelek', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14994, 'Ofeherto', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14995, 'Rakamaz', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14996, 'Tarpa', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14997, 'Tiszabercel', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14998, 'Tiszalok', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(14999, 'Tiszavasvari', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15000, 'Tuzser', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15001, 'Vaja', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15002, 'Vasarosnameny', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15003, 'Zahony', 1578, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15004, 'Bataszek', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15005, 'Bonyhad', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15006, 'Decs', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15007, 'Dombovar', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15008, 'Dunafoldvar', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15009, 'Fadd', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15010, 'Gyonk', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15011, 'Hogyesz', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15012, 'Iregszemcse', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15013, 'Madocsa', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15014, 'Nagymagocs', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15015, 'Nagymanyok', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15016, 'Ozora', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15017, 'Paks', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15018, 'Pincehely', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15019, 'Simontornya', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15020, 'Szekszard', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15021, 'Szentgal', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15022, 'Tamasi', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15023, 'Tengelic', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15024, 'Tolna', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15025, 'Zomba', 1579, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15026, 'Buk', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15027, 'Celldomolk', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15028, 'Csepreg', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15029, 'Gencsapati', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15030, 'Jak', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15031, 'Janoshaza', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15032, 'Kormend', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15033, 'Koszeg', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15034, 'Sarvar', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15035, 'Szentgotthard', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15036, 'Szombathely', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15037, 'Vasvar', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15038, 'Vep', 1580, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15039, 'Ajka', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15040, 'Badacsonytomaj', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15041, 'Balatonalmadi', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15042, 'Balatonfured', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15043, 'Balatonfuzfo', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15044, 'Balatonkenese', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15045, 'Band', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15046, 'Berhida', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15047, 'Csabrendek', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15048, 'Devecser', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15049, 'Herend', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15050, 'Papa', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15051, 'Sumeg', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15052, 'Tapolca', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15053, 'Urkut', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15054, 'Varpalota', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15055, 'Veszprem', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15056, 'Zirc', 1581, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15057, 'Becsehely', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15058, 'Heviz', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15059, 'Keszthely', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15060, 'Lenti', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15061, 'Letenye', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15062, 'Nagykanizsa', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15063, 'Sarmellek', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15064, 'Turje', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15065, 'Zalaegerszeg', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15066, 'Zalakomar', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15067, 'Zalalovo', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15068, 'Zalaszentgrot', 1582, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15069, 'Bakkafjor ur', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15070, 'Borgarfjor ur', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15071, 'Brei dalsvik', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15072, 'Djupivogur', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15073, 'Egilssta ir', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15074, 'Eskifjor ur', 1583, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, 1), -(15075, 'Faskru sfjor ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15076, 'Fellabar', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15077, 'Hallormssta ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15078, 'Hofn', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15079, 'Nesjakauptun', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15080, 'Neskaupsta ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15081, 'Rey arfjor ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15082, 'Sey isfjor ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15083, 'Sto varfjor ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15084, 'Vopnafjor ur', 1583, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15085, 'Akranes', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15086, 'Borgarnes', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15087, 'Bu ardalur', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(15088, 'Grundarfjor ur', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15089, 'Hellissandur', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15090, 'Hvanneyri', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15091, 'Olafsvik', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15092, 'Rif', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15093, 'Stykkisholmur', 1591, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15094, 'Sed ea dolore offici', 1592, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15095, 'Garacharma', 1592, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15096, 'Port Blair', 1592, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15097, 'Rangat', 1592, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15098, 'Addanki', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15099, 'Adivivaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15100, 'Adoni', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15101, 'Aganampudi', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15102, 'Ajjaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15103, 'Akividu', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15104, 'Akkarampalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15105, 'Akkayapalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15106, 'Akkireddipalem', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15107, 'Alampur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15108, 'Amalapuram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15109, 'Amudalavalasa', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15110, 'Amur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15111, 'Anakapalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15112, 'Anantapur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15113, 'Andole', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15114, 'Atmakur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15115, 'Attili', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15116, 'Avanigadda', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15117, 'Badepalli', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15118, 'Badvel', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15119, 'Balapur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15120, 'Bandarulanka', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15121, 'Banganapalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15122, 'Bapatla', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15123, 'Bapulapadu', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15124, 'Belampalli', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15125, 'Bestavaripeta', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15126, 'Betamcherla', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15127, 'Bhattiprolu', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15128, 'Bhimavaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15129, 'Bhimunipatnam', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15130, 'Bobbili', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15131, 'Bombuflat', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15132, 'Bommuru', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15133, 'Bugganipalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15134, 'Challapalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15135, 'Chandur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15136, 'Chatakonda', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15137, 'Chemmumiahpet', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15138, 'Chidiga', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15139, 'Chilakaluripet', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15140, 'Chimakurthy', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15141, 'Chinagadila', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15142, 'Chinagantyada', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15143, 'Chinnachawk', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15144, 'Chintalavalasa', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15145, 'Chipurupalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15146, 'Chirala', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15147, 'Chittoor', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15148, 'Chodavaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15149, 'Choutuppal', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15150, 'Chunchupalle', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15151, 'Cuddapah', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15152, 'Cumbum', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15153, 'Darnakal', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15154, 'Dasnapur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15155, 'Dauleshwaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15156, 'Dharmavaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15157, 'Dhone', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15158, 'Dommara Nandyal', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15159, 'Dowlaiswaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15160, 'East Godavari Dist.', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15161, 'Eddumailaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15162, 'Edulapuram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15163, 'Ekambara kuppam', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15164, 'Eluru', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15165, 'Enikapadu', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15166, 'Fakirtakya', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15167, 'Farrukhnagar', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15168, 'Gaddiannaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15169, 'Gajapathinagaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15170, 'Gajularega', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15171, 'Gajuvaka', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15172, 'Gannavaram', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15173, 'Garimellapadu', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15174, 'Giddalur', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15175, 'Godavarikhani', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15176, 'Gopalapatnam', 1593, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, 1), -(15177, 'Gopalur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15178, 'Gorrekunta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15179, 'Gudivada', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15180, 'Gudur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15181, 'Guntakal', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15182, 'Guntur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15183, 'Guti', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15184, 'Hindupur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15185, 'Hukumpeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15186, 'Ichchapuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15187, 'Isnapur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15188, 'Jaggayyapeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15189, 'Jallaram Kamanpur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15190, 'Jammalamadugu', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15191, 'Jangampalli', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15192, 'Jarjapupeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15193, 'Kadiri', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15194, 'Kaikalur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15195, 'Kakinada', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15196, 'Kallur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15197, 'Kalyandurg', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15198, 'Kamalapuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15199, 'Kamareddi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15200, 'Kanapaka', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15201, 'Kanigiri', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15202, 'Kanithi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15203, 'Kankipadu', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15204, 'Kantabamsuguda', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15205, 'Kanuru', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15206, 'Karnul', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15207, 'Katheru', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15208, 'Kavali', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15209, 'Kazipet', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15210, 'Khanapuram Haveli', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15211, 'Kodar', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15212, 'Kollapur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15213, 'Kondapalem', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15214, 'Kondapalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15215, 'Kondukur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15216, 'Kosgi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15217, 'Kothavalasa', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15218, 'Kottapalli', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15219, 'Kovur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15220, 'Kovurpalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15221, 'Kovvur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15222, 'Krishna', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15223, 'Kuppam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15224, 'Kurmannapalem', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15225, 'Kurnool', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15226, 'Lakshettipet', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15227, 'Lalbahadur Nagar', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15228, 'Machavaram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15229, 'Macherla', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15230, 'Machilipatnam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15231, 'Madanapalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15232, 'Madaram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15233, 'Madhuravada', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15234, 'Madikonda', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15235, 'Madugule', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15236, 'Mahabubnagar', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15237, 'Mahbubabad', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15238, 'Malkajgiri', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15239, 'Mamilapalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15240, 'Mancheral', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15241, 'Mandapeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15242, 'Mandasa', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15243, 'Mangalagiri', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15244, 'Manthani', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15245, 'Markapur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15246, 'Marturu', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15247, 'Metpalli', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15248, 'Mindi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15249, 'Mirpet', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15250, 'Moragudi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15251, 'Mothugudam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15252, 'Nagari', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15253, 'Nagireddipalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15254, 'Nandigama', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15255, 'Nandikotkur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15256, 'Nandyal', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15257, 'Narasannapeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15258, 'Narasapur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15259, 'Narasaraopet', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15260, 'Narayanavanam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15261, 'Narsapur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15262, 'Narsingi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15263, 'Narsipatnam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15264, 'Naspur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15265, 'Nathayyapalem', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15266, 'Nayudupeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15267, 'Nelimaria', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15268, 'Nellore', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15269, 'Nidadavole', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15270, 'Nuzvid', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15271, 'Omerkhan daira', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15272, 'Ongole', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15273, 'Osmania University', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15274, 'Pakala', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15275, 'Palakole', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15276, 'Palakurthi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15277, 'Palasa', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15278, 'Palempalle', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15279, 'Palkonda', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15280, 'Palmaner', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15281, 'Pamur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15282, 'Panjim', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15283, 'Papampeta', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15284, 'Parasamba', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15285, 'Parvatipuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15286, 'Patancheru', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15287, 'Payakaraopet', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15288, 'Pedagantyada', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15289, 'Pedana', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15290, 'Peddapuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15291, 'Pendurthi', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15292, 'Penugonda', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15293, 'Penukonda', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15294, 'Phirangipuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15295, 'Pithapuram', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15296, 'Ponnur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15297, 'Pothinamallayyapalem', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15298, 'Prakasam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15299, 'Prasadampadu', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15300, 'Prasantinilayam', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15301, 'Proddatur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15302, 'Pulivendla', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15303, 'Punganuru', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15304, 'Puttur', 1593, '2024-01-21 12:05:57', '2024-01-21 12:05:57', NULL, 1), -(15305, 'Qutubullapur', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15306, 'Rajahmundry', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15307, 'Rajamahendri', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15308, 'Rajampet', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15309, 'Rajendranagar', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15310, 'Rajoli', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15311, 'Ramachandrapuram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15312, 'Ramanayyapeta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15313, 'Ramapuram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15314, 'Ramarajupalli', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15315, 'Ramavarappadu', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15316, 'Rameswaram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15317, 'Rampachodavaram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15318, 'Ravulapalam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15319, 'Rayachoti', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15320, 'Rayadrug', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15321, 'Razam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15322, 'Razole', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15323, 'Renigunta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15324, 'Repalle', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15325, 'Rishikonda', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15326, 'Salur', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15327, 'Samalkot', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15328, 'Sattenapalle', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15329, 'Seetharampuram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15330, 'Serilungampalle', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15331, 'Shankarampet', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15332, 'Shar', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15333, 'Singarayakonda', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15334, 'Sirpur', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15335, 'Sirsilla', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15336, 'Sompeta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15337, 'Sriharikota', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15338, 'Srikakulam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15339, 'Srikalahasti', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15340, 'Sriramnagar', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15341, 'Sriramsagar', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15342, 'Srisailam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15343, 'Srisailamgudem Devasthanam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15344, 'Sulurpeta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15345, 'Suriapet', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15346, 'Suryaraopet', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15347, 'Tadepalle', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15348, 'Tadepalligudem', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15349, 'Tadpatri', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15350, 'Tallapalle', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15351, 'Tanuku', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15352, 'Tekkali', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15353, 'Tenali', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15354, 'Tigalapahad', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15355, 'Tiruchanur', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15356, 'Tirumala', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15357, 'Tirupati', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15358, 'Tirvuru', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15359, 'Trimulgherry', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15360, 'Tuni', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15361, 'Turangi', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15362, 'Ukkayapalli', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15363, 'Ukkunagaram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15364, 'Uppal Kalan', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15365, 'Upper Sileru', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15366, 'Uravakonda', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15367, 'Vadlapudi', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15368, 'Vaparala', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15369, 'Vemalwada', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15370, 'Venkatagiri', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15371, 'Venkatapuram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15372, 'Vepagunta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15373, 'Vetapalem', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15374, 'Vijayapuri', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15375, 'Vijayapuri South', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15376, 'Vijayawada', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15377, 'Vinukonda', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15378, 'Visakhapatnam', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15379, 'Vizianagaram', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15380, 'Vuyyuru', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15381, 'Wanparti', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15382, 'West Godavari Dist.', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15383, 'Yadagirigutta', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15384, 'Yarada', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15385, 'Yellamanchili', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15386, 'Yemmiganur', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15387, 'Yenamalakudru', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15388, 'Yendada', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15389, 'Yerraguntla', 1593, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15390, 'Along', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15391, 'Basar', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15392, 'Bondila', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15393, 'Changlang', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15394, 'Daporijo', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15395, 'Deomali', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15396, 'Itanagar', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15397, 'Jairampur', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15398, 'Khonsa', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15399, 'Naharlagun', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15400, 'Namsai', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15401, 'Pasighat', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15402, 'Roing', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15403, 'Seppa', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15404, 'Tawang', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15405, 'Tezu', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15406, 'Ziro', 1594, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15407, 'Abhayapuri', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15408, 'Ambikapur', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15409, 'Amguri', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15410, 'Anand Nagar', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15411, 'Badarpur', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15412, 'Badarpur Railway Town', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15413, 'Bahbari Gaon', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15414, 'Bamun Sualkuchi', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15415, 'Barbari', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15416, 'Barpathar', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15417, 'Barpeta', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15418, 'Barpeta Road', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15419, 'Basugaon', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15420, 'Bihpuria', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15421, 'Bijni', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15422, 'Bilasipara', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15423, 'Biswanath Chariali', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15424, 'Bohori', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15425, 'Bokajan', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15426, 'Bokokhat', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15427, 'Bongaigaon', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15428, 'Bongaigaon Petro-chemical Town', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15429, 'Borgolai', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15430, 'Chabua', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15431, 'Chandrapur Bagicha', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15432, 'Chapar', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15433, 'Chekonidhara', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15434, 'Choto Haibor', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15435, 'Dergaon', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15436, 'Dharapur', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15437, 'Dhekiajuli', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15438, 'Dhemaji', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15439, 'Dhing', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15440, 'Dhubri', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15441, 'Dhuburi', 1595, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, 1), -(15442, 'Dibrugarh', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15443, 'Digboi', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15444, 'Digboi Oil Town', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15445, 'Dimaruguri', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15446, 'Diphu', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15447, 'Dispur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15448, 'Doboka', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15449, 'Dokmoka', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15450, 'Donkamokan', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15451, 'Duliagaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15452, 'Duliajan', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15453, 'Duliajan No.1', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15454, 'Dum Duma', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15455, 'Durga Nagar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15456, 'Gauripur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15457, 'Goalpara', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15458, 'Gohpur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15459, 'Golaghat', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15460, 'Golakganj', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15461, 'Gossaigaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15462, 'Guwahati', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15463, 'Haflong', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15464, 'Hailakandi', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15465, 'Hamren', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15466, 'Hauli', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15467, 'Hauraghat', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15468, 'Hojai', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15469, 'Jagiroad', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15470, 'Jagiroad Paper Mill', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15471, 'Jogighopa', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15472, 'Jonai Bazar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15473, 'Jorhat', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15474, 'Kampur Town', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15475, 'Kamrup', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15476, 'Kanakpur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15477, 'Karimganj', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15478, 'Kharijapikon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15479, 'Kharupetia', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15480, 'Kochpara', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15481, 'Kokrajhar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15482, 'Kumar Kaibarta Gaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15483, 'Lakhimpur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15484, 'Lakhipur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15485, 'Lala', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15486, 'Lanka', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15487, 'Lido Tikok', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15488, 'Lido Town', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15489, 'Lumding', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15490, 'Lumding Railway Colony', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15491, 'Mahur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15492, 'Maibong', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15493, 'Majgaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15494, 'Makum', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15495, 'Mangaldai', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15496, 'Mankachar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15497, 'Margherita', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15498, 'Mariani', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15499, 'Marigaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15500, 'Moran', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15501, 'Moranhat', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15502, 'Nagaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15503, 'Naharkatia', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15504, 'Nalbari', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15505, 'Namrup', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15506, 'Naubaisa Gaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15507, 'Nazira', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15508, 'New Bongaigaon Railway Colony', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15509, 'Niz-Hajo', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15510, 'North Guwahati', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15511, 'Numaligarh', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15512, 'Palasbari', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15513, 'Panchgram', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15514, 'Pathsala', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15515, 'Raha', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15516, 'Rangapara', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15517, 'Rangia', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15518, 'Salakati', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15519, 'Sapatgram', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15520, 'Sarthebari', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15521, 'Sarupathar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15522, 'Sarupathar Bengali', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15523, 'Senchoagaon', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15524, 'Sibsagar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15525, 'Silapathar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15526, 'Silchar', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15527, 'Silchar Part-X', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15528, 'Sonari', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15529, 'Sorbhog', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15530, 'Sualkuchi', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15531, 'Tangla', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15532, 'Tezpur', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15533, 'Tihu', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15534, 'Tinsukia', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15535, 'Titabor', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15536, 'Udalguri', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15537, 'Umrangso', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15538, 'Uttar Krishnapur Part-I', 1595, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15539, 'Amarpur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15540, 'Ara', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15541, 'Araria', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15542, 'Areraj', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15543, 'Asarganj', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15544, 'Aurangabad', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15545, 'Bagaha', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15546, 'Bahadurganj', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15547, 'Bairgania', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15548, 'Bakhtiyarpur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15549, 'Banka', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15550, 'Banmankhi', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15551, 'Bar Bigha', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15552, 'Barauli', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15553, 'Barauni Oil Township', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15554, 'Barh', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15555, 'Barhiya', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15556, 'Bariapur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15557, 'Baruni', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15558, 'Begusarai', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15559, 'Behea', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15560, 'Belsand', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15561, 'Bettiah', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15562, 'Bhabua', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15563, 'Bhagalpur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15564, 'Bhimnagar', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15565, 'Bhojpur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15566, 'Bihar', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15567, 'Bihar Sharif', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15568, 'Bihariganj', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15569, 'Bikramganj', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15570, 'Birpur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15571, 'Bodh Gaya', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15572, 'Buxar', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15573, 'Chakia', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15574, 'Chanpatia', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15575, 'Chhapra', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15576, 'Chhatapur', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15577, 'Colgong', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15578, 'Dalsingh Sarai', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15579, 'Darbhanga', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15580, 'Daudnagar', 1596, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, 1), -(15581, 'Dehri', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15582, 'Dighwara', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15583, 'Dinapur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15584, 'Dinapur Cantonment', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15585, 'Dumra', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15586, 'Dumraon', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15587, 'Fatwa', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15588, 'Forbesganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15589, 'Gaya', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15590, 'Ghoghardiha', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15591, 'Gogri Jamalpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15592, 'Habibpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15593, 'Hajipur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15594, 'Hasanpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15595, 'Hazaribagh', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15596, 'Hilsa', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15597, 'Hisua', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15598, 'Islampur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15599, 'Jagdispur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15600, 'Jahanabad', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15601, 'Jamhaur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15602, 'Jamui', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15603, 'Janakpur Road', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15604, 'Janpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15605, 'Jaynagar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15606, 'Jha Jha', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15607, 'Jhanjharpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15608, 'Jogbani', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15609, 'Kanti', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15610, 'Kasba', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15611, 'Kataiya', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15612, 'Katihar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15613, 'Khagaria', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15614, 'Khagaul', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15615, 'Kharagpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15616, 'Khusrupur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15617, 'Kishanganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15618, 'Koath', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15619, 'Koilwar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15620, 'Lakhisarai', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15621, 'Lalganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15622, 'Lauthaha', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15623, 'Madhepura', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15624, 'Madhubani', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15625, 'Maharajganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15626, 'Mahnar Bazar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15627, 'Mairwa', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15628, 'Makhdumpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15629, 'Maner', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15630, 'Manihari', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15631, 'Marhaura', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15632, 'Masaurhi', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15633, 'Mirganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15634, 'Mohiuddinagar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15635, 'Mokama', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15636, 'Motihari', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15637, 'Motipur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15638, 'Munger', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15639, 'Murliganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15640, 'Muzaffarpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15641, 'Nabinagar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15642, 'Narkatiaganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15643, 'Nasriganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15644, 'Natwar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15645, 'Naugachhia', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15646, 'Nawada', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15647, 'Nirmali', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15648, 'Nokha', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15649, 'Paharpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15650, 'Patna', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15651, 'Phulwari', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15652, 'Piro', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15653, 'Purnia', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15654, 'Pusa', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15655, 'Rafiganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15656, 'Raghunathpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15657, 'Rajgir', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15658, 'Ramnagar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15659, 'Raxaul', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15660, 'Revelganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15661, 'Rusera', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15662, 'Sagauli', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15663, 'Saharsa', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15664, 'Samastipur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15665, 'Sasaram', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15666, 'Shahpur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15667, 'Shaikhpura', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15668, 'Sherghati', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15669, 'Shivhar', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15670, 'Silao', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15671, 'Sitamarhi', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15672, 'Siwan', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15673, 'Sonepur', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15674, 'Sultanganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15675, 'Supaul', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15676, 'Teghra', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15677, 'Tekari', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15678, 'Thakurganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15679, 'Vaishali', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15680, 'Waris Aliganj', 1596, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15681, 'Chandigarh', 1597, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15682, 'Ahiwara', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15683, 'Akaltara', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15684, 'Ambagarh Chauki', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15685, 'Arang', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15686, 'Bade Bacheli', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15687, 'Bagbahara', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15688, 'Baikunthpur', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15689, 'Balod', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15690, 'Baloda', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15691, 'Baloda Bazar', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15692, 'Banarsi', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15693, 'Basna', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15694, 'Bemetra', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15695, 'Bhanpuri', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15696, 'Bhatapara', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15697, 'Bhatgaon', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15698, 'Bhilai', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15699, 'Bilaspur', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15700, 'Bilha', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15701, 'Birgaon', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15702, 'Bodri', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(15703, 'Champa', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15704, 'Charcha', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15705, 'Charoda', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15706, 'Chhuikhadan', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15707, 'Chirmiri', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15708, 'Dantewada', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15709, 'Deori', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15710, 'Dhamdha', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15711, 'Dhamtari', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15712, 'Dharamjaigarh', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15713, 'Dipka', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15714, 'Doman Hill Colliery', 1598, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, 1), -(15715, 'Dongargaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15716, 'Dongragarh', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15717, 'Durg', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15718, 'Frezarpur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15719, 'Gandai', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15720, 'Gariaband', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15721, 'Gaurela', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15722, 'Gelhapani', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15723, 'Gharghoda', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15724, 'Gidam', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15725, 'Gobra Nawapara', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15726, 'Gogaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15727, 'Hatkachora', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15728, 'Jagdalpur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15729, 'Jashpurnagar', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15730, 'Jhagrakhand', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15731, 'Kanker', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15732, 'Katghora', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15733, 'Kawardha', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15734, 'Khairagarh', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15735, 'Khamhria', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15736, 'Kharod', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15737, 'Kharsia', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15738, 'Khonga Pani', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15739, 'Kirandu', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15740, 'Kirandul', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15741, 'Kohka', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15742, 'Kondagaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15743, 'Korba', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15744, 'Korea', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15745, 'Koria Block', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15746, 'Kota', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15747, 'Kumhari', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15748, 'Kumud Katta', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15749, 'Kurasia', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15750, 'Kurud', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15751, 'Lingiyadih', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15752, 'Lormi', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15753, 'Mahasamund', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15754, 'Mahendragarh', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15755, 'Mehmand', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15756, 'Mongra', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15757, 'Mowa', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15758, 'Mungeli', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15759, 'Nailajanjgir', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15760, 'Namna Kalan', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15761, 'Naya Baradwar', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15762, 'Pandariya', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15763, 'Patan', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15764, 'Pathalgaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15765, 'Pendra', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15766, 'Phunderdihari', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15767, 'Pithora', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15768, 'Raigarh', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15769, 'Raipur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15770, 'Rajgamar', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15771, 'Rajhara', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15772, 'Rajnandgaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15773, 'Ramanuj Ganj', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15774, 'Ratanpur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15775, 'Sakti', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15776, 'Saraipali', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15777, 'Sarajpur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15778, 'Sarangarh', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15779, 'Shivrinarayan', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15780, 'Simga', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15781, 'Sirgiti', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15782, 'Takhatpur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15783, 'Telgaon', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15784, 'Tildanewra', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15785, 'Urla', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15786, 'Vishrampur', 1598, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15787, 'Amli', 1599, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15788, 'Silvassa', 1599, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15789, 'Daman', 1600, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15790, 'Diu', 1600, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15791, 'New Delhi', 1601, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15792, 'Aldona', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15793, 'Aquem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15794, 'Arpora', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15795, 'Bambolim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15796, 'Bandora', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15797, 'Bardez', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15798, 'Benaulim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15799, 'Betora', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15800, 'Bicholim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15801, 'Calapor', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15802, 'Candolim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15803, 'Caranzalem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15804, 'Carapur', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15805, 'Chicalim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15806, 'Chimbel', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15807, 'Chinchinim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15808, 'Colvale', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15809, 'Corlim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15810, 'Cortalim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15811, 'Cuncolim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15812, 'Curchorem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15813, 'Curti', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15814, 'Davorlim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15815, 'Dona Paula', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15816, 'Goa', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15817, 'Guirim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15818, 'Jua', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15819, 'Kalangat', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15820, 'Kankon', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15821, 'Kundaim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15822, 'Loutulim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15823, 'Madgaon', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15824, 'Mapusa', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15825, 'Margao', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15826, 'Margaon', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15827, 'Morjim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15828, 'Mormugao', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15829, 'Navelim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15830, 'Panaji', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15831, 'Parcem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15832, 'Parra', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15833, 'Penha de Franca', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15834, 'Pernem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15835, 'Pilerne', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15836, 'Pissurlem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15837, 'Ponda', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15838, 'Porvorim', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15839, 'Quepem', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15840, 'Queula', 1602, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, 1), -(15841, 'Raia', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15842, 'Reis Magos', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15843, 'Salcette', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15844, 'Saligao', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15845, 'Sancoale', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15846, 'Sanguem', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15847, 'Sanquelim', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15848, 'Sanvordem', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15849, 'Sao Jose-de-Areal', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15850, 'Sattari', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15851, 'Serula', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15852, 'Sinquerim', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15853, 'Siolim', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15854, 'Taleigao', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15855, 'Tivim', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15856, 'Valpoi', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15857, 'Varca', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15858, 'Vasco', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15859, 'Verna', 1602, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15860, 'Abrama', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15861, 'Adalaj', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15862, 'Adityana', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15863, 'Advana', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15864, 'Ahmedabad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15865, 'Ahwa', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15866, 'Alang', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15867, 'Ambaji', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15868, 'Ambaliyasan', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15869, 'Amod', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15870, 'Amreli', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15871, 'Amroli', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15872, 'Anand', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15873, 'Andada', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15874, 'Anjar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15875, 'Anklav', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15876, 'Ankleshwar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15877, 'Anklesvar INA', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15878, 'Antaliya', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15879, 'Arambhada', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15880, 'Asarma', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15881, 'Atul', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15882, 'Babra', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15883, 'Bag-e-Firdosh', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15884, 'Bagasara', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15885, 'Bahadarpar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15886, 'Bajipura', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15887, 'Bajva', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15888, 'Balasinor', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15889, 'Banaskantha', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15890, 'Bansda', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15891, 'Bantva', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15892, 'Bardoli', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15893, 'Barwala', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15894, 'Bayad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15895, 'Bechar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15896, 'Bedi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15897, 'Beyt', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15898, 'Bhachau', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15899, 'Bhanvad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15900, 'Bharuch', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15901, 'Bharuch INA', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15902, 'Bhavnagar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15903, 'Bhayavadar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15904, 'Bhestan', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15905, 'Bhuj', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15906, 'Bilimora', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15907, 'Bilkha', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15908, 'Billimora', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15909, 'Bodakdev', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15910, 'Bodeli', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15911, 'Bopal', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15912, 'Boria', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15913, 'Boriavi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15914, 'Borsad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15915, 'Botad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15916, 'Cambay', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15917, 'Chaklasi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15918, 'Chala', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15919, 'Chalala', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15920, 'Chalthan', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15921, 'Chanasma', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15922, 'Chandisar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15923, 'Chandkheda', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15924, 'Chanod', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15925, 'Chaya', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15926, 'Chenpur', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15927, 'Chhapi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15928, 'Chhaprabhatha', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15929, 'Chhatral', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15930, 'Chhota Udepur', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15931, 'Chikhli', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15932, 'Chiloda', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15933, 'Chorvad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15934, 'Chotila', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15935, 'Dabhoi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15936, 'Dadara', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15937, 'Dahod', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15938, 'Dakor', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15939, 'Damnagar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15940, 'Deesa', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15941, 'Delvada', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15942, 'Devgadh Baria', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15943, 'Devsar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15944, 'Dhandhuka', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15945, 'Dhanera', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15946, 'Dhangdhra', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15947, 'Dhansura', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15948, 'Dharampur', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15949, 'Dhari', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15950, 'Dhola', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15951, 'Dholka', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15952, 'Dholka Rural', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15953, 'Dhoraji', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15954, 'Dhrangadhra', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15955, 'Dhrol', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15956, 'Dhuva', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15957, 'Dhuwaran', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15958, 'Digvijaygram', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15959, 'Disa', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15960, 'Dungar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15961, 'Dungarpur', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15962, 'Dungra', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15963, 'Dwarka', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15964, 'Flelanganj', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15965, 'GSFC Complex', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15966, 'Gadhda', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15967, 'Gandevi', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15968, 'Gandhidham', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15969, 'Gandhinagar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15970, 'Gariadhar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15971, 'Ghogha', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15972, 'Godhra', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15973, 'Gondal', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15974, 'Hajira INA', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15975, 'Halol', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15976, 'Halvad', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15977, 'Hansot', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15978, 'Harij', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15979, 'Himatnagar', 1603, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, 1), -(15980, 'Ichchhapor', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15981, 'Idar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15982, 'Jafrabad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15983, 'Jalalpore', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15984, 'Jambusar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15985, 'Jamjodhpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15986, 'Jamnagar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15987, 'Jasdan', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15988, 'Jawaharnagar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15989, 'Jetalsar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15990, 'Jetpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15991, 'Jodiya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15992, 'Joshipura', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15993, 'Junagadh', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15994, 'Kadi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15995, 'Kadodara', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15996, 'Kalavad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15997, 'Kaliawadi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15998, 'Kalol', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(15999, 'Kalol INA', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16000, 'Kandla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16001, 'Kanjari', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16002, 'Kanodar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16003, 'Kapadwanj', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16004, 'Karachiya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16005, 'Karamsad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16006, 'Karjan', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16007, 'Kathial', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16008, 'Kathor', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16009, 'Katpar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16010, 'Kavant', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16011, 'Keshod', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16012, 'Kevadiya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16013, 'Khambhaliya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16014, 'Khambhat', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16015, 'Kharaghoda', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16016, 'Khed Brahma', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16017, 'Kheda', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16018, 'Kheralu', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16019, 'Kodinar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16020, 'Kosamba', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16021, 'Kundla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16022, 'Kutch', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16023, 'Kutiyana', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16024, 'Lakhtar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16025, 'Lalpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16026, 'Lambha', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16027, 'Lathi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16028, 'Limbdi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16029, 'Limla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16030, 'Lunavada', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16031, 'Madhapar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16032, 'Maflipur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16033, 'Mahemdavad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16034, 'Mahudha', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16035, 'Mahuva', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16036, 'Mahuvar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16037, 'Makarba', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16038, 'Makarpura', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16039, 'Makassar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16040, 'Maktampur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16041, 'Malia', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16042, 'Malpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16043, 'Manavadar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16044, 'Mandal', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16045, 'Mandvi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16046, 'Mangrol', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16047, 'Mansa', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16048, 'Meghraj', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16049, 'Mehsana', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16050, 'Mendarla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16051, 'Mithapur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16052, 'Modasa', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16053, 'Mogravadi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16054, 'Morbi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16055, 'Morvi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16056, 'Mundra', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16057, 'Nadiad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16058, 'Naliya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16059, 'Nanakvada', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16060, 'Nandej', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16061, 'Nandesari', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16062, 'Nandesari INA', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16063, 'Naroda', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16064, 'Navagadh', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16065, 'Navagam Ghed', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16066, 'Navsari', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16067, 'Ode', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16068, 'Okaf', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16069, 'Okha', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16070, 'Olpad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16071, 'Paddhari', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16072, 'Padra', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16073, 'Palanpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16074, 'Palej', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16075, 'Pali', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16076, 'Palitana', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16077, 'Paliyad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16078, 'Pandesara', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16079, 'Panoli', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16080, 'Pardi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16081, 'Parnera', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16082, 'Parvat', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16083, 'Patdi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16084, 'Petlad', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16085, 'Petrochemical Complex', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16086, 'Porbandar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16087, 'Prantij', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16088, 'Radhanpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16089, 'Raiya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16090, 'Rajkot', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16091, 'Rajpipla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16092, 'Rajula', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16093, 'Ramod', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16094, 'Ranavav', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16095, 'Ranoli', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16096, 'Rapar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16097, 'Sahij', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16098, 'Salaya', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16099, 'Sanand', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16100, 'Sankheda', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16101, 'Santrampur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16102, 'Saribujrang', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16103, 'Sarigam INA', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16104, 'Sayan', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16105, 'Sayla', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16106, 'Shahwadi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16107, 'Shapar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16108, 'Shivrajpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16109, 'Siddhapur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16110, 'Sidhpur', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16111, 'Sihor', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16112, 'Sika', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16113, 'Singarva', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16114, 'Sinor', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16115, 'Sojitra', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16116, 'Sola', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16117, 'Songadh', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16118, 'Suraj Karadi', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16119, 'Surat', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16120, 'Surendranagar', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16121, 'Talaja', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16122, 'Talala', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16123, 'Talod', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16124, 'Tankara', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16125, 'Tarsali', 1603, '2024-01-21 12:06:03', '2024-01-21 12:06:03', NULL, 1), -(16126, 'Thangadh', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16127, 'Tharad', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16128, 'Thasra', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16129, 'Udyognagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16130, 'Ukai', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16131, 'Umbergaon', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16132, 'Umbergaon INA', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16133, 'Umrala', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16134, 'Umreth', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16135, 'Un', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16136, 'Unjha', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16137, 'Upleta', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16138, 'Utran', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16139, 'Uttarsanda', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16140, 'V.U. Nagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16141, 'V.V. Nagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16142, 'Vadia', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16143, 'Vadla', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16144, 'Vadnagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16145, 'Vadodara', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16146, 'Vaghodia INA', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16147, 'Valbhipur', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16148, 'Vallabh Vidyanagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16149, 'Valsad', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16150, 'Valsad INA', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16151, 'Vanthali', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16152, 'Vapi', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16153, 'Vapi INA', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16154, 'Vartej', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16155, 'Vasad', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16156, 'Vasna Borsad INA', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16157, 'Vaso', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16158, 'Veraval', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16159, 'Vidyanagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16160, 'Vijalpor', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16161, 'Vijapur', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16162, 'Vinchhiya', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16163, 'Vinzol', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16164, 'Virpur', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16165, 'Visavadar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16166, 'Visnagar', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16167, 'Vyara', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16168, 'Wadhwan', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16169, 'Waghai', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16170, 'Waghodia', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16171, 'Wankaner', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16172, 'Zalod', 1603, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16173, 'Ambala', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16174, 'Ambala Cantt', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16175, 'Asan Khurd', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16176, 'Asandh', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16177, 'Ateli', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16178, 'Babiyal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16179, 'Bahadurgarh', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16180, 'Ballabgarh', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16181, 'Bawal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16182, 'Bawani Khera', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16183, 'Beri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16184, 'Bhiwani', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16185, 'Buria', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16186, 'Charkhi Dadri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16187, 'Chhachhrauli', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16188, 'Dabwali', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16189, 'Dharuhera', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16190, 'Dundahera', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16191, 'Ellenabad', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16192, 'Farakhpur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16193, 'Faridabad', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16194, 'Fatehabad', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16195, 'Firozpur Jhirka', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16196, 'Gannaur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16197, 'Ghraunda', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16198, 'Gohana', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16199, 'Gurgaon', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16200, 'Haileymandi', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16201, 'Hansi', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16202, 'Hathin', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16203, 'Hisar', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16204, 'Hissar', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16205, 'Hodal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16206, 'Indri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16207, 'Jagadhri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16208, 'Jakhal Mandi', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16209, 'Jhajjar', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16210, 'Jind', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16211, 'Julana', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16212, 'Kaithal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16213, 'Kalanur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16214, 'Kalanwali', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16215, 'Kalayat', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16216, 'Kalka', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16217, 'Kanina', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16218, 'Kansepur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16219, 'Kardhan', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16220, 'Karnal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16221, 'Kharkhoda', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16222, 'Kheri Sampla', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16223, 'Kundli', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16224, 'Kurukshetra', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16225, 'Ladrawan', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16226, 'Ladwa', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16227, 'Loharu', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16228, 'Maham', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16229, 'Mustafabad', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16230, 'Nagai Chaudhry', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16231, 'Narayangarh', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16232, 'Narnaul', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16233, 'Narnaund', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16234, 'Narwana', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16235, 'Nilokheri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16236, 'Nuh', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16237, 'Palwal', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16238, 'Panchkula', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16239, 'Panipat', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16240, 'Panipat Taraf Ansar', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16241, 'Panipat Taraf Makhdum Zadgan', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16242, 'Panipat Taraf Rajputan', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16243, 'Pehowa', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16244, 'Pinjaur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16245, 'Punahana', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16246, 'Pundri', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16247, 'Radaur', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16248, 'Raipur Rani', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16249, 'Rania', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16250, 'Ratiya', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16251, 'Rewari', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16252, 'Rohtak', 1604, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, 1), -(16253, 'Ropar', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16254, 'Sadauri', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16255, 'Safidon', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16256, 'Samalkha', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16257, 'Sankhol', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16258, 'Sasauli', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16259, 'Shahabad', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16260, 'Sirsa', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16261, 'Siwani', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16262, 'Sohna', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16263, 'Sonipat', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16264, 'Sukhrali', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16265, 'Taoru', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16266, 'Taraori', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16267, 'Tauru', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16268, 'Thanesar', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16269, 'Tilpat', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16270, 'Tohana', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16271, 'Tosham', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16272, 'Uchana', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16273, 'Uklana Mandi', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16274, 'Uncha Siwana', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16275, 'Yamunanagar', 1604, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16276, 'Arki', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16277, 'Baddi', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16278, 'Bakloh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16279, 'Banjar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16280, 'Bhota', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16281, 'Bhuntar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16282, 'Chamba', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16283, 'Chaupal', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16284, 'Chuari Khas', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16285, 'Dagshai', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16286, 'Dalhousie', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16287, 'Dalhousie Cantonment', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16288, 'Damtal', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16289, 'Daulatpur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16290, 'Dera Gopipur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16291, 'Dhalli', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16292, 'Dharamshala', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16293, 'Gagret', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16294, 'Ghamarwin', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16295, 'Hamirpur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16296, 'Jawala Mukhi', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16297, 'Jogindarnagar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16298, 'Jubbal', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16299, 'Jutogh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16300, 'Kala Amb', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16301, 'Kalpa', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16302, 'Kangra', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16303, 'Kasauli', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16304, 'Kot Khai', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16305, 'Kullu', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16306, 'Kulu', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16307, 'Manali', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16308, 'Mandi', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16309, 'Mant Khas', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16310, 'Mehatpur Basdehra', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16311, 'Nadaun', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16312, 'Nagrota', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16313, 'Nahan', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16314, 'Naina Devi', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16315, 'Nalagarh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16316, 'Narkanda', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16317, 'Nurpur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16318, 'Palampur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16319, 'Pandoh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16320, 'Paonta Sahib', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16321, 'Parwanoo', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16322, 'Parwanu', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16323, 'Rajgarh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16324, 'Rampur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16325, 'Rawalsar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16326, 'Rohru', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16327, 'Sabathu', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16328, 'Santokhgarh', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16329, 'Sarahan', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(16330, 'Sarka Ghat', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16331, 'Seoni', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16332, 'Shimla', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16333, 'Sirmaur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16334, 'Solan', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16335, 'Solon', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16336, 'Sundarnagar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16337, 'Sundernagar', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16338, 'Talai', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16339, 'Theog', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16340, 'Tira Sujanpur', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16341, 'Yol', 1605, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16342, 'Achabal', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16343, 'Akhnur', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16344, 'Anantnag', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16345, 'Arnia', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16346, 'Awantipora', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16347, 'Badami Bagh', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16348, 'Bandipur', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16349, 'Banihal', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16350, 'Baramula', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16351, 'Baramulla', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16352, 'Bari Brahmana', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16353, 'Bashohli', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16354, 'Batote', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16355, 'Bhaderwah', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16356, 'Bijbiara', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16357, 'Billawar', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16358, 'Birwah', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16359, 'Bishna', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16360, 'Budgam', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16361, 'Charari Sharief', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16362, 'Chenani', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16363, 'Doda', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16364, 'Duru-Verinag', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16365, 'Gandarbat', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16366, 'Gho Manhasan', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16367, 'Gorah Salathian', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16368, 'Gulmarg', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16369, 'Hajan', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16370, 'Handwara', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16371, 'Hiranagar', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16372, 'Jammu', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16373, 'Jammu Cantonment', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16374, 'Jammu Tawi', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16375, 'Jourian', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16376, 'Kargil', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16377, 'Kathua', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16378, 'Katra', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16379, 'Khan Sahib', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16380, 'Khour', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16381, 'Khrew', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16382, 'Kishtwar', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16383, 'Kud', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16384, 'Kukernag', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16385, 'Kulgam', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16386, 'Kunzer', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16387, 'Kupwara', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16388, 'Lakhenpur', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16389, 'Leh', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16390, 'Magam', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16391, 'Mattan', 1606, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, 1), -(16392, 'Naushehra', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16393, 'Pahalgam', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16394, 'Pampore', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16395, 'Parole', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16396, 'Pattan', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16397, 'Pulwama', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16398, 'Punch', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16399, 'Qazigund', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16400, 'Rajauri', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16401, 'Ramban', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16402, 'Ranbirsingh Pora', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16403, 'Reasi', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16404, 'Rehambal', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16405, 'Samba', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16406, 'Shupiyan', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16407, 'Sopur', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16408, 'Srinagar', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16409, 'Sumbal', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16410, 'Sunderbani', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16411, 'Talwara', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16412, 'Thanamandi', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16413, 'Tral', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16414, 'Udhampur', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16415, 'Vijaypur', 1606, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16416, 'Adityapur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16417, 'Amlabad', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16418, 'Angarpathar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16419, 'Babua Kalan', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16420, 'Bagbahra', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16421, 'Baliapur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16422, 'Baliari', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16423, 'Balkundra', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16424, 'Bandhgora', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16425, 'Barajamda', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16426, 'Barhi', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16427, 'Barka Kana', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16428, 'Barki Saraiya', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16429, 'Barughutu', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16430, 'Barwadih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16431, 'Basaria', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16432, 'Basukinath', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16433, 'Bermo', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16434, 'Bhagatdih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16435, 'Bhaurah', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16436, 'Bhojudih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16437, 'Bhuli', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16438, 'Bokaro', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16439, 'Borio Bazar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16440, 'Bundu', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16441, 'Chaibasa', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16442, 'Chaitudih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16443, 'Chakradharpur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16444, 'Chakulia', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16445, 'Chandaur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16446, 'Chandil', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16447, 'Chandrapura', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16448, 'Chas', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16449, 'Chatra', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16450, 'Chhatatanr', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16451, 'Chhotaputki', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16452, 'Chiria', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16453, 'Chirkunda', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16454, 'Churi', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16455, 'Daltenganj', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16456, 'Danguwapasi', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16457, 'Dari', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16458, 'Deoghar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16459, 'Deorikalan', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16460, 'Devghar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16461, 'Dhanbad', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16462, 'Dhanwar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16463, 'Dhaunsar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16464, 'Dugda', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16465, 'Dumarkunda', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16466, 'Dumka', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16467, 'Egarkunr', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16468, 'Gadhra', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16469, 'Garwa', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16470, 'Ghatsila', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16471, 'Ghorabandha', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16472, 'Gidi', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16473, 'Giridih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16474, 'Gobindpur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16475, 'Godda', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16476, 'Godhar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16477, 'Golphalbari', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16478, 'Gomoh', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16479, 'Gua', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16480, 'Gumia', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16481, 'Gumla', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16482, 'Haludbani', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16483, 'Hazaribag', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16484, 'Hesla', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16485, 'Husainabad', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16486, 'Isri', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16487, 'Jadugora', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16488, 'Jagannathpur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16489, 'Jamadoba', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16490, 'Jamshedpur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16491, 'Jamtara', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16492, 'Jarangdih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16493, 'Jaridih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16494, 'Jasidih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16495, 'Jharia', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16496, 'Jharia Khas', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16497, 'Jhinkpani', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16498, 'Jhumri Tilaiya', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16499, 'Jorapokhar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16500, 'Jugsalai', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16501, 'Kailudih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16502, 'Kalikapur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16503, 'Kandra', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16504, 'Kanke', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16505, 'Katras', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16506, 'Kedla', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16507, 'Kenduadih', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16508, 'Kharkhari', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16509, 'Kharsawan', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16510, 'Khelari', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16511, 'Khunti', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16512, 'Kiri Buru', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16513, 'Kiriburu', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16514, 'Kodarma', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16515, 'Kuju', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16516, 'Kurpania', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16517, 'Kustai', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16518, 'Lakarka', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16519, 'Lapanga', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16520, 'Latehar', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16521, 'Lohardaga', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16522, 'Loiya', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16523, 'Loyabad', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16524, 'Madhupur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16525, 'Mahesh Mundi', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16526, 'Maithon', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16527, 'Malkera', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16528, 'Mango', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16529, 'Manoharpur', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16530, 'Marma', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16531, 'Meghahatuburu Forest village', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16532, 'Mera', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16533, 'Mihijam', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16534, 'Mugma', 1607, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, 1), -(16535, 'Muri', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16536, 'Mushabani', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16537, 'Nagri Kalan', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16538, 'Netarhat', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16539, 'Nirsa', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16540, 'Noamundi', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16541, 'Okni', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16542, 'Orla', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16543, 'Pakaur', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16544, 'Palamau', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16545, 'Palawa', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16546, 'Panchet', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16547, 'Panrra', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16548, 'Paratdih', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16549, 'Pathardih', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16550, 'Patratu', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16551, 'Phusro', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16552, 'Pondar Kanali', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16553, 'Rajmahal', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16554, 'Ranchi', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16555, 'Ray', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16556, 'Rehla', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16557, 'Religara', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16558, 'Rohraband', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16559, 'Sahibganj', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16560, 'Sahnidih', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16561, 'Saraidhela', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16562, 'Saraikela', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16563, 'Sarjamda', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16564, 'Saunda', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16565, 'Sewai', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16566, 'Sijhua', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16567, 'Sijua', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16568, 'Simdega', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16569, 'Sindari', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16570, 'Sinduria', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16571, 'Sini', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16572, 'Sirka', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16573, 'Siuliban', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16574, 'Surubera', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16575, 'Tati', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16576, 'Tenudam', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16577, 'Tisra', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16578, 'Topa', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16579, 'Topchanchi', 1607, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16580, 'Adityanagar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16581, 'Adityapatna', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16582, 'Afzalpur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16583, 'Ajjampur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16584, 'Aland', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16585, 'Almatti Sitimani', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16586, 'Alnavar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16587, 'Alur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16588, 'Ambikanagara', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16589, 'Anekal', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16590, 'Ankola', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16591, 'Annigeri', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16592, 'Arkalgud', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16593, 'Arsikere', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16594, 'Athni', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16595, 'Aurad', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16596, 'Badagavettu', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16597, 'Badami', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16598, 'Bagalkot', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16599, 'Bagepalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16600, 'Bailhongal', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16601, 'Baindur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16602, 'Bajala', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16603, 'Bajpe', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16604, 'Banavar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16605, 'Bangarapet', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16606, 'Bankapura', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16607, 'Bannur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16608, 'Bantwal', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16609, 'Basavakalyan', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16610, 'Basavana Bagevadi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16611, 'Belagula', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16612, 'Belakavadiq', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16613, 'Belgaum', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16614, 'Belgaum Cantonment', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16615, 'Bellary', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16616, 'Belluru', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16617, 'Beltangadi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16618, 'Belur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16619, 'Belvata', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16620, 'Bengaluru', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16621, 'Bhadravati', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16622, 'Bhalki', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16623, 'Bhatkal', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16624, 'Bhimarayanagudi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16625, 'Bhogadi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16626, 'Bidar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16627, 'Bijapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16628, 'Bilgi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16629, 'Birur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16630, 'Bommanahalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16631, 'Bommasandra', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16632, 'Byadgi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16633, 'Byatarayanapura', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16634, 'Chakranagar Colony', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16635, 'Challakere', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16636, 'Chamrajnagar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16637, 'Chamundi Betta', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16638, 'Channagiri', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16639, 'Channapatna', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16640, 'Channarayapatna', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16641, 'Chickballapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16642, 'Chik Ballapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16643, 'Chikkaballapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16644, 'Chikmagalur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16645, 'Chiknayakanhalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16646, 'Chikodi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16647, 'Chincholi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16648, 'Chintamani', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16649, 'Chitaguppa', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16650, 'Chitapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16651, 'Chitradurga', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16652, 'Coorg', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16653, 'Dandeli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16654, 'Dargajogihalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16655, 'Dasarahalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16656, 'Davangere', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16657, 'Devadurga', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16658, 'Devagiri', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16659, 'Devanhalli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16660, 'Dharwar', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16661, 'Dhupdal', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16662, 'Dod Ballapur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16663, 'Donimalai', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16664, 'Gadag', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16665, 'Gajendragarh', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16666, 'Ganeshgudi', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16667, 'Gangawati', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16668, 'Gangoli', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16669, 'Gauribidanur', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16670, 'Gokak', 1608, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, 1), -(16671, 'Gokak Falls', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16672, 'Gonikoppal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16673, 'Gorur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16674, 'Gottikere', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16675, 'Gubbi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16676, 'Gudibanda', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16677, 'Gulbarga', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16678, 'Guledgudda', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16679, 'Gundlupet', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16680, 'Gurmatkal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16681, 'Haliyal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16682, 'Hangal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16683, 'Harihar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16684, 'Harpanahalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16685, 'Hassan', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16686, 'Hatti', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16687, 'Hatti Gold Mines', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16688, 'Haveri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16689, 'Hebbagodi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16690, 'Hebbalu', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16691, 'Hebri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16692, 'Heggadadevanakote', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16693, 'Herohalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16694, 'Hidkal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16695, 'Hindalgi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16696, 'Hirekerur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16697, 'Hiriyur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16698, 'Holalkere', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16699, 'Hole Narsipur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16700, 'Homnabad', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16701, 'Honavar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16702, 'Honnali', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16703, 'Hosakote', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16704, 'Hosanagara', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16705, 'Hosangadi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16706, 'Hosdurga', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16707, 'Hoskote', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16708, 'Hospet', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16709, 'Hubli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16710, 'Hukeri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16711, 'Hunasagi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16712, 'Hunasamaranahalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16713, 'Hungund', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16714, 'Hunsur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16715, 'Huvina Hadagalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16716, 'Ilkal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16717, 'Indi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16718, 'Jagalur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16719, 'Jamkhandi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16720, 'Jevargi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16721, 'Jog Falls', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16722, 'Kabini Colony', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16723, 'Kadur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16724, 'Kalghatgi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16725, 'Kampli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16726, 'Kanakapura', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16727, 'Kangrali BK', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16728, 'Kangrali KH', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16729, 'Kannur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16730, 'Karkala', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16731, 'Karwar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16732, 'Kemminja', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16733, 'Kengeri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16734, 'Kerur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16735, 'Khanapur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16736, 'Kodigenahalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16737, 'Kodiyal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16738, 'Kodlipet', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16739, 'Kolar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16740, 'Kollegal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16741, 'Konanakunte', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16742, 'Konanur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16743, 'Konnur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16744, 'Koppa', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16745, 'Koppal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16746, 'Koratagere', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16747, 'Kotekara', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16748, 'Kothnur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16749, 'Kotturu', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16750, 'Krishnapura', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16751, 'Krishnarajanagar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16752, 'Krishnarajapura', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16753, 'Krishnarajasagara', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16754, 'Krishnarajpet', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16755, 'Kudchi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16756, 'Kudligi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16757, 'Kudremukh', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16758, 'Kumsi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16759, 'Kumta', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16760, 'Kundapura', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16761, 'Kundgol', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16762, 'Kunigal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16763, 'Kurgunta', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16764, 'Kushalnagar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16765, 'Kushtagi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16766, 'Kyathanahalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16767, 'Lakshmeshwar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16768, 'Lingsugur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16769, 'Londa', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16770, 'Maddur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16771, 'Madhugiri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16772, 'Madikeri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16773, 'Magadi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16774, 'Magod Falls', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16775, 'Mahadeswara Hills', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16776, 'Mahadevapura', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16777, 'Mahalingpur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16778, 'Maisuru', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16779, 'Maisuru Cantonment', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16780, 'Malavalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16781, 'Mallar', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16782, 'Malpe', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16783, 'Malur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16784, 'Manchenahalli', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16785, 'Mandya', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16786, 'Mangalore', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16787, 'Mangaluru', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16788, 'Manipal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16789, 'Manvi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16790, 'Maski', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16791, 'Mastikatte Colony', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16792, 'Mayakonda', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16793, 'Melukote', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16794, 'Molakalmuru', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16795, 'Mudalgi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16796, 'Mudbidri', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16797, 'Muddebihal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16798, 'Mudgal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16799, 'Mudhol', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16800, 'Mudigere', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16801, 'Mudushedde', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16802, 'Mulbagal', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16803, 'Mulgund', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16804, 'Mulki', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16805, 'Mulur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16806, 'Mundargi', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16807, 'Mundgod', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16808, 'Munirabad', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16809, 'Munnur', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16810, 'Murudeshwara', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16811, 'Mysore', 1608, '2024-01-21 12:06:08', '2024-01-21 12:06:08', NULL, 1), -(16812, 'Nagamangala', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16813, 'Nanjangud', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16814, 'Naragund', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16815, 'Narasimharajapura', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16816, 'Naravi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16817, 'Narayanpur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16818, 'Naregal', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16819, 'Navalgund', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16820, 'Nelmangala', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16821, 'Nipani', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16822, 'Nitte', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16823, 'Nyamati', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16824, 'Padu', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16825, 'Pandavapura', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16826, 'Pattanagere', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16827, 'Pavagada', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16828, 'Piriyapatna', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16829, 'Ponnampet', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16830, 'Rabkavi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16831, 'Raichur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16832, 'Ramanagaram', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16833, 'Ramdurg', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16834, 'Ranibennur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16835, 'Raybag', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16836, 'Robertsonpet', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16837, 'Ron', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16838, 'Sadalgi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16839, 'Sagar', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16840, 'Sakleshpur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16841, 'Saligram', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16842, 'Sandur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16843, 'Sanivarsante', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16844, 'Sankeshwar', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16845, 'Sargur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16846, 'Sathyamangala', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16847, 'Saundatti Yellamma', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16848, 'Savanur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16849, 'Sedam', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16850, 'Shahabad A.C.C.', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16851, 'Shahapur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16852, 'Shaktinagar', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16853, 'Shiggaon', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16854, 'Shikarpur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16855, 'Shimoga', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16856, 'Shirhatti', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16857, 'Shorapur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16858, 'Shravanabelagola', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16859, 'Shrirangapattana', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16860, 'Siddapur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16861, 'Sidlaghatta', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16862, 'Sindgi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16863, 'Sindhnur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16864, 'Sira', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16865, 'Sirakoppa', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16866, 'Sirsi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16867, 'Siruguppa', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16868, 'Someshwar', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16869, 'Somvarpet', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16870, 'Sorab', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16871, 'Sringeri', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16872, 'Srinivaspur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16873, 'Sulya', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16874, 'Suntikopa', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16875, 'Talikota', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16876, 'Tarikera', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16877, 'Tekkalakota', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16878, 'Terdal', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16879, 'Thokur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16880, 'Thumbe', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16881, 'Tiptur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16882, 'Tirthahalli', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16883, 'Tirumakudal Narsipur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16884, 'Tonse', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16885, 'Tumkur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16886, 'Turuvekere', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16887, 'Udupi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16888, 'Ullal', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16889, 'Uttarahalli', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16890, 'Venkatapura', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16891, 'Vijayapura', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16892, 'Virarajendrapet', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16893, 'Wadi', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16894, 'Wadi A.C.C.', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16895, 'Yadgir', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16896, 'Yelahanka', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16897, 'Yelandur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16898, 'Yelbarga', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16899, 'Yellapur', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16900, 'Yenagudde', 1608, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16901, 'Adimaly', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16902, 'Adoor', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16903, 'Adur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16904, 'Akathiyur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16905, 'Alangad', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16906, 'Alappuzha', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16907, 'Aluva', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16908, 'Ancharakandy', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16909, 'Angamaly', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16910, 'Aroor', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16911, 'Arukutti', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16912, 'Attingal', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16913, 'Avinissery', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16914, 'Azhikode North', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16915, 'Azhikode South', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16916, 'Azhiyur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16917, 'Balussery', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16918, 'Bangramanjeshwar', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16919, 'Beypur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16920, 'Brahmakulam', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16921, 'Chalakudi', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16922, 'Changanacheri', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16923, 'Chauwara', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16924, 'Chavakkad', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16925, 'Chelakkara', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16926, 'Chelora', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16927, 'Chendamangalam', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16928, 'Chengamanad', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16929, 'Chengannur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16930, 'Cheranallur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16931, 'Cheriyakadavu', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16932, 'Cherthala', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16933, 'Cherukunnu', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16934, 'Cheruthazham', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16935, 'Cheruvannur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16936, 'Cheruvattur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16937, 'Chevvur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16938, 'Chirakkal', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16939, 'Chittur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16940, 'Chockli', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16941, 'Churnikkara', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16942, 'Dharmadam', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16943, 'Edappal', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16944, 'Edathala', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16945, 'Elayavur', 1610, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, 1), -(16946, 'Elur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16947, 'Eranholi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16948, 'Erattupetta', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16949, 'Ernakulam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16950, 'Eruvatti', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(16951, 'Ettumanoor', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16952, 'Feroke', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16953, 'Guruvayur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16954, 'Haripad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16955, 'Hosabettu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16956, 'Idukki', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16957, 'Iringaprom', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16958, 'Irinjalakuda', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16959, 'Iriveri', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16960, 'Kadachira', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16961, 'Kadalundi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16962, 'Kadamakkudy', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16963, 'Kadirur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16964, 'Kadungallur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16965, 'Kakkodi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16966, 'Kalady', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16967, 'Kalamassery', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16968, 'Kalliasseri', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16969, 'Kalpetta', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16970, 'Kanhangad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16971, 'Kanhirode', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16972, 'Kanjikkuzhi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16973, 'Kanjikode', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16974, 'Kanjirappalli', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16975, 'Kannadiparamba', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16976, 'Kannangad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16977, 'Kannapuram', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16978, 'Kannur Cantonment', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16979, 'Karunagappally', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16980, 'Karuvamyhuruthy', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16981, 'Kasaragod', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16982, 'Kasargod', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16983, 'Kattappana', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16984, 'Kayamkulam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16985, 'Kedamangalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16986, 'Kochi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16987, 'Kodamthuruthu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16988, 'Kodungallur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16989, 'Koduvally', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16990, 'Koduvayur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16991, 'Kokkothamangalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16992, 'Kolazhy', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16993, 'Kollam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16994, 'Komalapuram', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16995, 'Koothattukulam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16996, 'Koratty', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16997, 'Kothamangalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16998, 'Kottarakkara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(16999, 'Kottayam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17000, 'Kottayam Malabar', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17001, 'Kottuvally', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17002, 'Koyilandi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17003, 'Kozhikode', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17004, 'Kudappanakunnu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17005, 'Kudlu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17006, 'Kumarakom', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17007, 'Kumily', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17008, 'Kunnamangalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17009, 'Kunnamkulam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17010, 'Kurikkad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17011, 'Kurkkanchery', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17012, 'Kuthuparamba', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17013, 'Kuttakulam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17014, 'Kuttikkattur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17015, 'Kuttur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17016, 'Malappuram', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17017, 'Mallappally', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17018, 'Manjeri', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17019, 'Manjeshwar', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17020, 'Mannancherry', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17021, 'Mannar', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17022, 'Mannarakkat', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17023, 'Maradu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17024, 'Marathakkara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17025, 'Marutharod', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17026, 'Mattannur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17027, 'Mavelikara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17028, 'Mavilayi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17029, 'Mavur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17030, 'Methala', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17031, 'Muhamma', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17032, 'Mulavukad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17033, 'Mundakayam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17034, 'Munderi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17035, 'Munnar', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17036, 'Muthakunnam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17037, 'Muvattupuzha', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17038, 'Muzhappilangad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17039, 'Nadapuram', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17040, 'Nadathara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17041, 'Narath', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17042, 'Nattakam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17043, 'Nedumangad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17044, 'Nenmenikkara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17045, 'New Mahe', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17046, 'Neyyattinkara', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17047, 'Nileshwar', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17048, 'Olavanna', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17049, 'Ottapalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17050, 'Ottappalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17051, 'Paduvilayi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17052, 'Palai', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17053, 'Palakkad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17054, 'Palayad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17055, 'Palissery', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17056, 'Pallikkunnu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17057, 'Paluvai', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17058, 'Panniyannur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17059, 'Pantalam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17060, 'Panthiramkavu', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17061, 'Panur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17062, 'Pappinisseri', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17063, 'Parassala', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17064, 'Paravur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17065, 'Pathanamthitta', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17066, 'Pathanapuram', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17067, 'Pathiriyad', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17068, 'Pattambi', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17069, 'Pattiom', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17070, 'Pavaratty', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17071, 'Payyannur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17072, 'Peermade', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17073, 'Perakam', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17074, 'Peralasseri', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17075, 'Peringathur', 1610, '2024-01-21 12:06:10', '2024-01-21 12:06:10', NULL, 1), -(17076, 'Perinthalmanna', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17077, 'Perole', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17078, 'Perumanna', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17079, 'Perumbaikadu', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17080, 'Perumbavoor', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17081, 'Pinarayi', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17082, 'Piravam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17083, 'Ponnani', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17084, 'Pottore', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17085, 'Pudukad', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17086, 'Punalur', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17087, 'Puranattukara', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17088, 'Puthunagaram', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17089, 'Puthuppariyaram', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17090, 'Puzhathi', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17091, 'Ramanattukara', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17092, 'Shoranur', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17093, 'Sultans Battery', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17094, 'Sulthan Bathery', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17095, 'Talipparamba', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17096, 'Thaikkad', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17097, 'Thalassery', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17098, 'Thannirmukkam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17099, 'Theyyalingal', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17100, 'Thiruvalla', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17101, 'Thiruvananthapuram', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17102, 'Thiruvankulam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17103, 'Thodupuzha', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17104, 'Thottada', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17105, 'Thrippunithura', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17106, 'Thrissur', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17107, 'Tirur', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17108, 'Udma', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17109, 'Vadakara', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17110, 'Vaikam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17111, 'Valapattam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17112, 'Vallachira', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17113, 'Varam', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17114, 'Varappuzha', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17115, 'Varkala', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17116, 'Vayalar', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17117, 'Vazhakkala', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17118, 'Venmanad', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17119, 'Villiappally', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17120, 'Wayanad', 1610, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17121, 'Agethi', 1611, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17122, 'Amini', 1611, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17123, 'Androth Island', 1611, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17124, 'Kavaratti', 1611, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17125, 'Minicoy', 1611, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17126, 'Agar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17127, 'Ajaigarh', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17128, 'Akoda', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17129, 'Akodia', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17130, 'Alirajpur', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17131, 'Alot', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17132, 'Amanganj', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17133, 'Amarkantak', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17134, 'Amarpatan', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17135, 'Amarwara', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17136, 'Ambada', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17137, 'Ambah', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17138, 'Amla', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17139, 'Amlai', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17140, 'Anjad', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17141, 'Antri', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17142, 'Anuppur', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17143, 'Aron', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17144, 'Ashoknagar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17145, 'Ashta', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17146, 'Babai', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17147, 'Bada Malhera', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17148, 'Badagaon', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17149, 'Badagoan', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17150, 'Badarwas', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17151, 'Badawada', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17152, 'Badi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17153, 'Badkuhi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17154, 'Badnagar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17155, 'Badnawar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17156, 'Badod', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17157, 'Badoda', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17158, 'Badra', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17159, 'Bagh', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17160, 'Bagli', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17161, 'Baihar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17162, 'Bakswaha', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17163, 'Balaghat', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17164, 'Baldeogarh', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17165, 'Bamaniya', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17166, 'Bamhani', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17167, 'Bamor', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17168, 'Bamora', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17169, 'Banda', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17170, 'Bangawan', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17171, 'Bansatar Kheda', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17172, 'Baraily', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17173, 'Barela', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17174, 'Barghat', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17175, 'Bargi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17176, 'Barigarh', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17177, 'Barwaha', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17178, 'Barwani', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17179, 'Basoda', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17180, 'Beohari', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17181, 'Berasia', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17182, 'Betma', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17183, 'Betul', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17184, 'Betul Bazar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17185, 'Bhainsdehi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17186, 'Bhamodi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17187, 'Bhander', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17188, 'Bhanpura', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17189, 'Bharveli', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17190, 'Bhaurasa', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17191, 'Bhavra', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17192, 'Bhedaghat', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17193, 'Bhikangaon', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17194, 'Bhilakhedi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17195, 'Bhind', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17196, 'Bhitarwar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17197, 'Bhopal', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17198, 'Bhuibandh', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17199, 'Biaora', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17200, 'Bijawar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17201, 'Bijeypur', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17202, 'Bijrauni', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17203, 'Bijuri', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17204, 'Bilaua', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17205, 'Bilpura', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17206, 'Bina Railway Colony', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17207, 'Bina-Etawa', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17208, 'Birsinghpur', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17209, 'Budhni', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17210, 'Burhanpur', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17211, 'Burhar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17212, 'Chachaura Binaganj', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17213, 'Chakghat', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17214, 'Chandameta Butar', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17215, 'Chanderi', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17216, 'Chandia', 1612, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, 1), -(17217, 'Chandla', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17218, 'Chaurai Khas', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17219, 'Chhatarpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17220, 'Chhindwara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17221, 'Chhota Chhindwara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17222, 'Chichli', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17223, 'Chitrakut', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17224, 'Churhat', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17225, 'Daboh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17226, 'Dabra', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17227, 'Damoh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17228, 'Damua', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17229, 'Datia', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17230, 'Deodara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17231, 'Deori Khas', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17232, 'Depalpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17233, 'Devendranagar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17234, 'Devhara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17235, 'Dewas', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17236, 'Dhamnod', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17237, 'Dhana', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17238, 'Dhanpuri', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17239, 'Dhar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17240, 'Dharampuri', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17241, 'Dighawani', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17242, 'Diken', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17243, 'Dindori', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17244, 'Dola', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17245, 'Dumar Kachhar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17246, 'Dungariya Chhapara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17247, 'Gadarwara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17248, 'Gairatganj', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17249, 'Gandhi Sagar Hydel Colony', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17250, 'Ganjbasoda', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17251, 'Garhakota', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17252, 'Garhi Malhara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17253, 'Garoth', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17254, 'Gautapura', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17255, 'Ghansor', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17256, 'Ghuwara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17257, 'Gogapur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17258, 'Gohad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17259, 'Gormi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17260, 'Govindgarh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17261, 'Guna', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17262, 'Gurh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17263, 'Gwalior', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17264, 'Hanumana', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17265, 'Harda', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17266, 'Harpalpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17267, 'Harrai', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17268, 'Harsud', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17269, 'Hatod', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17270, 'Hatpipalya', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17271, 'Hatta', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17272, 'Hindoria', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17273, 'Hirapur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17274, 'Hoshangabad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17275, 'Ichhawar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17276, 'Iklehra', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17277, 'Indergarh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17278, 'Indore', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17279, 'Isagarh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17280, 'Itarsi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17281, 'Jabalpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17282, 'Jabalpur Cantonment', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17283, 'Jabalpur G.C.F', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17284, 'Jaisinghnagar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17285, 'Jaithari', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17286, 'Jaitwara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17287, 'Jamai', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17288, 'Jaora', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17289, 'Jatachhapar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17290, 'Jatara', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17291, 'Jawad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17292, 'Jawar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17293, 'Jeronkhalsa', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17294, 'Jhabua', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17295, 'Jhundpura', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17296, 'Jiran', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17297, 'Jirapur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17298, 'Jobat', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17299, 'Joura', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17300, 'Kailaras', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17301, 'Kaimur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17302, 'Kakarhati', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17303, 'Kalichhapar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17304, 'Kanad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17305, 'Kannod', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17306, 'Kantaphod', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17307, 'Kareli', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17308, 'Karera', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17309, 'Kari', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17310, 'Karnawad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17311, 'Karrapur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17312, 'Kasrawad', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17313, 'Katangi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17314, 'Katni', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17315, 'Kelhauri', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17316, 'Khachrod', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17317, 'Khajuraho', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17318, 'Khamaria', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17319, 'Khand', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17320, 'Khandwa', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17321, 'Khaniyadhana', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17322, 'Khargapur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17323, 'Khargone', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17324, 'Khategaon', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17325, 'Khetia', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17326, 'Khilchipur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17327, 'Khirkiya', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17328, 'Khujner', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17329, 'Khurai', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17330, 'Kolaras', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17331, 'Kotar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17332, 'Kothi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17333, 'Kotma', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17334, 'Kukshi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17335, 'Kumbhraj', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17336, 'Kurwai', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17337, 'Lahar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17338, 'Lakhnadon', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17339, 'Lateri', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17340, 'Laundi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17341, 'Lidhora Khas', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17342, 'Lodhikheda', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17343, 'Loharda', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17344, 'Machalpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17345, 'Madhogarh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17346, 'Maharajpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17347, 'Maheshwar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17348, 'Mahidpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17349, 'Maihar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17350, 'Majholi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17351, 'Makronia', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17352, 'Maksi', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17353, 'Malaj Khand', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17354, 'Malanpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17355, 'Malhargarh', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17356, 'Manasa', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17357, 'Manawar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17358, 'Mandav', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17359, 'Mandideep', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17360, 'Mandla', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17361, 'Mandleshwar', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17362, 'Mandsaur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17363, 'Manegaon', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17364, 'Mangawan', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17365, 'Manglaya Sadak', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17366, 'Manpur', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17367, 'Mau', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17368, 'Mauganj', 1612, '2024-01-21 12:06:12', '2024-01-21 12:06:12', NULL, 1), -(17369, 'Meghnagar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17370, 'Mehara Gaon', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17371, 'Mehgaon', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17372, 'Mhaugaon', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17373, 'Mhow', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17374, 'Mihona', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17375, 'Mohgaon', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17376, 'Morar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17377, 'Morena', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17378, 'Multai', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17379, 'Mundi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17380, 'Mungaoli', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17381, 'Murwara', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17382, 'Nagda', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17383, 'Nagod', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17384, 'Nagri', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17385, 'Naigarhi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17386, 'Nainpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17387, 'Nalkheda', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17388, 'Namli', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17389, 'Narsimhapur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17390, 'Narsingarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17391, 'Narsinghpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17392, 'Narwar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17393, 'Nasrullaganj', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17394, 'Naudhia', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17395, 'Naurozabad', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17396, 'Neemuch', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17397, 'Nepa Nagar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17398, 'Neuton Chikhli Kalan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17399, 'Nimach', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17400, 'Niwari', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17401, 'Obedullaganj', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17402, 'Omkareshwar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17403, 'Orachha', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17404, 'Ordinance Factory Itarsi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17405, 'Pachmarhi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17406, 'Pachmarhi Cantonment', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17407, 'Pachore', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17408, 'Palchorai', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17409, 'Palda', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17410, 'Palera', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17411, 'Panagar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17412, 'Panara', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17413, 'Pandaria', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17414, 'Pandhana', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17415, 'Pandhurna', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17416, 'Panna', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17417, 'Pansemal', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17418, 'Parasia', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17419, 'Pasan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17420, 'Patharia', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17421, 'Pawai', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17422, 'Petlawad', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17423, 'Phuph Kalan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17424, 'Pichhore', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17425, 'Pipariya', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17426, 'Pipliya Mandi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17427, 'Piploda', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17428, 'Pithampur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17429, 'Polay Kalan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17430, 'Porsa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17431, 'Prithvipur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17432, 'Raghogarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17433, 'Rahatgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17434, 'Raisen', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17435, 'Rajakhedi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17436, 'Rajnagar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17437, 'Rajpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17438, 'Rampur Baghelan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17439, 'Rampur Naikin', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17440, 'Rampura', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17441, 'Ranapur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17442, 'Ranipura', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17443, 'Ratangarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17444, 'Ratlam', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17445, 'Ratlam Kasba', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17446, 'Rau', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17447, 'Rehli', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17448, 'Rehti', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17449, 'Rewa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17450, 'Sabalgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17451, 'Sagar Cantonment', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17452, 'Sailana', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17453, 'Sanawad', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17454, 'Sanchi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17455, 'Sanwer', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17456, 'Sarangpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17457, 'Sardarpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17458, 'Sarni', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17459, 'Satai', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17460, 'Satna', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17461, 'Satwas', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17462, 'Sausar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17463, 'Sehore', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17464, 'Semaria', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17465, 'Sendhwa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17466, 'Seondha', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17467, 'Seoni Malwa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17468, 'Sethia', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17469, 'Shahdol', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17470, 'Shahgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17471, 'Shahpura', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17472, 'Shajapur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17473, 'Shamgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17474, 'Sheopur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17475, 'Shivpuri', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17476, 'Shujalpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17477, 'Sidhi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17478, 'Sihora', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17479, 'Singolo', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17480, 'Singrauli', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17481, 'Sinhasa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17482, 'Sirgora', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17483, 'Sironj', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17484, 'Sitamau', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17485, 'Sohagpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17486, 'Sonkatch', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17487, 'Soyatkalan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17488, 'Suhagi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17489, 'Sultanpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17490, 'Susner', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17491, 'Suthaliya', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17492, 'Tal', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17493, 'Talen', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17494, 'Tarana', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17495, 'Taricharkalan', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17496, 'Tekanpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17497, 'Tendukheda', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17498, 'Teonthar', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17499, 'Thandia', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17500, 'Tikamgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17501, 'Timarni', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17502, 'Tirodi', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17503, 'Udaipura', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17504, 'Ujjain', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17505, 'Ukwa', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17506, 'Umaria', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17507, 'Unchahara', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17508, 'Unhel', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17509, 'Vehicle Factory Jabalpur', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17510, 'Vidisha', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17511, 'Vijayraghavgarh', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17512, 'Waraseoni', 1612, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, 1), -(17513, 'Achalpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17514, 'Aheri', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17515, 'Ahmadnagar Cantonment', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17516, 'Ahmadpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17517, 'Ahmednagar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17518, 'Ajra', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17519, 'Akalkot', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17520, 'Akkalkuwa', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17521, 'Akola', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17522, 'Akot', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17523, 'Alandi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17524, 'Alibag', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17525, 'Allapalli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17526, 'Alore', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17527, 'Amalner', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17528, 'Ambad', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17529, 'Ambajogai', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17530, 'Ambernath', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17531, 'Ambivali Tarf Wankhal', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17532, 'Amgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17533, 'Amravati', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17534, 'Anjangaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17535, 'Arvi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17536, 'Ashti', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17537, 'Aurangabad Cantonment', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17538, 'Ausa', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17539, 'Babhulgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17540, 'Badlapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17541, 'Ballarpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17542, 'Baramati', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17543, 'Barshi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17544, 'Basmat', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17545, 'Beed', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17546, 'Bhagur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17547, 'Bhandara', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17548, 'Bhigvan', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17549, 'Bhingar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17550, 'Bhiwandi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17551, 'Bhokhardan', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17552, 'Bhor', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17553, 'Bhosari', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17554, 'Bhum', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17555, 'Bhusawal', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17556, 'Bid', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17557, 'Biloli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17558, 'Birwadi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17559, 'Boisar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17560, 'Bop Khel', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17561, 'Brahmapuri', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17562, 'Budhgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17563, 'Buldana', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17564, 'Buldhana', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17565, 'Butibori', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17566, 'Chakan', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17567, 'Chalisgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17568, 'Chandrapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17569, 'Chandur Bazar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17570, 'Chandvad', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17571, 'Chicholi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(17572, 'Chikhala', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17573, 'Chikhaldara', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17574, 'Chinchani', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17575, 'Chinchwad', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17576, 'Chiplun', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17577, 'Chopda', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17578, 'Dabhol', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17579, 'Dahance', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17580, 'Dahanu', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17581, 'Daharu', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17582, 'Dapoli Camp', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17583, 'Darwa', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17584, 'Daryapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17585, 'Dattapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17586, 'Daund', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17587, 'Davlameti', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17588, 'Deglur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17589, 'Dehu Road', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17590, 'Deolali', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17591, 'Deolali Pravara', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17592, 'Deoli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17593, 'Desaiganj', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17594, 'Deulgaon Raja', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17595, 'Dewhadi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17596, 'Dharangaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17597, 'Dharmabad', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17598, 'Dharur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17599, 'Dhatau', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17600, 'Dhule', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17601, 'Digdoh', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17602, 'Diglur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17603, 'Digras', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17604, 'Dombivli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17605, 'Dondaicha', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17606, 'Dudhani', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17607, 'Durgapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17608, 'Dyane', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17609, 'Edandol', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17610, 'Eklahare', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17611, 'Faizpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17612, 'Fekari', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17613, 'Gadchiroli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17614, 'Gadhinghaj', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17615, 'Gandhi Nagar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17616, 'Ganeshpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17617, 'Gangakher', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17618, 'Gangapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17619, 'Gevrai', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17620, 'Ghatanji', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17621, 'Ghoti', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17622, 'Ghugus', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17623, 'Ghulewadi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17624, 'Godoli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17625, 'Gondia', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17626, 'Guhagar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17627, 'Hadgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17628, 'Harnai Beach', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17629, 'Hinganghat', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17630, 'Hingoli', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17631, 'Hupari', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17632, 'Ichalkaranji', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17633, 'Igatpuri', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17634, 'Indapur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17635, 'Jaisinghpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17636, 'Jalgaon', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17637, 'Jalna', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17638, 'Jamkhed', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17639, 'Jawhar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17640, 'Jaysingpur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17641, 'Jejuri', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17642, 'Jintur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17643, 'Junnar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17644, 'Kabnur', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17645, 'Kagal', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17646, 'Kalamb', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17647, 'Kalamnuri', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17648, 'Kalas', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17649, 'Kalmeshwar', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17650, 'Kalundre', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17651, 'Kalyan', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17652, 'Kamthi', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17653, 'Kamthi Cantonment', 1613, '2024-01-21 12:06:14', '2024-01-21 12:06:14', NULL, 1), -(17654, 'Kandari', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17655, 'Kandhar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17656, 'Kandri', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17657, 'Kandri II', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17658, 'Kanhan', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17659, 'Kankavli', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17660, 'Kannad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17661, 'Karanja', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17662, 'Karanje Tarf', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17663, 'Karivali', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17664, 'Karjat', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17665, 'Karmala', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17666, 'Kasara Budruk', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17667, 'Katai', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17668, 'Katkar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17669, 'Katol', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17670, 'Kegaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17671, 'Khadkale', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17672, 'Khadki', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17673, 'Khamgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17674, 'Khapa', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17675, 'Kharadi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17676, 'Kharakvasla', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17677, 'Khed', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17678, 'Kherdi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17679, 'Khoni', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17680, 'Khopoli', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17681, 'Khuldabad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17682, 'Kinwat', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17683, 'Kodoli', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17684, 'Kolhapur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17685, 'Kon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17686, 'Kondumal', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17687, 'Kopargaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17688, 'Kopharad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17689, 'Koradi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17690, 'Koregaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17691, 'Korochi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17692, 'Kudal', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17693, 'Kundalwadi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17694, 'Kurandvad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17695, 'Kurduvadi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17696, 'Kusgaon Budruk', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17697, 'Lanja', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17698, 'Lasalgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17699, 'Latur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17700, 'Loha', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17701, 'Lohegaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17702, 'Lonar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17703, 'Lonavala', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17704, 'Madhavnagar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17705, 'Mahabaleshwar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17706, 'Mahad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17707, 'Mahadula', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17708, 'Maindargi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17709, 'Majalgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17710, 'Malegaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17711, 'Malgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17712, 'Malkapur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17713, 'Malwan', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17714, 'Manadur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17715, 'Manchar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17716, 'Mangalvedhe', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17717, 'Mangrul Pir', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17718, 'Manmad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17719, 'Manor', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17720, 'Mansar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17721, 'Manwath', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17722, 'Mapuca', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17723, 'Matheran', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17724, 'Mehkar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17725, 'Mhasla', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17726, 'Mhaswad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17727, 'Mira Bhayandar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17728, 'Miraj', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17729, 'Mohpa', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17730, 'Mohpada', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17731, 'Moram', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17732, 'Morshi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17733, 'Mowad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17734, 'Mudkhed', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17735, 'Mukhed', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17736, 'Mul', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17737, 'Mulshi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17738, 'Mumbai', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17739, 'Murbad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17740, 'Murgud', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17741, 'Murtijapur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17742, 'Murud', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17743, 'Nachane', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17744, 'Nagardeole', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17745, 'Nagothane', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17746, 'Nagpur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17747, 'Nakoda', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17748, 'Nalasopara', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17749, 'Naldurg', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17750, 'Nanded', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17751, 'Nandgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17752, 'Nandura', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17753, 'Nandurbar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17754, 'Narkhed', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17755, 'Nashik', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17756, 'Navapur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17757, 'Navi Mumbai', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17758, 'Navi Mumbai Panvel', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17759, 'Neral', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17760, 'Nigdi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17761, 'Nilanga', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17762, 'Nildoh', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17763, 'Nimbhore', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17764, 'Ojhar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17765, 'Osmanabad', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17766, 'Pachgaon', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17767, 'Pachora', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17768, 'Padagha', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17769, 'Paithan', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17770, 'Palghar', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17771, 'Panchgani', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17772, 'Pandhakarwada', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17773, 'Pandharpur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17774, 'Panhala', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17775, 'Panvel', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17776, 'Paranda', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17777, 'Parbhani', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17778, 'Parli', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17779, 'Parola', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17780, 'Partur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17781, 'Pasthal', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17782, 'Pathardi', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17783, 'Pathri', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17784, 'Patur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17785, 'Pawni', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17786, 'Pen', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17787, 'Pethumri', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17788, 'Phaltan', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17789, 'Pimpri', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17790, 'Poladpur', 1613, '2024-01-21 12:06:15', '2024-01-21 12:06:15', NULL, 1), -(17791, 'Pulgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17792, 'Pune', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17793, 'Pune Cantonment', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17794, 'Purna', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17795, 'Purushottamnagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17796, 'Pusad', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17797, 'Rahimatpur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17798, 'Rahta Pimplas', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17799, 'Rahuri', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17800, 'Raigad', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17801, 'Rajapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17802, 'Rajgurunagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17803, 'Rajur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17804, 'Rajura', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17805, 'Ramtek', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17806, 'Ratnagiri', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17807, 'Ravalgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17808, 'Raver', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17809, 'Revadanda', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17810, 'Risod', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17811, 'Roha Ashtami', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17812, 'Sakri', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17813, 'Sandor', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17814, 'Sangamner', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17815, 'Sangli', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17816, 'Sangole', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17817, 'Sasti', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17818, 'Sasvad', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17819, 'Satana', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17820, 'Satara', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17821, 'Savantvadi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17822, 'Savda', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17823, 'Savner', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17824, 'Sawari Jawharnagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17825, 'Selu', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17826, 'Shahada', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17827, 'Shegaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17828, 'Shelar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17829, 'Shendurjana', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17830, 'Shirdi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17831, 'Shirgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17832, 'Shirpur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17833, 'Shirur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17834, 'Shirwal', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17835, 'Shivatkar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17836, 'Shrigonda', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17837, 'Shrirampur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17838, 'Shrirampur Rural', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17839, 'Sillewada', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17840, 'Sillod', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17841, 'Sindhudurg', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17842, 'Sindi Turf Hindnagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17843, 'Sindkhed Raja', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17844, 'Singnapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17845, 'Sinnar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17846, 'Sirur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17847, 'Sitasawangi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17848, 'Solapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17849, 'Sonai', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17850, 'Sonegaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17851, 'Soyagaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17852, 'Srivardhan', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17853, 'Surgana', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17854, 'Talegaon Dabhade', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17855, 'Taloda', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17856, 'Taloja', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17857, 'Talwade', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17858, 'Tarapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17859, 'Tasgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17860, 'Tathavade', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17861, 'Tekadi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17862, 'Telhara', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17863, 'Thane', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17864, 'Tirira', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17865, 'Totaladoh', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17866, 'Trimbak', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17867, 'Tuljapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17868, 'Tumsar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17869, 'Uchgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17870, 'Udgir', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17871, 'Ulhasnagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17872, 'Umarga', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17873, 'Umarkhed', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17874, 'Umarsara', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17875, 'Umbar Pada Nandade', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17876, 'Umred', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17877, 'Umri Pragane Balapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17878, 'Uran', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17879, 'Uran Islampur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17880, 'Utekhol', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17881, 'Vada', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17882, 'Vadgaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17883, 'Vadgaon Kasba', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17884, 'Vaijapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17885, 'Vanvadi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17886, 'Varangaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17887, 'Vasai', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17888, 'Vasantnagar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17889, 'Vashind', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17890, 'Vengurla', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17891, 'Virar', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17892, 'Visapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17893, 'Vite', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17894, 'Vithalwadi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17895, 'Waghapur', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17896, 'Wai', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17897, 'Wajegaon', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17898, 'Walani', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17899, 'Wanadongri', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17900, 'Wani', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17901, 'Wardha', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17902, 'Warora', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17903, 'Warthi', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17904, 'Warud', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17905, 'Washim', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17906, 'Yaval', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17907, 'Yavatmal', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17908, 'Yeola', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17909, 'Yerkheda', 1613, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17910, 'Andro', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17911, 'Bijoy Govinda', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17912, 'Bishnupur', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17913, 'Churachandpur', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17914, 'Heriok', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17915, 'Imphal', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17916, 'Jiribam', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17917, 'Kakching', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17918, 'Kakching Khunou', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17919, 'Khongman', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17920, 'Kumbi', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17921, 'Kwakta', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17922, 'Lamai', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17923, 'Lamjaotongba', 1614, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, 1), -(17924, 'Lamshang', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17925, 'Lilong', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17926, 'Mayang Imphal', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17927, 'Moirang', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17928, 'Moreh', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17929, 'Nambol', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17930, 'Naoriya Pakhanglakpa', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17931, 'Ningthoukhong', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17932, 'Oinam', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17933, 'Porompat', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17934, 'Samurou', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17935, 'Sekmai Bazar', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17936, 'Senapati', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17937, 'Sikhong Sekmai', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17938, 'Sugnu', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17939, 'Thongkhong Laxmi Bazar', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17940, 'Thoubal', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17941, 'Torban', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17942, 'Wangjing', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17943, 'Wangoi', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17944, 'Yairipok', 1614, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17945, 'Baghmara', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17946, 'Cherrapunji', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17947, 'Jawai', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17948, 'Madanrting', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17949, 'Mairang', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17950, 'Mawlai', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17951, 'Nongmynsong', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17952, 'Nongpoh', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17953, 'Nongstoin', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17954, 'Nongthymmai', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17955, 'Pynthorumkhrah', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17956, 'Resubelpara', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17957, 'Shillong', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17958, 'Shillong Cantonment', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17959, 'Williamnagar', 1615, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17960, 'Aizawl', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17961, 'Bairabi', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17962, 'Biate', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17963, 'Champhai', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17964, 'Darlawn', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17965, 'Hnahthial', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17966, 'Kawnpui', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17967, 'Khawhai', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17968, 'Khawzawl', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17969, 'Kolasib', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17970, 'Lengpui', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17971, 'Lunglei', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17972, 'Mamit', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17973, 'North Vanlaiphai', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17974, 'Saiha', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17975, 'Sairang', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17976, 'Saitul', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17977, 'Serchhip', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17978, 'Thenzawl', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17979, 'Tlabung', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17980, 'Vairengte', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17981, 'Zawlnuam', 1616, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17982, 'Chumukedima', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17983, 'Dimapur', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17984, 'Kohima', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17985, 'Mokokchung', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17986, 'Mon', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17987, 'Phek', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17988, 'Tuensang', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17989, 'Wokha', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17990, 'Zunheboto', 1617, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17991, 'Anandapur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17992, 'Angul', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17993, 'Aska', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17994, 'Athgarh', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17995, 'Athmallik', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17996, 'Balagoda', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17997, 'Balangir', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17998, 'Balasore', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(17999, 'Baleshwar', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18000, 'Balimeta', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18001, 'Balugaon', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18002, 'Banapur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18003, 'Bangura', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18004, 'Banki', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18005, 'Banposh', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18006, 'Barbil', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18007, 'Bargarh', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18008, 'Baripada', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18009, 'Barpali', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18010, 'Basudebpur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18011, 'Baudh', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18012, 'Belagachhia', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18013, 'Belaguntha', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18014, 'Belpahar', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18015, 'Berhampur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18016, 'Bhadrak', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18017, 'Bhanjanagar', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18018, 'Bhawanipatna', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18019, 'Bhuban', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18020, 'Bhubaneswar', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18021, 'Binika', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18022, 'Birmitrapur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18023, 'Bishama Katek', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18024, 'Bolangir', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18025, 'Brahmapur', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18026, 'Brajrajnagar', 1620, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, 1), -(18027, 'Buguda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18028, 'Burla', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18029, 'Byasanagar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18030, 'Champua', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18031, 'Chandapur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18032, 'Chandbali', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18033, 'Chandili', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18034, 'Charibatia', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18035, 'Chatrapur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18036, 'Chikitigarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18037, 'Chitrakonda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18038, 'Choudwar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18039, 'Cuttack', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18040, 'Dadhapatna', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18041, 'Daitari', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18042, 'Damanjodi', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18043, 'Deogarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18044, 'Deracolliery', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18045, 'Dhamanagar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18046, 'Dhenkanal', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18047, 'Digapahandi', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18048, 'Dungamal', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18049, 'Fertilizer Corporation of Indi', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18050, 'Ganjam', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18051, 'Ghantapada', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18052, 'Gudari', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18053, 'Gunupur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18054, 'Hatibandha', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18055, 'Hinjilikatu', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18056, 'Hirakud', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18057, 'Jagatsinghapur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18058, 'Jajpur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18059, 'Jalda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18060, 'Jaleswar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18061, 'Jatni', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18062, 'Jaypur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18063, 'Jeypore', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18064, 'Jharsuguda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18065, 'Jhumpura', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18066, 'Joda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18067, 'Junagarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18068, 'Kamakhyanagar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18069, 'Kantabanji', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18070, 'Kantilo', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18071, 'Kashinagara', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18072, 'Kataka', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18073, 'Kavisuryanagar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18074, 'Kendrapara', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18075, 'Kendujhar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18076, 'Keonjhar', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18077, 'Kesinga', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18078, 'Khaliapali', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18079, 'Khalikote', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18080, 'Khandaparha', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18081, 'Kharhial', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18082, 'Kharhial Road', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18083, 'Khatiguda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18084, 'Khurda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18085, 'Kochinda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18086, 'Kodala', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18087, 'Konark', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18088, 'Koraput', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18089, 'Kotaparh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18090, 'Lanjigarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18091, 'Lattikata', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18092, 'Makundapur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18093, 'Malkangiri', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18094, 'Mukhiguda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18095, 'Nabarangpur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18096, 'Nalco', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18097, 'Naurangapur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18098, 'Nayagarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18099, 'Nilagiri', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18100, 'Nimaparha', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18101, 'Nuapada', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18102, 'Nuapatna', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18103, 'OCL Industrialship', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18104, 'Padampur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18105, 'Paradip', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18106, 'Paradwip', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18107, 'Parlakimidi', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18108, 'Patamundai', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18109, 'Patnagarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18110, 'Phulabani', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18111, 'Pipili', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18112, 'Polasara', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18113, 'Pratapsasan', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18114, 'Puri', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18115, 'Purushottampur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18116, 'Rairangpur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18117, 'Raj Gangpur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18118, 'Rambha', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18119, 'Raurkela', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18120, 'Raurkela Civil Township', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18121, 'Rayagada', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18122, 'Redhakhol', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18123, 'Remuna', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18124, 'Rengali', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18125, 'Rourkela', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18126, 'Sambalpur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18127, 'Sinapali', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18128, 'Sorada', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18129, 'Sunabeda', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18130, 'Sundargarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18131, 'Talcher', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18132, 'Talcher Thermal Power Station ', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18133, 'Tarabha', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18134, 'Tensa', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18135, 'Titlagarh', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18136, 'Udala', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18137, 'Udayagiri', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18138, 'Umarkot', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18139, 'Vikrampur', 1620, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18140, 'Ariankuppam', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18141, 'Karaikal', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18142, 'Kurumbapet', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18143, 'Mahe', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18144, 'Ozhukarai', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18145, 'Pondicherry', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18146, 'Villianur', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18147, 'Yanam', 1622, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18148, 'Abohar', 1623, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, 1), -(18149, 'Adampur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18150, 'Ahmedgarh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18151, 'Ajnala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18152, 'Akalgarh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18153, 'Alawalpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18154, 'Amloh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18155, 'Amritsar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18156, 'Amritsar Cantonment', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18157, 'Anandpur Sahib', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18158, 'Badhni Kalan', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18159, 'Bagh Purana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18160, 'Balachaur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18161, 'Banaur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18162, 'Banga', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18163, 'Banur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18164, 'Baretta', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18165, 'Bariwala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18166, 'Barnala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18167, 'Bassi Pathana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18168, 'Batala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18169, 'Bathinda', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18170, 'Begowal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18171, 'Behrampur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18172, 'Bhabat', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18173, 'Bhadur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18174, 'Bhankharpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18175, 'Bharoli Kalan', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18176, 'Bhawanigarh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18177, 'Bhikhi', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18178, 'Bhikhiwind', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18179, 'Bhisiana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18180, 'Bhogpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18181, 'Bhuch', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18182, 'Bhulath', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18183, 'Budha Theh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18184, 'Budhlada', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18185, 'Chohal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18186, 'Dasuya', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18187, 'Dera Baba Nanak', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18188, 'Dera Bassi', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18189, 'Dhanaula', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18190, 'Dharam Kot', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18191, 'Dhariwal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18192, 'Dhilwan', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18193, 'Dhuri', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18194, 'Dinanagar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(18195, 'Dirba', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18196, 'Doraha', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18197, 'Faridkot', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18198, 'Fateh Nangal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18199, 'Fatehgarh Churian', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18200, 'Fatehgarh Sahib', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18201, 'Fazilka', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18202, 'Firozpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18203, 'Firozpur Cantonment', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18204, 'Gardhiwala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18205, 'Garhshankar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18206, 'Ghagga', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18207, 'Ghanaur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18208, 'Giddarbaha', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18209, 'Gobindgarh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18210, 'Goniana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18211, 'Goraya', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18212, 'Gurdaspur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18213, 'Guru Har Sahai', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18214, 'Handiaya', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18215, 'Hariana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18216, 'Hoshiarpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18217, 'Hussainpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18218, 'Jagraon', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18219, 'Jaitu', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18220, 'Jalalabad', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18221, 'Jalandhar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18222, 'Jalandhar Cantonment', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18223, 'Jandiala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18224, 'Jugial', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18225, 'Kalanaur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18226, 'Kapurthala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18227, 'Karoran', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18228, 'Kartarpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18229, 'Khamanon', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18230, 'Khanauri', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18231, 'Khanna', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18232, 'Kharar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18233, 'Khem Karan', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18234, 'Kot Fatta', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18235, 'Kot Isa Khan', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18236, 'Kot Kapura', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18237, 'Kotkapura', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18238, 'Kurali', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18239, 'Lalru', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18240, 'Lehra Gaga', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18241, 'Lodhian Khas', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18242, 'Longowal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18243, 'Ludhiana', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18244, 'Machhiwara', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18245, 'Mahilpur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18246, 'Majitha', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18247, 'Makhu', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18248, 'Malaut', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18249, 'Malerkotla', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18250, 'Maloud', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18251, 'Mandi Gobindgarh', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18252, 'Maur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18253, 'Moga', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18254, 'Mohali', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18255, 'Moonak', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18256, 'Morinda', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18257, 'Mukerian', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18258, 'Muktsar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18259, 'Mullanpur Dakha', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18260, 'Mullanpur Garibdas', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18261, 'Munak', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18262, 'Muradpura', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18263, 'Nabha', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18264, 'Nakodar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18265, 'Nangal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18266, 'Nawashahr', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18267, 'Naya Nangal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18268, 'Nehon', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18269, 'Nurmahal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18270, 'Pathankot', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18271, 'Patiala', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18272, 'Patti', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18273, 'Pattran', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18274, 'Payal', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18275, 'Phagwara', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18276, 'Phillaur', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18277, 'Qadian', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18278, 'Rahon', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18279, 'Raikot', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18280, 'Raja Sansi', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18281, 'Rajpura', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18282, 'Ram Das', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18283, 'Raman', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18284, 'Rayya', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18285, 'Rupnagar', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18286, 'Rurki Kasba', 1623, '2024-01-21 12:06:19', '2024-01-21 12:06:19', NULL, 1), -(18287, 'Sahnewal', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18288, 'Samrala', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18289, 'Sanaur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18290, 'Sangat', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18291, 'Sangrur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18292, 'Sansarpur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18293, 'Sardulgarh', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18294, 'Shahkot', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18295, 'Sham Churasi', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18296, 'Shekhpura', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18297, 'Sirhind', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18298, 'Sri Hargobindpur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18299, 'Sujanpur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18300, 'Sultanpur Lodhi', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18301, 'Sunam', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18302, 'Talwandi Bhai', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18303, 'Tappa', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18304, 'Tarn Taran', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18305, 'Urmar Tanda', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18306, 'Zira', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18307, 'Zirakpur', 1623, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18308, 'Abu Road', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18309, 'Ajmer', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18310, 'Aklera', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18311, 'Alwar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18312, 'Amet', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18313, 'Antah', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18314, 'Anupgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18315, 'Asind', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18316, 'Bagar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18317, 'Bagru', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18318, 'Bahror', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18319, 'Bakani', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18320, 'Balotra', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18321, 'Bandikui', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18322, 'Banswara', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18323, 'Baran', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18324, 'Bari', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18325, 'Bari Sadri', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18326, 'Barmer', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18327, 'Basi', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18328, 'Basni Belima', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18329, 'Baswa', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18330, 'Bayana', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18331, 'Beawar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18332, 'Begun', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18333, 'Bhadasar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18334, 'Bhadra', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18335, 'Bhalariya', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18336, 'Bharatpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18337, 'Bhasawar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18338, 'Bhawani Mandi', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18339, 'Bhawri', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18340, 'Bhilwara', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18341, 'Bhindar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18342, 'Bhinmal', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18343, 'Bhiwadi', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18344, 'Bijoliya Kalan', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18345, 'Bikaner', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18346, 'Bilara', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18347, 'Borkhera', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18348, 'Budhpura', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18349, 'Bundi', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18350, 'Chatsu', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18351, 'Chechat', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18352, 'Chhabra', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18353, 'Chhapar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18354, 'Chhipa Barod', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18355, 'Chhoti Sadri', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18356, 'Chirawa', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18357, 'Chittaurgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18358, 'Chittorgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18359, 'Chomun', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18360, 'Churu', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18361, 'Daosa', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18362, 'Dariba', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18363, 'Dausa', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18364, 'Deshnok', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18365, 'Devgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18366, 'Devli', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18367, 'Dhariawad', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18368, 'Dhaulpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18369, 'Dholpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18370, 'Didwana', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18371, 'Dig', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18372, 'Dungargarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18373, 'Falna', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18374, 'Fatehnagar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18375, 'Fatehpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18376, 'Gajsinghpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18377, 'Galiakot', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18378, 'Ganganagar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18379, 'Goredi Chancha', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18380, 'Gothra', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18381, 'Gulabpura', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18382, 'Hanumangarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18383, 'Hindaun', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18384, 'Indragarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18385, 'Jahazpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18386, 'Jaipur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18387, 'Jaisalmer', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18388, 'Jaiselmer', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18389, 'Jaitaran', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18390, 'Jalore', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18391, 'Jhalawar', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18392, 'Jhalrapatan', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18393, 'Jhunjhunun', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18394, 'Jobner', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18395, 'Jodhpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18396, 'Kaithun', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18397, 'Kaman', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18398, 'Kankroli', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18399, 'Kanor', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18400, 'Kapasan', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18401, 'Kaprain', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18402, 'Karanpura', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18403, 'Karauli', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18404, 'Kekri', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18405, 'Keshorai Patan', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18406, 'Kesrisinghpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18407, 'Khairthal', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18408, 'Khandela', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18409, 'Khanpur', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18410, 'Kherli', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18411, 'Kherliganj', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18412, 'Kherwara Chhaoni', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18413, 'Khetri', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18414, 'Kiranipura', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18415, 'Kishangarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18416, 'Kishangarh Ranwal', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18417, 'Kolvi Rajendrapura', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18418, 'Kot Putli', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18419, 'Kuchaman', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18420, 'Kuchera', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18421, 'Kumbhalgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18422, 'Kumbhkot', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18423, 'Kumher', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18424, 'Kushalgarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18425, 'Lachhmangarh', 1624, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, 1), -(18426, 'Ladnun', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18427, 'Lakheri', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18428, 'Lalsot', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18429, 'Losal', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18430, 'Madanganj', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18431, 'Mahu Kalan', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18432, 'Mahwa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18433, 'Makrana', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18434, 'Malpura', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18435, 'Mandalgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18436, 'Mandawar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18437, 'Mandwa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18438, 'Manohar Thana', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18439, 'Marwar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18440, 'Merta', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18441, 'Modak', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18442, 'Mount Abu', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18443, 'Mukandgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18444, 'Mundwa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18445, 'Nadbai', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18446, 'Naenwa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18447, 'Nagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18448, 'Nagaur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18449, 'Napasar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18450, 'Naraina', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18451, 'Nasirabad', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18452, 'Nathdwara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18453, 'Nawa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18454, 'Nawalgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18455, 'Neem Ka Thana', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18456, 'Neemrana', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18457, 'Newa Talai', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18458, 'Nimaj', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18459, 'Nimbahera', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18460, 'Niwai', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18461, 'Nohar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18462, 'One SGM', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18463, 'Partapur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18464, 'Parvatsar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18465, 'Pasoond', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18466, 'Phalna', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18467, 'Phalodi', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18468, 'Phulera', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18469, 'Pilani', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18470, 'Pilibanga', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18471, 'Pindwara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18472, 'Pipalia Kalan', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18473, 'Pipar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18474, 'Pirawa', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18475, 'Pokaran', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18476, 'Pratapgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18477, 'Pushkar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18478, 'Raisinghnagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18479, 'Rajakhera', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18480, 'Rajaldesar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18481, 'Rajsamand', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18482, 'Ramganj Mandi', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18483, 'Raniwara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18484, 'Ratan Nagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18485, 'Rawatbhata', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18486, 'Rawatsar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18487, 'Rikhabdev', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18488, 'Ringas', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18489, 'Sadri', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18490, 'Sadulshahar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18491, 'Sagwara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18492, 'Salumbar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18493, 'Sambhar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18494, 'Samdari', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18495, 'Sanchor', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18496, 'Sangariya', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18497, 'Sangod', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18498, 'Sardarshahr', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18499, 'Sarwar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18500, 'Satal Kheri', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18501, 'Sawai Madhopur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18502, 'Sewan Kalan', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18503, 'Sheoganj', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18504, 'Sikar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18505, 'Sirohi', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18506, 'Siwana', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18507, 'Sogariya', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18508, 'Sojat', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18509, 'Sojat Road', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18510, 'Sri Madhopur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18511, 'Sriganganagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18512, 'Sujangarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18513, 'Suket', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18514, 'Sumerpur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18515, 'Sunel', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18516, 'Surajgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18517, 'Suratgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18518, 'Swaroopganj', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18519, 'Takhatgarh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18520, 'Taranagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18521, 'Three STR', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18522, 'Tijara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18523, 'Toda Bhim', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18524, 'Toda Raisingh', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18525, 'Todra', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18526, 'Tonk', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18527, 'Udaipur', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18528, 'Udpura', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18529, 'Uniara', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18530, 'Vanasthali', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18531, 'Vidyavihar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18532, 'Vijainagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18533, 'Viratnagar', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18534, 'Wer', 1624, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18535, 'Gangtok', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18536, 'Gezing', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18537, 'Jorethang', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18538, 'Mangan', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18539, 'Namchi', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18540, 'Naya Bazar', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18541, 'No City', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18542, 'Rangpo', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18543, 'Sikkim', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18544, 'Singtam', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18545, 'Upper Tadong', 1625, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18546, 'Abiramam', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18547, 'Achampudur', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18548, 'Acharapakkam', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18549, 'Acharipallam', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18550, 'Achipatti', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18551, 'Adikaratti', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18552, 'Adiramapattinam', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18553, 'Aduturai', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18554, 'Adyar', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18555, 'Agaram', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18556, 'Agasthiswaram', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18557, 'Akkaraipettai', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18558, 'Alagappapuram', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18559, 'Alagapuri', 1626, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, 1), -(18560, 'Alampalayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18561, 'Alandur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18562, 'Alanganallur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18563, 'Alangayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18564, 'Alangudi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18565, 'Alangulam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18566, 'Alanthurai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18567, 'Alapakkam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18568, 'Allapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18569, 'Alwar Tirunagari', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18570, 'Alwarkurichi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18571, 'Ambasamudram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18572, 'Ambur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18573, 'Ammainaickanur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18574, 'Ammaparikuppam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18575, 'Ammapettai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18576, 'Ammavarikuppam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18577, 'Ammur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18578, 'Anaimalai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18579, 'Anaiyur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18580, 'Anakaputhur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18581, 'Ananthapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18582, 'Andanappettai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18583, 'Andipalayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18584, 'Andippatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18585, 'Anjugramam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18586, 'Annamalainagar', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18587, 'Annavasal', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18588, 'Annur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18589, 'Anthiyur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18590, 'Appakudal', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18591, 'Arachalur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18592, 'Arakandanallur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18593, 'Arakonam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18594, 'Aralvaimozhi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18595, 'Arani Road', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18596, 'Arantangi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18597, 'Arasiramani', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18598, 'Aravakurichi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18599, 'Aravankadu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18600, 'Arcot', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18601, 'Arimalam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18602, 'Ariyalur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18603, 'Ariyappampalayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18604, 'Ariyur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18605, 'Arni', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18606, 'Arulmigu Thirumuruganpundi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18607, 'Arumanai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18608, 'Arumbavur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18609, 'Arumuganeri', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18610, 'Aruppukkottai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18611, 'Ashokapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18612, 'Athani', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18613, 'Athanur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18614, 'Athimarapatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18615, 'Athipattu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18616, 'Athur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18617, 'Attayyampatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18618, 'Attur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18619, 'Auroville', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18620, 'Avadattur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18621, 'Avadi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18622, 'Avalpundurai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18623, 'Avaniapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18624, 'Avinashi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18625, 'Ayakudi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18626, 'Ayanadaippu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18627, 'Aygudi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18628, 'Ayothiapattinam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18629, 'Ayyalur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18630, 'Ayyampalayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18631, 'Ayyampettai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18632, 'Azhagiapandiapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18633, 'Balakrishnampatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18634, 'Balakrishnapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18635, 'Balapallam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18636, 'Balasamudram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18637, 'Bargur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18638, 'Berhatty', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18639, 'Bhavani', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18640, 'Bhawanisagar', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18641, 'Bhuvanagiri', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18642, 'Bikketti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18643, 'Bodinayakkanur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18644, 'Brahmana Periya Agraharam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18645, 'Buthapandi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18646, 'Buthipuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18647, 'Chatrapatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18648, 'Chembarambakkam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18649, 'Chengalpattu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18650, 'Chengam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18651, 'Chennai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18652, 'Chennasamudram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18653, 'Chennimalai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18654, 'Cheranmadevi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18655, 'Cheruvanki', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18656, 'Chetpet', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18657, 'Chettiarpatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18658, 'Chettipalaiyam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18659, 'Chettipalayam Cantonment', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18660, 'Chettithangal', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18661, 'Cheyur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18662, 'Cheyyar', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18663, 'Chidambaram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18664, 'Chinalapatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18665, 'Chinna Anuppanadi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18666, 'Chinna Salem', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18667, 'Chinnakkampalayam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18668, 'Chinnammanur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18669, 'Chinnampalaiyam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18670, 'Chinnasekkadu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18671, 'Chinnavedampatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18672, 'Chitlapakkam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18673, 'Chittodu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18674, 'Cholapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18675, 'Coimbatore', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18676, 'Coonoor', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18677, 'Courtalam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18678, 'Cuddalore', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18679, 'Dalavaipatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18680, 'Darasuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18681, 'Denkanikottai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18682, 'Desur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18683, 'Devadanapatti', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18684, 'Devakkottai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18685, 'Devakottai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18686, 'Devanangurichi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18687, 'Devarshola', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18688, 'Devasthanam', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18689, 'Dhalavoipuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18690, 'Dhali', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18691, 'Dhaliyur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18692, 'Dharapadavedu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18693, 'Dharapuram', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18694, 'Dharmapuri', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18695, 'Dindigul', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18696, 'Dusi', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18697, 'Edaganasalai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18698, 'Edaikodu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18699, 'Edakalinadu', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18700, 'Elathur', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18701, 'Elayirampannai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18702, 'Elumalai', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18703, 'Eral', 1626, '2024-01-21 12:06:22', '2024-01-21 12:06:22', NULL, 1), -(18704, 'Eraniel', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18705, 'Eriodu', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18706, 'Erode', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18707, 'Erumaipatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18708, 'Eruvadi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18709, 'Ethapur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18710, 'Ettaiyapuram', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18711, 'Ettimadai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18712, 'Ezhudesam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18713, 'Ganapathipuram', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18714, 'Gangaikondan', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18715, 'Gangavalli', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18716, 'Ganguvarpatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18717, 'Gingi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18718, 'Gopalasamudram', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18719, 'Gopichettipalaiyam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18720, 'Gudalur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18721, 'Gudiyattam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18722, 'Guduvanchery', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18723, 'Gummidipoondi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18724, 'Hanumanthampatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18725, 'Harur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18726, 'Harveypatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18727, 'Highways', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18728, 'Hosur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18729, 'Hubbathala', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18730, 'Huligal', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18731, 'Idappadi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18732, 'Idikarai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18733, 'Ilampillai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18734, 'Ilanji', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18735, 'Iluppaiyurani', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18736, 'Iluppur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18737, 'Inam Karur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18738, 'Injambakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18739, 'Irugur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18740, 'Jaffrabad', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18741, 'Jagathala', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18742, 'Jalakandapuram', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18743, 'Jalladiampet', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18744, 'Jambai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18745, 'Jayankondam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18746, 'Jolarpet', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18747, 'Kadambur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18748, 'Kadathur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18749, 'Kadayal', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18750, 'Kadayampatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18751, 'Kadayanallur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18752, 'Kadiapatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18753, 'Kalakkad', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18754, 'Kalambur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18755, 'Kalapatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18756, 'Kalappanaickenpatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18757, 'Kalavai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18758, 'Kalinjur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18759, 'Kaliyakkavilai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18760, 'Kallakkurichi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18761, 'Kallakudi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18762, 'Kallidaikurichchi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18763, 'Kallukuttam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18764, 'Kallupatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18765, 'Kalpakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18766, 'Kalugumalai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18767, 'Kamayagoundanpatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18768, 'Kambainallur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18769, 'Kambam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18770, 'Kamuthi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18771, 'Kanadukathan', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18772, 'Kanakkampalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18773, 'Kanam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18774, 'Kanchipuram', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18775, 'Kandanur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18776, 'Kangayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18777, 'Kangayampalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18778, 'Kangeyanallur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18779, 'Kaniyur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18780, 'Kanjikoil', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18781, 'Kannadendal', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18782, 'Kannamangalam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18783, 'Kannampalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18784, 'Kannankurichi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18785, 'Kannapalaiyam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18786, 'Kannivadi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18787, 'Kanyakumari', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18788, 'Kappiyarai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18789, 'Karaikkudi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18790, 'Karamadai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18791, 'Karambakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18792, 'Karambakkudi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18793, 'Kariamangalam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18794, 'Kariapatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18795, 'Karugampattur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18796, 'Karumandi Chellipalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18797, 'Karumathampatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18798, 'Karumbakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18799, 'Karungal', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18800, 'Karunguzhi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18801, 'Karuppur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18802, 'Karur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18803, 'Kasipalaiyam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18804, 'Kasipalayam G', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18805, 'Kathirvedu', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18806, 'Kathujuganapalli', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18807, 'Katpadi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18808, 'Kattivakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18809, 'Kattumannarkoil', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(18810, 'Kattupakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18811, 'Kattuputhur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18812, 'Kaveripakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18813, 'Kaveripattinam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18814, 'Kavundampalaiyam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18815, 'Kavundampalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18816, 'Kayalpattinam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18817, 'Kayattar', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18818, 'Kelamangalam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18819, 'Kelambakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18820, 'Kembainaickenpalayam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18821, 'Kethi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18822, 'Kilakarai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18823, 'Kilampadi', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18824, 'Kilkulam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18825, 'Kilkunda', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18826, 'Killiyur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18827, 'Killlai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18828, 'Kilpennathur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18829, 'Kilvelur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18830, 'Kinathukadavu', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18831, 'Kiramangalam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18832, 'Kiranur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18833, 'Kiripatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18834, 'Kizhapavur', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18835, 'Kmarasamipatti', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18836, 'Kochadai', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18837, 'Kodaikanal', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18838, 'Kodambakkam', 1626, '2024-01-21 12:06:23', '2024-01-21 12:06:23', NULL, 1), -(18839, 'Kodavasal', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18840, 'Kodumudi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18841, 'Kolachal', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18842, 'Kolappalur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18843, 'Kolathupalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18844, 'Kolathur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18845, 'Kollankodu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18846, 'Kollankoil', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18847, 'Komaralingam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18848, 'Komarapalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18849, 'Kombai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18850, 'Konakkarai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18851, 'Konavattam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18852, 'Kondalampatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18853, 'Konganapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18854, 'Koradacheri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18855, 'Korampallam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18856, 'Kotagiri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18857, 'Kothinallur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18858, 'Kottaiyur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18859, 'Kottakuppam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18860, 'Kottaram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18861, 'Kottivakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18862, 'Kottur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18863, 'Kovilpatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18864, 'Koyampattur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18865, 'Krishnagiri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18866, 'Krishnarayapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18867, 'Krishnasamudram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18868, 'Kuchanur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18869, 'Kuhalur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18870, 'Kulasekarappattinam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18871, 'Kulasekarapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18872, 'Kulithalai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18873, 'Kumarapalaiyam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18874, 'Kumarapalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18875, 'Kumarapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18876, 'Kumbakonam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18877, 'Kundrathur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18878, 'Kuniyamuthur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18879, 'Kunnathur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18880, 'Kunur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18881, 'Kuraikundu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18882, 'Kurichi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18883, 'Kurinjippadi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18884, 'Kurudampalaiyam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18885, 'Kurumbalur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18886, 'Kuthalam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18887, 'Kuthappar', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18888, 'Kuttalam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18889, 'Kuttanallur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18890, 'Kuzhithurai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18891, 'Labbaikudikadu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18892, 'Lakkampatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18893, 'Lalgudi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18894, 'Lalpet', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18895, 'Llayangudi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18896, 'Madambakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18897, 'Madanur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18898, 'Madathukulam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18899, 'Madhavaram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18900, 'Madippakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18901, 'Madukkarai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18902, 'Madukkur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18903, 'Madurai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18904, 'Maduranthakam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18905, 'Maduravoyal', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18906, 'Mahabalipuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18907, 'Makkinanpatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18908, 'Mallamuppampatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18909, 'Mallankinaru', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18910, 'Mallapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18911, 'Mallasamudram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18912, 'Mallur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18913, 'Mamallapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18914, 'Mamsapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18915, 'Manachanallur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18916, 'Manalmedu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18917, 'Manalurpet', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18918, 'Manamadurai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18919, 'Manapakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18920, 'Manapparai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18921, 'Manavalakurichi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18922, 'Mandaikadu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18923, 'Mandapam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18924, 'Mangadu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18925, 'Mangalam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18926, 'Mangalampet', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18927, 'Manimutharu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18928, 'Mannargudi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18929, 'Mappilaiurani', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18930, 'Maraimalai Nagar', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18931, 'Marakkanam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18932, 'Maramangalathupatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18933, 'Marandahalli', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18934, 'Markayankottai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18935, 'Marudur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18936, 'Marungur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18937, 'Masinigudi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18938, 'Mathigiri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18939, 'Mattur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18940, 'Mayiladuthurai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18941, 'Mecheri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18942, 'Melacheval', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18943, 'Melachokkanathapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18944, 'Melagaram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18945, 'Melamadai', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18946, 'Melamaiyur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18947, 'Melanattam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18948, 'Melathiruppanthuruthi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18949, 'Melattur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18950, 'Melmananbedu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18951, 'Melpattampakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18952, 'Melur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18953, 'Melvisharam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18954, 'Mettupalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18955, 'Mettur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18956, 'Meyyanur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18957, 'Milavittan', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18958, 'Minakshipuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18959, 'Minambakkam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18960, 'Minjur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18961, 'Modakurichi', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18962, 'Mohanur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18963, 'Mopperipalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18964, 'Mudalur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18965, 'Mudichur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18966, 'Mudukulathur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18967, 'Mukasipidariyur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18968, 'Mukkudal', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18969, 'Mulagumudu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18970, 'Mulakaraipatti', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18971, 'Mulanur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18972, 'Mullakkadu', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18973, 'Muruganpalayam', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18974, 'Musiri', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18975, 'Muthupet', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18976, 'Muthur', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18977, 'Muttayyapuram', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18978, 'Muttupet', 1626, '2024-01-21 12:06:24', '2024-01-21 12:06:24', NULL, 1), -(18979, 'Muvarasampettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18980, 'Myladi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18981, 'Mylapore', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18982, 'Nadukkuthagai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18983, 'Naduvattam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18984, 'Nagapattinam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18985, 'Nagavakulam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18986, 'Nagercoil', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18987, 'Nagojanahalli', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18988, 'Nallampatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18989, 'Nallur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18990, 'Namagiripettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18991, 'Namakkal', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18992, 'Nambiyur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18993, 'Nambutalai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18994, 'Nandambakkam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18995, 'Nandivaram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18996, 'Nangavalli', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18997, 'Nangavaram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18998, 'Nanguneri', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(18999, 'Nanjikottai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19000, 'Nannilam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19001, 'Naranammalpuram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19002, 'Naranapuram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19003, 'Narasimhanaickenpalayam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19004, 'Narasingapuram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19005, 'Narasojipatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19006, 'Naravarikuppam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19007, 'Nasiyanur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19008, 'Natham', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19009, 'Nathampannai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19010, 'Natrampalli', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19011, 'Nattam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19012, 'Nattapettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19013, 'Nattarasankottai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19014, 'Navalpattu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19015, 'Nazarethpettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19016, 'Nazerath', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19017, 'Neikkarapatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19018, 'Neiyyur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19019, 'Nellikkuppam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19020, 'Nelliyalam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19021, 'Nemili', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19022, 'Nemilicheri', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19023, 'Neripperichal', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19024, 'Nerkunram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19025, 'Nerkuppai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19026, 'Nerunjipettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19027, 'Neykkarappatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19028, 'Neyveli', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19029, 'Nidamangalam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19030, 'Nilakkottai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19031, 'Nilankarai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19032, 'Odaipatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19033, 'Odaiyakulam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19034, 'Oddanchatram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19035, 'Odugathur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19036, 'Oggiyamduraipakkam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19037, 'Olagadam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19038, 'Omalur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19039, 'Ooty', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19040, 'Orathanadu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19041, 'Othakadai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19042, 'Othakalmandapam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19043, 'Ottapparai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19044, 'Pacode', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19045, 'Padaividu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19046, 'Padianallur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19047, 'Padirikuppam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19048, 'Padmanabhapuram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19049, 'Padririvedu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19050, 'Palaganangudy', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19051, 'Palaimpatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19052, 'Palakkodu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19053, 'Palamedu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19054, 'Palani', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19055, 'Palani Chettipatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19056, 'Palavakkam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19057, 'Palavansathu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19058, 'Palayakayal', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19059, 'Palayam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19060, 'Palayamkottai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19061, 'Palladam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19062, 'Pallapalayam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19063, 'Pallapatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19064, 'Pallattur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19065, 'Pallavaram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19066, 'Pallikaranai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19067, 'Pallikonda', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19068, 'Pallipalaiyam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19069, 'Pallipalaiyam Agraharam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19070, 'Pallipattu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19071, 'Pammal', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19072, 'Panagudi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19073, 'Panaimarathupatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19074, 'Panapakkam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19075, 'Panboli', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19076, 'Pandamangalam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19077, 'Pannaikadu', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19078, 'Pannaipuram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19079, 'Pannuratti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19080, 'Panruti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19081, 'Papanasam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19082, 'Pappankurichi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19083, 'Papparapatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19084, 'Pappireddipatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19085, 'Paramakkudi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19086, 'Paramankurichi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19087, 'Paramathi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19088, 'Parangippettai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19089, 'Paravai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19090, 'Pasur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19091, 'Pathamadai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19092, 'Pattinam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19093, 'Pattiviranpatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19094, 'Pattukkottai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19095, 'Pazhugal', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19096, 'Pennadam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19097, 'Pennagaram', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19098, 'Pennathur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19099, 'Peraiyur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19100, 'Peralam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19101, 'Perambalur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19102, 'Peranamallur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19103, 'Peravurani', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19104, 'Periyakodiveri', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19105, 'Periyakulam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19106, 'Periyanayakkanpalaiyam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19107, 'Periyanegamam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19108, 'Periyapatti', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19109, 'Periyasemur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19110, 'Pernambut', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19111, 'Perumagalur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19112, 'Perumandi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19113, 'Perumuchi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19114, 'Perundurai', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19115, 'Perungalathur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19116, 'Perungudi', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19117, 'Perungulam', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19118, 'Perur', 1626, '2024-01-21 12:06:25', '2024-01-21 12:06:25', NULL, 1), -(19119, 'Perur Chettipalaiyam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19120, 'Pethampalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19121, 'Pethanaickenpalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19122, 'Pillanallur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19123, 'Pirkankaranai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19124, 'Polichalur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19125, 'Pollachi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19126, 'Polur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19127, 'Ponmani', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19128, 'Ponnamaravathi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19129, 'Ponnampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19130, 'Ponneri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19131, 'Porur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19132, 'Pothanur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19133, 'Pothatturpettai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19134, 'Pudukadai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19135, 'Pudukkottai Cantonment', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19136, 'Pudukottai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19137, 'Pudupalaiyam Aghraharam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19138, 'Pudupalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19139, 'Pudupatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19140, 'Pudupattinam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19141, 'Pudur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19142, 'Puduvayal', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19143, 'Pulambadi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19144, 'Pulampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19145, 'Puliyampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19146, 'Puliyankudi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19147, 'Puliyur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19148, 'Pullampadi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19149, 'Puluvapatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19150, 'Punamalli', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19151, 'Punjai Puliyampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19152, 'Punjai Thottakurichi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19153, 'Punjaipugalur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19154, 'Puthalam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19155, 'Putteri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19156, 'Puvalur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19157, 'Puzhal', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19158, 'Puzhithivakkam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19159, 'Rajapalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19160, 'Ramanathapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19161, 'Ranipet', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19162, 'Rasipuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19163, 'Rayagiri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19164, 'Rithapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19165, 'Rosalpatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19166, 'Rudravathi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19167, 'Sadayankuppam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19168, 'Saint Thomas Mount', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19169, 'Salangapalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19170, 'Samalapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19171, 'Samathur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19172, 'Sambavar Vadagarai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19173, 'Sankaramanallur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19174, 'Sankarankoil', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19175, 'Sankarapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19176, 'Sankari', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19177, 'Sankarnagar', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19178, 'Saravanampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19179, 'Sarcarsamakulam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19180, 'Sathiyavijayanagaram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19181, 'Sathuvachari', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19182, 'Sathyamangalam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19183, 'Sattankulam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19184, 'Sattur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19185, 'Sayalgudi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19186, 'Sayapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19187, 'Seithur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19188, 'Sembakkam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19189, 'Semmipalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19190, 'Sennirkuppam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19191, 'Senthamangalam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19192, 'Sentharapatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19193, 'Senur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19194, 'Sethiathoppu', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19195, 'Sevilimedu', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19196, 'Sevugampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19197, 'Shenbakkam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19198, 'Shencottai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19199, 'Shenkottai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19200, 'Sholavandan', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19201, 'Sholinganallur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19202, 'Sholingur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19203, 'Sholur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19204, 'Sikkarayapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19205, 'Singampuneri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19206, 'Singanallur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19207, 'Singaperumalkoil', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19208, 'Sirapalli', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19209, 'Sirkali', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19210, 'Sirugamani', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19211, 'Sirumugai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19212, 'Sithayankottai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19213, 'Sithurajapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19214, 'Sivaganga', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19215, 'Sivagiri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19216, 'Sivakasi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19217, 'Sivanthipuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19218, 'Sivur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19219, 'Soranjeri', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19220, 'South Kannanur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19221, 'South Kodikulam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19222, 'Srimushnam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19223, 'Sriperumpudur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19224, 'Sriramapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19225, 'Srirangam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19226, 'Srivaikuntam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19227, 'Srivilliputtur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19228, 'Suchindram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19229, 'Suliswaranpatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19230, 'Sulur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19231, 'Sundarapandiam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19232, 'Sundarapandiapuram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19233, 'Surampatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19234, 'Surandai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19235, 'Suriyampalayam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19236, 'Swamimalai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19237, 'TNPL Pugalur', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19238, 'Tambaram', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19239, 'Taramangalam', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19240, 'Tattayyangarpettai', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19241, 'Tayilupatti', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19242, 'Tenkasi', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19243, 'Thadikombu', 1626, '2024-01-21 12:06:26', '2024-01-21 12:06:26', NULL, 1), -(19244, 'Thakkolam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19245, 'Thalainayar', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19246, 'Thalakudi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19247, 'Thamaraikulam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19248, 'Thammampatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19249, 'Thanjavur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19250, 'Thanthoni', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19251, 'Tharangambadi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19252, 'Thedavur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19253, 'Thenambakkam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19254, 'Thengampudur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19255, 'Theni', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19256, 'Theni Allinagaram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19257, 'Thenkarai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19258, 'Thenthamaraikulam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19259, 'Thenthiruperai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19260, 'Thesur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19261, 'Thevaram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19262, 'Thevur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19263, 'Thiagadurgam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19264, 'Thiagarajar Colony', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19265, 'Thingalnagar', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19266, 'Thiruchirapalli', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19267, 'Thirukarungudi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19268, 'Thirukazhukundram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19269, 'Thirumalayampalayam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19270, 'Thirumazhisai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19271, 'Thirunagar', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19272, 'Thirunageswaram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19273, 'Thirunindravur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19274, 'Thirunirmalai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19275, 'Thiruparankundram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19276, 'Thiruparappu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19277, 'Thiruporur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19278, 'Thiruppanandal', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19279, 'Thirupuvanam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19280, 'Thiruthangal', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19281, 'Thiruthuraipundi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19282, 'Thiruvaivaru', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19283, 'Thiruvalam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19284, 'Thiruvarur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19285, 'Thiruvattaru', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19286, 'Thiruvenkatam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19287, 'Thiruvennainallur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19288, 'Thiruvithankodu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19289, 'Thisayanvilai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19290, 'Thittacheri', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19291, 'Thondamuthur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19292, 'Thorapadi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19293, 'Thottipalayam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19294, 'Thottiyam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19295, 'Thudiyalur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19296, 'Thuthipattu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19297, 'Thuvakudi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19298, 'Timiri', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19299, 'Tindivanam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19300, 'Tinnanur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19301, 'Tiruchchendur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19302, 'Tiruchengode', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19303, 'Tirukkalukkundram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19304, 'Tirukkattuppalli', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19305, 'Tirukkoyilur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19306, 'Tirumangalam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19307, 'Tirumullaivasal', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19308, 'Tirumuruganpundi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19309, 'Tirunageswaram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19310, 'Tirunelveli', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19311, 'Tirupathur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19312, 'Tirupattur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19313, 'Tiruppuvanam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19314, 'Tirupur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19315, 'Tirusulam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19316, 'Tiruttani', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19317, 'Tiruvallur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19318, 'Tiruvannamalai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19319, 'Tiruverambur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19320, 'Tiruverkadu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19321, 'Tiruvethipuram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19322, 'Tiruvidaimarudur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19323, 'Tiruvottiyur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19324, 'Tittakudi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19325, 'Tondi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19326, 'Turaiyur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19327, 'Tuticorin', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19328, 'Udagamandalam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19329, 'Udagamandalam Valley', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19330, 'Udankudi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19331, 'Udayarpalayam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19332, 'Udumalaipettai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19333, 'Udumalpet', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19334, 'Ullur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19335, 'Ulundurpettai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19336, 'Unjalaur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19337, 'Unnamalaikadai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19338, 'Uppidamangalam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19339, 'Uppiliapuram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19340, 'Urachikkottai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19341, 'Urapakkam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19342, 'Usilampatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19343, 'Uthangarai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19344, 'Uthayendram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19345, 'Uthiramerur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19346, 'Uthukkottai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19347, 'Uttamapalaiyam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19348, 'Uttukkuli', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19349, 'Vadakarai Kizhpadugai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19350, 'Vadakkanandal', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19351, 'Vadakku Valliyur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19352, 'Vadalur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19353, 'Vadamadurai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19354, 'Vadavalli', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19355, 'Vadipatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19356, 'Vadugapatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19357, 'Vaithiswarankoil', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19358, 'Valangaiman', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19359, 'Valasaravakkam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19360, 'Valavanur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19361, 'Vallam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19362, 'Valparai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19363, 'Valvaithankoshtam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19364, 'Vanavasi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19365, 'Vandalur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19366, 'Vandavasi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19367, 'Vandiyur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19368, 'Vaniputhur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19369, 'Vaniyambadi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19370, 'Varadarajanpettai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19371, 'Varadharajapuram', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19372, 'Vasudevanallur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19373, 'Vathirairuppu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19374, 'Vattalkundu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19375, 'Vazhapadi', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19376, 'Vedapatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19377, 'Vedaranniyam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19378, 'Vedasandur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19379, 'Velampalaiyam', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19380, 'Velankanni', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19381, 'Vellakinar', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19382, 'Vellakoil', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19383, 'Vellalapatti', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19384, 'Vellalur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19385, 'Vellanur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19386, 'Vellimalai', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19387, 'Vellore', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19388, 'Vellottamparappu', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19389, 'Velluru', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19390, 'Vengampudur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19391, 'Vengathur', 1626, '2024-01-21 12:06:27', '2024-01-21 12:06:27', NULL, 1), -(19392, 'Vengavasal', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19393, 'Venghatur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19394, 'Venkarai', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19395, 'Vennanthur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19396, 'Veppathur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19397, 'Verkilambi', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19398, 'Vettaikaranpudur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19399, 'Vettavalam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19400, 'Vikramasingapuram', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19401, 'Vikravandi', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19402, 'Vilangudi', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19403, 'Vilankurichi', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19404, 'Vilapakkam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19405, 'Vilathikulam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19406, 'Vilavur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19407, 'Villukuri', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19408, 'Villupuram', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19409, 'Viraganur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19410, 'Virakeralam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(19411, 'Virakkalpudur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19412, 'Virapandi', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19413, 'Virapandi Cantonment', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19414, 'Virappanchatram', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19415, 'Viravanallur', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19416, 'Virudambattu', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19417, 'Virudhachalam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19418, 'Virudhunagar', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19419, 'Virupakshipuram', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19420, 'Viswanatham', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19421, 'Vriddhachalam', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19422, 'Walajabad', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19423, 'Walajapet', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19424, 'Yercaud', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19425, 'Zamin Uthukuli', 1626, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19426, 'Achampet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19427, 'Adilabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19428, 'Armoor', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19429, 'Asifabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19430, 'Badepally', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19431, 'Banswada', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19432, 'Bellampalli', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19433, 'Bhadrachalam', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19434, 'Bhainsa', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19435, 'Bhongir', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19436, 'Bhupalpally', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19437, 'Bodhan', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19438, 'Bollaram', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19439, 'Devarkonda', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19440, 'Farooqnagar', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19441, 'Gadwal', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19442, 'Gajwel', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19443, 'Ghatkesar', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19444, 'Hyderabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19445, 'Jagtial', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19446, 'Jangaon', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19447, 'Kagaznagar', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19448, 'Kalwakurthy', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19449, 'Kamareddy', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19450, 'Karimnagar', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19451, 'Khammam', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19452, 'Kodada', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19453, 'Koratla', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19454, 'Kottagudem', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19455, 'Kyathampalle', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19456, 'Madhira', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19457, 'Mahabubabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19458, 'Mahbubnagar', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19459, 'Mancherial', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19460, 'Mandamarri', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19461, 'Manuguru', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19462, 'Medak', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19463, 'Medchal', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19464, 'Miryalaguda', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19465, 'Nagar Karnul', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19466, 'Nakrekal', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19467, 'Nalgonda', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19468, 'Narayanpet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19469, 'Narsampet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19470, 'Nirmal', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19471, 'Nizamabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19472, 'Palwancha', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19473, 'Peddapalli', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19474, 'Ramagundam', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19475, 'Ranga Reddy district', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19476, 'Sadasivpet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19477, 'Sangareddy', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19478, 'Sarapaka', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19479, 'Sathupalle', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19480, 'Secunderabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19481, 'Siddipet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19482, 'Singapur', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19483, 'Sircilla', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19484, 'Suryapet', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19485, 'Tandur', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19486, 'Vemulawada', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19487, 'Vikarabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19488, 'Wanaparthy', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19489, 'Warangal', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19490, 'Yellandu', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19491, 'Zahirabad', 1627, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19492, 'Agartala', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19493, 'Ambassa', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19494, 'Badharghat', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19495, 'Belonia', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19496, 'Dharmanagar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19497, 'Gakulnagar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19498, 'Gandhigram', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19499, 'Indranagar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19500, 'Jogendranagar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19501, 'Kailasahar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19502, 'Kamalpur', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19503, 'Kanchanpur', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19504, 'Khowai', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19505, 'Kumarghat', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19506, 'Kunjaban', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19507, 'Ranir Bazar', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19508, 'Sabrum', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19509, 'Sonamura', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19510, 'Teliamura', 1628, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19511, 'Achhalda', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19512, 'Achhnera', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19513, 'Adari', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19514, 'Afzalgarh', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19515, 'Agarwal Mandi', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19516, 'Agra', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19517, 'Agra Cantonment', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19518, 'Ahraura', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19519, 'Ailum', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19520, 'Air Force Area', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19521, 'Ajhuwa', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19522, 'Akbarpur', 1629, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, 1), -(19523, 'Alapur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19524, 'Aliganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19525, 'Aligarh', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19526, 'Allahabad', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19527, 'Allahabad Cantonment', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19528, 'Allahganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19529, 'Amanpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19530, 'Ambahta', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19531, 'Amethi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19532, 'Amila', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19533, 'Amilo', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19534, 'Aminagar Sarai', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19535, 'Aminagar Urf Bhurbaral', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19536, 'Amraudha', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19537, 'Amroha', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19538, 'Anandnagar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19539, 'Anpara', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19540, 'Antu', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19541, 'Anupshahr', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19542, 'Aonla', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19543, 'Armapur Estate', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19544, 'Ashokpuram', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19545, 'Ashrafpur Kichhauchha', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19546, 'Atarra', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19547, 'Atasu', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19548, 'Atrauli', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19549, 'Atraulia', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19550, 'Auraiya', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19551, 'Aurangabad Bangar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19552, 'Auras', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19553, 'Awagarh', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19554, 'Ayodhya', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19555, 'Azamgarh', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19556, 'Azizpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19557, 'Azmatgarh', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19558, 'Babarpur Ajitmal', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19559, 'Baberu', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19560, 'Babina', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19561, 'Babrala', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19562, 'Babugarh', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19563, 'Bachhiowan', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19564, 'Bachhraon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19565, 'Bad', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19566, 'Badaun', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19567, 'Baghpat', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19568, 'Bah', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19569, 'Baheri', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19570, 'Bahjoi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19571, 'Bahraich', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19572, 'Bahsuma', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19573, 'Bahua', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19574, 'Bakewar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19575, 'Bakiabad', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19576, 'Baldeo', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19577, 'Ballia', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19578, 'Balrampur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19579, 'Banat', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19580, 'Bangarmau', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19581, 'Bansdih', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19582, 'Bansgaon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19583, 'Bansi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19584, 'Barabanki', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19585, 'Baragaon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19586, 'Baraut', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19587, 'Bareilly', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19588, 'Bareilly Cantonment', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19589, 'Barhalganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19590, 'Barhani', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19591, 'Barhapur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19592, 'Barkhera', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19593, 'Barsana', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19594, 'Barva Sagar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19595, 'Barwar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19596, 'Basti', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19597, 'Begumabad Budhana', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19598, 'Behat', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19599, 'Behta Hajipur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19600, 'Bela', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19601, 'Belthara', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19602, 'Beniganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19603, 'Beswan', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19604, 'Bewar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19605, 'Bhadarsa', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19606, 'Bhadohi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19607, 'Bhagwantnagar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19608, 'Bharatganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19609, 'Bhargain', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19610, 'Bharthana', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19611, 'Bharuhana', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19612, 'Bharwari', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19613, 'Bhatni Bazar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19614, 'Bhatpar Rani', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19615, 'Bhawan Bahadurnagar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19616, 'Bhinga', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19617, 'Bhojpur Dharampur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19618, 'Bhokarhedi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19619, 'Bhongaon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19620, 'Bhulepur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19621, 'Bidhuna', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19622, 'Bighapur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19623, 'Bijnor', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19624, 'Bijpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19625, 'Bikapur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19626, 'Bilari', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19627, 'Bilgram', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19628, 'Bilhaur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19629, 'Bilram', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19630, 'Bilrayaganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19631, 'Bilsanda', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19632, 'Bilsi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19633, 'Bindki', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19634, 'Bisalpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19635, 'Bisanda Buzurg', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19636, 'Bisauli', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19637, 'Bisharatganj', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19638, 'Bisokhar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19639, 'Biswan', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19640, 'Bithur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19641, 'Budaun', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19642, 'Bugrasi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19643, 'Bulandshahar', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19644, 'Burhana', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19645, 'Chail', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19646, 'Chak Imam Ali', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19647, 'Chakeri', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19648, 'Chandauli', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19649, 'Chandausi', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19650, 'Charkhari', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19651, 'Charthawal', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19652, 'Chaumuhan', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19653, 'Chhaprauli', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19654, 'Chhara Rafatpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19655, 'Chharprauli', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19656, 'Chhata', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19657, 'Chhatari', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19658, 'Chhibramau', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19659, 'Chhutmalpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19660, 'Chilkana Sultanpur', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19661, 'Chirgaon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19662, 'Chit Baragaon', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19663, 'Chitrakut Dham', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19664, 'Chopan', 1629, '2024-01-21 12:06:29', '2024-01-21 12:06:29', NULL, 1), -(19665, 'Choubepur Kalan', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19666, 'Chunar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19667, 'Churk Ghurma', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19668, 'Colonelganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19669, 'Dadri', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19670, 'Dalmau', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19671, 'Dankaur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19672, 'Dariyabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19673, 'Dasna', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19674, 'Dataganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19675, 'Daurala', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19676, 'Dayal Bagh', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19677, 'Deoband', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19678, 'Deoranian', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19679, 'Deoria', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19680, 'Dewa', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19681, 'Dhampur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19682, 'Dhanauha', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19683, 'Dhanauli', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19684, 'Dhanaura', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19685, 'Dharoti Khurd', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19686, 'Dhauratanda', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19687, 'Dhaurhra', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19688, 'Dibai', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19689, 'Dibiyapur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19690, 'Dildarnagar Fatehpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19691, 'Do Ghat', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19692, 'Dohrighat', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19693, 'Dostpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19694, 'Dudhinagar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19695, 'Dulhipur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19696, 'Dundwaraganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19697, 'Ekdil', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19698, 'Erich', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19699, 'Etah', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19700, 'Etawah', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19701, 'Faizabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19702, 'Faizabad Cantonment', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19703, 'Faizganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19704, 'Farah', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19705, 'Faridnagar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19706, 'Faridpur Cantonment', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19707, 'Fariha', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19708, 'Farrukhabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19709, 'Fatehganj Pashchimi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19710, 'Fatehganj Purvi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19711, 'Fatehgarh', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19712, 'Fatehpur Chaurasi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19713, 'Fatehpur Sikri', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19714, 'Firozabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19715, 'Gajraula', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19716, 'Ganga Ghat', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19717, 'Gangoh', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19718, 'Ganj Muradabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19719, 'Garautha', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19720, 'Garhi Pukhta', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19721, 'Garhmukteshwar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19722, 'Gaura Barahaj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19723, 'Gauri Bazar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19724, 'Gausganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19725, 'Gawan', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19726, 'Ghatampur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19727, 'Ghaziabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19728, 'Ghazipur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19729, 'Ghiror', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19730, 'Ghorawal', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19731, 'Ghosi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19732, 'Ghosia Bazar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19733, 'Ghughuli', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19734, 'Gohand', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19735, 'Gokul', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19736, 'Gola Bazar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19737, 'Gola Gokarannath', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19738, 'Gonda', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19739, 'Gopamau', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19740, 'Gopiganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19741, 'Gorakhpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19742, 'Gosainganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19743, 'Govardhan', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19744, 'Greater Noida', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19745, 'Gulaothi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19746, 'Gulariya', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19747, 'Gulariya Bhindara', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19748, 'Gunnaur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19749, 'Gursahaiganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19750, 'Gursarai', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19751, 'Gyanpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19752, 'Hafizpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19753, 'Haidergarh', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19754, 'Haldaur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19755, 'Handia', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19756, 'Hapur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19757, 'Hardoi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19758, 'Harduaganj', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19759, 'Hargaon', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19760, 'Hariharpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19761, 'Harraiya', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19762, 'Hasayan', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19763, 'Hastinapur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19764, 'Hata', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19765, 'Hathras', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19766, 'Ibrahimpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19767, 'Iglas', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19768, 'Ikauna', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19769, 'Iltifatganj Bazar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19770, 'Indian Telephone Industry Mank', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19771, 'Islamnagar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19772, 'Itaunja', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19773, 'Itimadpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19774, 'Jagner', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19775, 'Jahangirabad', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19776, 'Jahangirpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19777, 'Jais', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19778, 'Jaithara', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19779, 'Jalali', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19780, 'Jalalpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19781, 'Jalaun', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19782, 'Jalesar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19783, 'Jamshila', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19784, 'Jangipur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19785, 'Jansath', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19786, 'Jarwal', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19787, 'Jasrana', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19788, 'Jaswantnagar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19789, 'Jatari', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19790, 'Jaunpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19791, 'Jewar', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19792, 'Jhalu', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19793, 'Jhansi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19794, 'Jhansi Cantonment', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19795, 'Jhansi Railway Settlement', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19796, 'Jhinjhak', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19797, 'Jhinjhana', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19798, 'Jhusi', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19799, 'Jhusi Kohna', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19800, 'Jiyanpur', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19801, 'Joya', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19802, 'Jyoti Khuria', 1629, '2024-01-21 12:06:30', '2024-01-21 12:06:30', NULL, 1), -(19803, 'Jyotiba Phule Nagar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19804, 'Kabrai', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19805, 'Kachhauna Patseni', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19806, 'Kachhla', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19807, 'Kachhwa', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19808, 'Kadaura', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19809, 'Kadipur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19810, 'Kailashpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19811, 'Kaimganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19812, 'Kairana', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19813, 'Kakgaina', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19814, 'Kakod', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19815, 'Kakori', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19816, 'Kakrala', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19817, 'Kalinagar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19818, 'Kalpi', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19819, 'Kamalganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19820, 'Kampil', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19821, 'Kandhla', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19822, 'Kandwa', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19823, 'Kannauj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19824, 'Kanpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19825, 'Kant', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19826, 'Kanth', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19827, 'Kaptanganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19828, 'Karaon', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19829, 'Karari', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19830, 'Karhal', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19831, 'Karnawal', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19832, 'Kasganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19833, 'Katariya', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19834, 'Katghar Lalganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19835, 'Kathera', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19836, 'Katra Medniganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19837, 'Kauriaganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19838, 'Kemri', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19839, 'Kerakat', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19840, 'Khadda', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19841, 'Khaga', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19842, 'Khailar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19843, 'Khair', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19844, 'Khairabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19845, 'Khalilabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19846, 'Kharela', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19847, 'Khargupur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19848, 'Khariya', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19849, 'Khatauli', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19850, 'Khatauli Rural', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19851, 'Khekra', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19852, 'Kheri', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19853, 'Kheta Sarai', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19854, 'Khudaganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19855, 'Khurja', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19856, 'Khutar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19857, 'Kiraoli', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19858, 'Kiratpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19859, 'Kishanpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19860, 'Kishni', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19861, 'Kithaur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19862, 'Koiripur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19863, 'Konch', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19864, 'Kopaganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19865, 'Kora Jahanabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19866, 'Korwa', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19867, 'Kosi Kalan', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19868, 'Kotra', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19869, 'Kotwa', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19870, 'Kulpahar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19871, 'Kundarki', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19872, 'Kunwargaon', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19873, 'Kurara', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19874, 'Kurawali', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19875, 'Kursath', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19876, 'Kurthi Jafarpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19877, 'Kushinagar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19878, 'Kusmara', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19879, 'Laharpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19880, 'Lakhna', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19881, 'Lalitpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19882, 'Lar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19883, 'Lawar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19884, 'Ledwa Mahuwa', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19885, 'Lohta', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19886, 'Loni', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19887, 'Machhlishahr', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19888, 'Madhoganj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19889, 'Maghar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19890, 'Mahaban', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19891, 'Mahmudabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19892, 'Mahoba', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19893, 'Maholi', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19894, 'Mahona', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19895, 'Mahroni', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19896, 'Mailani', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19897, 'Mainpuri', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19898, 'Majhara Pipar Ehatmali', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19899, 'Majhauli Raj', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19900, 'Malihabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19901, 'Mallanwam', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19902, 'Manikpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19903, 'Maniyar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19904, 'Manjhanpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19905, 'Mankapur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19906, 'Marehra', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19907, 'Mariahu', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19908, 'Maruadih', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19909, 'Maswasi', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19910, 'Mataundh', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19911, 'Mathu', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19912, 'Mathura', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19913, 'Mathura Cantonment', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19914, 'Mau Aima', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19915, 'Maudaha', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19916, 'Mauranipur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19917, 'Maurawan', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19918, 'Meerut', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19919, 'Mehnagar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19920, 'Mehndawal', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19921, 'Mendu', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19922, 'Milak', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19923, 'Miranpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19924, 'Mirat', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19925, 'Mirat Cantonment', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19926, 'Misrikh', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19927, 'Modinagar', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19928, 'Mogra Badshahpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19929, 'Mohan', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19930, 'Mohanpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19931, 'Mohiuddinpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19932, 'Moradabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19933, 'Moth', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19934, 'Mubarakpur', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19935, 'Mughal Sarai', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19936, 'Mughal Sarai Railway Settlemen', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19937, 'Muhammadabad', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19938, 'Muhammadi', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19939, 'Mukrampur Khema', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19940, 'Mundia', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19941, 'Mundora', 1629, '2024-01-21 12:06:31', '2024-01-21 12:06:31', NULL, 1), -(19942, 'Muradnagar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19943, 'Mursan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19944, 'Musafirkhana', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19945, 'Muzaffarnagar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19946, 'Nadigaon', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19947, 'Nagina', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19948, 'Nagram', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19949, 'Nai Bazar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19950, 'Nainana Jat', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19951, 'Najibabad', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19952, 'Nakur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19953, 'Nanaunta', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19954, 'Nanpara', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19955, 'Naraini', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19956, 'Narauli', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19957, 'Naraura', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19958, 'Naugawan Sadat', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19959, 'Nautanwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19960, 'Nichlaul', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19961, 'Nidhauli Kalan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19962, 'Nihtaur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19963, 'Nindaura', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19964, 'Noida', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19965, 'Northern Railway Colony', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19966, 'Nyoria Husenpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19967, 'Nyotini', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19968, 'Obra', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19969, 'Oel Dhakwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19970, 'Orai', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19971, 'Ordinance Factory Muradnagar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19972, 'Pachperwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19973, 'Padrauna', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19974, 'Pahasu', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19975, 'Paintepur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19976, 'Palia Kalan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19977, 'Parasi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19978, 'Parichha', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19979, 'Parichhatgarh', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19980, 'Parsadepur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19981, 'Patala', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19982, 'Patiyali', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19983, 'Pawayan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19984, 'Phalauda', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19985, 'Phaphund', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19986, 'Phulpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19987, 'Phulwaria', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19988, 'Pihani', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19989, 'Pilibhit', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19990, 'Pilkana', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19991, 'Pilkhuwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19992, 'Pinahat', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19993, 'Pipalsana Chaudhari', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19994, 'Pipiganj', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19995, 'Pipraich', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19996, 'Pipri', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19997, 'Pukhrayan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19998, 'Puranpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(19999, 'Purdil Nagar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20000, 'Purqazi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20001, 'Purwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20002, 'Qasimpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20003, 'Rabupura', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20004, 'Radha Kund', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20005, 'Rae Bareilly', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20006, 'Raja Ka Rampur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20007, 'Ramkola', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20008, 'Rampur Bhawanipur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20009, 'Rampur Karkhana', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20010, 'Rampur Maniharan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20011, 'Ranipur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20012, 'Rashidpur Garhi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20013, 'Rasra', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20014, 'Rasulabad', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20015, 'Rath', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20016, 'Raya', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20017, 'Renukut', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20018, 'Reoti', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20019, 'Richha', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20020, 'Risia Bazar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20021, 'Rithora', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20022, 'Robertsganj', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20023, 'Roza', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20024, 'Rudarpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20025, 'Rudauli', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20026, 'Rudayan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20027, 'Rura', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(20028, 'Rustamnagar Sahaspur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20029, 'Sabatwar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20030, 'Sadabad', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20031, 'Sadat', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20032, 'Safipur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20033, 'Sahanpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20034, 'Saharanpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20035, 'Sahaspur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20036, 'Sahaswan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20037, 'Sahawar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20038, 'Sahibabad', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20039, 'Sahjanwa', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20040, 'Sahpau', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20041, 'Saidpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20042, 'Sainthal', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20043, 'Saiyadraja', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20044, 'Sakhanu', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20045, 'Sakit', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20046, 'Salarpur Khadar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20047, 'Salimpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20048, 'Salon', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20049, 'Sambhal', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20050, 'Sambhawali', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20051, 'Samdhan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20052, 'Samthar', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20053, 'Sandi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20054, 'Sandila', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20055, 'Sarai Mir', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20056, 'Sarai akil', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20057, 'Sarauli', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20058, 'Sardhana', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20059, 'Sarila', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20060, 'Sarsawan', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20061, 'Sasni', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20062, 'Satrikh', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20063, 'Saunkh', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20064, 'Saurikh', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20065, 'Seohara', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20066, 'Sewal Khas', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20067, 'Sewarhi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20068, 'Shahganj', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20069, 'Shahi', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20070, 'Shahjahanpur', 1629, '2024-01-21 12:06:32', '2024-01-21 12:06:32', NULL, 1), -(20071, 'Shahjahanpur Cantonment', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20072, 'Shamli', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20073, 'Shamsabad', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20074, 'Shankargarh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20075, 'Shergarh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20076, 'Sherkot', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20077, 'Shikohabad', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20078, 'Shisgarh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20079, 'Shivdaspur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20080, 'Shivli', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20081, 'Shohratgarh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20082, 'Siddhanur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20083, 'Siddharthnagar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20084, 'Sidhauli', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20085, 'Sidhpura', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20086, 'Sikandarabad', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20087, 'Sikandarpur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20088, 'Sikandra', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20089, 'Sikandra Rao', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20090, 'Singahi Bhiraura', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20091, 'Sirathu', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20092, 'Sirsaganj', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20093, 'Sisauli', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20094, 'Siswa Bazar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20095, 'Sitapur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20096, 'Siyana', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20097, 'Som', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20098, 'Sonbhadra', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20099, 'Soron', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20100, 'Suar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20101, 'Sukhmalpur Nizamabad', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20102, 'Suriyawan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20103, 'Swamibagh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20104, 'Tajpur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20105, 'Talbahat', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20106, 'Talgram', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20107, 'Tambaur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20108, 'Tatarpur Lallu', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20109, 'Tetribazar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20110, 'Thakurdwara', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20111, 'Thana Bhawan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20112, 'Thiriya Nizamat Khan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20113, 'Tikaitnagar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20114, 'Tikri', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20115, 'Tilhar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20116, 'Tindwari', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20117, 'Tirwaganj', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20118, 'Titron', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20119, 'Tori Fatehpur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20120, 'Tulsipur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20121, 'Tundla', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20122, 'Tundla Kham', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20123, 'Tundla Railway Colony', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20124, 'Ugu', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20125, 'Ujhani', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20126, 'Ujhari', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20127, 'Umri', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20128, 'Umri Kalan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20129, 'Unchahar', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20130, 'Unnao', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20131, 'Usaihat', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20132, 'Usawan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20133, 'Utraula', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20134, 'Varanasi', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20135, 'Varanasi Cantonment', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20136, 'Vijaigarh', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20137, 'Vrindavan', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20138, 'Wazirganj', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20139, 'Zafarabad', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20140, 'Zaidpur', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20141, 'Zamania', 1629, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20142, 'Almora', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20143, 'Almora Cantonment', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20144, 'Badrinathpuri', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20145, 'Bageshwar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20146, 'Bah Bazar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20147, 'Banbasa', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20148, 'Bandia', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20149, 'Barkot', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20150, 'Bazpur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20151, 'Bhim Tal', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20152, 'Bhowali', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20153, 'Chakrata', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20154, 'Chamoli and Gopeshwar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20155, 'Champawat', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20156, 'Clement Town', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20157, 'Dehra Dun Cantonment', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20158, 'Dehradun', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20159, 'Dehrakhas', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20160, 'Devaprayag', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20161, 'Dhaluwala', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20162, 'Dhandera', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20163, 'Dharchula', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20164, 'Dharchula Dehat', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20165, 'Didihat', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20166, 'Dineshpur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20167, 'Doiwala', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20168, 'Dugadda', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20169, 'Dwarahat', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20170, 'Gadarpur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20171, 'Gangotri', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20172, 'Gauchar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20173, 'Haldwani', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20174, 'Haridwar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20175, 'Herbertpur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20176, 'Jaspur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20177, 'Jhabrera', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20178, 'Joshimath', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20179, 'Kachnal Gosain', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20180, 'Kaladungi', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20181, 'Kalagarh', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20182, 'Karnaprayang', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20183, 'Kashipur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20184, 'Kashirampur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20185, 'Kausani', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20186, 'Kedarnath', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20187, 'Kelakhera', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20188, 'Khatima', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20189, 'Kichha', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20190, 'Kirtinagar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20191, 'Kotdwara', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20192, 'Laksar', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20193, 'Lalkuan', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20194, 'Landaura', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20195, 'Landhaura Cantonment', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20196, 'Lensdaun', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20197, 'Logahat', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20198, 'Mahua Dabra Haripura', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20199, 'Mahua Kheraganj', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20200, 'Manglaur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20201, 'Masuri', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20202, 'Mohanpur Mohammadpur', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20203, 'Muni Ki Reti', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20204, 'Nagla', 1630, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, 1), -(20205, 'Nainital', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20206, 'Nainital Cantonment', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20207, 'Nandaprayang', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20208, 'Narendranagar', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20209, 'Pauri', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20210, 'Pithoragarh', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20211, 'Pratitnagar', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20212, 'Raiwala', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20213, 'Ranikhet', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20214, 'Rishikesh', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20215, 'Rishikesh Cantonment', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20216, 'Roorkee', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20217, 'Rudraprayag', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20218, 'Rudrapur', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20219, 'Rurki', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20220, 'Rurki Cantonment', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20221, 'Shaktigarh', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20222, 'Sitarganj', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20223, 'Tanakpur', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20224, 'Tehri', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20225, 'Udham Singh Nagar', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20226, 'Uttarkashi', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20227, 'Vikasnagar', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20228, 'Virbhadra', 1630, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20229, '24 Parganas (n)', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20230, '24 Parganas (s)', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20231, 'Adra', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20232, 'Aiho', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20233, 'Aistala', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20234, 'Alipur Duar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20235, 'Alipur Duar Railway Junction', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20236, 'Alpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20237, 'Amalhara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20238, 'Amkula', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20239, 'Amlagora', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20240, 'Amodghata', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20241, 'Amtala', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20242, 'Andul', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20243, 'Anksa', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20244, 'Ankurhati', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20245, 'Anup Nagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20246, 'Arambagh', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20247, 'Argari', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20248, 'Arsha', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20249, 'Asansol', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20250, 'Ashoknagar Kalyangarh', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20251, 'Bablari Dewanganj', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20252, 'Badhagachhi', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20253, 'Baduria', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20254, 'Baghdogra', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20255, 'Bagnan', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20256, 'Bagra', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20257, 'Bagula', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20258, 'Baharampur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20259, 'Bahirgram', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20260, 'Bahula', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20261, 'Baidyabati', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20262, 'Bairatisal', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20263, 'Baj Baj', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20264, 'Bakreswar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20265, 'Balaram Pota', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20266, 'Balarampur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20267, 'Bali Chak', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20268, 'Ballavpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20269, 'Bally', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20270, 'Balurghat', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20271, 'Bamunari', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20272, 'Banarhat Tea Garden', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20273, 'Bandel', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20274, 'Bangaon', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20275, 'Bankra', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20276, 'Bankura', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20277, 'Bansbaria', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20278, 'Banshra', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20279, 'Banupur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20280, 'Bara Bamonia', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20281, 'Barakpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20282, 'Barakpur Cantonment', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20283, 'Baranagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20284, 'Barasat', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20285, 'Barddhaman', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20286, 'Barijhati', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20287, 'Barjora', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20288, 'Barrackpore', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20289, 'Baruihuda', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20290, 'Baruipur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20291, 'Barunda', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20292, 'Basirhat', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20293, 'Baska', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20294, 'Begampur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20295, 'Beldanga', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20296, 'Beldubi', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20297, 'Belebathan', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20298, 'Beliator', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20299, 'Bhadreswar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20300, 'Bhandardaha', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20301, 'Bhangar Raghunathpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20302, 'Bhangri Pratham Khanda', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20303, 'Bhanowara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20304, 'Bhatpara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20305, 'Bholar Dabri', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20306, 'Bidhannagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20307, 'Bidyadharpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20308, 'Biki Hakola', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20309, 'Bilandapur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20310, 'Bilpahari', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20311, 'Bipra Noapara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20312, 'Birlapur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20313, 'Birnagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20314, 'Bisarpara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20315, 'Bolpur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20316, 'Bongaon', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20317, 'Bowali', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20318, 'Burdwan', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20319, 'Canning', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20320, 'Cart Road', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20321, 'Chachanda', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20322, 'Chak Bankola', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20323, 'Chak Enayetnagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20324, 'Chak Kashipur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20325, 'Chakalampur', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20326, 'Chakbansberia', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20327, 'Chakdaha', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20328, 'Chakpara', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20329, 'Champahati', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20330, 'Champdani', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20331, 'Chamrail', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20332, 'Chandannagar', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20333, 'Chandrakona', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20334, 'Chapari', 1632, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, 1), -(20335, 'Chapui', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20336, 'Char Brahmanagar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20337, 'Char Maijdia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20338, 'Charka', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20339, 'Chata Kalikapur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20340, 'Chauhati', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20341, 'Checha Khata', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20342, 'Chelad', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20343, 'Chhora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20344, 'Chikrand', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20345, 'Chittaranjan', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20346, 'Contai', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20347, 'Cooch Behar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20348, 'Dainhat', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20349, 'Dakshin Baguan', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20350, 'Dakshin Jhapardaha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20351, 'Dakshin Rajyadharpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20352, 'Dakshin Raypur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20353, 'Dalkola', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20354, 'Dalurband', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20355, 'Darap Pur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20356, 'Darjiling', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20357, 'Debipur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20358, 'Defahat', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20359, 'Deora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20360, 'Deulia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20361, 'Dhakuria', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20362, 'Dhandadihi', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20363, 'Dhanyakuria', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20364, 'Dharmapur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20365, 'Dhatri Gram', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20366, 'Dhuilya', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20367, 'Dhulagari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20368, 'Dhulian', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20369, 'Dhupgari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20370, 'Dhusaripara', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20371, 'Diamond Harbour', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20372, 'Digha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20373, 'Dignala', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20374, 'Dinhata', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20375, 'Dubrajpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20376, 'Dumjor', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20377, 'Durllabhganj', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20378, 'Egra', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20379, 'Eksara', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20380, 'Falakata', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20381, 'Farakka', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20382, 'Fatellapur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20383, 'Fort Gloster', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20384, 'Gabberia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20385, 'Gadigachha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20386, 'Gairkata', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20387, 'Gangarampur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20388, 'Garalgachha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20389, 'Garbeta Amlagora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20390, 'Garhbeta', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20391, 'Garshyamnagar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20392, 'Garui', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20393, 'Garulia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20394, 'Gayespur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20395, 'Ghatal', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20396, 'Ghorsala', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20397, 'Goaljan', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20398, 'Goasafat', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20399, 'Gobardanga', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20400, 'Gobindapur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20401, 'Gopinathpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20402, 'Gora Bazar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20403, 'Guma', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20404, 'Gurdaha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20405, 'Guriahati', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20406, 'Guskhara', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20407, 'Habra', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20408, 'Haldia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20409, 'Haldibari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20410, 'Halisahar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20411, 'Haora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20412, 'Harharia Chak', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20413, 'Harindanga', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20414, 'Haringhata', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20415, 'Haripur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20416, 'Harishpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20417, 'Hatgachha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20418, 'Hatsimla', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20419, 'Hijuli', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20420, 'Hindustan Cables Town', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20421, 'Hooghly', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20422, 'Howrah', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20423, 'Hugli-Chunchura', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20424, 'Humaipur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20425, 'Ichha Pur Defence Estate', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20426, 'Ingraj Bazar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20427, 'Jafarpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20428, 'Jagadanandapur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20429, 'Jagdishpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20430, 'Jagtaj', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20431, 'Jala Kendua', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20432, 'Jaldhaka', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20433, 'Jalkhura', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20434, 'Jalpaiguri', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20435, 'Jamuria', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20436, 'Jaygaon', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20437, 'Jaynagar-Majilpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20438, 'Jemari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20439, 'Jemari Township', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20440, 'Jetia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20441, 'Jhalida', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20442, 'Jhargram', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20443, 'Jhorhat', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20444, 'Jiaganj-Azimganj', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20445, 'Joka', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20446, 'Jot Kamal', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20447, 'Kachu Pukur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20448, 'Kajora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20449, 'Kakdihi', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20450, 'Kakdwip', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20451, 'Kalaikunda', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20452, 'Kalara', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20453, 'Kalimpong', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20454, 'Kaliyaganj', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20455, 'Kalna', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20456, 'Kalyani', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20457, 'Kamarhati', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20458, 'Kanaipur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20459, 'Kanchrapara', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20460, 'Kanki', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20461, 'Kankuria', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20462, 'Kantlia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20463, 'Kanyanagar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20464, 'Karimpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20465, 'Karsiyang', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20466, 'Kasimbazar', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20467, 'Katwa', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20468, 'Kaugachhi', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20469, 'Kenda', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20470, 'Kendra Khottamdi', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20471, 'Kendua', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20472, 'Kesabpur', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20473, 'Khagrabari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20474, 'Khalia', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20475, 'Khalor', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20476, 'Khandra', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20477, 'Khantora', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20478, 'Kharagpur Railway Settlement', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20479, 'Khardaha', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20480, 'Khari Mala Khagrabari', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20481, 'Kharsarai', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20482, 'Khatra', 1632, '2024-01-21 12:06:35', '2024-01-21 12:06:35', NULL, 1), -(20483, 'Khodarampur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20484, 'Kodalia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20485, 'Kolaghat', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20486, 'Kolaghat Thermal Power Project', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20487, 'Kolkata', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20488, 'Konardihi', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20489, 'Konnogar', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20490, 'Krishnanagar', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20491, 'Krishnapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20492, 'Kshidirpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20493, 'Kshirpai', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20494, 'Kulihanda', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20495, 'Kulti', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20496, 'Kunustara', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20497, 'Kuperskem', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20498, 'Madanpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20499, 'Madhusudanpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20500, 'Madhyamgram', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20501, 'Maheshtala', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20502, 'Mahiari', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20503, 'Mahikpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20504, 'Mahira', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20505, 'Mahishadal', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20506, 'Mainaguri', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20507, 'Makardaha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20508, 'Mal', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20509, 'Mandarbani', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20510, 'Mansinhapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20511, 'Masila', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20512, 'Maslandapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20513, 'Mathabhanga', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20514, 'Mekliganj', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20515, 'Memari', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20516, 'Midnapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20517, 'Mirik', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20518, 'Monoharpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20519, 'Mrigala', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20520, 'Muragachha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20521, 'Murgathaul', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20522, 'Murshidabad', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20523, 'Nabadhai Dutta Pukur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20524, 'Nabagram', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20525, 'Nabgram', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20526, 'Nachhratpur Katabari', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20527, 'Nadia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20528, 'Naihati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20529, 'Nalhati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20530, 'Nasra', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20531, 'Natibpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20532, 'Naupala', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20533, 'Navadwip', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20534, 'Nebadhai Duttapukur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20535, 'New Barrackpore', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20536, 'Ni Barakpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20537, 'Nibra', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20538, 'Noapara', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20539, 'Nokpul', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20540, 'North Barakpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20541, 'Odlabari', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20542, 'Old Maldah', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20543, 'Ondal', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20544, 'Pairagachha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20545, 'Palashban', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20546, 'Panchla', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20547, 'Panchpara', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20548, 'Pandua', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20549, 'Pangachhiya', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20550, 'Paniara', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20551, 'Panihati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20552, 'Panuhat', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20553, 'Par Beliya', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20554, 'Parashkol', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20555, 'Parbbatipur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20556, 'Parui', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20557, 'Paschim Jitpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20558, 'Paschim Punro Para', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20559, 'Patrasaer', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20560, 'Pattabong Tea Garden', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20561, 'Patuli', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20562, 'Patulia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20563, 'Phulia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20564, 'Podara', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20565, 'Prayagpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20566, 'Pujali', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20567, 'Purba Medinipur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20568, 'Purba Tajpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20569, 'Purulia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20570, 'Raghudebbati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20571, 'Raghudebpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20572, 'Raghunathchak', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20573, 'Raghunathpur-Dankuni', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20574, 'Raghunathpur-Magra', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20575, 'Raigachhi', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20576, 'Raiganj', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20577, 'Rajarhat Gopalpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20578, 'Ramchandrapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20579, 'Ramjibanpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20580, 'Rampur Hat', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20581, 'Ranaghat', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20582, 'Raniganj', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20583, 'Ratibati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20584, 'Rishra', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20585, 'Rishra Cantonment', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20586, 'Ruiya', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20587, 'Sahajadpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20588, 'Sahapur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20589, 'Sainthia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20590, 'Salap', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20591, 'Sankarpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20592, 'Sankrail', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20593, 'Santoshpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20594, 'Saontaidih', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20595, 'Sarenga', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20596, 'Sarpi', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20597, 'Satigachha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20598, 'Serpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20599, 'Shankhanagar', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20600, 'Shantipur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20601, 'Siduli', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20602, 'Siliguri', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20603, 'Simla', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20604, 'Singur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20605, 'Sirsha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20606, 'Siuri', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20607, 'Sobhaganj', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20608, 'Sodpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20609, 'Sonamukhi', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20610, 'Sonatikiri', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20611, 'Srikantabati', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20612, 'Srirampur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20613, 'Sukdal', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20614, 'Taherpur', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20615, 'Taki', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20616, 'Talbandha', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20617, 'Tamluk', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20618, 'Tarakeswar', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20619, 'Tentulberia', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20620, 'Tentulkuli', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20621, 'Thermal Power Project', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20622, 'Titagarh', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20623, 'Tufanganj', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20624, 'Ukhra', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20625, 'Ula', 1632, '2024-01-21 12:06:36', '2024-01-21 12:06:36', NULL, 1), -(20626, 'Ulubaria', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20627, 'Uttar Durgapur', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20628, 'Uttar Goara', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20629, 'Uttar Kalas', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20630, 'Uttar Kamakhyaguri', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20631, 'Uttar Latabari', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20632, 'Uttar Mahammadpur', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20633, 'Uttar Pirpur', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20634, 'Uttar Raypur', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20635, 'Uttarpara-Kotrung', 1632, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20636, 'Banda Aceh', 1633, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20637, 'Bireun', 1633, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20638, 'Langsa', 1633, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20639, 'Lhokseumawe', 1633, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20640, 'Meulaboh', 1633, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(20641, 'Denpasar', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20642, 'Karangasem', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20643, 'Klungkung', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20644, 'Kuta', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20645, 'Negara', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20646, 'Singaraja', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20647, 'Tabanan', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20648, 'Ubud', 1634, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20649, 'Manggar', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20650, 'Mentok', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20651, 'Pangkal Pinang', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20652, 'Sungai Liat', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20653, 'Tanjung Pandan', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20654, 'Toboali-Rias', 1635, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20655, 'Cikupa', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20656, 'Cilegon', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20657, 'Ciputat', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20658, 'Curug', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20659, 'Kresek', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20660, 'Labuhan', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20661, 'Pandegelang', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20662, 'Pondok Aren', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20663, 'Rangkasbitung', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20664, 'Serang', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20665, 'Serpong', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20666, 'Tangerang', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20667, 'Teluknaga', 1636, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20668, 'Bengkulu', 1637, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20669, 'Curup', 1637, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20670, 'Gandaria', 1638, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20671, 'Gorontalo', 1639, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20672, 'Cengkareng', 1640, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20673, 'Jakarta', 1640, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20674, 'Jambi', 1641, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20675, 'Kualatungka', 1641, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20676, 'Simpang', 1641, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20677, 'Sungaipenuh', 1641, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20678, 'Kendal', 1649, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20679, 'Bandar Lampung', 1650, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20680, 'Kota Bumi', 1650, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20681, 'Metro', 1650, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20682, 'Pringsewu', 1650, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20683, 'Terbanggi Besar', 1650, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, 1), -(20684, 'Amahai', 1651, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20685, 'Ambon', 1651, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20686, 'Tual', 1651, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20687, 'Aberpura', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20688, 'Biak', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20689, 'Jaya Pura', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20690, 'Manokwari', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20691, 'Merauke', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20692, 'Sorong', 1655, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20693, 'Balaipungut', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20694, 'Bengkalis', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20695, 'Dumai', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20696, 'Duri', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20697, 'Pekan Baru', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20698, 'Selatpanjang', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20699, 'Tanjung Balai-Meral', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20700, 'Tembilahan', 1656, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20701, 'Solo', 1658, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20702, 'Bambanglipuro', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20703, 'Banguntapan', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20704, 'Bantul', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20705, 'Depok', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20706, 'Gamping', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20707, 'Godean', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20708, 'Jetis', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20709, 'Kasihan', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20710, 'Ngaglik', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20711, 'Pandak', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20712, 'Pundong', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20713, 'Sewon', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20714, 'Seyegan', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20715, 'Sleman', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20716, 'Srandakan', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20717, 'Wonosari', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20718, 'Yogyakarta', 1666, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20719, 'Ardabil', 1667, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20720, 'Garmi', 1667, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20721, 'Khalkhal', 1667, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20722, 'Meshkinshahr', 1667, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20723, 'Parsabad', 1667, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20724, 'Bandar-e Gonaveh', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20725, 'Borazjan', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20726, 'Bushehr', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20727, 'Dashti', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20728, 'Dir', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20729, 'Khormuj', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20730, 'Kongan', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20731, 'Tangestan', 1670, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20732, 'Ardistan', 1672, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20733, 'Dorchehpiyaz', 1672, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, 1), -(20734, 'Dowlatabad', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20735, 'Esfahan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20736, 'Falavarjan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20737, 'Faridan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20738, 'Fereydunshahr', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20739, 'Fuladshahr', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20740, 'Golara', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20741, 'Golpayegan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20742, 'Kashan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20743, 'Kelishad', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20744, 'Khomeynishahr', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20745, 'Khonsar', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20746, 'Khuresgan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20747, 'Mobarakeh', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20748, 'Na in', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20749, 'Najafabad', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20750, 'Natnaz', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20751, 'Qahdarijan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20752, 'Rehnan', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20753, 'Semirom', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20754, 'Shahinshahr', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20755, 'Shahreza', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20756, 'Zarinshahr', 1672, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20757, 'Abadeh', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20758, 'Akbarabad', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20759, 'Darab', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20760, 'Eqlid', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20761, 'Estehban', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20762, 'Fasa', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20763, 'Firuzabad', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20764, 'Gerash', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20765, 'Jahrom', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20766, 'Kazerun', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20767, 'Marv Dasht', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20768, 'Neyriz', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20769, 'Nurabad', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20770, 'Qa emiyeh', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20771, 'Sepidan', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20772, 'Shiraz', 1673, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20773, 'Astaneh-ye Ashrafiyeh', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20774, 'Bandar-e Anzali', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20775, 'Faman', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20776, 'Hashtpar', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20777, 'Lahijan', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20778, 'Langarud', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20779, 'Rasht', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20780, 'Rudbar', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20781, 'Rudsar', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20782, 'Sawma eh Sara', 1674, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20783, 'Aq Qal eh', 1675, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20784, 'Azad Shahr', 1675, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20785, 'Bandar-e Torkaman', 1675, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20786, 'Gonbad-e Qabus', 1675, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20787, 'Gorgan', 1675, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20788, 'Asadabad', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20789, 'Bahar', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20790, 'Hamadan', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20791, 'Malayer', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20792, 'Nahavand', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20793, 'Tuysarkan', 1676, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20794, 'Bandar Abbas', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20795, 'Bandar-e Abbas', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20796, 'Bandar-e Lengeh', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20797, 'Gheshm', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20798, 'Jask', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20799, 'Kish', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20800, 'Kish Island', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20801, 'Minab', 1677, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20802, 'Abdanan', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20803, 'Darrehshahr', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20804, 'Dehloran', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20805, 'Ilam', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20806, 'Ivan', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20807, 'Mehran', 1678, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20808, 'Baft', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20809, 'Bam', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20810, 'Bardsir', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20811, 'Jiroft', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20812, 'Kahnuj', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20813, 'Kerman', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20814, 'Rafsanjan', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20815, 'Ravar', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20816, 'Shahr-e Babak', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20817, 'Sirjan', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20818, 'Zarand', 1679, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20819, 'Eslamabad', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20820, 'Gilan-e Garb', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20821, 'Harsin', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20822, 'Javanrud', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20823, 'Kangavar', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20824, 'Kermanshah', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20825, 'Paveh', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20826, 'Sahneh', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20827, 'Sar-e-Pol-e-Zohab', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20828, 'Sonqor', 1680, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20829, 'Birjand', 1681, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20830, 'Bojnurd', 1681, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20831, 'Chenaran', 1681, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, 1), -(20832, 'Darreh Gaz', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20833, 'Esfarayen', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20834, 'Fariman', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20835, 'Ferdus', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20836, 'Gha nat', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20837, 'Gonabad', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20838, 'Kashmar', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20839, 'Mashad', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20840, 'Mashhad', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20841, 'Neyshabur', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20842, 'Qayen', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20843, 'Quchan', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20844, 'Sabzevar', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20845, 'Sarakhs', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20846, 'Shirvan', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20847, 'Tabas', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20848, 'Tayyebat', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20849, 'Torbat-e Heydariyeh', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20850, 'Torbat-e Jam', 1681, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20851, 'Abadan', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20852, 'Agha Jari', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20853, 'Ahvaz', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20854, 'Ahwaz', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20855, 'Andimeshk', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20856, 'Bandar-e Emam Khomeyni', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20857, 'Bandar-e Mahshahr', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20858, 'Behbahan', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20859, 'Dezful', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20860, 'Ezeh', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20861, 'Hendijan', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20862, 'Khorramshahr', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20863, 'Masjed-e Soleyman', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20864, 'Omidiyeh', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20865, 'Ramhormoz', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20866, 'Ramshir', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20867, 'Shadegan', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20868, 'Shush', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20869, 'Shushtar', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20870, 'Susangerd', 1682, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20871, 'Baneh', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20872, 'Bijar', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20873, 'Kamyaran', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20874, 'Marivan', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20875, 'Qorveh', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20876, 'Sanandaj', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20877, 'Saqqez', 1684, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20878, 'Alashtar', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20879, 'Aligudarz', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20880, 'Azna', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20881, 'Borujerd', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20882, 'Do Rud', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20883, 'Khorramabad', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20884, 'Kuhdasht', 1685, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20885, 'Arak', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20886, 'Ashtian', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20887, 'Delijan', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20888, 'Khomeyn', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20889, 'Mahallat', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20890, 'Sarband', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20891, 'Saveh', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20892, 'Tafresh', 1686, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20893, 'Aliabad', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20894, 'Amir Kala', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20895, 'Amol', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20896, 'Babol', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20897, 'Babol Sar', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20898, 'Behshahr', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20899, 'Chalus', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20900, 'Fereydunkenar', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20901, 'Juybar', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20902, 'Kalaleh', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20903, 'Kordkuy', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20904, 'Minudasht', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20905, 'Neka', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20906, 'Nur', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20907, 'Nushahr', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20908, 'Qa emshahr', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20909, 'Ramsar', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20910, 'Sari', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20911, 'Savadkuh', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20912, 'Tonekabon', 1687, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20913, 'Abhar', 1689, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20914, 'Abyek', 1689, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20915, 'Qazvin', 1689, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20916, 'Takestan', 1689, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20917, 'Qom', 1690, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20918, 'Damghan', 1691, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20919, 'Garmsar', 1691, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20920, 'Semnan', 1691, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20921, 'Shahrud', 1691, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20922, 'Damavand', 1693, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, 1), -(20923, 'Eqbaliyeh', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20924, 'Eslamshahr', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20925, 'Hashtgerd', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20926, 'Karaj', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20927, 'Mahdasht', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20928, 'Malard', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20929, 'Mohammadiyeh', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20930, 'Nazarabad', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20931, 'Pakdasht', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20932, 'Pishva', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20933, 'Qarchak', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20934, 'Qods', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20935, 'Robat Karim', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20936, 'Shahriyar', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20937, 'Tehran', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20938, 'Varamin', 1693, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20939, 'Ardakan', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20940, 'Bafq', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20941, 'Mehriz', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20942, 'Meybod', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20943, 'Taft', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20944, 'Yazd', 1694, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20945, 'Alvand', 1695, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20946, 'Khorramdarreh', 1695, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20947, 'Zanjan', 1695, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20948, 'Jurf-as-Sakhr', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20949, 'Saddat-al-Hindiyah', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20950, 'al-Hillah', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20951, 'al-Madhatiyah', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20952, 'al-Musayyib', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20953, 'al-Qasim', 1696, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20954, 'Baghdad', 1697, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20955, 'Dahuk', 1698, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20956, 'Zakhu', 1698, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20957, 'Ba qubah', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20958, 'Hanaqin', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20959, 'Jalula ', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20960, 'Kifri', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20961, 'Mandali', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20962, 'al-Fuhud', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20963, 'al-Khalis', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20964, 'al-Miqdadiyah', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20965, 'ash-Shatrah', 1700, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20966, 'Ankawa', 1701, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20967, 'Chaqalawa', 1702, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20968, 'Irbil', 1702, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20969, 'Rawanduz', 1702, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20970, 'Karbala', 1703, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20971, 'al-Hindiyah', 1703, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20972, 'Erbil', 1704, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20973, ' Ali al Gharbi', 1705, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20974, 'al- Amarah', 1705, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20975, 'al-Majarr-al-Kabir', 1705, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20976, 'Qarah Qush', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20977, 'Sinjar', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20978, 'Tall Afar', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20979, 'Tall Kayf', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20980, 'al-Mawsil', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20981, 'ash-Shaykhan', 1706, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20982, 'Balad', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20983, 'Bayji', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20984, 'Dhalu iyah', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20985, 'Samarra', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20986, 'Tikrit', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20987, 'Tuz', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20988, 'ad-Dujayl', 1707, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20989, 'al- Aziziyah', 1708, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20990, 'al-Hayy', 1708, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20991, 'al-Kut', 1708, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20992, 'an-Nu maniyah', 1708, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20993, 'as-Suwayrah', 1708, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, 1), -(20994, ' Anah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(20995, 'Hit', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(20996, 'Rawah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(20997, 'al-Fallujah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(20998, 'al-Habbaniyah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(20999, 'al-Hadithah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21000, 'ar-Ramadi', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21001, 'ar-Rutbah', 1709, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21002, 'Abu al-Khasib', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21003, 'Harithah', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21004, 'Shatt-al- Arab', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21005, 'al-Basrah', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21006, 'al-Faw', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21007, 'al-Qurnah', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21008, 'az-Zubayr', 1710, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21009, 'ar-Rumaythah', 1711, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21010, 'as-Samawah', 1711, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21011, ' Afak', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21012, 'ad-Diwaniyah', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21013, 'al-Ghammas', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21014, 'al-Hamzah', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21015, 'ash-Shamiyah', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21016, 'ash-Shinafiyah', 1712, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21017, 'al-Kufah', 1713, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21018, 'al-Mishkhab', 1713, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21019, 'an-Najaf', 1713, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21020, 'Chamchamal', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21021, 'Halabjah', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21022, 'Kusanjaq', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21023, 'Panjwin', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21024, 'Qal at Dizeh', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21025, 'as-Sulaymaniyah', 1714, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21026, ' Aqrah', 1715, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21027, 'Kirkuk', 1715, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21028, 'Moira', 1716, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21029, 'Bagenalstown', 1717, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21030, 'Carlow', 1717, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21031, 'Tullow', 1717, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21032, 'Bailieborough', 1718, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21033, 'Belturbet', 1718, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21034, 'Cavan', 1718, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21035, 'Coothill', 1718, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21036, 'Ennis', 1719, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21037, 'Kilkee', 1719, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21038, 'Kilrush', 1719, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21039, 'Newmarket-on-Fergus', 1719, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21040, 'Shannon', 1719, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21041, 'Bandon', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21042, 'Bantry', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21043, 'Blarney', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21044, 'Carrigaline', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21045, 'Charleville', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21046, 'Clonakilty', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21047, 'Cobh', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21048, 'Cork', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21049, 'Drishane', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21050, 'Dunmanway', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21051, 'Fermoy', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21052, 'Kanturk', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21053, 'Kinsale', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21054, 'Macroom', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21055, 'Mallow', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21056, 'Midleton', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21057, 'Millstreet', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21058, 'Mitchelstown', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21059, 'Passage West', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21060, 'Skibbereen', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21061, 'Youghal', 1720, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21062, 'Ballybofey', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21063, 'Ballyshannon', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21064, 'Buncrana', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21065, 'Bundoran', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21066, 'Carndonagh', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21067, 'Donegal', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21068, 'Killybegs', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21069, 'Letterkenny', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21070, 'Lifford', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21071, 'Moville', 1721, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21072, 'Balbriggan', 1722, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21073, 'Ballsbridge', 1722, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21074, 'Dublin', 1722, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21075, 'Leixlip', 1722, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, 1), -(21076, 'Malahide', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21077, 'Portrane', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21078, 'Rathcoole', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21079, 'Rush', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21080, 'Skerries', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21081, 'Swords', 1722, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21082, 'Athenry', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21083, 'Ballinasloe', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21084, 'Clifden', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21085, 'Galway', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21086, 'Gort', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21087, 'Loughrea', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21088, 'Tuam', 1723, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21089, 'Ballybunion', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21090, 'Cahirciveen', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21091, 'Castleisland', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21092, 'Dingle', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21093, 'Kenmare', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21094, 'Killorglin', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21095, 'Tralee', 1724, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21096, 'Athy', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21097, 'Celbridge', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21098, 'Clane', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21099, 'Kilcock', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21100, 'Kilcullen', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21101, 'Kildare', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21102, 'Maynooth', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21103, 'Monasterevan', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21104, 'Naas', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21105, 'Newbridge', 1725, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21106, 'Callan', 1726, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21107, 'Castlecomer', 1726, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21108, 'Kilkenny', 1726, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21109, 'Abbeyleix', 1727, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21110, 'Mountmellick', 1727, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21111, 'Mountrath', 1727, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21112, 'Port Laoise', 1727, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21113, 'Portarlington', 1727, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21114, 'Meath', 1728, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21115, 'Carrick-on-Shannon', 1729, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21116, 'Abbeyfeale', 1730, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21117, 'Kilmallock', 1730, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21118, 'Limerick', 1730, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21119, 'Newcastle', 1730, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21120, 'Rathkeale', 1730, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21121, 'Granard', 1732, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21122, 'Longford', 1732, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21123, 'Moate', 1732, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21124, 'Ardee', 1733, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21125, 'Drogheda', 1733, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21126, 'Drumcar', 1733, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21127, 'Ballina', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21128, 'Ballinrobe', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21129, 'Ballyhaunis', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21130, 'Castlebar', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21131, 'Claremorris', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21132, 'Swinford', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21133, 'Westport', 1734, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21134, 'Ashbourne', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21135, 'Duleek', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21136, 'Dunboyne', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21137, 'Dunshaughlin', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21138, 'Kells', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21139, 'Laytown', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21140, 'Navan', 1735, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, 1), -(21141, 'Trim', 1735, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21142, 'Carrickmacross', 1736, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21143, 'Castleblayney', 1736, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21144, 'Clones', 1736, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21145, 'Monaghan', 1736, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21146, 'Banagher', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21147, 'Birr', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21148, 'Clara', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21149, 'Edenderry', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21150, 'Kilcormac', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21151, 'Tullamore', 1737, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21152, 'Ballaghaderreen', 1738, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21153, 'Boyle', 1738, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21154, 'Castlerea', 1738, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21155, 'Roscommon', 1738, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21156, 'Sligo', 1739, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21157, 'Co Tyrone', 1742, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21158, 'Downpatrick', 1742, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21159, 'Dungarvan', 1743, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21160, 'Tramore', 1743, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21161, 'Athlone', 1744, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21162, 'Mullingar', 1744, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21163, 'Enniscorthy', 1745, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21164, 'Gorey', 1745, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21165, 'New Ross', 1745, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21166, 'Wexford', 1745, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21167, 'Arklow', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21168, 'Baltinglass', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21169, 'Blessington', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21170, 'Bray', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21171, 'Greystones', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21172, 'Kilcoole', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21173, 'Newtownmountkennedy', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21174, 'Rathdrum', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21175, 'Wicklow', 1746, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21176, 'Bethlehem', 1749, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21177, 'Caesarea', 1750, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21178, 'Petach Tikva', 649, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21179, 'Ramallah', 649, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21180, 'Gaza', 1751, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21181, ' Arad', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21182, ' Omer', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21183, 'Ashdod', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21184, 'Ashqelon', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21185, 'Be er Sheva', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21186, 'Beersheba', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21187, 'Bene Ayish', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21188, 'Dimona', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21189, 'Elat', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21190, 'Gan Yavne', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21191, 'Nahal `Oz', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21192, 'Netivot', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21193, 'Ofaqim', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21194, 'Qiryat Gat', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21195, 'Qiryat Mal akhi', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21196, 'Sederot', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21197, 'Yeroham', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21198, 'kiryat Malachi', 1752, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, 1), -(21199, 'Be er Ya aqov', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21200, 'Beit Shemesh', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21201, 'Bene Beraq', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21202, 'Bnei Brak', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21203, 'Even Yehuda', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21204, 'Fureidis', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21205, 'Gat Rimon', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21206, 'Gedera', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21207, 'Givat Shmuel', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21208, 'Hibat Zion', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21209, 'Hod HaSharon', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21210, 'Hogar', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21211, 'Jaljulye', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21212, 'Jatt', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21213, 'Kafar Qasem', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21214, 'Kefar Sava', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21215, 'Kefar Yona', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21216, 'Kfar Saba', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21217, 'Kiryag Bialik', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21218, 'Lod', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21219, 'Mazkeret Batya', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21220, 'Modi in', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21221, 'Nes Ziyyona', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21222, 'Ness Ziona', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21223, 'Netanya', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21224, 'Nordiya', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21225, 'Pardesiyya', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21226, 'Petakh Tiqwa', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21227, 'Qadima', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21228, 'Qalansawe', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21229, 'Qiryat Eqron', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21230, 'Ra anana', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21231, 'Ramla', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21232, 'Rehovot', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21233, 'Rekhovot', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21234, 'Rinnatya', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21235, 'Rishon LeZiyyon', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21236, 'Rosh HaAyin', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21237, 'Shoham', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21238, 'Tayibe', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21239, 'Tire', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21240, 'Tsur Igal', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21241, 'Udim', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21242, 'Yavne', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21243, 'Yehud', 1754, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21244, ' Afula', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21245, ' Akko', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21246, ' Arrabe', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21247, ' Ein Mahel', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21248, ' Ilut', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21249, 'Abu Sinan', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21250, 'Basmat Tab un', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21251, 'Beit Jann', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21252, 'Bet She an', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21253, 'Bi ne', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21254, 'Bir-al-Maksur', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21255, 'Bu eine-Nujeidat', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21256, 'Dabburye', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21257, 'Dayr Hannah', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21258, 'Dayr-al-Asad', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21259, 'Hazor HaGelilit', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21260, 'I billin', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21261, 'Iksal', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(21262, 'Judeide-Maker', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21263, 'Kabul', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21264, 'Kafar Kanna', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21265, 'Kafar Manda', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21266, 'Kafar Yasif', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21267, 'Karmiel', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21268, 'Kisra-Sumei', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21269, 'Ma alot Tarshikha', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21270, 'Majd-al-Kurum', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21271, 'Migdal Ha Emeq', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21272, 'Mugar', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21273, 'Nahariyya', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21274, 'Nahef', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21275, 'Nazerat', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21276, 'Nazerat Illit', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21277, 'Qiryat Shemona', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21278, 'Qiryat Tiv on', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21279, 'Rame', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21280, 'Reine', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21281, 'Sakhnin', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21282, 'Shefar am', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21283, 'Tamra', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21284, 'Tiberias', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21285, 'Tur an', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21286, 'Yirka', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21287, 'Yoqne am Illit', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21288, 'Zefat', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21289, 'Zur Yigal', 1755, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21290, 'Sgula', 1757, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21291, 'Jerusalem', 1758, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21292, ' Ar ara', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21293, ' Isifya', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21294, 'Baqa al-Gharbiyyah', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21295, 'Binyamina', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21296, 'Daliyat-al-Karmil', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21297, 'Jizr-az-Zarqa', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21298, 'Khadera', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21299, 'Khefa', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21300, 'Nesher', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21301, 'Or Aqiva', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21302, 'Pardes Khanna-Karkur', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21303, 'Qiryat Atta', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21304, 'Qiryat Bialik', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21305, 'Qiryat Motzkin', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21306, 'Qiryat Yam', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21307, 'Rekhasim', 1759, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, 1), -(21308, 'Tirat Karmel', 1759, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21309, 'Umm-al-Fahm', 1759, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21310, 'Zikhron Ya aqov', 1759, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21311, 'Qalqilya', 1762, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21312, 'Hadera', 1765, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21313, 'Bet Shemesh', 1767, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21314, 'Mevasserat Ziyyon', 1767, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21315, 'Yerushalayim', 1767, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21316, 'Meta', 1768, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21317, 'Miano', 1768, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21318, 'Alba Adriatica', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21319, 'Atessa', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21320, 'Atri', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21321, 'Avezzano', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21322, 'Celano', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21323, 'Cepagatti', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21324, 'Chieti', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21325, 'Citta Sant Angelo', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21326, 'Francavilla al Mare', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21327, 'Giulianova', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21328, 'Guardiagrele', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21329, 'L Aquila', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21330, 'Lanciano', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21331, 'Martinsicuro', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21332, 'Montesilvano', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21333, 'Montorio al Vomano', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21334, 'Mosciano Sant Angelo', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21335, 'Ortona', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21336, 'Penne', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21337, 'Pescara', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21338, 'Pineto', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21339, 'Roseto degli Abruzzi', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21340, 'San Giovanni Teatino', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21341, 'San Salvo', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21342, 'Sant Egidio alla Vibrata', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21343, 'Silvi', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21344, 'Spoltore', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21345, 'Sulmona', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21346, 'Teramo', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21347, 'Vasto', 1769, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21348, 'Agrigento', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21349, 'Alessandria della Rocca', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21350, 'Aragona', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21351, 'Bivona', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21352, 'Burgio', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21353, 'Calamonaci', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21354, 'Caltabellotta', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21355, 'Camastra', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21356, 'Cammarata', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21357, 'Campobello di Licata', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21358, 'Canicattì', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21359, 'Casteltermini', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21360, 'Castrofilippo', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21361, 'Cattolica Eraclea', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21362, 'Cianciana', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21363, 'Comitini', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21364, 'Favara', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21365, 'Grotte', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21366, 'Joppolo Giancaxio', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21367, 'Lampedusa e Linosa', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21368, 'Licata', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21369, 'Lucca Sicula', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21370, 'Menfi', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21371, 'Montallegro', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21372, 'Montevago', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21373, 'Naro', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21374, 'Palma di Montechiaro', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21375, 'Porto Empedocle', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21376, 'Racalmuto', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21377, 'Raffadali', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21378, 'Ravanusa', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21379, 'Realmonte', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21380, 'Ribera', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21381, 'Sambuca di Sicilia', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21382, 'San Biagio Platani', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21383, 'San Giovanni Gemini', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21384, 'Sant Angelo Muxaro', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21385, 'Santa Elisabetta', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21386, 'Santa Margherita di Belice', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21387, 'Santo Stefano Quisquina', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21388, 'Sciacca', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21389, 'Siculiana', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21390, 'Villafranca Sicula', 1770, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21391, 'Castellazzo Bormida', 1771, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21392, 'Gavi', 1771, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, 1), -(21393, 'Villanova Monferrato', 1771, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21394, 'Camerano', 1772, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21395, 'Castelplanio', 1772, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21396, 'Capolona', 1773, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21397, 'Montevarchi', 1773, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21398, 'Subbiano', 1773, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21399, 'Buttigliera d Asti', 1775, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21400, 'Flumeri', 1776, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21401, 'Nusco', 1776, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21402, 'Prata di Principato Ultra', 1776, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21403, 'Villanova del Battista', 1776, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21404, 'Avigliano', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21405, 'Bernalda', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21406, 'Ferrandina', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21407, 'Lauria', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21408, 'Lavello', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21409, 'Matera', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21410, 'Montescaglioso', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21411, 'Pisticci', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21412, 'Policoro', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21413, 'Potenza', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21414, 'Rionero in Vulture', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21415, 'Venosa', 1778, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21416, 'Belluno', 1779, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21417, 'D alpago', 1779, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21418, 'Longarone', 1779, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21419, 'Pedavena', 1779, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21420, 'San Bartolomeo', 1780, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21421, '', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21422, 'Bagnatica', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21423, 'Bergamo', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21424, 'Bolgare', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21425, 'Bottanuco', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21426, 'Brignano Gera d Adda', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21427, 'Calcio', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21428, 'Caravaggio', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21429, 'Chiuduno', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21430, 'Ciserano', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21431, 'Comun Nuovo', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21432, 'Costa di Mezzate', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21433, 'Gandino', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21434, 'Grassobbio', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21435, 'Grumello Del Monte', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21436, 'Lallio', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21437, 'Levate', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21438, 'Lurano', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21439, 'Mapello', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21440, 'Pagazzano', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21441, 'Ponteranica', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21442, 'Pontida', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21443, 'Sant Omobono Imagna', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21444, 'Torre Pallavicina', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21445, 'Trescore Balneario', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21446, 'Verdellino', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21447, 'Zingonia', 1781, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21448, 'Camburzano', 1782, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21449, 'Crevacuore', 1782, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21450, 'Gaglianico', 1782, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21451, 'Sandigliano', 1782, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21452, 'Vigliano Biellese', 1782, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21453, 'Anzola dell Emilia', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21454, 'Bologna', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21455, 'Borgo Tossignano', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21456, 'Casalfiumanese', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21457, 'Castiglione Dei Pepoli ', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21458, 'Funo', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21459, 'Loiano', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21460, 'Monterenzio', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21461, 'Osteria Grande', 1783, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21462, 'Frangarto', 1784, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21463, 'Agnosine', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21464, 'Brescia', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21465, 'Capriano del Colle', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21466, 'Capriolo', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21467, 'Castegnato', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21468, 'Castelcovati', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21469, 'Cellatica', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21470, 'Coccaglio', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21471, 'Comezzano-Cizzago', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21472, 'Erbusco', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21473, 'Flero', 1785, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, 1), -(21474, 'Lavenone', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21475, 'Longhena', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21476, 'Maclodio', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21477, 'Muscoline', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21478, 'Padenghe sul Garda', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21479, 'Paderno Franciacorta', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21480, 'Paratico', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21481, 'Passirano', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21482, 'Polaveno', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21483, 'Poncarale', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21484, 'Prevalle', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21485, 'Provaglio dIseo', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21486, 'Roncadelle', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21487, 'Verolavecchia', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21488, 'Visano', 1785, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21489, 'San Donaci', 1786, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21490, 'Acri', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21491, 'Amantea', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21492, 'Bagnara Calabra', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21493, 'Belvedere Marittimo', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21494, 'Bisignano', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21495, 'Bovalino', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21496, 'Cariati', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21497, 'Cassano allo Ionio', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21498, 'Castrolibero', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21499, 'Castrovillari', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21500, 'Catanzaro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21501, 'Cetraro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21502, 'Ciro Marina', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21503, 'Cittanova', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21504, 'Corigliano Calabro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21505, 'Cosenza', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21506, 'Crosia', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21507, 'Crotone', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21508, 'Cutro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21509, 'Fuscaldo', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21510, 'Gioia Tauro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21511, 'Isola di Capo Rizzuto', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21512, 'Lamezia Terme', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21513, 'Locri', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21514, 'Luzzi', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21515, 'Melito di Porto Salvo', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21516, 'Mendicino', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21517, 'Montalto Uffugo', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21518, 'Palmi', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21519, 'Paola', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21520, 'Petilia Policastro', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21521, 'Pizzo', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21522, 'Polistena', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21523, 'Reggio di Calabria', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21524, 'Rende', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21525, 'Rosarno', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21526, 'Rossano', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21527, 'San Giovanni in Fiore', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21528, 'Scalea', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21529, 'Sellia Marina', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21530, 'Siderno', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21531, 'Soverato', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21532, 'Taurianova', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21533, 'Trebisacce', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21534, 'Vibo Valentia', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21535, 'Villa San Giovanni', 1787, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21536, 'Acerra', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21537, 'Afragola', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21538, 'Agropoli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21539, 'Angri', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21540, 'Ariano Irpino', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21541, 'Arzano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21542, 'Atripalda', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21543, 'Avellino', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21544, 'Aversa', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21545, 'Bacoli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21546, 'Barano d Ischia', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21547, 'Baronissi', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21548, 'Battipaglia', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21549, 'Bellizzi', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21550, 'Benevento', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21551, 'Boscoreale', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21552, 'Boscotrecase', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21553, 'Brusciano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21554, 'Caivano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21555, 'Calvizzano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21556, 'Campagna', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21557, 'Capaccio', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21558, 'Capua', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21559, 'Cardito', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21560, 'Carinola', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21561, 'Casagiove', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21562, 'Casal di Principe', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21563, 'Casalnuovo di Napoli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21564, 'Casaluce', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21565, 'Casandrino', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21566, 'Casavatore', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21567, 'Caserta', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21568, 'Casoria', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21569, 'Castel San Giorgio', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21570, 'Castel Volturno', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21571, 'Castellammare di Stabia', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21572, 'Cava de Tirreni', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21573, 'Cercola', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21574, 'Cervinara', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21575, 'Cicciano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21576, 'Crispano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21577, 'Eboli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21578, 'Ercolano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21579, 'Fisciano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21580, 'Forio', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21581, 'Frattamaggiore', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21582, 'Frattaminore', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21583, 'Frignano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21584, 'Giffoni Valle Piana', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21585, 'Giugliano in Campania', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21586, 'Gragnano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21587, 'Gricignano di Aversa', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21588, 'Grottaminarda', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21589, 'Grumo Nevano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21590, 'Ischia', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21591, 'Lusciano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21592, 'Macerata Campania', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21593, 'Maddaloni', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21594, 'Marano di Napoli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21595, 'Marcianise', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21596, 'Marigliano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21597, 'Massa Lubrense', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21598, 'Melito di Napoli', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21599, 'Mercato San Severino', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21600, 'Mercogliano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21601, 'Mirabella Eclano', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21602, 'Mondragone', 1788, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, 1), -(21603, 'Monte di Procida', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21604, 'Montecorvino Rovella', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21605, 'Monteforte Irpino', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21606, 'Montesarchio', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21607, 'Montoro Inferiore', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21608, 'Mugnano di Napoli', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21609, 'Naples', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21610, 'Napoli', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21611, 'Nocera Inferiore', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21612, 'Nocera Superiore', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21613, 'Orta di Atella', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21614, 'Ottaviano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21615, 'Pagani', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21616, 'Palma Campania', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21617, 'Parete', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21618, 'Pellezzano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21619, 'Piano di Sorrento', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21620, 'Piedimonte Matese', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21621, 'Poggiomarino', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21622, 'Pollena Trocchia', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21623, 'Pomigliano d Arco', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21624, 'Pompei', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21625, 'Pontecagnano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21626, 'Portici', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21627, 'Positano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21628, 'Pozzuoli', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21629, 'Procida', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21630, 'Qualiano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21631, 'Quarto', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21632, 'Roccapiemonte', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21633, 'Sala Consilina', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21634, 'Salerno', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21635, 'San Cipriano d Aversa', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21636, 'San Felice a Cancello', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21637, 'San Gennaro Vesuviano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21638, 'San Giorgio a Cremano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21639, 'San Giorgio del Sannio', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21640, 'San Giuseppe Vesuviano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21641, 'San Marcellino', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21642, 'San Marzano sul Sarno', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21643, 'San Nicola', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21644, 'San Prisco', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21645, 'San Sebastiano al Vesuvio', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21646, 'San Valentino Torio', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21647, 'Sant Antimo', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21648, 'Sant Agata de Goti', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21649, 'Sant Agnello', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21650, 'Sant Anastasia', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21651, 'Sant Antonio Abate', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21652, 'Sant Arpino', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21653, 'Sant Egidio del Monte Albino', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21654, 'Santa Maria Capua Vetere', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21655, 'Santa Maria a Vico', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21656, 'Santa Maria la Carita', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21657, 'Sarno', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21658, 'Saviano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21659, 'Scafati', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21660, 'Sessa Aurunca', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21661, 'Siano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21662, 'Solofra', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21663, 'Somma Vesuviana', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21664, 'Sorrento', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21665, 'Teano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21666, 'Teggiano', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21667, 'Terzigno', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21668, 'Teverola', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21669, 'Torre Annunziata', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21670, 'Torre del Greco', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21671, 'Trecase', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21672, 'Trentola-Ducenta', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21673, 'Vallo della Lucania', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21674, 'Vico Equense', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21675, 'Vietri sul Mare', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21676, 'Villa Literno', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21677, 'Villaricca', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21678, 'Volla', 1788, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21679, 'Cartoceto', 1789, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21680, 'Carinaro', 1790, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21681, 'San Marco Evangelista', 1790, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21682, 'Fiandaca Di Acireale', 1791, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21683, 'San Cono', 1791, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21684, 'Altino', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21685, 'Archi', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21686, 'Ari', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21687, 'Arielli', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21688, 'Bomba', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21689, 'Borrello', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21690, 'Bucchianico', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21691, 'Canosa Sannita', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21692, 'Carpineto Sinello', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21693, 'Carunchio', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21694, 'Casacanditella', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21695, 'Casalanguida', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21696, 'Casalbordino', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21697, 'Casalincontrada', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21698, 'Casoli', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21699, 'Castel Frentano', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21700, 'Castelguidone', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21701, 'Castiglione Messer Marino', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21702, 'Celenza sul Trigno', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21703, 'Civitaluparella', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21704, 'Civitella Messer Raimondo', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21705, 'Colledimacine', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21706, 'Colledimezzo', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21707, 'Crecchio', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21708, 'Cupello', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21709, 'Dogliola', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21710, 'Fallo', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21711, 'Fara Filiorum Petri', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21712, 'Fara San Martino', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21713, 'Filetto', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21714, 'Fossacesia', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21715, 'Fraine', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21716, 'Fresagrandinaria', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21717, 'Frisa', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21718, 'Furci', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21719, 'Gamberale', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21720, 'Gessopalena', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21721, 'Gissi', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21722, 'Giuliano Teatino', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21723, 'Guilmi', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21724, 'Lama dei Peligni', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21725, 'Lentella', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21726, 'Lettopalena', 1792, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, 1), -(21727, 'Liscia', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21728, 'Miglianico', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21729, 'Montazzoli', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21730, 'Montebello sul Sangro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21731, 'Monteferrante', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21732, 'Montelapiano', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21733, 'Montenerodomo', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21734, 'Monteodorisio', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21735, 'Mozzagrogna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21736, 'Orsogna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21737, 'Paglieta', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21738, 'Palena', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21739, 'Palmoli', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21740, 'Palombaro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21741, 'Pennadomo', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21742, 'Pennapiedimonte', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21743, 'Perano', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21744, 'Pietraferrazzana', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21745, 'Pizzoferrato', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21746, 'Poggiofiorito', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21747, 'Pollutri', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21748, 'Pretoro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21749, 'Quadri', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21750, 'Rapino', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21751, 'Ripa Teatina', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21752, 'Rocca San Giovanni', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21753, 'Roccamontepiano', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21754, 'Roccascalegna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21755, 'Roccaspinalveti', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21756, 'Roio del Sangro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21757, 'Rosello', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21758, 'San Buono', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21759, 'San Giovanni Lipioni', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21760, 'San Martino sulla Marrucina', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21761, 'San Vito Chietino', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21762, 'Sant Eusanio del Sangro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21763, 'Santa Maria Imbaro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21764, 'Scerni', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21765, 'Schiavi di Abruzzo', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21766, 'Taranta Peligna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21767, 'Tollo', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21768, 'Torino di Sangro', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21769, 'Tornareccio', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21770, 'Torrebruna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21771, 'Torrevecchia Teatina', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21772, 'Torricella Peligna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21773, 'Treglio', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21774, 'Tufillo', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21775, 'Vacri', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21776, 'Villa Santa Maria', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21777, 'Villalfonsina', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21778, 'Villamagna', 1792, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21779, 'Albavilla', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21780, 'Cadorago', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21781, 'Carimate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21782, 'Castelmarte', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21783, 'Cavaria', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21784, 'Cernobbio', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21785, 'Comocrea', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21786, 'Dongo', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21787, 'Gironico', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21788, 'Grandate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21789, 'Lurago dErba', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21790, 'Mozzate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21791, 'Novedrate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21792, 'Orsenigo', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21793, 'Turate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21794, 'Uggiate', 1793, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21795, 'Corso del Tirreno', 1794, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21796, 'Mangone', 1794, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21797, 'Casalbuttano', 1795, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21798, 'Casalmaggiore', 1795, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21799, 'Castelverde', 1795, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21800, 'Madignano', 1795, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21801, 'Pieve San Giacomo', 1795, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21802, 'Bandito', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21803, 'Bra', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21804, 'Casalgrasso', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21805, 'Cossano Belbo', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21806, 'Magliano Alpi', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21807, 'Mondovi', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21808, 'Roddi', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21809, 'Santa Vittoria d Alba', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21810, 'Verduno', 1796, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21811, 'Alfonsine', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21812, 'Argelato', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21813, 'Argenta', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21814, 'Bagnacavallo', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21815, 'Bagnolo in Piano', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21816, 'Bellaria-Igea Marina', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21817, 'Bertinoro', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21818, 'Bondeno', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21819, 'Budrio', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21820, 'Calderara di Reno', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21821, 'Carpi', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21822, 'Casalecchio di Reno', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21823, 'Casalgrande', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21824, 'Castel Bolognese', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21825, 'Castel Maggiore', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21826, 'Castel San Giovanni', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21827, 'Castel San Pietro Terme', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21828, 'Castelfranco Emilia', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21829, 'Castellarano', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21830, 'Castelnovo ne Monti', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21831, 'Castelnuovo Rangone', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21832, 'Castelvetro di Modena', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21833, 'Castenaso', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21834, 'Cattolica', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21835, 'Cavriago', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21836, 'Cento', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21837, 'Cervia', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21838, 'Cesena', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21839, 'Cesenatico', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21840, 'Codigoro', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21841, 'Collecchio', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21842, 'Comacchio', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21843, 'Concordia sulla Secchia', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21844, 'Conselice', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21845, 'Copparo', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21846, 'Coriano', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21847, 'Correggio', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21848, 'Crespellano', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21849, 'Crevalcore', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21850, 'Faenza', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21851, 'Ferrara', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21852, 'Fidenza', 1797, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, 1), -(21853, 'Finale Emilia', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21854, 'Fiorano Modenese', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21855, 'Fiorenzuola d Arda', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21856, 'Forli', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21857, 'Forlimpopoli', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21858, 'Formigine', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21859, 'Gambettola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21860, 'Granarolo dell Emilia', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(21861, 'Guastalla', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21862, 'Imola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21863, 'Langhirano', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21864, 'Lugo', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21865, 'Luzzara', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21866, 'Maranello', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21867, 'Massa Lombarda', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21868, 'Medesano', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21869, 'Medicina', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21870, 'Meldola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21871, 'Mirandola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21872, 'Misano Adriatico', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21873, 'Modena', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21874, 'Molinella', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21875, 'Monte San Pietro', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21876, 'Montecchio Emilia', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21877, 'Montechiarugolo', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21878, 'Noceto', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21879, 'Nonantola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21880, 'Novellara', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21881, 'Novi di Modena', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21882, 'Ozzano dell Emilia', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21883, 'Parma', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21884, 'Pavullo nel Frignano', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21885, 'Piacenza', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21886, 'Pianoro', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21887, 'Ponticino', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21888, 'Portomaggiore', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21889, 'Quattro Castella', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21890, 'Ravenna', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21891, 'Reggio nell Emilia', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21892, 'Reggiolo', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21893, 'Riccione', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21894, 'Rimini', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21895, 'Rottofreno', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21896, 'Rubiera', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21897, 'Russi', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21898, 'Salsomaggiore Terme', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21899, 'San Felice sul Panaro', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21900, 'San Giovanni in Persiceto', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21901, 'San Lazzaro di Savena', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21902, 'San Mauro Pascoli', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21903, 'San Pietro in Casale', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21904, 'Sant Ilario d Enza', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21905, 'Santarcangelo di Romagna', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21906, 'Sasso Marconi', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21907, 'Sassuolo', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21908, 'Savignano sul Panaro', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21909, 'Savignano sul Rubicone', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21910, 'Scandiano', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21911, 'Soliera', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21912, 'Sorbolo', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21913, 'Spilamberto', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21914, 'Verucchio', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21915, 'Vignola', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21916, 'Zola Predosa', 1797, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21917, 'Saint Agostino', 1798, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21918, 'Capalle', 1799, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21919, 'Firenze', 1799, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21920, 'Pelago', 1799, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21921, 'San Donnino', 1799, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21922, 'Scarperia', 1799, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21923, 'Scandicci', 1800, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21924, 'Sesto Fiorentino', 1800, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21925, 'Casalvieri', 1803, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21926, 'Frosinone', 1803, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21927, 'Sgurgola', 1803, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21928, 'Genoa', 1804, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21929, 'Moneglia', 1804, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21930, 'Romans d Isonzo', 1805, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21931, 'Savogna d Isonzo', 1805, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21932, 'Magliano de Marsi', 1806, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, 1), -(21933, 'Alatri', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21934, 'Albano Laziale', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21935, 'Anagni', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21936, 'Anguillara Sabazia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21937, 'Anzio', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21938, 'Aprilia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21939, 'Ardea', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21940, 'Ariccia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21941, 'Artena', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21942, 'Boville Ernica', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21943, 'Bracciano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21944, 'Campagnano di Roma', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21945, 'Cassino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21946, 'Cave', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21947, 'Ceccano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21948, 'Ceprano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21949, 'Cerveteri', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21950, 'Ciampino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21951, 'Cisterna', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21952, 'Civita Castellana', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21953, 'Civitavecchia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21954, 'Colleferro', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21955, 'Cori', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21956, 'Fara in Sabina', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21957, 'Ferentino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21958, 'Fiano Romano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21959, 'Fiuggi', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21960, 'Fiumicino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21961, 'Fondi', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21962, 'Fonte Nuova', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21963, 'Formello', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21964, 'Formia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21965, 'Frascati', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21966, 'Gaeta', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21967, 'Genzano di Roma', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21968, 'Grottaferrata', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21969, 'Guidonia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21970, 'Isola del Liri', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21971, 'Itri', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21972, 'Ladispoli', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21973, 'Lanuvio', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21974, 'Lariano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21975, 'Latina', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21976, 'Marino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21977, 'Mentana', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21978, 'Minturno', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21979, 'Monte San Giovanni Campano', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21980, 'Montefiascone', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21981, 'Monterotondo', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21982, 'Nettuno', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21983, 'Palestrina', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21984, 'Palombara Sabina', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21985, 'Pomezia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21986, 'Pontecorvo', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21987, 'Pontinia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21988, 'Priverno', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21989, 'Rieti', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21990, 'Rocca Priora', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21991, 'Rocca di Papa', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21992, 'Rome', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21993, 'Sabaudia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21994, 'San Cesareo', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21995, 'Santa Marinella', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21996, 'Segni', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21997, 'Sezze', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21998, 'Soriano nel Cimino', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(21999, 'Subiaco', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22000, 'Tarquinia', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22001, 'Terracina', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22002, 'Tivoli', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22003, 'Valmontone', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22004, 'Velletri', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22005, 'Veroli', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22006, 'Vetralla', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22007, 'Zagarolo', 1807, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22008, 'Acquarica del Capo', 1808, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22009, 'Airuno', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22010, 'Bosisio Parini', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22011, 'Lecco', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22012, 'Margno', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22013, 'Osnago', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22014, 'Sirone', 1809, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22015, 'Alassio', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22016, 'Albenga', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22017, 'Albisola Superiore', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22018, 'Arcola', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22019, 'Arenzano', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22020, 'Bordighera', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22021, 'Borgonuovo', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22022, 'Cairo Montenotte', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22023, 'Chiavari', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22024, 'Cogoleto', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22025, 'Finale Ligure', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22026, 'Imperia', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22027, 'La Spezia', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22028, 'Lavagna', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22029, 'Lerici', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22030, 'Loano', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22031, 'Ortonovo', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22032, 'Pietra Ligure', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22033, 'Rapallo', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22034, 'Recco', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22035, 'San Remo', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22036, 'Santa Margherita Ligure', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22037, 'Santo Stefano di Magra', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22038, 'Sarzana', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22039, 'Savona', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22040, 'Sestri Levante', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22041, 'Taggia', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22042, 'Varazze', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22043, 'Ventimiglia', 1810, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22044, 'Somaglia', 1811, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22045, 'Abbiategrasso', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22046, 'Agrate Brianza', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22047, 'Albiate', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22048, 'Albino', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22049, 'Albizzate', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22050, 'Alzano Lombardo', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22051, 'Arcisate', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22052, 'Arconate', 1812, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, 1), -(22053, 'Arcore', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22054, 'Arese', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22055, 'Arluno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22056, 'Asola', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22057, 'Bagnolo Mella', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22058, 'Ballabio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22059, 'Bareggio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22060, 'Basiglio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22061, 'Bedizzole', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22062, 'Bernareggio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22063, 'Besana in Brianza', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22064, 'Besozzo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22065, 'Biassono', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22066, 'Bienate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22067, 'Bollate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22068, 'Botticino', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22069, 'Bovisio-Masciago', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22070, 'Brembilla', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22071, 'Bresso', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22072, 'Broni', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22073, 'Brugherio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22074, 'Buccinasco', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22075, 'Bussero', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22076, 'Busto Arsizio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22077, 'Busto Garolfo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22078, 'Cairate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22079, 'Calcinato', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22080, 'Calolziocorte', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22081, 'Calusco d Adda', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22082, 'Canegrate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22083, 'Cantu', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22084, 'Carate Brianza', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22085, 'Cardano al Campo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22086, 'Caronno Pertusella', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22087, 'Carpenedolo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22088, 'Carugate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22089, 'Carvico', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22090, 'Casalpusterlengo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22091, 'Casatenovo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22092, 'Casazza', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22093, 'Casnigo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22094, 'Cassano Magnago', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22095, 'Cassano d Adda', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22096, 'Cassina de Pecchi', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22097, 'Castano Primo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22098, 'Castel Goffredo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22099, 'Castel Mella', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22100, 'Castellanza', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22101, 'Castelleone', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22102, 'Castelli Calepio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22103, 'Castenedolo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22104, 'Castiglione delle Stiviere', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22105, 'Cazzago San Martino', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22106, 'Cene', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22107, 'Cermenate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22108, 'Cernusco sul Naviglio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22109, 'Cerro Maggiore', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22110, 'Cesano Boscone', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22111, 'Cesano Maderno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22112, 'Cesate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22113, 'Chiari', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22114, 'Cilavegna', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22115, 'Cinisello Balsamo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22116, 'Cislago', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22117, 'Clusone', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22118, 'Codogno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22119, 'Cologno Monzese', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22120, 'Cologno al Serio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22121, 'Como', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22122, 'Concesio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22123, 'Concorezzo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22124, 'Corbetta', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22125, 'Cormano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22126, 'Cornaredo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22127, 'Cornate d Adda', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22128, 'Corsico', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22129, 'Corte dei Cortesi', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22130, 'Costa Volpino', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22131, 'Crema', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22132, 'Cremona', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22133, 'Crocetta', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22134, 'Curtatone', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22135, 'Cusano Milanino', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22136, 'Dalmine', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22137, 'Darfo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22138, 'Desenzano del Garda', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22139, 'Desio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22140, 'Erba', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22141, 'Fagnano Olona', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22142, 'Fino Mornasco', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22143, 'Gaggiano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22144, 'Galbiate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22145, 'Gallarate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22146, 'Gambolo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22147, 'Garbagnate Milanese', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22148, 'Gardone Val Trompia', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22149, 'Garlasco', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22150, 'Gavardo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22151, 'Gavirate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22152, 'Gerenzano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22153, 'Ghedi', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22154, 'Giussano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22155, 'Goito', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22156, 'Gonzaga', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22157, 'Gorgonzola', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22158, 'Gussago', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22159, 'Gussola', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22160, 'Induno Olona', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22161, 'Inveruno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22162, 'Inzago', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22163, 'Iseo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22164, 'Isola Dovarese', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22165, 'Lacchiarella', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22166, 'Lainate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22167, 'Laveno-Mombello', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22168, 'Leffe', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22169, 'Legnano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22170, 'Leno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22171, 'Lentate sul Seveso', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22172, 'Limbiate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22173, 'Lissone', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22174, 'Locate di Triulzi', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22175, 'Lodi', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22176, 'Lomazzo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22177, 'Lonate Pozzolo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22178, 'Lonato', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22179, 'Luino', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22180, 'Lumezzane', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22181, 'Lurate Caccivio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22182, 'Magenta', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22183, 'Malnate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22184, 'Mandello del Lario', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22185, 'Manerbio', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22186, 'Mantova', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22187, 'Mariano Comense', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22188, 'Martinengo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22189, 'Mazzano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22190, 'Meda', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22191, 'Mediglia', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22192, 'Melegnano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22193, 'Melzo', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22194, 'Merate', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22195, 'Milano', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22196, 'Molteno', 1812, '2024-01-21 12:06:53', '2024-01-21 12:06:53', NULL, 1), -(22197, 'Montichiari', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22198, 'Monza', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22199, 'Morbegno', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22200, 'Mornago', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22201, 'Mortara', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22202, 'Muggio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22203, 'Nave', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22204, 'Nembro', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22205, 'Nerviano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22206, 'Nova Milanese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22207, 'Novate Milanese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22208, 'Olgiate Comasco', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22209, 'Olgiate Olona', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22210, 'Opera', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22211, 'Orzinuovi', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22212, 'Osio Sotto', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22213, 'Ospitaletto', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22214, 'Paderno Dugnano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22215, 'Palazzolo sull Oglio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22216, 'Pandino', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22217, 'Parabiago', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22218, 'Paullo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22219, 'Pavia', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22220, 'Pero', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22221, 'Peschiera Borromeo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22222, 'Pessano con Bornago', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22223, 'Pieve Emanuele', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22224, 'Pioltello', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22225, 'Ponte Nossa', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22226, 'Ponte San Pietro', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22227, 'Porto Mantovano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22228, 'Pozzolengo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22229, 'Rescaldina', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22230, 'Rezzato', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22231, 'Rho', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22232, 'Rivarolo Mantovano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22233, 'Rodano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22234, 'Romano di Lombardia', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22235, 'Rovato', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22236, 'Rozzano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22237, 'Saletto', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22238, 'Samarate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22239, 'San Donato Milanese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22240, 'San Giuliano Milanese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22241, 'Sant Angelo Lodigiano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22242, 'Sarezzo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22243, 'Saronno', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22244, 'Scanzorosciate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22245, 'Sedriano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22246, 'Segrate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22247, 'Senago', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22248, 'Seregno', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22249, 'Seriate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22250, 'Sesto Calende', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22251, 'Sesto San Giovanni', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22252, 'Settimo Milanese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22253, 'Seveso', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22254, 'Sirmione', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22255, 'Solaro', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22256, 'Somma Lombardo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22257, 'Sondrio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22258, 'Soresina', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22259, 'Sorisole', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22260, 'Stezzano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22261, 'Stradella', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22262, 'Suzzara', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22263, 'Tirano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22264, 'Tornata', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22265, 'Tradate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22266, 'Travagliato', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22267, 'Treviglio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22268, 'Treviolo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22269, 'Trezzano sul Naviglio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22270, 'Trezzo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22271, 'Tromello', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22272, 'Uboldo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22273, 'Urgnano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22274, 'Usmate Velate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22275, 'Valmadrera', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22276, 'Varedo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22277, 'Varese', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22278, 'Verano Brianza', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22279, 'Vergiate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22280, 'Viadana', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22281, 'Vigevano', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22282, 'Vignate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22283, 'Villa Carcina', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22284, 'Villa Guardia', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22285, 'Villasanta', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22286, 'Vimercate', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22287, 'Vimodrone', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22288, 'Virgilio', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22289, 'Voghera', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22290, 'Zibido San Giacomo', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22291, 'Zogno', 1812, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22292, 'Barasso', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22293, 'Bolladello', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22294, 'Capergnanica', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22295, 'Costa Masnaga', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22296, 'Medolago', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22297, 'Nibionno', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22298, 'Sordio', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22299, 'Torre d Isola', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22300, 'Villongo', 1813, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22301, 'Colmurano', 1814, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22302, 'Monte San Giusto', 1814, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22303, 'Castel', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22304, 'Gazoldo', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22305, 'Marmirolo', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22306, 'Monzambano', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22307, 'Ostiglia', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22308, 'Pegognaga', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22309, 'Poggio Rusco', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22310, 'Quistello', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22311, 'Roverbella', 1815, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22312, 'Ancona', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22313, 'Ascoli Piceno', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22314, 'Barchi', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22315, 'Cagli', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22316, 'Castelfidardo', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22317, 'Chiaravalle', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22318, 'Cingoli', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22319, 'Civitanova Marche', 1816, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, 1), -(22320, 'Corridonia', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22321, 'Fabriano', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22322, 'Falconara Marittima', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22323, 'Fano', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22324, 'Fermo', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22325, 'Filottrano', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22326, 'Folignano', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22327, 'Fossombrone', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22328, 'Grottammare', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22329, 'Jesi', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22330, 'Loreto', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22331, 'Macerata', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22332, 'Matelica', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22333, 'Mondavio', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22334, 'Mondolfo', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22335, 'Montappone', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22336, 'Montecosaro', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22337, 'Montegranaro', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22338, 'Montemarciano', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22339, 'Monteprandone', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22340, 'Morrovalle', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22341, 'Osimo', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22342, 'Pesaro', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22343, 'Polverigi', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22344, 'Porto Recanati', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22345, 'Porto San Giorgio', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22346, 'Porto Sant Elpidio', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22347, 'Potenza Picena', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22348, 'Recanati', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22349, 'San Benedetto del Tronto', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22350, 'San Severino Marche', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22351, 'Sant Elpidio a Mare', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22352, 'Senigallia', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22353, 'Tolentino', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22354, 'Treia', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22355, 'Urbino', 1816, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22356, 'Cumiana', 1817, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22357, 'Giammoro', 1817, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22358, 'Assago', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22359, 'Burago Molgora', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22360, 'Cuggiono', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22361, 'Cusago', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22362, 'Foro Buonaparte', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22363, 'Gessate', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22364, 'Liscate', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22365, 'Noviglio', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22366, 'Passirana Di Rho', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22367, 'Pregnana Milane', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22368, 'Trezzo Sull adda', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22369, 'Tribiano', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22370, 'Vaprio d Adda', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22371, 'Vermezzo', 1818, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22372, 'Bomporto', 1819, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22373, 'Campogalliano', 1819, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22374, 'Cavezzo', 1819, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22375, 'Medolla', 1819, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22376, 'San Possidonio', 1819, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22377, 'Bojano', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22378, 'Campobasso', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22379, 'Cantalupo', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22380, 'Isernia', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22381, 'Termoli', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22382, 'Venafro', 1820, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22383, 'Forio d Ischia', 1824, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22384, 'Bogogno', 1825, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22385, 'Invorio', 1825, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22386, 'Pombia', 1825, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22387, 'Bagnoli di Sopra', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22388, 'Bovolenta', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22389, 'Casale Di Scodosia', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22390, 'Cervarese Santa Croce', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22391, 'Fontaniva', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22392, 'Galliera Veneta', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22393, 'Legnaro', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22394, 'Limena', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22395, 'Loreggia', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22396, 'Massanzago', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22397, 'Onara', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22398, 'Ponso', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22399, 'Portogallo', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22400, 'Tribano', 1826, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22401, 'Baganzola', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22402, 'Busseto', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22403, 'Casale Di Mezzani', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22404, 'Fontevivo', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22405, 'Solignano', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22406, 'Torrile', 1827, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, 1), -(22407, 'Codevilla', 1828, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22408, 'Marcignago', 1828, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22409, 'Siziano', 1828, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22410, 'Pianello', 1829, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22411, 'Ponte Felcino', 1829, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22412, 'Zanica', 1829, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22413, 'Gradara', 1830, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22414, 'Monte Porzio', 1830, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22415, 'Pergola', 1830, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22416, 'Tavullia', 1830, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22417, 'Alseno', 1831, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22418, 'Gossolengo', 1831, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22419, 'Vigolzone', 1831, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22420, 'Armeno', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22421, 'Bergamasco', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22422, 'Caselette', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22423, 'Rosta', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22424, 'San Damiano', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22425, 'Spinetta Marengo', 1832, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22426, 'Acqui Terme', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22427, 'Alba', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22428, 'Alessandria', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22429, 'Alpignano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22430, 'Andezeno', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22431, 'Andonno', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22432, 'Arona', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22433, 'Asti', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22434, 'Avigliana', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22435, 'Baveno', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22436, 'Beinasco', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22437, 'Bellinzago Novarese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22438, 'Biella', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22439, 'Borgaro Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22440, 'Borgo San Dalmazzo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22441, 'Borgomanero', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22442, 'Borgosesia', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22443, 'Boves', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22444, 'Busca', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22445, 'Cameri', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22446, 'Canelli', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22447, 'Carignano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22448, 'Carmagnola', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22449, 'Casale Monferrato', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22450, 'Caselle Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22451, 'Castellamonte', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22452, 'Castelletto sopra Ticino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22453, 'Chieri', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22454, 'Chivasso', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22455, 'Cirie', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22456, 'Collegno', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22457, 'Cossato', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22458, 'Cuneo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22459, 'Cuorgne', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22460, 'Domodossola', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22461, 'Druento', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22462, 'Fossano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22463, 'Galliate', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22464, 'Gassino Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22465, 'Gattinara', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22466, 'Giaveno', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22467, 'Grugliasco', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22468, 'Ivrea', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(22469, 'Leini', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22470, 'Lusigliè', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22471, 'Marano Ticino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22472, 'Mergozzo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22473, 'Moncalieri', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22474, 'Mongrando', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22475, 'Nichelino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22476, 'Nizza Monferrato', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22477, 'Novara', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22478, 'Novi Ligure', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22479, 'Oleggio', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22480, 'Omegna', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22481, 'Orbassano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22482, 'Ovada', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22483, 'Pianezza', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22484, 'Pinerolo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22485, 'Pino Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22486, 'Piossasco', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22487, 'Poirino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22488, 'Racconigi', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22489, 'Rivalta di Torino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22490, 'Rivarolo Canavese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22491, 'Rivoli', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22492, 'Saluzzo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22493, 'San Maurizio', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22494, 'San Mauro Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22495, 'Santena', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22496, 'Santhia', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22497, 'Savigliano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22498, 'Settimo Torinese', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22499, 'Torino', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22500, 'Tortona', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22501, 'Trecate', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22502, 'Trofarello', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22503, 'Valduggia', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22504, 'Valenza', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22505, 'Venaria Reale', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22506, 'Verbania', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22507, 'Vercelli', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22508, 'Vinovo', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22509, 'Volpiano', 1833, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22510, 'Perignano', 1834, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22511, 'Ponte a Egola', 1834, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, 1), -(22512, 'San Quirino', 1835, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22513, 'Latronico', 1836, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22514, 'Acquaviva delle Fonti', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22515, 'Adelfia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22516, 'Alberobello', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22517, 'Altamura', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22518, 'Andria', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22519, 'Apricena', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22520, 'Aradeo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22521, 'Barletta', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22522, 'Bisceglie', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22523, 'Bitetto', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22524, 'Bitonto', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22525, 'Bitritto', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22526, 'Brindisi', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22527, 'Campi Salentina', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22528, 'Canosa di Puglia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22529, 'Capurso', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22530, 'Carmiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22531, 'Carovigno', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22532, 'Casamassima', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22533, 'Casarano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22534, 'Cassano delle Murge', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22535, 'Castellana Grotte', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22536, 'Castellaneta', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22537, 'Cavallino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22538, 'Ceglie Messapica', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22539, 'Cerignola', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22540, 'Cisternino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22541, 'Conversano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22542, 'Copertino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22543, 'Corato', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22544, 'Crispiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22545, 'Cutrofiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22546, 'Erchie', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22547, 'Fasano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22548, 'Foggia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22549, 'Francavilla Fontana', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22550, 'Galatina', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22551, 'Galatone', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22552, 'Gallipoli', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22553, 'Ginosa', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22554, 'Gioia del Colle', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22555, 'Giovinazzo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22556, 'Gravina in Puglia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22557, 'Grottaglie', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22558, 'Grumo Appula', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22559, 'Laterza', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22560, 'Latiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22561, 'Lecce', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22562, 'Leverano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22563, 'Lizzanello', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22564, 'Lizzano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22565, 'Locorotondo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22566, 'Lucera', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22567, 'Maglie', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22568, 'Manduria', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22569, 'Manfredonia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22570, 'Margherita di Savoia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22571, 'Martano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22572, 'Martina Franca', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22573, 'Massafra', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22574, 'Matino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22575, 'Melendugno', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22576, 'Mesagne', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22577, 'Minervino Murge', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22578, 'Modugno', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22579, 'Mola di Bari', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22580, 'Molfetta', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22581, 'Monopoli', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22582, 'Monte Sant Angelo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22583, 'Monteroni di Lecce', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22584, 'Mottola', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22585, 'Nardo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22586, 'Neviano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22587, 'Noci', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22588, 'Noicattaro', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22589, 'Novoli', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22590, 'Oria', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22591, 'Orta Nova', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22592, 'Ostuni', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22593, 'Palagiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22594, 'Palo del Colle', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22595, 'Parabita', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22596, 'Polignano a Mare', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22597, 'Pulsano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22598, 'Putignano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22599, 'Racale', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22600, 'Ruffano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22601, 'Rutigliano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22602, 'Ruvo di Puglia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22603, 'Salice Salentino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22604, 'San Ferdinando di Puglia', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22605, 'San Giorgio Ionico', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22606, 'San Giovanni Rotondo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22607, 'San Marco in Lamis', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22608, 'San Marzano di San Giuseppe', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22609, 'San Nicandro Garganico', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22610, 'San Pancrazio Salentino', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22611, 'San Pietro Vernotico', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22612, 'San Severo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22613, 'San Vito dei Normanni', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22614, 'Sannicandro di Bari', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22615, 'Santeramo in Colle', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22616, 'Sava', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22617, 'Squinzano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22618, 'Statte', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22619, 'Surbo', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22620, 'Taranto', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22621, 'Taurisano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22622, 'Taviano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22623, 'Terlizzi', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22624, 'Toritto', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22625, 'Torre Santa Susanna', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22626, 'Torremaggiore', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22627, 'Trani', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22628, 'Trepuzzi', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22629, 'Tricase', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22630, 'Triggiano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22631, 'Trinitapoli', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22632, 'Ugento', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22633, 'Valenzano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22634, 'Veglie', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22635, 'Vico del Gargano', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22636, 'Vieste', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22637, 'Villa Castelli', 1837, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, 1), -(22638, 'San Giovanni in Marignano', 1839, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22639, 'Torriana', 1839, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22640, 'Atena Lucana', 1841, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22641, 'Giungano', 1841, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22642, 'Omignano', 1841, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22643, 'Alghero', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22644, 'Arzachena', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22645, 'Assemini', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22646, 'Cabras', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22647, 'Cagliari', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22648, 'Capoterra', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22649, 'Carbonia', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22650, 'Dorgali', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22651, 'Guspini', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22652, 'Iglesias', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22653, 'Ittiri', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22654, 'La Maddalena', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22655, 'Macomer', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22656, 'Monserrato', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22657, 'Nuoro', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22658, 'Olbia', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22659, 'Oristano', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22660, 'Ozieri', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22661, 'Porto Torres', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22662, 'Quartu Sant Elena', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22663, 'Quartucciu', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22664, 'San Gavino Monreale', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22665, 'Sanluri', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22666, 'Sant Antioco', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22667, 'Sassari', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22668, 'Selargius', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22669, 'Serramanna', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22670, 'Sestu', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22671, 'Siniscola', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22672, 'Sinnai', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22673, 'Sorso', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22674, 'Tempio Pausania', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22675, 'Terralba', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22676, 'Tortoli', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22677, 'Villacidro', 1842, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22678, 'Nule', 1843, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22679, 'Altare', 1844, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22680, 'Aci Castello', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22681, 'Aci Catena', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22682, 'Aci Sant Antonio', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22683, 'Acireale', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22684, 'Adrano', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22685, 'Agira', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22686, 'Alcamo', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22687, 'Altofonte', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22688, 'Augusta', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22689, 'Avola', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22690, 'Bagheria', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22691, 'Barcellona', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22692, 'Barrafranca', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22693, 'Belmonte Mezzagno', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22694, 'Belpasso', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22695, 'Biancavilla', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22696, 'Bronte', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22697, 'Caccamo', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22698, 'Caltagirone', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22699, 'Caltanissetta', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22700, 'Campobello di Mazara', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22701, 'Canicatti', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22702, 'Capaci', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22703, 'Capo d Orlando', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22704, 'Carini', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22705, 'Carlentini', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22706, 'Castelbuono', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22707, 'Casteldaccia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22708, 'Castellammare del Golfo', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22709, 'Castelvetrano', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22710, 'Catania', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22711, 'Catenanuova', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22712, 'Cefalu', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22713, 'Chiaramonte Gulfi', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22714, 'Cinisi', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22715, 'Comiso', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22716, 'Corleone', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22717, 'Enna', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22718, 'Erice', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22719, 'Ficarazzi', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22720, 'Fiumefreddo di Sicilia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22721, 'Floridia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22722, 'Francofonte', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22723, 'Gela', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22724, 'Giardini-Naxos', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22725, 'Giarre', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22726, 'Grammichele', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22727, 'Gravina di Catania', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22728, 'Ispica', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22729, 'Lentini', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22730, 'Leonforte', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22731, 'Lipari', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22732, 'Marsala', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22733, 'Mascali', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22734, 'Mascalucia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22735, 'Mazara del Vallo', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22736, 'Mazzarino', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22737, 'Melilli', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22738, 'Messina', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22739, 'Milazzo', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22740, 'Militello in Val di Catania', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22741, 'Misilmeri', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22742, 'Misterbianco', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22743, 'Modica', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22744, 'Monreale', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22745, 'Motta Sant Anastasia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22746, 'Mussomeli', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22747, 'Nicosia', 1845, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, 1), -(22748, 'Niscemi', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22749, 'Noto', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22750, 'Paceco', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22751, 'Pachino', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22752, 'Palagonia', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22753, 'Palazzolo Acreide', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22754, 'Partanna', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22755, 'Partinico', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22756, 'Paterno', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22757, 'Pedara', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22758, 'Piazza Armerina', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22759, 'Pozzallo', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22760, 'Priolo Gargallo', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22761, 'Ragusa', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22762, 'Ramacca', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22763, 'Randazzo', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22764, 'Riesi', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22765, 'Riposto', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22766, 'Rosolini', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22767, 'Salemi', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22768, 'San Cataldo', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22769, 'San Giovanni la Punta', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22770, 'San Giuseppe Jato', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22771, 'San Gregorio di Catania', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22772, 'Sant Agata di Militello', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22773, 'Sant Agata li Battiati', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22774, 'Santa Croce Camerina', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22775, 'Santa Flavia', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22776, 'Santa Teresa di Riva', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22777, 'Scicli', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22778, 'Scordia', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22779, 'Siracusa', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22780, 'Sortino', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22781, 'Taormina', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22782, 'Termini Imerese', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22783, 'Terrasini', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22784, 'Trabia', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22785, 'Trapani', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22786, 'Trecastagni', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22787, 'Tremestieri Etneo', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22788, 'Troina', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22789, 'Valderice', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22790, 'Valguarnera Caropepe', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22791, 'Villabate', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22792, 'Villafranca Tirrena', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22793, 'Vittoria', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22794, 'Zafferana Etnea', 1845, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22795, 'Monteriggioni', 1846, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22796, 'Monteroni d Arbia', 1846, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22797, 'Delebio', 1847, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22798, 'Talamona', 1847, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22799, 'Faggiano', 1849, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22800, 'Riva del Garda', 1849, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22801, 'Castilenti', 1850, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22802, 'Controguerra', 1850, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22803, 'Bruino', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22804, 'Busano', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22805, 'Buttigliera Alta', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22806, 'Cavour', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22807, 'Colleretto Giacosa', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22808, 'Cuceglio', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22809, 'Mazze', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22810, 'Mercenasco', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22811, 'Piobesi', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22812, 'Robassomero', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22813, 'Scarmagno', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22814, 'Strambino', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22815, 'Turin', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22816, 'Villar Perosa', 1851, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22817, 'Agliana', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22818, 'Altopascio', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22819, 'Anghiari', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22820, 'Arezzo', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22821, 'Aulla', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22822, 'Bagno a Ripoli', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22823, 'Barberino di Mugello', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22824, 'Barga', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22825, 'Bibbiena', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22826, 'Borgo San Lorenzo', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22827, 'Bucine', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22828, 'Buggiano', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22829, 'Calcinaia', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22830, 'Calenzano', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22831, 'Camaiore', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22832, 'Campi Bisenzio', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22833, 'Campiglia Marittima', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22834, 'Capannori', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22835, 'Cappelle', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22836, 'Capraia', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22837, 'Carmignano', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22838, 'Carrara', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22839, 'Cascina', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22840, 'Castagneto Carducci', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22841, 'Castelfiorentino', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22842, 'Castelfranco di Sotto', 1852, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, 1), -(22843, 'Castiglion Fiorentino', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22844, 'Cecina', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22845, 'Cerreto Guidi', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22846, 'Certaldo', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22847, 'Chiesina Uzzanese', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22848, 'Chiusi', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22849, 'Civitella in Val di Chiana', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22850, 'Colle di Val d Elsa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22851, 'Collesalvetti', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22852, 'Cortona', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22853, 'Empoli', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22854, 'Fiesole', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22855, 'Figline Valdarno', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22856, 'Fivizzano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22857, 'Florence', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22858, 'Foiano della Chiana', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22859, 'Follonica', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22860, 'Forte dei Marmi', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22861, 'Fucecchio', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22862, 'Gavorrano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22863, 'Greve in Chianti', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22864, 'Grosseto', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22865, 'Impruneta', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22866, 'Lari', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22867, 'Lastra a Signa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22868, 'Livorno', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22869, 'Lucca', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22870, 'Massa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22871, 'Massa Marittima', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22872, 'Massarosa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22873, 'Monsummano Terme', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22874, 'Montale', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22875, 'Monte Argentario', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22876, 'Monte San Savino', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22877, 'Montecatini-Terme', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22878, 'Montelupo Fiorentino', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22879, 'Montemurlo', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22880, 'Montepulciano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22881, 'Montespertoli', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22882, 'Montignoso', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22883, 'Montopoli in Val d Arno', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22884, 'Orbetello', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22885, 'Pescia', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22886, 'Pietrasanta', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22887, 'Pieve a Nievole', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22888, 'Piombino', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22889, 'Pisa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22890, 'Pistoia', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22891, 'Poggibonsi', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22892, 'Poggio a Caiano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22893, 'Ponsacco', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22894, 'Pontassieve', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22895, 'Pontedera', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22896, 'Pontremoli', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22897, 'Portoferraio', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22898, 'Prato', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22899, 'Quarrata', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22900, 'Reggello', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22901, 'Rignano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22902, 'Roccastrada', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22903, 'Rosignano Marittimo', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22904, 'San Casciano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22905, 'San Giovanni Valdarno', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22906, 'San Giuliano Terme', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22907, 'San Miniato', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22908, 'Sansepolcro', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22909, 'Santa Croce sull Arno', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22910, 'Santa Maria a Monte', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22911, 'Seravezza', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22912, 'Serravalle Pistoiese', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22913, 'Siena', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22914, 'Signa', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22915, 'Sinalunga', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22916, 'Sovicille', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22917, 'Terranuova Bracciolini', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22918, 'Vaiano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22919, 'Vecchiano', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22920, 'Viareggio', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22921, 'Vinci', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22922, 'Volterra', 1852, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22923, 'Guarrato', 1853, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22924, ' San Giorgio', 1855, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22925, 'Dro', 1855, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22926, 'Asolo', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22927, 'Conegliano', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22928, 'Cordignano', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22929, 'Gaiarine', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22930, 'Ormelle', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22931, 'Possagno', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22932, 'Revine Lago', 1856, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22933, 'Basiliano', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22934, 'Bicinicco', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22935, 'Buttrio', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22936, 'Coseano', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22937, 'Pradamano', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22938, 'San Giovanni al Natisone', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22939, 'Torreano', 1857, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22940, 'Amelia', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22941, 'Assisi', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22942, 'Bastia Umbra', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22943, 'Castiglione del Lago', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22944, 'Citta di Castello', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22945, 'Corciano', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22946, 'Deruta', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22947, 'Foligno', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22948, 'Gualdo Tadino', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22949, 'Gubbio', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22950, 'Magione', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22951, 'Marsciano', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22952, 'Narni', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22953, 'Orvieto', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22954, 'Perugia', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22955, 'San Giustino', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22956, 'Spello', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22957, 'Spoleto', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22958, 'Terni', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22959, 'Todi', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22960, 'Umbertide', 1858, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, 1), -(22961, 'Arsago Seprio', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22962, 'Gazzada', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22963, 'Oggiona Con Santo Stefano', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22964, 'Solbiate Arno', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22965, 'Solbiate Olona', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22966, 'Ternate', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22967, 'Venegono Inferiore', 1860, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22968, 'Abano Terme', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22969, 'Adria', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22970, 'Albignasego', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22971, 'Altavilla Vicentina', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22972, 'Arzignano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22973, 'Badia Polesine', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22974, 'Bassano del Grappa', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22975, 'Belfiore', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22976, 'Borso del Grappa', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22977, 'Bovolone', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22978, 'Bussolengo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22979, 'Cadoneghe', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22980, 'Caldogno', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22981, 'Camisano Vicentino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22982, 'Campodarsego', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22983, 'Campolongo Maggiore', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22984, 'Camponogara', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22985, 'Camposampiero', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22986, 'Caorle', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22987, 'Carbonera', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22988, 'Casale sul Sile', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22989, 'Casier', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22990, 'Cassola', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22991, 'Castel d Azzano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22992, 'Castelfranco Veneto', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22993, 'Castello di Godego', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22994, 'Castelnuovo del Garda', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22995, 'Cavallino-Treporti', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22996, 'Cavarzere', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22997, 'Cerea', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22998, 'Chiampo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(22999, 'Chioggia', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23000, 'Cittadella', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23001, 'Colombano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23002, 'Concordia Sagittaria', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23003, 'Conselve', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23004, 'Cornedo Vicentino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23005, 'Creazzo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23006, 'Dolo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23007, 'Due Carrare', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23008, 'Dueville', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23009, 'Eraclea', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23010, 'Este', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23011, 'Feltre', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23012, 'Galzignano Terme', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23013, 'Grezzana', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23014, 'Iesolo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23015, 'Isola Vicentina', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23016, 'Isola della Scala', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23017, 'Jesolo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23018, 'Legnago', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23019, 'Lendinara', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23020, 'Lonigo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23021, 'Malo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23022, 'Marano Vicentino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23023, 'Marcon', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23024, 'Marostica', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23025, 'Martellago', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23026, 'Mestrino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23027, 'Mira', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23028, 'Mirano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23029, 'Mogliano Veneto', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23030, 'Monselice', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23031, 'Montagnana', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23032, 'Montebelluna', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23033, 'Montecchio Maggiore', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23034, 'Montegrotto Terme', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23035, 'Monticello Conte Otto', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23036, 'Motta di Livenza', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23037, 'Murano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23038, 'Musile di Piave', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23039, 'Mussolente', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23040, 'Negrar', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23041, 'Noale', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23042, 'Noventa Padovana', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23043, 'Noventa Vicentina', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23044, 'Occhiobello', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23045, 'Oderzo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23046, 'Padova', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23047, 'Padua', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23048, 'Paese', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23049, 'Pescantina', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23050, 'Peschiera del Garda', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23051, 'Pianiga', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23052, 'Piazzola sul Brenta', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23053, 'Pieve di Soligo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23054, 'Pievebelvicino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23055, 'Piombino Dese', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23056, 'Piove di Sacco', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23057, 'Ponte San Nicolo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23058, 'Ponzano Veneto', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23059, 'Porto Tolle', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23060, 'Porto Viro', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23061, 'Portogruaro', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23062, 'Preganziol', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23063, 'Quinto di Treviso', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23064, 'Riese Pio X', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23065, 'Romano dEzzelino', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23066, 'Roncade', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23067, 'Rosa', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23068, 'Rovigo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23069, 'Rubano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23070, 'Salzano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23071, 'San Biagio di Callalta', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23072, 'San Bonifacio', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(23073, 'San Dona di Piave', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23074, 'San Giovanni Lupatoto', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23075, 'San Martino Buon Albergo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23076, 'San Martino di Lupari', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23077, 'San Michele al Tagliamento', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23078, 'San Pietro in Cariano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23079, 'San Vendemiano', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23080, 'Sant Ambrogio', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23081, 'Santa Maria di Sala', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23082, 'Santo Stino di Livenza', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23083, 'Santorso', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23084, 'Saonara', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23085, 'Sarcedo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23086, 'Schio', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23087, 'Scorze', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23088, 'Sedico', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23089, 'Selvazzano Dentro', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23090, 'Silea', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23091, 'Sivizzo', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23092, 'Sommacampagna', 1861, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, 1), -(23093, 'Sona', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23094, 'Spinea', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23095, 'Spresiano', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23096, 'Susegana', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23097, 'Taglio di Po', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23098, 'Teolo', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23099, 'Tezze sul Brenta', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23100, 'Thiene', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23101, 'Torri di Quartesolo', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23102, 'Trebaseleghe', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23103, 'Trevignano', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23104, 'Treviso', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23105, 'Trissino', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23106, 'Valdagno', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23107, 'Valdobbiadene', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23108, 'Valeggio sul Mincio', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23109, 'Vedelago', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23110, 'Venezia', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23111, 'Venice', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23112, 'Verona', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23113, 'Vicenza', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23114, 'Vigodarzere', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23115, 'Vigonovo', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23116, 'Vigonza', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23117, 'Villafranca di Verona', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23118, 'Villorba', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23119, 'Vittorio Veneto', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23120, 'Volpago del Montello', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23121, 'Zane', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23122, 'Zero Branco', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23123, 'Zevio', 1861, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23124, 'Cona', 1862, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23125, 'Marghera', 1862, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23126, 'Oriago di Mira', 1862, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23127, 'Tessera', 1862, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23128, 'Piedimulera', 1863, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23129, 'Crescentino', 1864, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23130, 'Moncrivello', 1864, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23131, 'Rovasenda', 1864, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23132, 'Trino', 1864, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23133, ' Valeggio Sul Mincio', 1865, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23134, 'Cadidavid', 1865, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23135, 'Colognola ai Colli', 1865, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23136, 'Pastrengo', 1865, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23137, 'Valgatara', 1865, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23138, ' Montebello Vicentino', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23139, 'Alonte', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23140, 'Arcugnano', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23141, 'Barbarano Vicentino', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23142, 'Breganze', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23143, 'Brendola', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23144, 'Bressanvido', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23145, 'Carre', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23146, 'Castelgomberto', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23147, 'Costabissara', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23148, 'Grumolo delle Abbadesse', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23149, 'Piovene Rocchette', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23150, 'Povolaro', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23151, 'Rossano Veneto', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23152, 'San Pietro di Rosa', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23153, 'San Vito di Leguzzano', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23154, 'Sandrigo', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23155, 'Torrebelvicino', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23156, 'Villaverla', 1866, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23157, 'Nepi', 1867, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23158, 'May Pen', 1869, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23159, 'Lucea', 1870, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23160, 'Mandeville', 1872, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23161, 'Port Antonio', 1873, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, 1), -(23162, 'Albert Town', 1878, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23163, 'Falmouth', 1878, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23164, 'Savanna la Mar', 1879, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23165, 'Agui', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23166, 'Anjo', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23167, 'Atsumi', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23168, 'Bisai', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23169, 'Chiryu', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23170, 'Fujioka', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23171, 'Fuso', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23172, 'Gamagori', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23173, 'Handa', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23174, 'Hekinan', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23175, 'Higashiura', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23176, 'Ichinomiya', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23177, 'Inazawa', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23178, 'Inuyama', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23179, 'Isshiki', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23180, 'Iwakura', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23181, 'Jimokuji', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23182, 'Kanie', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23183, 'Kariya', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23184, 'Kasugai', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23185, 'Kira', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23186, 'Kisogawa', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23187, 'Komaki', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23188, 'Konan', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23189, 'Kozakai', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23190, 'Mihama', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23191, 'Minamichita', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23192, 'Miwa', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23193, 'Miyoshi', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23194, 'Nagakute', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23195, 'Nagoya', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23196, 'Nishiharu', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23197, 'Nishio', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23198, 'Nisshin', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23199, 'Obu', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23200, 'Oharu', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23201, 'Okazaki', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23202, 'Owariashi', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23203, 'Saori', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23204, 'Saya', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23205, 'Seto', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23206, 'Shikatsu', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23207, 'Shinshiro', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23208, 'Shippo', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23209, 'Sobue', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23210, 'Tahara', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23211, 'Takahama', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23212, 'Taketoyo', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23213, 'Togo', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23214, 'Tokai', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23215, 'Tokoname', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23216, 'Toyoake', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23217, 'Toyohashi', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23218, 'Toyokawa', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23219, 'Toyota', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23220, 'Tsushima', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23221, 'Yatomi', 1880, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23222, 'Akita', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23223, 'Honjo', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23224, 'Kazuno', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23225, 'Noshiro', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23226, 'Odate', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23227, 'Oga', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23228, 'Omagari', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23229, 'Takanosu', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23230, 'Tenno', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23231, 'Ugo', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23232, 'Yokote', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23233, 'Yuzawa', 1881, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23234, 'Aomori', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23235, 'Goshogawara', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23236, 'Hachinohe', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23237, 'Hiraka', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23238, 'Hirosaki', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23239, 'Kizukuri', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23240, 'Kuroishi', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23241, 'Misawa', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23242, 'Mutsu', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23243, 'Namioka', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23244, 'Towada', 1882, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23245, 'Abiko', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23246, 'Asahi', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23247, 'Chiba', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23248, 'Choshi', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23249, 'Funabashi', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23250, 'Fussa', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23251, 'Futtsu', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23252, 'Ichihara', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23253, 'Ichikawa', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23254, 'Inzai', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23255, 'Kamagaya', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23256, 'Kamogawa', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23257, 'Kashiwa', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23258, 'Katsuura', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23259, 'Kimitsu', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23260, 'Kisarazu', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23261, 'Kujukuri', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23262, 'Matsudo', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23263, 'Mobara', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23264, 'Nagareyama', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23265, 'Narashino', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23266, 'Narita', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23267, 'Naruto', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23268, 'Noda', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23269, 'Oamishirasato', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23270, 'Ohara', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23271, 'Omigawa', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23272, 'Sakae', 1883, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, 1), -(23273, 'Sakura', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23274, 'Sambu', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23275, 'Sawara', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23276, 'Sekiyado', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23277, 'Shiroi', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23278, 'Shisui', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23279, 'Shonan', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23280, 'Sodegaura', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23281, 'Tateyama', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23282, 'Togane', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23283, 'Tomisato', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23284, 'Urayasu', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23285, 'Yachimata', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23286, 'Yachiyo', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23287, 'Yokaichiba', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23288, 'Yotsukaido', 1883, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23289, 'Hojo', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23290, 'Imabari', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23291, 'Iyo', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23292, 'Iyomishima', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23293, 'Kawanoe', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23294, 'Masaki', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23295, 'Matsuyama', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23296, 'Niihama', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23297, 'Ozu', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23298, 'Saijo', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23299, 'Shigenobu', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23300, 'Tobe', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23301, 'Toyo', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23302, 'Uwajima', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23303, 'Yawatahama', 1884, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23304, 'Fukui', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23305, 'Harue', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23306, 'Katsuyama', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23307, 'Maruoka', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23308, 'Mikuni', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23309, 'Obama', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23310, 'Ono', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23311, 'Sabae', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23312, 'Takefu', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23313, 'Tsuruga', 1885, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23314, 'Amagi', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23315, 'Buzen', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23316, 'Chikugo', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23317, 'Chikushino', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23318, 'Dazaifu', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23319, 'Fukuma', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23320, 'Fukuoka', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23321, 'Hirokawa', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23322, 'Honami', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23323, 'Iizuka', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23324, 'Inatsuki', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23325, 'Kanda', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23326, 'Kasuga', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23327, 'Kasuya', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23328, 'Kawasaki', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23329, 'Kitakyushu', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23330, 'Koga', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23331, 'Kurate', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23332, 'Kurume', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23333, 'Maebaru', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23334, 'Miyata', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23335, 'Mizumaki', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23336, 'Munakata', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23337, 'Nakagawa', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23338, 'Nakama', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23339, 'Nogata', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23340, 'Ogori', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23341, 'Okagaki', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23342, 'Okawa', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23343, 'Omuta', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23344, 'Onojo', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23345, 'Sasaguri', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23346, 'Setaka', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23347, 'Shime', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23348, 'Shingu', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23349, 'Sue', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23350, 'Tagawa', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23351, 'Tanushimaru', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23352, 'Umi', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23353, 'Yamada', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23354, 'Yame', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23355, 'Yanagawa', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23356, 'Yukuhashi', 1886, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23357, 'Aizubange', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23358, 'Aizuwakamatsu', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23359, 'Fukushima', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23360, 'Funehiki', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23361, 'Haramachi', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23362, 'Hobara', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23363, 'Inawashiro', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23364, 'Ishikawa', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23365, 'Iwaki', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23366, 'Kawamata', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23367, 'Kitakata', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23368, 'Koriyama', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23369, 'Miharu', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23370, 'Motomiya', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23371, 'Namie', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23372, 'Nihommatsu', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23373, 'Shirakawa', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23374, 'Soma', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23375, 'Sukagawa', 1887, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23376, 'Ena', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23377, 'Gifu', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23378, 'Ginan', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23379, 'Godo', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23380, 'Hashima', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23381, 'Hozumi', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23382, 'Ibigawa', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23383, 'Ikeda', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23384, 'Kakamigahara', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23385, 'Kasamatsu', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23386, 'Mino', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23387, 'Minokamo', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23388, 'Mitake', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23389, 'Mizunami', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23390, 'Nakatsugawa', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23391, 'Ogaki', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23392, 'Seki', 1888, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, 1), -(23393, 'Tajimi', 1888, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23394, 'Takayama', 1888, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23395, 'Tarui', 1888, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23396, 'Toki', 1888, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23397, 'Annaka', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23398, 'Azuma', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23399, 'Fujimi', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23400, 'Gumma', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23401, 'Haruna', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23402, 'Isesaki', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23403, 'Kasakake', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23404, 'Kiryu', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23405, 'Maebashi', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23406, 'Nakanojo', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23407, 'Nitta', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23408, 'Numata', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23409, 'Oizumi', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23410, 'Omama', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23411, 'Ora', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23412, 'Ota', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23413, 'Sakai', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23414, 'Shibukawa', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23415, 'Takasaki', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23416, 'Tamamura', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23417, 'Tatebayashi', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23418, 'Tomioka', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23419, 'Yoshii', 1889, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23420, 'Fuchu', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23421, 'Fukuyama', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23422, 'Hatsukaichi', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23423, 'Higashihiroshima', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23424, 'Hiroshima', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23425, 'Innoshima', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23426, 'Kaita', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23427, 'Kannabe', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23428, 'Kumano', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23429, 'Kure', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23430, 'Kurose', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23431, 'Mihara', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23432, 'Onomichi', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23433, 'Otake', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23434, 'Shinichi', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23435, 'Shobara', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23436, 'Takehara', 1890, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23437, 'Abashiri', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23438, 'Akabira', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23439, 'Asahikawa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23440, 'Ashibetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23441, 'Bibai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23442, 'Bihoro', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23443, 'Chitose', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23444, 'Date', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23445, 'Ebetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23446, 'Eniwa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23447, 'Fukagawa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23448, 'Furano', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23449, 'Hakodate', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23450, 'Hokkaido', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23451, 'Hyogo', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23452, 'Ishikari', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23453, 'Iwamizawa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23454, 'Iwanai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23455, 'Kamiiso', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23456, 'Kitahiroshima', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23457, 'Kitami', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23458, 'Kushiro', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23459, 'Makubetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23460, 'Mikasa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23461, 'Mombetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23462, 'Muroran', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23463, 'Nakashibetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23464, 'Nanae', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23465, 'Nayoro', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23466, 'Nemuro', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23467, 'Noboribetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23468, 'Obihiro', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23469, 'Otaru', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23470, 'Otofuke', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23471, 'Rumoi', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23472, 'Sapporo', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23473, 'Shibetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23474, 'Shiraoi', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23475, 'Shizunai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23476, 'Sunagawa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23477, 'Takikawa', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23478, 'Tobetsu', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23479, 'Tomakomai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23480, 'Utashinai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23481, 'Wakkanai', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23482, 'Yoichi', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23483, 'Yubari', 1891, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23484, 'Aioi', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23485, 'Akashi', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23486, 'Ako', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23487, 'Amagasaki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23488, 'Ashiya', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23489, 'Fukusaki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23490, 'Harima', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23491, 'Himeji', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23492, 'Inagawa', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23493, 'Inami', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23494, 'Itami', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23495, 'Kakogawa', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23496, 'Kasai', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23497, 'Kawanishi', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23498, 'Kobe', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23499, 'Kodera', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23500, 'Miki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23501, 'Nandan', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23502, 'Nishinomiya', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23503, 'Nishiwaki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23504, 'Sanda', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23505, 'Sasayama', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23506, 'Sumoto', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23507, 'Taishi', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23508, 'Takarazuka', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23509, 'Takasago', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23510, 'Tatsuno', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23511, 'Toyooka', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23512, 'Yamasaki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23513, 'Yashiro', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23514, 'Yumesaki', 1892, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, 1), -(23515, 'Ami', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23516, 'Chiyoda', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23517, 'Daigo', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23518, 'Edosaki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23519, 'Fujishiro', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23520, 'Hasaki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23521, 'Hitachi', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23522, 'Hitachinaka', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23523, 'Hitachiota', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23524, 'Hokota', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23525, 'Ibaraki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23526, 'Ina', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23527, 'Ishige', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23528, 'Ishioka', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23529, 'Itako', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23530, 'Iwai', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23531, 'Iwase', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23532, 'Kamisu', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23533, 'Kasama', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23534, 'Kashima', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23535, 'Kasumigaura', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23536, 'Kitaibaraki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23537, 'Kukizaki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23538, 'Makabe', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23539, 'Minori', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23540, 'Mito', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23541, 'Mitsukaido', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23542, 'Moriya', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23543, 'Naka', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23544, 'Oarai', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23545, 'Omiya', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23546, 'Ryugasaki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23547, 'Sanwa', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23548, 'Shimodate', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23549, 'Shimotsuma', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23550, 'Takahagi', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23551, 'Tomobe', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23552, 'Tone', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23553, 'Toride', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23554, 'Tsukuba', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23555, 'Ushiku', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23556, 'Yasato', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23557, 'Yuki', 1893, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23558, 'Hakui', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23559, 'Kaga', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23560, 'Kanazawa', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23561, 'Komatsu', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23562, 'Matto', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23563, 'Nanao', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23564, 'Nonoichi', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23565, 'Suzu', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23566, 'Tsubata', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23567, 'Tsurugi', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23568, 'Uchinada', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23569, 'Wajima', 1894, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23570, 'Daito', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23571, 'Esashi', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23572, 'Hanamaki', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23573, 'Ichinohe', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23574, 'Ichinoseki', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23575, 'Iwate', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23576, 'Kamaishi', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23577, 'Kitakami', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23578, 'Kuji', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23579, 'Miyako', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23580, 'Mizusawa', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23581, 'Morioka', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23582, 'Ninohe', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23583, 'Ofunato', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23584, 'Otsuchi', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23585, 'Rikuzentakata', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23586, 'Shiwa', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23587, 'Shizukuishi', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23588, 'Takizawa', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23589, 'Tono', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23590, 'Yahaba', 1895, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23591, 'Kagawa', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23592, 'Kanonji', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23593, 'Kokubunji', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23594, 'Marugame', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23595, 'Ryonan', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23596, 'Sakaide', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23597, 'Shido', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23598, 'Tadotsu', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23599, 'Takamatsu', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23600, 'Tonosho', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23601, 'Zentsuji', 1896, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23602, 'Aira', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23603, 'Akune', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23604, 'Hayato', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23605, 'Ibusuki', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23606, 'Ijuin', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23607, 'Izumi', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23608, 'Kagoshima', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23609, 'Kajiki', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23610, 'Kanoya', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23611, 'Kaseda', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23612, 'Kokubu', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23613, 'Kushikino', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23614, 'Makurazaki', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23615, 'Naze', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23616, 'Nishinoomote', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23617, 'Okuchi', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23618, 'Sendai', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23619, 'Shibushi', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23620, 'Sueyoshi', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23621, 'Tarumizu', 1897, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23622, 'Aikawa', 1898, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23623, 'Atsugi', 1898, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, 1), -(23624, 'Ayase', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23625, 'Chigasaki', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23626, 'Ebina', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23627, 'Fujisawa', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23628, 'Hadano', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23629, 'Hakone', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23630, 'Hayama', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23631, 'Hiratsuka', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23632, 'Isehara', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23633, 'Kamakura', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23634, 'Minamiashigara', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23635, 'Miura', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23636, 'Ninomiya', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23637, 'Odawara', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23638, 'Oiso', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23639, 'Sagamihara', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23640, 'Samukawa', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23641, 'Shiroyama', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23642, 'Takatsu-Ku', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23643, 'Tsukui', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23644, 'Yamato', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23645, 'Yokohama', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23646, 'Yokosuka', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23647, 'Yugawara', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23648, 'Zama', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23649, 'Zushi', 1898, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23650, 'Gunma', 1899, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23651, 'Saitama', 1899, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23652, 'Aki', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23653, 'Ino', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23654, 'Muroto', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23655, 'Nakamura', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23656, 'Nankoku', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23657, 'Sukumo', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23658, 'Susaki', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23659, 'Tosa', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23660, 'Tosashimizu', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23661, 'Tosayamada', 1900, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23662, 'Arao', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23663, 'Ashikita', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23664, 'Aso', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23665, 'Hitoyoshi', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23666, 'Hondo', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23667, 'Jonan', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23668, 'Kikuchi', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23669, 'Kikuyo', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23670, 'Koshi', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23671, 'Kumamoto', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23672, 'Mashiki', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23673, 'Matsubase', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23674, 'Minamata', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23675, 'Nishigoshi', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23676, 'Tamana', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23677, 'Ueki', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23678, 'Ushibuka', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23679, 'Uto', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23680, 'Yamaga', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23681, 'Yatsushiro', 1901, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23682, 'Ayabe', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23683, 'Fukuchiyama', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23684, 'Joyo', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23685, 'Kameoka', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23686, 'Kizu', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23687, 'Kumiyama', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23688, 'Kyotanabe', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23689, 'Kyoto', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23690, 'Maizuru', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23691, 'Miyazu', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23692, 'Muko', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23693, 'Nagaokakyo', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23694, 'Seika', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23695, 'Uji', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23696, 'Yawata', 1902, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23697, 'Ago', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23698, 'Hisai', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23699, 'Ise', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23700, 'Kameyama', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(23701, 'Komono', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23702, 'Kuwana', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23703, 'Matsusaka', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23704, 'Meiwa', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23705, 'Nabari', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23706, 'Owase', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23707, 'Suzuka', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23708, 'Toba', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23709, 'Toin', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23710, 'Tsu', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23711, 'Ueno', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23712, 'Yokkaichi', 1903, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23713, 'Furukawa', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23714, 'Hasama', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23715, 'Ishinomaki', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23716, 'Iwanuma', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23717, 'Kakuda', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23718, 'Kesennuma', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23719, 'Kogota', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23720, 'Marumori', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23721, 'Natori', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23722, 'Ogawara', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23723, 'Rifu', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23724, 'Shibata', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23725, 'Shichigahama', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23726, 'Shiogama', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23727, 'Shiroishi', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23728, 'Tagajo', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23729, 'Taiwa', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23730, 'Tomiya', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23731, 'Wakuya', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23732, 'Watari', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23733, 'Yamoto', 1904, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23734, 'Ebino', 1905, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23735, 'Hyuga', 1905, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23736, 'Kiyotake', 1905, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, 1), -(23737, 'Kobayashi', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23738, 'Kunitomi', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23739, 'Kushima', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23740, 'Mimata', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23741, 'Miyakonojo', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23742, 'Miyazaki', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23743, 'Nichinan', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23744, 'Nobeoka', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23745, 'Sadowara', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23746, 'Saito', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23747, 'Shintomi', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23748, 'Takanabe', 1905, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23749, 'Chino', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23750, 'Hotaka', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23751, 'Iida', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23752, 'Iiyama', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23753, 'Komagane', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23754, 'Komoro', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23755, 'Koshoku', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23756, 'Maruko', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23757, 'Matsumoto', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23758, 'Minowa', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23759, 'Nagano', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23760, 'Nakano', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23761, 'Okaya', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23762, 'Omachi', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23763, 'Shimosuwa', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23764, 'Shiojiri', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23765, 'Suwa', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23766, 'Suzaka', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23767, 'Tobu', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23768, 'Toyoshina', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23769, 'Ueda', 1906, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23770, 'Fukue', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23771, 'Hirado', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23772, 'Isahaya', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23773, 'Matsuura', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23774, 'Nagasaki', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23775, 'Nagayo', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23776, 'Omura', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23777, 'Sasebo', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23778, 'Shimabara', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23779, 'Togitsu', 1907, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23780, 'Gojo', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23781, 'Gose', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23782, 'Haibara', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23783, 'Heguri', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23784, 'Ikagura', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23785, 'Ikoma', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23786, 'Kammaki', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23787, 'Kashiba', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23788, 'Kashihara', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23789, 'Kawai', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23790, 'Koryo', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23791, 'Nara', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23792, 'Oji', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23793, 'Oyodo', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23794, 'Sakurai', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23795, 'Sango', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23796, 'Tawaramoto', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23797, 'Tenri', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23798, 'Yamatokoriyama', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23799, 'Yamatotakada', 1908, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23800, 'Arai', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23801, 'Gosen', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23802, 'Itoigawa', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23803, 'Joetsu', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23804, 'Kameda', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23805, 'Kamo', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23806, 'Kashiwazaki', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23807, 'Kurosaki', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23808, 'Maki', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23809, 'Mitsuke', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23810, 'Muika', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23811, 'Murakami', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23812, 'Muramatsu', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23813, 'Nagaoka', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23814, 'Nakajo', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23815, 'Niigata', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23816, 'Niitsu', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23817, 'Ojiya', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23818, 'Ryotsu', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23819, 'Sanjo', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23820, 'Shiozawa', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23821, 'Shirone', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23822, 'Suibara', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23823, 'Tochio', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23824, 'Tokamachi', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23825, 'Toyosaka', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23826, 'Tsubame', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23827, 'Yoshida', 1909, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23828, 'Beppu', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23829, 'Bungotakada', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23830, 'Hiji', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23831, 'Hita', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23832, 'Kitsuki', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23833, 'Kusu', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23834, 'Nakatsu', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23835, 'Oita', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23836, 'Saiki', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23837, 'Taketa', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23838, 'Tsukumi', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23839, 'Usa', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23840, 'Usuki', 1910, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23841, 'Bizen', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23842, 'Ibara', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23843, 'Kamogata', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23844, 'Kasaoka', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23845, 'Kurashiki', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23846, 'Mabi', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23847, 'Niimi', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23848, 'Okayama', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23849, 'Sanyo', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23850, 'Soja', 1911, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, 1), -(23851, 'Takahashi', 1911, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23852, 'Tamano', 1911, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23853, 'Tsuyama', 1911, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23854, 'Chatan', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23855, 'Ginowan', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23856, 'Gushikawa', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23857, 'Haebaru', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23858, 'Hirara', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23859, 'Ishigaki', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23860, 'Itoman', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23861, 'Nago', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23862, 'Nishihara', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23863, 'Okinawa', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23864, 'Tomigusuku', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23865, 'Urasoe', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23866, 'Yomitan', 1912, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23867, 'Fujiidera', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23868, 'Habikino', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23869, 'Hannan', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23870, 'Higashiosaka', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23871, 'Hirakata', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23872, 'Izumiotsu', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23873, 'Izumisano', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23874, 'Kadoma', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23875, 'Kaizuka', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23876, 'Kashiwara', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23877, 'Katano', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23878, 'Kawachinagano', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23879, 'Kishiwada', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23880, 'Kumatori', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23881, 'Matsubara', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23882, 'Misaki', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23883, 'Moriguchi', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23884, 'Neyagawa', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23885, 'Osaka', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23886, 'Osakasayama', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23887, 'Sennan', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23888, 'Settsu', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23889, 'Shijonawate', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23890, 'Shimamoto', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23891, 'Suita', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23892, 'Takaishi', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23893, 'Takatsuki', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23894, 'Tondabayashi', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23895, 'Toyonaka', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23896, 'Toyono', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23897, 'Yao', 1913, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23898, 'Imari', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23899, 'Kanzaki', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23900, 'Karatsu', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23901, 'Kawasoe', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23902, 'Saga', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23903, 'Takeo', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23904, 'Taku', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23905, 'Tosu', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23906, 'Ureshino', 1914, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23907, 'Ageo', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23908, 'Asaka', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23909, 'Chichibu', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23910, 'Fukaya', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23911, 'Fukiage', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23912, 'Gyoda', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23913, 'Hanno', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23914, 'Hanyu', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23915, 'Hasuda', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23916, 'Hatogaya', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23917, 'Hatoyama', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23918, 'Hidaka', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23919, 'Higashimatsuyama', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23920, 'Iruma', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23921, 'Iwatsuki', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23922, 'Kamifukuoka', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23923, 'Kamisato', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23924, 'Kasukabe', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23925, 'Kawagoe', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23926, 'Kawaguchi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23927, 'Kawajima', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23928, 'Kazo', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23929, 'Kisai', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23930, 'Kitamoto', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23931, 'Kodama', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23932, 'Konosu', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23933, 'Koshigaya', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23934, 'Kuki', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23935, 'Kumagaya', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23936, 'Kurihashi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23937, 'Matsubushi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23938, 'Menuma', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23939, 'Misato', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23940, 'Miyashiro', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23941, 'Moroyama', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23942, 'Niiza', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23943, 'Ogawa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23944, 'Oi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23945, 'Okegawa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23946, 'Saitma-Shi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23947, 'Sakado', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23948, 'Satte', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23949, 'Sayama', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23950, 'Shiki', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23951, 'Shiraoka', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23952, 'Shobu', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23953, 'Showa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23954, 'Soka', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23955, 'Sugito', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23956, 'Toda', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23957, 'Tokorozawa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23958, 'Tsurugashima', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23959, 'Urawa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23960, 'Wako', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23961, 'Warabi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23962, 'Washimiya', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23963, 'Yashio', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23964, 'Yono', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23965, 'Yorii', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23966, 'Yoshikawa', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23967, 'Yoshimi', 1915, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, 1), -(23968, 'Hikone', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23969, 'Hino', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23970, 'Kosei', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23971, 'Kusatsu', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23972, 'Minakuchi', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23973, 'Moriyama', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23974, 'Nagahama', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23975, 'Notogawa', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23976, 'Omihachiman', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23977, 'Otsu', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23978, 'Ritto', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23979, 'Shiga', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23980, 'Yasu', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23981, 'Yokaichi', 1916, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23982, 'Gotsu', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23983, 'Hamada', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23984, 'Hikawa', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23985, 'Hirata', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23986, 'Izumo', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23987, 'Masuda', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23988, 'Matsue', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23989, 'Yasugi', 1917, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23990, 'Asaba', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23991, 'Atami', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23992, 'Fuji', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23993, 'Fujieda', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23994, 'Fujinomiya', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23995, 'Fukuroi', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23996, 'Gotemba', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23997, 'Hamakita', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23998, 'Hamamatsu', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(23999, 'Hamaoka', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24000, 'Hosoe', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24001, 'Ito', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24002, 'Iwata', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24003, 'Kakegawa', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24004, 'Kanaya', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24005, 'Kannami', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24006, 'Kikugawa', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24007, 'Kosai', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24008, 'Mishima', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24009, 'Mori', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24010, 'Nagaizumi', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24011, 'Numazu', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24012, 'Oigawa', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24013, 'Oyama', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24014, 'Ryuyo', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24015, 'Sagara', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24016, 'Shimada', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24017, 'Shimizu', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24018, 'Shimoda', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24019, 'Shizuoka', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24020, 'Susono', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24021, 'Tenryu', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24022, 'Toyoda', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24023, 'Yaizu', 1918, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24024, 'Ashikaga', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24025, 'Imaichi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24026, 'Iwafune', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24027, 'Kaminokawa', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24028, 'Kanuma', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24029, 'Karasuyama', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24030, 'Kawachi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24031, 'Kuroiso', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24032, 'Mashiko', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24033, 'Mibu', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24034, 'Minamikawachi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24035, 'Moka', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24036, 'Motegi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24037, 'Nasu', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24038, 'Nikko', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24039, 'Nishinasuno', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24040, 'Nogi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24041, 'Ohira', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24042, 'Otawara', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24043, 'Sano', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24044, 'Takanezawa', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24045, 'Tanuma', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24046, 'Tochigi', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24047, 'Ujiie', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24048, 'Utsunomiya', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24049, 'Yaita', 1919, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24050, 'Aizumi', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24051, 'Anan', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24052, 'Ishii', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24053, 'Kamojima', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24054, 'Kitajima', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24055, 'Komatsushima', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24056, 'Tokushima', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24057, 'Waki', 1920, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24058, 'Akiruno', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24059, 'Akishima', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24060, 'Chofu', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24061, 'Hachioji', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24062, 'Hamura', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24063, 'Higashikurume', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24064, 'Higashimurayama', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24065, 'Higashiyamato', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24066, 'Inagi', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24067, 'Kiyose', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24068, 'Kodaira', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24069, 'Koganei', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24070, 'Komae', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24071, 'Kunitachi', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24072, 'Machida', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24073, 'Mitaka', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24074, 'Mizuho', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24075, 'Musashimurayama', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24076, 'Musashino', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24077, 'Ome', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24078, 'Tachikawa', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24079, 'Tama', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24080, 'Tanashi', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24081, 'Tokyo', 1921, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24082, 'Kurayoshi', 1922, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24083, 'Sakaiminato', 1922, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, 1), -(24084, 'Tottori', 1922, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24085, 'Yonago', 1922, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24086, 'Fukumitsu', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24087, 'Himi', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24088, 'Kamiichi', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24089, 'Kosugi', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24090, 'Kurobe', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24091, 'Namerikawa', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24092, 'Nyuzen', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24093, 'Osawano', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24094, 'Oyabe', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24095, 'Shimminato', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24096, 'Takaoka', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24097, 'Tonami', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24098, 'Toyama', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24099, 'Uozu', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24100, 'Yatsuo', 1923, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24101, 'Arida', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24102, 'Gobo', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24103, 'Hashimoto', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24104, 'Iwade', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24105, 'Kainan', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24106, 'Katsuragi', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24107, 'Kishigawa', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24108, 'Nachikatsuura', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24109, 'Tanabe', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24110, 'Wakayama', 1924, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24111, 'Higashine', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24112, 'Kahoku', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24113, 'Kaminoyama', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24114, 'Murayama', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24115, 'Nagai', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24116, 'Nanyo', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24117, 'Obanazawa', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24118, 'Sagae', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24119, 'Sakata', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24120, 'Shinjo', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24121, 'Takahata', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24122, 'Tendo', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24123, 'Tsuchiura', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24124, 'Tsuruoka', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24125, 'Yamagata', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24126, 'Yonezawa', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24127, 'Yuza', 1925, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24128, 'Hagi', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24129, 'Hikari', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24130, 'Hofu', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24131, 'Iwakuni', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24132, 'Kudamatsu', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24133, 'Mine', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24134, 'Nagato', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24135, 'Onoda', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24136, 'Shimonoseki', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24137, 'Shinnanyo', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24138, 'Tokuyama', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24139, 'Toyoura', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24140, 'Ube', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24141, 'Yamaguchi', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24142, 'Yanai', 1926, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24143, 'Enzan', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24144, 'Fujiyoshida', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24145, 'Isawa', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24146, 'Kofu', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24147, 'Nirasaki', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24148, 'Otsuki', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24149, 'Ryuo', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24150, 'Tsuru', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24151, 'Uenohara', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24152, 'Yamanashi', 1927, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24153, ' Abbin', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24154, ' Ajlun', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24155, ' Anjarah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24156, ' Arjan', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24157, ' Ayn Janna', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24158, 'Halawah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24159, 'Kharbat al-Wahadnah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24160, 'Kufranjah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24161, 'Sakhrah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24162, 'al-Hashamiyah', 1928, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24163, 'Abu Alanda', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24164, 'Amman', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24165, 'Askan Abu Nusayr', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24166, 'Jawa', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24167, 'Khalda wa Tila -al- Ali', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24168, 'Khraybat As-Suq', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24169, 'Marj al-Hammam', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24170, 'Na ur', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24171, 'Nuzhat Sahab', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24172, 'Sahab', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24173, 'Shafa Badran', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24174, 'Suwaylih', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24175, 'Tariq', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24176, 'Umm As-Summaq', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24177, 'Umm Nuwarah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24178, 'Umm Qusayr wal Muqabalin', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24179, 'Umm al-Basatin', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24180, 'Wadi as-Sir', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24181, 'al- Abdaliyah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24182, 'al-Binayat', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24183, 'al-Faysaliyah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24184, 'al-Jubayhah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24185, 'al-Juwaydah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24186, 'al-Quwaysimah', 1929, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, 1), -(24187, 'al-Yadudah', 1929, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24188, 'at-Talbiyah', 1929, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24189, 'at-Taybah', 1929, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24190, ' Al al', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24191, ' Anbah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24192, 'Arhaba', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24193, 'Aydun', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24194, 'Bayt Idas', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24195, 'Bayt Ras', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24196, 'Bayt Yafa', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24197, 'Bushra', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24198, 'Dayr Abi Sa id', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24199, 'Dayr Yusif', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24200, 'Dayr as-Sa anah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24201, 'Duwaqarah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24202, 'Hakama', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24203, 'Hatam', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24204, 'Hawwarah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24205, 'Irbid', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24206, 'Jasar ash-Shaykh Hussayn', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24207, 'Judayta', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24208, 'Katam', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24209, 'Kharja', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24210, 'Kufur Awan', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24211, 'Kufur Abil', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24212, 'Kufur Asad', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24213, 'Kufur Rakab', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24214, 'Kufur Sum', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24215, 'Kufur Yuba', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24216, 'Kufur al-Ma ', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24217, 'Kuraymah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24218, 'Malka', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24219, 'Mukhayyam al-Husun', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24220, 'Qumaym', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24221, 'Saham', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24222, 'Sal', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24223, 'Samma', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24224, 'Sammaw ', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24225, 'Sum', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24226, 'Tabnah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24227, 'Umm Qays', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24228, 'Wadi al-Yabas', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24229, 'Waqqas', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24230, 'Zahar', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24231, 'al-Ashrafiyah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24232, 'al-Balawnah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24233, 'al-Buwaydah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24234, 'al-Husun', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24235, 'al-Manshiyah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24236, 'al-Mashari a', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24237, 'al-Mazar ash-Shamaliyah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24238, 'al-Mughayyar', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24239, 'an-Nu aymeh', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24240, 'ar-Ramtha', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24241, 'as-Sarih', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24242, 'ash-Shajarah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24243, 'ash-Shunah ash-Shamaliyah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24244, 'at-Turrah', 1930, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24245, 'Balila', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24246, 'Burma', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24247, 'Jarash', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24248, 'Kufur Khall', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24249, 'Mukhayyam Ghazzah', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24250, 'Mukhayyam Suf', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24251, 'Qafqafa', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24252, 'Raymun', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24253, 'Sakab', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24254, 'Suf', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24255, 'al-Kattah', 1931, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24256, 'Bayar', 1932, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24257, 'Ma an', 1932, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24258, 'Wadi Musa', 1932, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24259, 'al-Hussayniyah', 1932, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24260, 'al-Jafar', 1932, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24261, 'Dhiban', 1933, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24262, 'Ma in', 1933, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24263, 'Madaba', 1933, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24264, 'Mulayh', 1933, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24265, 'al- Aqabah', 1934, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24266, 'al-Quwayrah', 1934, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24267, ' Ayn al-Basha', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24268, 'Darar', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24269, 'Juwafat al-Kafrayn', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24270, 'Ma addi', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24271, 'Mahas', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24272, 'Safut', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24273, 'Suknat ash-Shunah', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24274, 'Yarqa', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24275, 'al-Baq ah', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24276, 'al-Fuhays', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24277, 'al-Karamah', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24278, 'as-Salt', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24279, 'as-Sawalhah', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24280, 'as-Subayhi', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24281, 'at-Tawal al-Janubi', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24282, 'at-Tuwal ash-Shamali', 1935, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24283, ' Ayy', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24284, 'Adar', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24285, 'Faqqu ', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24286, 'Ghawr al-Mazra ah', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24287, 'Ghawr as-Safi', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24288, 'Maw tah', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24289, 'Sirfa', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24290, 'al-Karak', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24291, 'al-Mazar', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24292, 'al-Qitranah', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24293, 'ar-Rabbah', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24294, 'ash-Shahabiyah', 1936, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24295, 'Badiyat ar-Ruwayshid', 1937, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24296, 'Bal ama', 1937, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, 1), -(24297, 'Manshiyat Bani Hassan', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24298, 'Mugayyar as-Sarhan', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24299, 'Sabha', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24300, 'Sama as-Sarhan', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24301, 'Umm al-Quttayn', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24302, 'al-Hamra ', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24303, 'al-Khaldiyah al-Jadidah', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24304, 'al-Mabrukah', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24305, 'al-Mafraq', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24306, 'ar-Ruwayshid', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24307, 'az-Za tari', 1937, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24308, 'Busayrah', 1938, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24309, 'al- Ayn al-Bayda', 1938, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24310, 'al-Hasa', 1938, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24311, 'al-Qadisiyah', 1938, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24312, 'at-Tafilah', 1938, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24313, 'Iskan al-Hashamiyah', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24314, 'Mushayrfat Ras al- Ayn', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24315, 'Shnillar', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24316, 'ad-Dulayl', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24317, 'al-Azraq ash-Shamali', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24318, 'ar-Russayfah', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24319, 'as-Sukhnah', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24320, 'az-Zarqa ', 1939, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24321, 'Akmecet', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24322, 'Aral', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24323, 'Baykonir', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24324, 'Canakazali', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24325, 'Canakorgan', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(24326, 'Cosali', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24327, 'Kazali', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24328, 'Sieli', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24329, 'Tasboget', 1940, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24330, 'Alekseevka', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24331, 'Astana', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24332, 'Atbasar', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24333, 'Bestobe', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24334, 'Caltir', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24335, 'Colimbet', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24336, 'Ereymentau', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24337, 'Koksetau', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24338, 'Makin', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24339, 'Stepnogorsk', 1941, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24340, 'Aktobe', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24341, 'Alka', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24342, 'Batamsi', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24343, 'Embi', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24344, 'Hromtau', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24345, 'Kandagac', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24346, 'Salkar', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24347, 'Subarkudik', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24348, 'Subarsi', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24349, 'Temir', 1942, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24350, 'Almati', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24351, 'Almaty', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24352, 'Boralday', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24353, 'Carkant', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24354, 'Energetyceskiy', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24355, 'Esik', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24356, 'Fabrichniy', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24357, 'Kapsagay', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24358, 'Karabulak', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24359, 'Kaskelen', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24360, 'Kirov', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24361, 'Sariozek', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24362, 'Sarkand', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24363, 'Selek', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24364, 'Taldikorgan', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24365, 'Talgar', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24366, 'Tekeli', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24367, 'Ustobe', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24368, 'Uzunagac', 1943, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24369, 'Atirau', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24370, 'Atyrau', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24371, 'Dossor', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24372, 'Inderbor', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24373, 'Karaton', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24374, 'Kulsari', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24375, 'Makat', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24376, 'Oporni', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24377, 'Sumisker', 1944, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24378, 'Abay', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24379, 'Akadir', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24380, 'Aktas', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24381, 'Aktau', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24382, 'Balkas', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24383, 'Cayrem', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24384, 'Cezkazgan', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24385, 'Gulsat', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24386, 'Karacal', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24387, 'Karaganda', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24388, 'Karkarali', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24389, 'Karsakbay', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24390, 'Konrat', 1947, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, 1), -(24391, 'Novodolinskiy', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24392, 'Osakarovka', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24393, 'Sahti', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24394, 'Sarisagan', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24395, 'Satpaev', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24396, 'Temirtau', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24397, 'Tokaryovka', 1947, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24398, 'Arkalik', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24399, 'Borovskoy', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24400, 'Cetikara', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24401, 'Derjavinsk', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24402, 'Esil', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24403, 'Fodorov', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24404, 'Kacar', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24405, 'Komsomol', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24406, 'Kostanay', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24407, 'Kusmurin', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24408, 'Lisakovsk', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24409, 'Rudni', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24410, 'Tobol', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24411, 'Uritsk', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24412, 'Zatobolsk', 1948, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24413, 'Beyneu', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24414, 'Canaozen', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24415, 'Cetibay', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24416, 'Fort-Sevcenko', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24417, 'Kurik', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24418, 'Mangyslak', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24419, 'Setpe', 1949, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24420, 'Ekibastuz', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24421, 'Ermak', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24422, 'Ertis', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24423, 'Kaciri', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24424, 'Maykain', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24425, 'Pavlodar', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24426, 'Sarbakti', 1951, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24427, 'Canatas', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24428, 'Georgiyev', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24429, 'Karatau', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24430, 'Lugovoy', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24431, 'Merke', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24432, 'Mihaylov', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24433, 'Oytal', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24434, 'Su', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24435, 'Taraz', 1954, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24436, 'Gilgil', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24437, 'Karatina', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24438, 'Kiambu', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24439, 'Kijabe', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24440, 'Kikuyu', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24441, 'Limuru', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24442, 'Maragua', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24443, 'Muranga', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24444, 'Nyeri', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24445, 'Ruiru', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24446, 'Sagana', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24447, 'Thika', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24448, 'Vanga', 1102, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24449, 'Changamwe', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24450, 'Garsen', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24451, 'Gazi', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24452, 'Hola', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24453, 'Kaloleni', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24454, 'Kilifi', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24455, 'Kinango', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24456, 'Kipini', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24457, 'Kwale', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24458, 'Lamu', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24459, 'Malindi', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24460, 'Mambrui', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24461, 'Mombasa', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24462, 'Sawasawa', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24463, 'Shimoni', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24464, 'Takaungu', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24465, 'Taveta', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24466, 'Voi', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24467, 'Witu', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24468, 'Wundanyi', 1955, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24469, 'Athi River', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24470, 'Chuka', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24471, 'Embu', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24472, 'Isiolo', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24473, 'Kangonde', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24474, 'Kitui', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24475, 'Machakos', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24476, 'Mado Gashi', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24477, 'Marsabit', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24478, 'Mutomo', 140, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24479, 'Nairobi', 1956, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, 1), -(24480, 'Homa Bay', 1958, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24481, 'Kisii', 1958, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24482, 'Kisumu', 1958, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24483, 'Migori', 1958, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24484, 'Bungoma', 143, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24485, 'Busia', 143, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24486, 'Kakamega', 143, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24487, 'Mumias', 143, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24488, 'Webuye', 143, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24489, 'Taburao', 1960, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24490, 'Binoinano', 1961, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24491, 'Takaeang', 1962, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24492, 'Roreti', 1963, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24493, 'Ooma', 1964, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24494, 'Tabukiniberu', 1965, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24495, 'Butaritari', 1966, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24496, 'Tabontebike', 1968, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24497, 'Tabiauea', 1969, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24498, 'Rawannawi', 1971, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24499, 'Rungata', 1972, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24500, 'Temaraia', 1973, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24501, 'Ijaki', 1974, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24502, 'Abaokoro', 1979, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24503, 'Washington', 1982, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24504, 'Kanggye', 1983, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, 1), -(24505, 'Cheongjin', 1984, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24506, 'Kimchaek', 1984, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24507, 'Najin', 1984, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24508, 'Hamheung', 1985, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24509, 'Sariweon', 1986, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24510, 'Seongnim', 1986, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24511, 'Haeju', 1987, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24512, 'Kaeseong', 1988, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24513, 'Weonsan', 1989, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24514, 'Nampo', 1990, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24515, 'Sineuiju', 1991, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24516, 'Phyeongseong', 1992, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24517, 'Pyeongyang', 1993, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24518, 'Pyongyang', 1993, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24519, 'Hyesan', 1994, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24520, 'Busan', 1995, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24521, 'Aeweol', 1996, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24522, 'Cheju', 1996, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24523, 'Seogwipo', 1996, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24524, 'Cheonju', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24525, 'Chongup', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24526, 'Iksan', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24527, 'Kimje', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24528, 'Kochang', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24529, 'Kunsan', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24530, 'Namwon', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24531, 'Puan', 1997, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24532, 'Haenam', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24533, 'Hwasun', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24534, 'Kwangyang', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24535, 'Kwangyang Up', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24536, 'Mokpo', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24537, 'Naju', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24538, 'Peolgyo', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24539, 'Suncheon', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24540, 'Yeocheon', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24541, 'Yeosu', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24542, 'Yonggwang', 1998, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24543, 'Cheongwon-gun', 1999, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24544, 'Eumsung-Kun', 1999, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24545, 'Jinchunkun', 1999, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24546, 'Okcheon-gun', 1999, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24547, 'Um Sung Gun', 1999, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24548, 'Chechon', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24549, 'Cheongju', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24550, 'Chincheon', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24551, 'Chungju', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24552, 'Jincheon-gun', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24553, 'Okchon', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24554, 'Yongdong', 2000, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24555, 'Asan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24556, 'Cheonan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24557, 'Chochiwon', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24558, 'Geumsan-Gun', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24559, 'Hongseong', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24560, 'Kongju', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24561, 'Kumsan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24562, 'Nonsan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24563, 'Poryong', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24564, 'Puyeo', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24565, 'Seonghwan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24566, 'Seosan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24567, 'Taean', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24568, 'Taesan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24569, 'Tangjin', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24570, 'Yesan', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24571, 'Yonmu', 2001, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, 1), -(24572, 'Chonan', 2002, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24573, 'Danjin-gun', 2002, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24574, 'Gongjusi', 2002, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24575, 'Daegu', 2003, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24576, 'Dalseo-gu', 2003, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24577, 'Chungcheong', 2004, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24578, 'Hoengseong', 2004, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24579, 'Mummakeup', 2004, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24580, 'Wonju', 2004, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24581, 'Gimhae', 2005, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24582, 'Goyang-si', 2005, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24583, 'Ansan', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24584, 'Anyang-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24585, 'Anyangsi', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24586, 'Buchon', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24587, 'Buchun-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24588, 'Byeoryangdong', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24589, 'Dongan-gu', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24590, 'Gimpo City', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24591, 'Goyang', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24592, 'Gupo-si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24593, 'Guri-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24594, 'Gwacheon Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24595, 'Gwangju-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24596, 'Hwaseong-si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24597, 'Icheon-si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24598, 'Iljuk-myeon', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24599, 'Kwangju', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24600, 'Pocheon-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24601, 'Seongnam', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24602, 'Shihung-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24603, 'Siheung', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24604, 'Sihung-si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24605, 'Suwon', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24606, 'Uijeongbu-dong', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24607, 'Uiwang', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24608, 'Yangju', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24609, 'Yangpyeong-Gun', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24610, 'Yeokbuk-Dong-Si', 2006, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24611, 'Changwon', 2008, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24612, 'Gimhae-si', 2008, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24613, 'Incheon', 2009, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24614, 'Kanghwa', 2009, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24615, 'Namdongku', 2009, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24616, 'Jeju', 2010, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24617, 'Yeongpyeong-Dong', 2010, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24618, 'Jeonju-Si', 2011, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24619, 'Chuncheon', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24620, 'Hongcheon', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24621, 'Kangneung', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24622, 'Samchok', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24623, 'Seokcho', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24624, 'Taebaek', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24625, 'Tonghae', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24626, 'Weonju', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24627, 'Yeongweol', 1989, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24628, 'Anseong', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24629, 'Chongok', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24630, 'Euijeongbu', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24631, 'Euiwang', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24632, 'Hanam', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24633, 'Hoechon', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24634, 'Hwado', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24635, 'Hwasung', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24636, 'Ichon', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24637, 'Kihung', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24638, 'Kimpo', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24639, 'Koyang', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24640, 'Kumchon', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24641, 'Kunpo', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24642, 'Kuri', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24643, 'Kwacheon', 2013, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, 1), -(24644, 'Kwangmyeong', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24645, 'Munsan', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24646, 'Namyangju', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24647, 'Osan', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24648, 'Paengseong', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24649, 'Pochon', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24650, 'Pubal', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24651, 'Pucheon', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24652, 'Pyeongtaek', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24653, 'Shiheung', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24654, 'Suweon', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24655, 'Tongducheon', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24656, 'Wabu', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24657, 'Yeoju', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24658, 'Yongin', 2013, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24659, 'Andong', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24660, 'Angang', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24661, 'Hayang', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24662, 'Heunghae', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24663, 'Kimcheon', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24664, 'Kumi', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24665, 'Kyeongju', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24666, 'Kyeongsan', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24667, 'Mungyong', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24668, 'Ochon', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24669, 'Oedong', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24670, 'Pohang', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24671, 'Sangju', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24672, 'Seonsan', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24673, 'Waegwan', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24674, 'Yechon', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24675, 'Yeongcheon', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24676, 'Yeongju', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24677, 'Yeonil', 2014, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24678, 'Changweon', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24679, 'Chinhae', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24680, 'Chinju', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24681, 'Chinyeong', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24682, 'Keoje', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24683, 'Kimhae', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24684, 'Koseong', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24685, 'Masan', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24686, 'Miryang', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24687, 'Naeso', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24688, 'Sacheon', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24689, 'Sinhyeon', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24690, 'Tongyong', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24691, 'Ungsang', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24692, 'Yangsan', 2015, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24693, 'Bucheon', 2016, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24694, 'Sungnamshi', 2016, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24695, 'Uijongbu', 2016, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24696, 'Gumi-Shi', 2017, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24697, 'Kyungsan', 2017, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24698, 'Youngcheon-Si', 2017, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24699, 'Bundang', 2018, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24700, 'Gunpo', 2018, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24701, 'Yangu', 2018, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24702, 'Pochun', 2018, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24703, 'Yonggi', 2018, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24704, 'Kijang', 2019, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24705, 'Pusan', 2019, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24706, 'Seoul', 2020, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24707, 'Hwawon', 2022, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24708, 'Taegu', 2022, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24709, 'Taejeon', 2023, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24710, 'Daejeon', 2024, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24711, 'Nongso', 2025, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24712, 'Ulsan', 2025, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24713, 'Heungup-Myun', 2026, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24714, 'Inchon', 2027, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24715, 'Taejon', 2027, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24716, 'Hawalli', 2029, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, 1), -(24717, 'Massilah', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24718, 'Mushrif', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24719, 'Salwa ', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24720, 'Sha ab', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24721, 'Subbah-as-Salim', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24722, 'al-Funaytis', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24723, 'al-Funaytis-al-Garbiyah', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24724, 'al-Jabiriyah', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24725, 'al-Karim', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24726, 'ar-Rumaythiyah', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24727, 'as-Salimiyah', 2029, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24728, 'Mishref', 2030, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24729, 'Qadesiya', 2031, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24730, 'Safat', 2032, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24731, 'Salmiya', 2033, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24732, 'A qaylah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24733, 'Abu Hulayfah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24734, 'Dahar', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24735, 'Desert Area', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24736, 'Hadiyah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24737, 'Jabbar-al- Ali', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24738, 'Shu aybah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24739, 'al-Ahmadi', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24740, 'al-Fintas', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24741, 'al-Fuhayhil', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24742, 'al-Mahbulah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24743, 'al-Manqaf', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24744, 'al-Wafrah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24745, 'ar-Riqqah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24746, 'as-Sabahiyah', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24747, 'az-Zawr', 2034, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24748, ' Umayriyah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24749, 'Abraq Khitan', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24750, 'Ardiyah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24751, 'Fardaws', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24752, 'Jalib ash-Shuyuh', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24753, 'Janub-as-Surrah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24754, 'Khitan-al-Janubiyah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24755, 'Qartaba', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24756, 'Riqay', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24757, 'Sabhan', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24758, 'Sarbah-an-Nasr', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24759, 'Warmawk', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24760, 'al-Andalus', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24761, 'al-Farwaniyah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24762, 'ar-Rabbiyah', 2035, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24763, 'Amgarah', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24764, 'Nasim', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24765, 'Tayma ', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24766, 'Uyawn', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24767, 'Waha', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24768, 'al-Jahra', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24769, 'as-Sulaybiyah', 2036, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24770, ' Abullah-as-Salam', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24771, 'Ardhiyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24772, 'Banayd-al-Qar', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24773, 'Health District', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24774, 'Kayfan', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24775, 'Khalidiyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24776, 'Mansuriyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24777, 'Nuzha', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24778, 'Qarnadah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24779, 'Shamiyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24780, 'ad-Da iyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24781, 'ad-Dasma', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24782, 'ad-Dawhah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24783, 'al- Udayliyah', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24784, 'al-Fayha', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24785, 'al-Kuwayt', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24786, 'as-Sulaybihat', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24787, 'ash-Shuwaykh Industrial', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24788, 'ash-Shuwaykh Reservoir', 2037, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24789, 'Batken', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24790, 'Isfana', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24791, 'Khaidarkan', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24792, 'Kyzyl-Kiya', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24793, 'Ravat', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24794, 'Sulukta', 2038, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24795, 'Bishkek', 2039, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24796, 'Ak-Suu', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24797, 'Belovodskoye', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24798, 'Boroldoy', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24799, 'Chaldovar', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24800, 'Chatkyol', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24801, 'Chui', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24802, 'Don Arik', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24803, 'Ivanovka', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24804, 'Jangyjar', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24805, 'Jangypakhtar', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24806, 'Kalininskoye', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24807, 'Kalinovka', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24808, 'Kara-Suu', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24809, 'Karabalta', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24810, 'Kayingdi', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24811, 'Kegety', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24812, 'Kemin', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24813, 'Kosh Tegirmen', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24814, 'Krasnaya Rechka', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24815, 'Orlovka', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24816, 'Sokuluk', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24817, 'Sopokov', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24818, 'Sosnovka', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24819, 'Tokmok', 2040, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, 1), -(24820, 'Tunuk', 2040, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24821, 'Yuryevka', 2040, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24822, 'Ak-Bulok', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24823, 'Ak-Terek', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24824, 'Ananyevo', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24825, 'Balykchy', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24826, 'Barskoon', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24827, 'Cholpon-Ata', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24828, 'Darkhon', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24829, 'Enilchek', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24830, 'Grigoryevka', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24831, 'Jyrgolon', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24832, 'Kara-Say', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24833, 'Karako', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24834, 'Karakol', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24835, 'Kuturgu', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24836, 'Mikhaylovka', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24837, 'Novovoznesenovka', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24838, 'Ottuk', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24839, 'Semyonovka', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24840, 'Taldy-Suu', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24841, 'Teploklyuchenka', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24842, 'Tyup', 2041, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24843, 'Ala Buka', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24844, 'Bazarkurgon', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24845, 'Jalal-Abad', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24846, 'Jangybazar', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24847, 'Karavan', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24848, 'Kochkor-Ata', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24849, 'Kok-Jangak', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24850, 'Mailuu-Suu', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24851, 'Tash-Kumyr', 2042, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24852, 'At-Bashi', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24853, 'Chaiek', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24854, 'Kayirma', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24855, 'Kek-Algyp', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24856, 'Kochkorka', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24857, 'Kulanak', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24858, 'Mingbulok', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24859, 'Mingkush', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24860, 'Naryn', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24861, 'Ugyut', 2043, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24862, 'Daraut-Korgan', 2044, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24863, 'Gulcha', 2044, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24864, 'Leninskoye', 2044, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24865, 'Osh', 2044, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24866, 'Uzgen', 2044, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24867, 'Chat-Bazar', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24868, 'Groznoye', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24869, 'Kara-Kul', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24870, 'Klyuchevka', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24871, 'Kyzyl-Adyr', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24872, 'Leninopol', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24873, 'Maimak', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24874, 'Talas', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24875, 'Toktogul', 2045, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24876, 'Samakhixai', 2046, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24877, 'Huayxay', 2047, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24878, 'Pakxan', 2048, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24879, 'Champasak', 2049, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24880, 'Muang Khong', 2049, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24881, 'Muang Khongxedon', 2049, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24882, 'Pakxe', 2049, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24883, 'Xam Nua', 2050, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24884, 'Thakek', 2051, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24885, 'Ban Nahin', 2054, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24886, 'Phongsaly', 2055, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24887, 'Saravan', 2056, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, 1), -(24888, 'Savannakhet', 2057, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24889, 'Sekong', 2058, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24890, 'Xaignabury', 2061, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24891, 'Aizkraukle', 2063, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24892, 'Jaunjelgava', 2063, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24893, 'Plavinas', 2063, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24894, 'Aluksne', 2064, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24895, 'Ape', 2064, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24896, 'Balvi', 2065, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24897, 'Vilaka', 2065, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24898, 'Bauska', 2066, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24899, 'Cesis', 2067, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24900, 'Ligatne', 2067, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24901, 'Ilukste', 2068, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24902, 'Subate', 2068, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24903, 'Auce', 2070, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24904, 'Dobele', 2070, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24905, 'Gulbene', 2071, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24906, 'Akniste', 2072, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24907, 'Jekabspils', 2072, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24908, 'Viesite', 2072, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24909, 'Jelgava', 2073, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24910, 'Kalnciems', 2074, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24911, 'Dagda', 2076, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24912, 'Kraslava', 2076, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24913, 'Kuldiga', 2077, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24914, 'Skrunda', 2077, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24915, 'Liepaja', 2078, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24916, 'Aizpute', 2079, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24917, 'Durbe', 2079, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24918, 'Grobina', 2079, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24919, 'Pavilosta', 2079, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24920, 'Priekule', 2079, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24921, 'Ainazhi', 2080, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24922, 'Aloja', 2080, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24923, 'Limbazhi', 2080, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24924, 'Salacgriva', 2080, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24925, 'Staicele', 2080, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24926, 'Karsava', 2081, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24927, 'Ludza', 2081, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24928, 'Zilupe', 2081, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, 1), -(24929, 'Cesvaine', 2082, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24930, 'Lubana', 2082, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24931, 'Madona', 2082, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24932, 'Varaklani', 2082, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24933, 'Ikskile', 2083, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24934, 'Kegums', 2083, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24935, 'Lielvarde', 2083, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24936, 'Ogre', 2083, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24937, 'Livani', 2084, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24938, 'Preili', 2084, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24939, 'Rezekne', 2085, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24940, 'Vilani', 2086, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24941, 'Riga', 2087, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24942, 'Baldone', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24943, 'Balozhi', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24944, 'Olaine', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24945, 'Salaspils', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24946, 'Saulkrasti', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24947, 'Sigulda', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24948, 'Vangazhi', 2088, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24949, 'Broceni', 2089, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24950, 'Saldus', 2089, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24951, 'Sabile', 2090, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(24952, 'Stende', 2090, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24953, 'Talsi', 2090, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24954, 'Valdemarpils', 2090, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24955, 'Kandava', 2091, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24956, 'Tukums', 2091, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24957, 'Seda', 2092, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24958, 'Smiltene', 2092, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24959, 'Strenchi', 2092, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24960, 'Valka', 2092, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24961, 'Mazsalaca', 2093, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24962, 'Rujiena', 2093, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24963, 'Valmiera', 2093, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24964, 'Piltene', 2094, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24965, 'Beirut', 2096, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24966, 'Jdeidet el Metn', 2096, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24967, 'Jnaah', 2096, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24968, 'Sidon', 2100, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24969, 'Ba labakk', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24970, 'Jubb Jannin', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24971, 'Rashayya', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24972, 'Riyak', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24973, 'Zahlah', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24974, 'al-Hirmil', 2101, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24975, 'Jazzin', 2102, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24976, 'Juwayya', 2102, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24977, 'Sur', 2102, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, 1), -(24978, 'Marj Uyun', 2103, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24979, 'Nabatieh', 2103, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24980, 'an-Nabatiyat-at-Tahta', 2103, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24981, 'Tarabulus ash-Sham', 2104, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24982, 'al-Batrun', 2104, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24983, 'Teyateyaneng', 2105, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24984, 'Butha Buthe', 2106, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24985, 'Hlotse', 2107, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24986, 'Maputsoa', 2107, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24987, 'Mafeteng', 2108, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24988, 'Maseru', 2109, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24989, 'Mokhotlong', 2111, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24990, 'Quthing', 2113, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24991, 'Thaba-Tseka', 2114, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24992, 'Tubmanburg', 2115, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24993, 'Gbarnga', 2116, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24994, 'Voinjama', 2120, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24995, 'Harbel', 2121, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24996, 'Kakata', 2121, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24997, 'Bensonville', 2123, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24998, 'Monrovia', 2123, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(24999, 'Ganta', 2124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25000, 'Sanniquellie', 2124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25001, 'Yekepa', 2124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25002, 'Rivercess', 2125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25003, 'Greenville', 2126, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25004, 'Ajdabiya', 2127, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25005, 'Awjilah', 2127, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25006, 'Marsa al-Burayqah', 2127, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25007, 'az-Zuwaytinah', 2127, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25008, 'Awbari', 2128, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25009, 'Ghat', 2128, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, 1), -(25010, 'Banghazi', 2129, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25011, 'Suluq', 2129, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25012, 'al-Quriyah', 2129, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25013, 'Darnah', 2130, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25014, 'Ghadamis', 2131, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25015, 'Nalut', 2131, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25016, 'Gharyan', 2132, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25017, 'Mizdah', 2132, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25018, 'al-Qaryah-ash-Sharqiyah', 2132, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25019, 'Misratah', 2133, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25020, 'Murzuq', 2134, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25021, 'Bani Walid', 2136, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25022, 'Surt', 2137, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25023, 'Tarabulus', 2138, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25024, 'Tarhunah', 2139, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25025, 'Misrata', 2140, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25026, 'Bardiyah', 2141, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25027, 'Tubruq', 2141, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25028, 'Yafran', 2142, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25029, 'Zlitan', 2143, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25030, 'al-Aziziyah', 2144, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25031, 'al-Abyar', 2145, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25032, 'al-Marj', 2145, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25033, 'Waddan', 2147, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25034, 'al-Khums', 2148, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25035, 'al-Jawf', 2149, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25036, 'Birak', 2151, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25037, 'az-Zawiyah', 2152, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25038, 'Balzers', 2153, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, 1), -(25039, 'Eschen', 2154, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25040, 'Gamprin', 2155, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25041, 'Mauren', 2156, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25042, 'Planken', 2157, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25043, 'Ruggell', 2158, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25044, 'Schaan', 2159, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25045, 'Schellenberg', 2160, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25046, 'Triesen', 2161, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25047, 'Triesenberg', 2162, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25048, 'Vaduz', 2163, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25049, 'Alytus', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25050, 'Daugai', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25051, 'Druskininkai', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25052, 'Lazdijai', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25053, 'Simnas', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25054, 'Varena', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25055, 'Veisiejai', 2164, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25056, 'Anyksciai', 2165, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25057, 'Ariogala', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25058, 'Birshtonas', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25059, 'Dotnuva', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25060, 'Ezherelis', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25061, 'Garliava', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25062, 'Jieznas', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25063, 'Jonava', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25064, 'Kachergine', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25065, 'Kaishiadorys', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25066, 'Kaunas', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25067, 'Kedainiai', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25068, 'Kulautuva', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25069, 'Prienai', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25070, 'Raseiniai', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25071, 'Vilkija', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25072, 'Zhiezhmariai', 2166, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25073, 'Gargzhdai', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25074, 'Klaipeda', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25075, 'Kretinga', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25076, 'Neringa', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25077, 'Pagegiai', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25078, 'Palanga', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25079, 'Panemune', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25080, 'Rusne', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25081, 'Salantai', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25082, 'Shilute', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25083, 'Skuodas', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25084, 'Zhemaichiu Naumiestis', 2167, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25085, 'Gelgaudishkis', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25086, 'Kalvarija', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25087, 'Kazlu Ruda', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25088, 'Kudirkos Naumiestis', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25089, 'Kybartai', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25090, 'Marijampole', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25091, 'Shakiai', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25092, 'Vilkavishkis', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25093, 'Virbalis', 2168, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25094, 'Birzhai', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25095, 'Jonishkelis', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25096, 'Juodupe', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25097, 'Kupishkis', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25098, 'Obeliai', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25099, 'Pandelys', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25100, 'Panevezhys', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25101, 'Panevezio', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25102, 'Pasvalys', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25103, 'Ramygala', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25104, 'Rokishkis', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25105, 'Subachius', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25106, 'Vabalninkas', 2169, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25107, 'Panevezys', 2170, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, 1), -(25108, 'Akmene', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25109, 'Jonishkis', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25110, 'Kelme', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25111, 'Kurshenai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25112, 'Linkuva', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25113, 'Naujoji Akmene', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25114, 'Pakruojis', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25115, 'Radvilishkis', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25116, 'Sheduva', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25117, 'Shiauliai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25118, 'Siauliai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25119, 'Tyruliai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25120, 'Tytuvenai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25121, 'Uzhventis', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25122, 'Venta', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25123, 'Viekshniai', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25124, 'Zhagare', 2171, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25125, 'Jurbarkas', 2172, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25126, 'Shilale', 2172, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25127, 'Skaudvile', 2172, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25128, 'Smalininkai', 2172, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25129, 'Taurage', 2172, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25130, 'Mazheikiai', 2173, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25131, 'Plunge', 2173, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25132, 'Rietavas', 2173, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25133, 'Telshiai', 2173, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25134, 'Varniai', 2173, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25135, 'Mazeikiai', 2174, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25136, 'Anykshchiai', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25137, 'Dukshtas', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25138, 'Dusetos', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25139, 'Ignalina', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25140, 'Kavarskas', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25141, 'Moletai', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25142, 'Troshkunai', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25143, 'Turmantas', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25144, 'Utena', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25145, 'Visaginas', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25146, 'Zarasai', 2175, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25147, 'Baltoji Voke', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25148, 'Eishishkes', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25149, 'Elektrenai', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25150, 'Grigishkes', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25151, 'Lentvaris', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25152, 'Nemenchine', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25153, 'Pabrade', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25154, 'Rudishkes', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25155, 'Shalchininkai', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25156, 'Shirvintos', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25157, 'Shvenchioneliai', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25158, 'Shvenchionys', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25159, 'Trakai', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25160, 'Ukmerge', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25161, 'Vievis', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25162, 'Vilnius', 2176, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25163, 'Bascharage', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25164, 'Bettange-sur-Mess', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25165, 'Bridel', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25166, 'Capellen', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25167, 'Clemency', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25168, 'Dahlem', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25169, 'Dippach', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25170, 'Dondelange', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25171, 'Eischen', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25172, 'Fingig', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25173, 'Garnich', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25174, 'Goeblange', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25175, 'Goetzingen', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25176, 'Grass', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25177, 'Greisch', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25178, 'Hautcharage', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25179, 'Hivange', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25180, 'Hobscheid', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25181, 'Holzem', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25182, 'Kahler', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25183, 'Kehlen', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25184, 'Keispelt', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25185, 'Kleinbettingen', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25186, 'Koerich', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25187, 'Kospstal', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25188, 'Linger', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25189, 'Mamer', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25190, 'Meispelt', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25191, 'Nospelt', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25192, 'Olm', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25193, 'Roodt', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25194, 'Schouweiler', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25195, 'Septfontaines', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25196, 'Sprinkange', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25197, 'Steinfort', 2177, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25198, 'Allerborn', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25199, 'Asselborn', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25200, 'Basbellain', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25201, 'Beiler', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25202, 'Binsfeld', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25203, 'Biwisch', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25204, 'Bockholtz', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25205, 'Boevange', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25206, 'Boxhorn', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25207, 'Brachtenbach', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25208, 'Breidfeld', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25209, 'Cinqfontaines', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25210, 'Clervaux', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25211, 'Consthum', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25212, 'Crendal', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25213, 'Deiffelt-Lentzweiler', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25214, 'Derenbach', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25215, 'Doennange', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25216, 'Dorscheid', 2178, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, 1), -(25217, 'Drauffelt', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25218, 'Drinklange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25219, 'Eisenbach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25220, 'Eselborn', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25221, 'Fischbach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25222, 'Goedange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25223, 'Grindhausen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25224, 'Hachiville', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25225, 'Hamiville', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25226, 'Hautbellain', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25227, 'Heinerscheid', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25228, 'Hoffelt', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25229, 'Holler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25230, 'Holzthum', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25231, 'Hosingen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25232, 'Huldange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25233, 'Hupperdange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25234, 'Kalborn', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25235, 'Leithum', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25236, 'Lieler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25237, 'Lullange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25238, 'Marnach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25239, 'Maulusmuehle', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25240, 'Munshausen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25241, 'Neidhausen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25242, 'Niederwampach-Schimpach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25243, 'Oberwampach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25244, 'Reuler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25245, 'Roder', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25246, 'Rodershausen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25247, 'Rumlange-Lentzweiler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25248, 'Sassel', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25249, 'Siebenaler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25250, 'Stockem', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25251, 'Troine-Hinterhasselt', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25252, 'Troine-Route', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25253, 'Troisvierges', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25254, 'Urspelt', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25255, 'Wahlhausen', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25256, 'Weicherdange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25257, 'Weiler', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25258, 'Weiswampach', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25259, 'Wilwerdange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25260, 'Wincrange', 2178, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25261, 'Bastendorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25262, 'Bettendorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25263, 'Bigelbach', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25264, 'Bourscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25265, 'Brandenbourg', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25266, 'Burden', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25267, 'Diekirch', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25268, 'Eppeldorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25269, 'Ermsdorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25270, 'Erpeldange', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25271, 'Ettelbruck', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25272, 'Folkendange', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25273, 'Gilsdorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25274, 'Hoesdorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25275, 'Hoscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25276, 'Hoscheid-Dickt', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25277, 'Ingeldorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25278, 'Kehmen-Scheidel', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25279, 'Landscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25280, 'Lipperscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25281, 'Medernach', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25282, 'Mertzig', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25283, 'Michelau', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25284, 'Moestroff', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25285, 'Niederfeulen', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25286, 'Oberfeulen', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25287, 'Reisdorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25288, 'Savelborn + Fermes', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25289, 'Schieren', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25290, 'Schlindermanderscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25291, 'Tandel', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25292, 'Wallendorf', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25293, 'Warken', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25294, 'Welscheid', 2179, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25295, 'Altrier', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25296, 'Beaufort', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25297, 'Bech', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25298, 'Berdorf', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25299, 'Bollendorf-Pont', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25300, 'Born', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25301, 'Boursdorf', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25302, 'Breidweiler', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25303, 'Christnach', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25304, 'Consdorf', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25305, 'Dickweiler', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25306, 'Echternach', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25307, 'Girst', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25308, 'Girsterklaus', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25309, 'Givenich', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25310, 'Grundhof', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25311, 'Haller', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25312, 'Hemstal', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25313, 'Hersberg-Kobenbour-Graulinster', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25314, 'Hinkel', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25315, 'Moersdorf', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25316, 'Mompach', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25317, 'Mullerthal', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25318, 'Osweiler', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25319, 'Rippig', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25320, 'Rosport', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25321, 'Scheidgen', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25322, 'Waldbillig', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25323, 'Weilerbach', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25324, 'Zittig', 2180, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25325, 'Abweiler', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25326, 'Aspelt', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25327, 'Belvaux', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25328, 'Bergem', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25329, 'Bettembourg', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25330, 'Bivange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25331, 'Crauthem', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25332, 'Differdange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25333, 'Dudelange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25334, 'Ehlange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25335, 'Ehlerange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25336, 'Esch-Alzette', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25337, 'Fennange', 2181, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, 1), -(25338, 'Foetz', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25339, 'Fousbann', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25340, 'Frisange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25341, 'Hellange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25342, 'Huncherange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25343, 'Kayl', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25344, 'Kockelscheuer', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25345, 'Lamadelaine', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25346, 'Lasauvage', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25347, 'Leudelange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25348, 'Limpach', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25349, 'Livange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25350, 'Mondercange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25351, 'Niedercorn', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25352, 'Noertzange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25353, 'Obercorn', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25354, 'Peppange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25355, 'Petange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25356, 'Pissange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25357, 'Pontpierre', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25358, 'Reckange-sur-Mess', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25359, 'Rodange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25360, 'Roedgen', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25361, 'Roeser', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25362, 'Rumelange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25363, 'Sanem', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25364, 'Schifflange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25365, 'Soleuvre', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25366, 'Tetange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25367, 'Wickrange', 2181, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25368, 'Ahn-Dreiborn', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25369, 'Altlinster', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25370, 'Beidweiler', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25371, 'Berbourg', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25372, 'Berg', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25373, 'Beyren', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25374, 'Biwer', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25375, 'Biwerbach', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25376, 'Boudler', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25377, 'Boudlerbach', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25378, 'Bourglinster', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25379, 'Breinert', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25380, 'Brouch', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25381, 'Ehnen', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25382, 'Eisenborn', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25383, 'Eschweiler', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25384, 'Flaxweiler', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25385, 'Godbrange', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25386, 'Gonderange', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25387, 'Gostingen', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25388, 'Graulinster-Blumenthal', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25389, 'Grevenmacher', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25390, 'Hagelsdorf', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25391, 'Imbringen', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25392, 'Junglinster', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25393, 'Lellig', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25394, 'Machtum', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25395, 'Manternach', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25396, 'Mensdorf', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25397, 'Mertert', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25398, 'Munschecker', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25399, 'Niederdonven', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25400, 'Oberdonven', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25401, 'Olingen', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25402, 'Rodenbourg', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25403, 'Roodt-sur-Syr', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25404, 'Wasserbillig', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25405, 'Wecker', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25406, 'Wecker-Gare', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25407, 'Weydig', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25408, 'Wormeldange', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25409, 'Wormeldange-Haut', 2182, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25410, 'Alzingen', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25411, 'Bereldange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25412, 'Bertrange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25413, 'Contern', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25414, 'Ernster', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25415, 'Fentange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25416, 'Findel', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25417, 'Hassel', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25418, 'Heisdorf', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25419, 'Helmsange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25420, 'Hesperange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25421, 'Hostert', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25422, 'Howald', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25423, 'Itzig', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25424, 'Luxembourg', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25425, 'Medingen', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25426, 'Moutfort', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25427, 'Mullendorf', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25428, 'Munsbach', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25429, 'Neuhaeusgen', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25430, 'Niederanven', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25431, 'Oberanven', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25432, 'Oetrange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25433, 'Rameldange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25434, 'Sandweiler', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25435, 'Schrassig', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25436, 'Schuttrange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25437, 'Senningen', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25438, 'Senningerberg', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25439, 'Steinsel', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25440, 'Strassen', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25441, 'Syren', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25442, 'Uebersyren', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25443, 'Waldhof', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25444, 'Walferdange', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25445, 'Weiler-la-Tour', 429, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25446, 'Angelsberg', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25447, 'Ansembourg', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25448, 'Bissen', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25449, 'Blaschette', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25450, 'Boevange-Attert', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25451, 'Bofferdange', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25452, 'Bour', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25453, 'Buschdorf', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25454, 'Colmar-Berg', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25455, 'Cruchten', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25456, 'Ernzen', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25457, 'Glabach', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25458, 'Gosseldange', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25459, 'Grevenknapp-Bill-Finsterthal', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25460, 'Heffingen', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25461, 'Helmdange', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25462, 'Hollenfels', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25463, 'Hunsdorf', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25464, 'Larochette', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25465, 'Lintgen', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25466, 'Lorentzweiler', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25467, 'Marienthal', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25468, 'Mersch', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25469, 'Moesdorf', 2183, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, 1), -(25470, 'Nommern', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25471, 'Pettingen', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25472, 'Prettange', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25473, 'Reckange', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25474, 'Reuland', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25475, 'Rollingen', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25476, 'Scherbach', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25477, 'Scherfenhof', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25478, 'Schiltzberg', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25479, 'Schoenfels', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25480, 'Schoos', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25481, 'Schrondweiler', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25482, 'Tuntange', 2183, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25483, 'Arsdorf', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25484, 'Beckerich', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25485, 'Bettborn', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25486, 'Bigonville', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25487, 'Bilsdorf', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25488, 'Brattert-Rindschleiden', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25489, 'Buschrodt', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25490, 'Calmus', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25491, 'Colpach-Bas', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25492, 'Colpach-Haut', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25493, 'Dellen-Lehrhof-Grevels', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25494, 'Ehner', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25495, 'Ell', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25496, 'Eltz', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25497, 'Elvange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25498, 'Eschette', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25499, 'Everlange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25500, 'Folschette', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25501, 'Grevels', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25502, 'Grosbous', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25503, 'Haut-Martelange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25504, 'Heispelt', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25505, 'Holtz', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25506, 'Hovelange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25507, 'Huttange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25508, 'Kapweiler', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25509, 'Koetschette', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25510, 'Kuborn', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25511, 'Lannen', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25512, 'Levelange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25513, 'Michelbouch', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25514, 'Nagem', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25515, 'Niederpallen', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25516, 'Noerdange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25517, 'Oberpallen', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25518, 'Ospern', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25519, 'Perle', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25520, 'Petit-Nobressart', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25521, 'Platen', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25522, 'Pratz', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25523, 'Rambrouch', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25524, 'Redange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25525, 'Reichlange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25526, 'Reimberg', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25527, 'Rippweiler', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25528, 'Rombach', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25529, 'Saeul', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25530, 'Schandel', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25531, 'Schwebach', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25532, 'Schweich', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25533, 'Useldange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25534, 'Vichten', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25535, 'Wahl', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25536, 'Wolwelange', 2184, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25537, 'Altwies', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25538, 'Assel', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25539, 'Bech-Kleinmacher', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25540, 'Bous', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25541, 'Burmerange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25542, 'Canach', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25543, 'Dalheim', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25544, 'Ellange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25545, 'Emerange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25546, 'Filsdorf', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25547, 'Greiveldange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25548, 'Mondorf-les-Bains', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25549, 'Remerschen', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25550, 'Remich', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25551, 'Rolling', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25552, 'Schengen', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25553, 'Schwebsingen', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25554, 'Stadtbredimus', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25555, 'Trintange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25556, 'Trintange-Ersange-Roedt', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25557, 'Waldbredimus', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25558, 'Welfrange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25559, 'Wellenstein', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25560, 'Wintrange', 2185, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25561, 'Bettel', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25562, 'Bivels', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25563, 'Fouhren', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25564, 'Gralingen', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25565, 'Longsdorf', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25566, 'Merscheid', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25567, 'Nachtmanderscheid', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25568, 'Putscheid', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(25569, 'Stolzembourg', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25570, 'Vianden', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25571, 'Walsdorf', 2186, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25572, 'Alscheid', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25573, 'Baschleiden', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25574, 'Bavigne', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25575, 'Berle', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25576, 'Boulaide', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25577, 'Buderscheid', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25578, 'Dahl', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25579, 'Doncols', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25580, 'Enscherange', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25581, 'Esch-sur-Sure', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25582, 'Eschdorf', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25583, 'Goesdorf', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25584, 'Grumelscheid', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25585, 'Harlange', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25586, 'Heiderscheid', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25587, 'Heiderscheid-Fond', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25588, 'Hierheck', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25589, 'Insenborn', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25590, 'Kaundorf', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25591, 'Kautenbach', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25592, 'Knaphoscheid', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25593, 'Lellingen', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25594, 'Liefrange', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25595, 'Lultzhausen', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25596, 'Masseler', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25597, 'Mecher', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25598, 'Merckholtz', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25599, 'Neunhausen', 2187, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, 1), -(25600, 'Nocher', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25601, 'Nocher-Route', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25602, 'Noertrange', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25603, 'Nothum', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25604, 'Pintsch', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25605, 'Pommerloch', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25606, 'Schleif', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25607, 'Selscheid', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25608, 'Sonlez', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25609, 'Surre', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25610, 'Tadler-Ringel-Dirbach', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25611, 'Tarchamps', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25612, 'Watrange', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25613, 'Wiltz', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25614, 'Wilwerwiltz', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25615, 'Winseler', 2187, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25616, 'Macau', 2188, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25617, 'Berovo', 2189, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25618, 'Pehchevo', 2189, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25619, 'Bach', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25620, 'Bistrica', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25621, 'Bitola', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25622, 'Capari', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25623, 'Dobrushevo', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25624, 'Kukurechani', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25625, 'Mogila', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25626, 'Novaci', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25627, 'Staravina', 2190, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25628, 'Brod', 2191, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25629, 'Plasnica', 2191, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25630, 'Samokov', 2191, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25631, 'Debar', 2192, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25632, 'Zhupa', 2192, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25633, 'Delchevo', 2193, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25634, 'Kamenica', 2193, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25635, 'Bogdanci', 2195, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25636, 'Gevgelija', 2195, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25637, 'Miravci', 2195, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25638, 'Star Dojran', 2195, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25639, 'Chegrane', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25640, 'Dolna Banjica', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25641, 'Gostivar', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25642, 'Mavrovi Anovi', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25643, 'Negotino-Poloshko', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25644, 'Rostusha', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25645, 'Srbinovo', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25646, 'Vrapchishte', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25647, 'Vrutok', 2196, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25648, 'Kavadarci', 2197, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25649, 'Konopishte', 2197, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25650, 'Rosoman', 2197, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25651, 'Drugovo', 2198, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25652, 'Kichevo', 2198, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25653, 'Oslomej', 2198, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25654, 'Vraneshtica', 2198, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25655, 'Zajas', 2198, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25656, 'Cheshinovo', 2199, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25657, 'Kochani', 2199, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25658, 'Obleshevo', 2199, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25659, 'Zletovo', 2199, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25660, 'Kratovo', 2200, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25661, 'Zhitoshe', 2202, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25662, 'Izvor', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25663, 'Klechevce', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25664, 'Kumanovo', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25665, 'Lipkovo', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25666, 'Orashac', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25667, 'Staro Nagorichane', 2203, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25668, 'Demir Kapija', 2204, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25669, 'Negotino', 2204, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, 1), -(25670, 'Belchishta', 2205, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25671, 'Kosel', 2205, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25672, 'Mesheishta', 2205, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25673, 'Ohrid', 2205, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25674, 'Dolneni', 2206, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25675, 'Krivogashtani', 2206, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25676, 'Prilep', 2206, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25677, 'Topolchani', 2206, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25678, 'Vitolishte', 2206, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25679, 'Probishtip', 2207, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25680, 'Konche', 2208, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25681, 'Podaresh', 2208, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25682, 'Radovish', 2208, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25683, 'Resen', 2209, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25684, 'Karbinci', 2210, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25685, 'Shtip', 2210, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25686, 'Stip', 2210, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25687, 'Arachinovo', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25688, 'Chucher', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25689, 'Ilinden', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25690, 'Kondovo', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25691, 'Petrovec', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25692, 'Saraj', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25693, 'Skopje', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25694, 'Sopishte', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25695, 'Studenichani', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25696, 'Zelenikovo', 2211, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25697, 'Delogozhdi', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25698, 'Labunishta', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25699, 'Lukovo', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25700, 'Struga', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25701, 'Veleshta', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25702, 'Vevchani', 2212, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25703, 'Bosilovo', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25704, 'Kuklish', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25705, 'Murtino', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25706, 'Novo Selo', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25707, 'Strumica', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25708, 'Vasilevo', 2213, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25709, 'Bogovinje', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25710, 'Brvenica', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25711, 'Dzhepchishte', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25712, 'Jegunovce', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25713, 'Kamenjance', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25714, 'Shipkovica', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25715, 'Tearce', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25716, 'Tetovo', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25717, 'Vratnica', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25718, 'Zhelino', 2215, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25719, 'Valandovo', 2216, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25720, 'Bogomila', 2217, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25721, 'Chashka', 2217, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25722, 'Gradsko', 2217, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25723, 'Veles', 2217, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25724, 'Blatec', 2218, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25725, 'Orizari', 2218, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25726, 'Zrnovci', 2218, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25727, 'Ambatolampy', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25728, 'Anjozorobe', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25729, 'Ankazobe', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25730, 'Antananarivo', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25731, 'Antanifotsy', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25732, 'Antsirabe', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25733, 'Arivonimamo', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25734, 'Betafo', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25735, 'Faratsiho', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25736, 'Fenoarivo', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25737, 'Manjakandriana', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25738, 'Soavinandriana', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25739, 'Tsiroanomandidy', 2219, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25740, 'Ambanja', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25741, 'Ambilobe', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25742, 'Andapa', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25743, 'Antalaha', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25744, 'Antsirambazaha', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25745, 'Antsiranana', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25746, 'Sambava', 2220, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25747, 'Ambalavao', 2221, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, 1), -(25748, 'Ambatofinandrahana', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25749, 'Ambositra', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25750, 'Fandriana', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25751, 'Farafangana', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25752, 'Fianarantsoa', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25753, 'Ifanadiana', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25754, 'Ihosy', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25755, 'Ikalamavony', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25756, 'Ikongo', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25757, 'Manakara', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25758, 'Manandriana', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25759, 'Mananjary', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25760, 'Nosy Varika', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25761, 'Vangaindrano', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25762, 'Vondrozo', 2221, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25763, 'Ambato Boina', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25764, 'Antsohihy', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25765, 'Bealanana', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25766, 'Mahajanga', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25767, 'Marovoay', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25768, 'Tsaratanana', 2222, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25769, 'Ambatondrazaka', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25770, 'Ambodifototra', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25771, 'Amparafaravola', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25772, 'Andevoranto', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25773, 'Andilamena', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25774, 'Anosibe An ala', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25775, 'Fenoarivo Atsinanana', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25776, 'Mahanoro', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25777, 'Mananara', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25778, 'Maroantsetra', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25779, 'Marolambo', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25780, 'Moramanga', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25781, 'Soanierana Ivongo', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25782, 'Toamasina', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25783, 'Vavatenina', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25784, 'Vohibinany', 2223, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25785, 'Amboasary', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25786, 'Ambovombe', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25787, 'Ampanihy', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25788, 'Ankazoabo', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25789, 'Beloha', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25790, 'Belon i Tsiribihina', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25791, 'Beroroha', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25792, 'Betioky', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25793, 'Miandrivazo', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25794, 'Morondava', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25795, 'Sakaraha', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25796, 'Taolanaro', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25797, 'Toliary', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25798, 'Tsihombe', 2224, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25799, 'Balaka', 2225, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25800, 'Chikwawa', 2227, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25801, 'Chiradzulu', 2228, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25802, 'Chitipa', 2229, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25803, 'Chipoka', 2230, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25804, 'Dedza', 2230, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25805, 'Dowa', 2231, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25806, 'Mponela', 2231, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25807, 'Chilumba', 2232, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25808, 'Karonga', 2232, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25809, 'Livingstonia', 2232, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25810, 'Kasungu', 2233, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25811, 'Liwonde', 2235, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25812, 'Machinga', 2235, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25813, 'Mangochi', 2236, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25814, 'Monkey Bay', 2236, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25815, 'Mchinji', 2237, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25816, 'Mulanje', 2238, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, 1), -(25817, 'Mzimba', 2240, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25818, 'Nkhotakota', 2243, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25819, 'Nsanje', 2244, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25820, 'Ntcheu', 2245, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25821, 'Ntchisi', 2246, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25822, 'Phalombe', 2247, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25823, 'Rumphi', 2248, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25824, 'Salima', 2249, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25825, 'Luchenza', 2250, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25826, 'Thyolo', 2250, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25827, 'Bandar Maharani', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25828, 'Bandar Penggaram', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25829, 'Bukit Bakri', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25830, 'Buloh Kasap', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25831, 'Chaah', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25832, 'Johor Bahru', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25833, 'Kelapa Sawit', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25834, 'Kluang', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25835, 'Kota Tinggi', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25836, 'Kulai', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25837, 'Labis', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25838, 'Ledang', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25839, 'Masai', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25840, 'Mersing', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25841, 'Parit Raja', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25842, 'Pasir Gudang', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25843, 'Pekan Nenas', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25844, 'Pontian Kecil', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25845, 'Segamat', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25846, 'Sekudai', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25847, 'Senai', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25848, 'Simpang Rengam', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25849, 'Tangkak', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25850, 'Ulu Tiram', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25851, 'Yong Peng', 2252, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25852, 'Alor Setar', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25853, 'Bailing', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25854, 'Bedong', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25855, 'Gurun', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25856, 'Jitra', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25857, 'Kuah', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25858, 'Kuala Kedah', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25859, 'Kulim', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25860, 'Langgar', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25861, 'Sungai Petani', 2253, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25862, 'Gua Musang', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25863, 'Kadok', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25864, 'Kota Bahru', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25865, 'Kuala Krai', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25866, 'Pangkal Kalong', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25867, 'Pasir Mas', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25868, 'Peringat', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25869, 'Tanah Merah', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25870, 'Tumpat', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25871, 'Wakaf Baru', 2254, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25872, 'Labuan', 2256, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25873, 'Alor Gajah', 2257, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25874, 'Ayer Keroh', 2257, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25875, 'Ayer Molek', 2257, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25876, 'Batu Berendam', 2257, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25877, 'Bemban', 2257, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, 1), -(25878, 'Bukit Baru', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25879, 'Bukit Rambai', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25880, 'Klebang', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25881, 'Kuala Sungai Baru', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25882, 'Malacca', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25883, 'Masjid Tanah', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25884, 'Melaka', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25885, 'Pulau Sebang', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25886, 'Sungai Udang', 2257, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25887, 'Bandar Jengka Pusat', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25888, 'Bentong', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25889, 'Bukit Tinggi', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25890, 'Jerantut', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25891, 'Karak', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25892, 'Kuala Lipis', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25893, 'Kuantan', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25894, 'Mentakab', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25895, 'Pekan', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25896, 'Pulau Pinang', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25897, 'Raub', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25898, 'Temerloh', 2260, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25899, 'Bayan Lepas', 2261, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25900, 'Church Town', 2261, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25901, 'George Town', 2261, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25902, 'Ayer Tawar', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25903, 'Bagan Serai', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25904, 'Batu Gajah', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25905, 'Bidor', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25906, 'Ipoh', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25907, 'Jelapang', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25908, 'Kampar', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25909, 'Kampong Koh', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25910, 'Kuala Kangsar', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25911, 'Lawan Kuda Baharu', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25912, 'Lumut', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25913, 'Pantai Remis', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25914, 'Parit Buntar', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25915, 'Perak', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25916, 'Pusing', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25917, 'Simpang Empat', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25918, 'Sungai Siput Utara', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25919, 'Taiping', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25920, 'Tanjong Malim', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25921, 'Tapah', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25922, 'Teluk Intan', 2262, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25923, 'Kangar', 2263, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25924, 'Kuala Perlis', 2263, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25925, 'Donggongon', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25926, 'Keningau', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25927, 'Kinarut', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25928, 'Kota Belud', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25929, 'Kota Kinabalu', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25930, 'Kudat', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25931, 'Kunak', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25932, 'Lahad Datu', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25933, 'Papar', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25934, 'Putatan', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25935, 'Ranau', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25936, 'Sandakan', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25937, 'Semporna', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25938, 'Tawau', 2265, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25939, 'Batu Delapan Bazaar', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25940, 'Bintulu', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25941, 'Kapit', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25942, 'Kota Samarahan', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25943, 'Kuching', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25944, 'Limbang', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25945, 'Miri', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25946, 'Sarawak', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25947, 'Sarikel', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25948, 'Sibu', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25949, 'Sri Aman', 2266, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25950, 'Ampang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25951, 'Ampang Jaya', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25952, 'Balakong', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25953, 'Bandar Baru Bangi', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25954, 'Bandar Baru Salak Tinggi', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25955, 'Bander Baro Bangi', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25956, 'Banting', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25957, 'Batang Berjuntai', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25958, 'Batu Arang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25959, 'Batu Sembilan Cheras', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25960, 'Beranang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25961, 'Bukit Beruntung', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25962, 'Cyberjaya', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25963, 'Darul Ehsan', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25964, 'Dungun', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25965, 'Gombak Setia', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25966, 'Jenjarom', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25967, 'Kajang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25968, 'Kajang-Sungai Chua', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25969, 'Klang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25970, 'Kuala Kubu Baru', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25971, 'Kuala Selangor', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25972, 'Kuang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25973, 'Pengkalan Kundang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25974, 'Petaling Jaya', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25975, 'Port Klang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25976, 'Puchong', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25977, 'Rawang', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25978, 'Sabak', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25979, 'Sekinchan', 2267, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, 1), -(25980, 'Selayang Baru', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25981, 'Semenyih', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25982, 'Serendah', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25983, 'Seri Kembangan', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25984, 'Shah Alam', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25985, 'Subang Jaya', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25986, 'Sungai Besar', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25987, 'Sungai Buloh', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25988, 'Sungai Pelek', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25989, 'Taman Greenwood', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25990, 'Tanjong Karang', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25991, 'Tanjong Sepat', 2267, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25992, 'Bahaiyah', 2268, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25993, 'Langkap', 2268, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25994, 'Cukai', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25995, 'Jertih', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25996, 'Kemaman', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25997, 'Kerteh', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25998, 'Kuala Terengganu', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(25999, 'Marang', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26000, 'Paka', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26001, 'Serdang', 2269, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26002, 'Dharavandhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26003, 'Dhonfanu', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26004, 'Eydhafushi', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26005, 'Fehendhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26006, 'Fulhadhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26007, 'Goidhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26008, 'Hithaadhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26009, 'Kamadhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26010, 'Kendhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26011, 'Kihaadhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26012, 'Kudarikilu', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26013, 'Maalhos', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26014, 'Thulhaadhoo', 2272, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26015, 'Badidhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26016, 'Gemendhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26017, 'Hulhudheli', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26018, 'Kudahuvadhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26019, 'Maaeboodhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26020, 'Meedhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26021, 'Ribudhoo', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26022, 'Vaanee', 2273, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26023, 'Biledhdhoo', 2274, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26024, 'Dharaboodhoo', 2274, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26025, 'Feeali', 2274, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26026, 'Magoodhoo', 2274, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26027, 'Nilandhoo', 2274, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26028, 'Fuvammulah', 2277, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26029, 'Dhiffushi', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26030, 'Gaafaru', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26031, 'Gulhi', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26032, 'Guraidhoo', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26033, 'Himmafushi', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26034, 'Huraa', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26035, 'Kaashidhoo', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26036, 'Maafushi', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26037, 'Thulusdhoo', 2280, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26038, 'Dhabidhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26039, 'Fonadhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26040, 'Gaadhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26041, 'Gamu', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26042, 'Hithadhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26043, 'Isdhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26044, 'Kalhaidhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26045, 'Kunahandhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26046, 'Maabaidhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26047, 'Maamendhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26048, 'Maavah', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26049, 'Mundhoo', 2281, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26050, 'Hinnavaru', 2282, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26051, 'Kurendhoo', 2282, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26052, 'Maafilaafushi', 2282, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26053, 'Naifaru', 2282, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26054, 'Olhuvelifushi', 2282, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, 1), -(26055, 'Dhiggaru', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26056, 'Kolhufushi', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26057, 'Madifushi', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26058, 'Maduvvari', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26059, 'Mulah', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26060, 'Muli', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26061, 'Naalaafushi', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26062, 'Raimandhoo', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26063, 'Veyvah', 2284, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26064, 'Fodhdhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26065, 'Hebadhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26066, 'Holhudhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26067, 'Kedhikolhudhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26068, 'Kudafari', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26069, 'Landhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26070, 'Lhohi', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26071, 'Maafaru', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26072, 'Maalhendhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26073, 'Manadhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26074, 'Miladhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26075, 'Velidhoo', 2285, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26076, 'Agolhitheemu', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26077, 'Alifushi', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26078, 'Fainu', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26079, 'Hulhudhuffaaru', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26080, 'Iguraidhoo', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26081, 'Innamaadhoo', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26082, 'Kadholhudhoo', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26083, 'Kinolhas', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26084, 'Maakurathu', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26085, 'Rasgetheemu', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26086, 'Rasmaadhoo', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26087, 'Ugoofaaru', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26088, 'Vaadhoo', 2286, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26089, 'Bilehffahi', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26090, 'Feevah', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26091, 'Feydhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26092, 'Firubaidhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26093, 'Foakaidhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26094, 'Funadhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26095, 'Kaditheemu', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26096, 'Komandoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26097, 'Lhaimagu', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26098, 'Maakandoodhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26099, 'Maaugoodhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26100, 'Maroshi', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26101, 'Narudhoo', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26102, 'Noomaraa', 2287, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26103, 'Hulhudhoo', 2288, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26104, 'Maradhoo', 2288, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26105, 'Maradhoo-Feydhoo', 2288, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26106, 'Buruni', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26107, 'Dhiyamigili', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26108, 'Gaadhiffushi', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26109, 'Hirilandhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26110, 'Kadoodhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26111, 'Kibidhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26112, 'Omadhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26113, 'Thimarafushi', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26114, 'Vandhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26115, 'Veymandhoo', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26116, 'Vilufushi', 2289, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26117, 'Felidhoo', 2290, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26118, 'Fulidhoo', 2290, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26119, 'Keyodhoo', 2290, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26120, 'Rakeedhoo', 2290, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26121, 'Thinadhoo', 2290, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26122, 'Bamako', 2291, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26123, 'Bafoulabe', 2293, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26124, 'Kayes', 2293, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26125, 'Kita', 2293, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26126, 'Nioro', 2293, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26127, 'Kidal', 2294, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26128, 'Tessalit', 2294, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26129, 'Banamba', 2295, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26130, 'Kangaba', 2295, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26131, 'Kati', 2295, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26132, 'Kolokani', 2295, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26133, 'Koulikoro', 2295, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26134, 'Bandiagara', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26135, 'Djenne', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26136, 'Douentza', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26137, 'Koro', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26138, 'Mopti', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26139, 'Tenenkou', 2296, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, 1), -(26140, 'Ke-Massina', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26141, 'Kimparana', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26142, 'Markala', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26143, 'Niono', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26144, 'San', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26145, 'Segou', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26146, 'Sokolo', 2297, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26147, 'Bougouni', 2298, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26148, 'Kolondieba', 2298, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26149, 'Koutiala', 2298, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26150, 'Sikasso', 2298, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26151, 'Yorosso', 2298, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26152, 'Araouane', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26153, 'Dire', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26154, 'Goundam', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26155, 'Niafunke', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26156, 'Taoudenni', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26157, 'Tombouctou', 2299, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26158, 'Gharghur', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26159, 'Mellieha', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26160, 'Mgarr', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26161, 'Mosta', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26162, 'Naxxar', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26163, 'San Pawl il-Bahar', 1103, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26164, 'L-Iklin', 919, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26165, 'Attard', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26166, 'Balzan', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26167, 'Dingli', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26168, 'Iklin', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26169, 'Lija', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26170, 'Mdina', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26171, 'Rabat', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26172, 'Sighghiewi', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26173, 'Zebbug', 143, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26174, 'Aerok', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26175, 'Beran', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26176, 'Bikeer', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26177, 'Buoj', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26178, 'Enewe', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26179, 'Jabwan', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26180, 'Jah', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26181, 'Jeh', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26182, 'Kattiej', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26183, 'Mejajok', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26184, 'Mejil', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26185, 'Tobomaro', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26186, 'Woja', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(26187, 'Wolar', 2304, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26188, 'Ailuk', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26189, 'Ajelep', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26190, 'Aliej', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26191, 'Biken', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26192, 'Enejabrok', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26193, 'Enejelar', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26194, 'Kapen', 2305, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26195, 'Arno Arno', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26196, 'Bikarej', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26197, 'Bikonele', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26198, 'Boken', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26199, 'Eneaidrik', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26200, 'Enirik', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26201, 'Ijoen', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26202, 'Ine', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26203, 'Japo', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26204, 'Jilane', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26205, 'Kejbwe', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26206, 'Kilange', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26207, 'Kilemman', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26208, 'Kinajon', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26209, 'Langor', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26210, 'Lukoj', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26211, 'Malel', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26212, 'Manrar', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26213, 'Matolen', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26214, 'Meetdik', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26215, 'Mian', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26216, 'Najaj', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26217, 'Namwi', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26218, 'Neenkotkot', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26219, 'Taklep', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26220, 'Tinak', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26221, 'Tutu', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26222, 'Ulien', 2306, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, 1), -(26223, 'Aur', 2307, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26224, 'Tabal', 2307, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26225, 'Eneu', 2308, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26226, 'Emej', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26227, 'Enearmij', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26228, 'Enekoion', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26229, 'Enilok', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26230, 'Jittaken', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26231, 'Jittoen', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26232, 'Rerok', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26233, 'Toka', 2309, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26234, 'Enewetak', 2310, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26235, 'Japtan', 2310, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26236, 'Medren', 2310, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26237, 'Jabat', 2311, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26238, 'Ae', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26239, 'Ajejen', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26240, 'Anilep', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26241, 'Arreen', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26242, 'Bokanake', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26243, 'Bokkan', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26244, 'Bukantorak', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26245, 'Dede', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26246, 'Imiej', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26247, 'Imroj', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26248, 'Jabnoren', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26249, 'Jabwor', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26250, 'Jaluit', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26251, 'Lonone', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26252, 'Mejatto', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26253, 'Mejrirok', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26254, 'Menge', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26255, 'Nabbe', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26256, 'Narmej', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26257, 'Urbaj', 2312, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26258, 'Kili', 2313, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26259, 'Arbwa', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26260, 'Ebadon', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26261, 'Ebeye', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26262, 'Ebjadik', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26263, 'Ebwaj', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26264, 'Ennilabegan', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26265, 'Enubirr', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26266, 'Enubuj', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26267, 'Gugeegue', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26268, 'Ningi', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26269, 'North Loi', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26270, 'Orpap', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26271, 'South Loi', 2314, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26272, 'Enerein', 2315, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26273, 'Lae', 2315, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26274, 'Lejab', 2315, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26275, 'Lib', 2316, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26276, 'Jebal', 2317, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26277, 'Likiep', 2317, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26278, 'Liklal', 2317, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26279, 'Melang', 2317, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26280, 'Ajeltake', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26281, 'Aneenwudej', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26282, 'Aneko', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26283, 'Arrak', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26284, 'Bokaetoktok', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26285, 'Denmeo', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26286, 'Didej', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26287, 'Ejit', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26288, 'Enemanet', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26289, 'Jelter', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26290, 'Kalalen', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26291, 'Kemman', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26292, 'Laura', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26293, 'Pikiriin', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26294, 'Rongrong', 2318, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26295, 'Airok', 2319, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26296, 'Jang', 2319, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26297, 'Kaben', 2319, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26298, 'Tarawa', 2319, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26299, 'Wolot', 2319, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26300, 'Mejit', 2320, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, 1), -(26301, 'Aeloneo', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26302, 'Anel', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26303, 'Arbar', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26304, 'Bar', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26305, 'Bikonel', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26306, 'Enajet', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26307, 'Eoo', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26308, 'Jabonwod', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26309, 'Loen', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26310, 'Lukonwor', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26311, 'Mae', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26312, 'Majkin', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26313, 'Mili', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26314, 'Nad', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26315, 'Nallu', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26316, 'Tokewa', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26317, 'Wau', 2321, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26318, 'Namorik', 2322, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26319, 'Namu', 2323, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26320, 'Rongelap', 2324, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26321, 'Ujae', 2325, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26322, 'Utirik', 2326, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26323, 'Wotho', 2327, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26324, 'Didi', 2328, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26325, 'Nibun', 2328, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26326, 'Wormej', 2328, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26327, 'Wotje', 2328, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26328, 'Fort-de-France', 2329, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26329, 'Le Lamentin', 2329, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26330, 'Saint-Joseph', 2329, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26331, 'Schoelcher', 2329, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26332, 'Le Morne-Rouge', 2332, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26333, 'Saint-Pierre', 2332, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26334, 'Atar', 88, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26335, 'Shingati', 88, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26336, 'Kifah', 2333, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26337, 'Alaq', 2334, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26338, 'Buqah', 2334, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26339, 'Magta Lahjar', 2334, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26340, ' Ayun-al- Atrus', 2336, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26341, 'Kubanni', 2336, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26342, 'Timbedra', 2337, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26343, 'Walatah', 2337, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26344, 'an-Na mah', 2337, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, 1), -(26345, 'Aqjawajat', 2338, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26346, 'Nawakshut', 2339, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26347, 'Hsay Walad Ali Babi', 2340, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26348, 'Kayhaydi', 2341, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26349, 'Tijiqjah', 2342, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26350, 'Rusu', 2344, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26351, 'Bel Air', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26352, 'Bon Accueil', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26353, 'Brisee Verdiere', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26354, 'Camp Ithier', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26355, 'Camp de Masque', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26356, 'Camp de Masque Pave', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26357, 'Central Flacq', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26358, 'Ecroignard', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26359, 'Grand River South East', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26360, 'Lalmatie', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26361, 'Laventure', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26362, 'Mare La Chaux', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26363, 'Medine-Camp de Masque', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26364, 'Olivia', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26365, 'Poste de Flacq', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26366, 'Quatre Cocos', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26367, 'Quatre Soeurs', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26368, 'Queen Victoria', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26369, 'Saint Julien', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26370, 'Saint Julien d Hotman', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26371, 'Trou d Eau Douce', 2347, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26372, 'Floreal', 2348, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26373, 'Camp Thorel', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26374, 'Dagotiere', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26375, 'Dubreuil', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26376, 'Esperance', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26377, 'L Avenir', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26378, 'La Laura-Malenga', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26379, 'Melrose', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26380, 'Montagne Blanche', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26381, 'Pailles', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26382, 'Providence', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26383, 'Quartier Militaire', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26384, 'Ripailles', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26385, 'Saint Pierre', 2350, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26386, 'Arsenal', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26387, 'Baie du Tombeau', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26388, 'Calebasses', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26389, 'Congomah', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26390, 'Creve Coeur', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26391, 'D Epinay', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26392, 'Fond du Sac', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26393, 'La Tour Koenig', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26394, 'Le Hochet', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26395, 'Long Mountain', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26396, 'Morcellement Saint Andre', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26397, 'Notre Dame', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26398, 'Pamplemousse', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26399, 'Plaines des Papayes', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26400, 'Pointe aux Piments', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26401, 'Terre Rouge', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26402, 'Triolet', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26403, 'Villebague', 2351, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26404, 'Baie Malgache', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26405, 'Coromandel-Graviers', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26406, 'Grand Baie-Montagne Goyaves', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26407, 'La Ferme', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26408, 'Lataniers-Mont Lubin', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26409, 'Mangues-Quatre Vents', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26410, 'Oyster Bay', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26411, 'Petit Gabriel', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26412, 'Piments-Baie Topaze', 2355, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, 1), -(26413, 'Plaine Corail-La Fouche Corail', 2355, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26414, 'Port Mathurin', 2355, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26415, 'Port Sud-Est', 2355, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26416, 'Riviere Cocos', 2355, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26417, 'Roche Bon Dieu-Trefles', 2355, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26418, 'Baie du Cap', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26419, 'Bel Ombre', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26420, 'Benares', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26421, 'Bois Cheri', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26422, 'Britannia', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26423, 'Camp Diable', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26424, 'Chamouny', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26425, 'Chemin Grenier', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26426, 'Grand Bois', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26427, 'Riviere des Anguilles', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26428, 'Souillac', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26429, 'Surinam', 2357, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26430, 'Acoua', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26431, 'Bandraboua', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26432, 'Bandrele', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26433, 'Boueni', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26434, 'Chiconi', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26435, 'Chirongui', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26436, 'Dembeni', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26437, 'Kanikeli', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26438, 'Koungou', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26439, 'Mamoudzou', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26440, 'Mtsamboro', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26441, 'Mtsangamouji', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26442, 'Ouangani', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26443, 'Sada', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26444, 'Tsingoni', 2358, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26445, 'Dzaoudzi', 2359, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26446, 'Pamanzi', 2359, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26447, 'Aguascalientes', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26448, 'Asientos', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26449, 'Calvillo', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26450, 'Cosio', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26451, 'Margaritas', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26452, 'Ojocaliente', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26453, 'Pabellon de Arteaga', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26454, 'Pabellon de Hidalgo', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26455, 'Palo Alto', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26456, 'Rincon de Romos', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26457, 'San Francisco de los Romo', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26458, 'San Jose de Gracia', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26459, 'Tepezala', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26460, 'Villa Juarez', 2360, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26461, 'Becal', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26462, 'Bolonchen', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26463, 'Calkini', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26464, 'Campeche', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26465, 'Champoton', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26466, 'China', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26467, 'Dzitbalche', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26468, 'Escarcega', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26469, 'Hecelchakan', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26470, 'Hopelchen', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26471, 'Isla Aguada', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26472, 'Nuevo Progreso', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26473, 'Nunkini', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26474, 'Palizada', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26475, 'Pomuch', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26476, 'Sabancuy', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26477, 'Seybaplaya', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26478, 'Tenabo', 2363, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26479, 'Acacoyagua', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26480, 'Acala', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26481, 'Acapetahua', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26482, 'Altamirano', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26483, 'Alvaro Obregon', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26484, 'Amatan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26485, 'Amatenango del Valle', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26486, 'Arriaga', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26487, 'Benemerito de las Americas', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26488, 'Berriozabal', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26489, 'Bochil', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26490, 'Cacahoatan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26491, 'Cancuc', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26492, 'Catazaja', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26493, 'Chalchihiutan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26494, 'Chanal', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26495, 'Chiapa', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26496, 'Chiapilla', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26497, 'Chicomuselo', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26498, 'Chilon', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26499, 'Cintalapa', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26500, 'Comaltitlan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26501, 'Comitan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26502, 'Copainala', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26503, 'Copoya', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26504, 'Cristobal Obregon', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26505, 'El Bosque', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26506, 'El Parral', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26507, 'Frontera Comalapa', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26508, 'Frontera Corozal', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26509, 'Frontera Hidalgo', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26510, 'Huehuetan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26511, 'Huehuetan Estacion', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26512, 'Huixtla', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26513, 'Ixhuatan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26514, 'Ixtacomitan', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26515, 'Ixtapa', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26516, 'Jaltenango', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26517, 'Jesus Maria Garza', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26518, 'Jiquipilas', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26519, 'Jitotol', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26520, 'Juarez', 2364, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, 1), -(26521, 'La Concordia', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26522, 'La Trinitaria', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26523, 'Las Margaritas', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26524, 'Las Rosas', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26525, 'Mapastepec', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26526, 'Mazatan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26527, 'Motozintla', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26528, 'Navenchauc', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26529, 'Nicolas Ruiz', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26530, 'Ocosingo', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26531, 'Ocotepec', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26532, 'Ocozocoautla', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26533, 'Ostuacan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26534, 'Oxchuc', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26535, 'Palenque', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26536, 'Pantelho', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26537, 'Paredon', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26538, 'Petalcingo', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26539, 'Pichucalco', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26540, 'Pijijiapan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26541, 'Pueblo Nuevo Solistahuacan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26542, 'Puerto Madero', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26543, 'Pujiltic', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26544, 'Raudales Malpaso', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26545, 'Rayon', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26546, 'Reforma', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26547, 'Revolucion Mexicana', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26548, 'Rincon Chamula', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26549, 'Salto de Agua', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26550, 'San Cristobal de las Casas', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26551, 'San Lucas', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26552, 'San Pedro Buenavista', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26553, 'Simojovel', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26554, 'Socoltenango', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26555, 'Soyalo', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26556, 'Suchiapa', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26557, 'Suchiate', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26558, 'Tapachula', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26559, 'Tapilula', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26560, 'Tecpatan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26561, 'Tenango', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26562, 'Teopisca', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26563, 'Tila', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26564, 'Tonala', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26565, 'Totolapa', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26566, 'Tres Picos', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26567, 'Tuxtla Chico', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26568, 'Tuxtla Gutierrez', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26569, 'Tzimol', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26570, 'Veinte de Noviembre', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26571, 'Venustiano Carranza', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26572, 'Villa Corzo', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26573, 'Villaflores', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26574, 'Yajalon', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26575, 'Zinacantan', 2364, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26576, 'Adolfo Lopez Mateos', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26577, 'Ahumada', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26578, 'Anahuac', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26579, 'Ascension', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26580, 'Benito Juarez', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26581, 'Carichi', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26582, 'Casas Grandes', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26583, 'Chihuahua', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26584, 'Colonia Municipio Libre', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26585, 'Creel', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26586, 'Cuauhtemoc', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26587, 'Delicias', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26588, 'El Largo', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26589, 'Guachochi', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26590, 'Guadalupe y Calvo', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26591, 'Hermenegildo Galeana', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26592, 'Hidalgo', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26593, 'Ignacio Zaragoza', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26594, 'Juan Aldama', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26595, 'Lazaro Cardenas', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26596, 'Madera', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26597, 'Majimachi', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26598, 'Meoqui', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26599, 'Naica', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26600, 'Nuevo Casas Grandes', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26601, 'Octaviano Lopez', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26602, 'Ojinaga', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26603, 'Praxedis Guerrero', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26604, 'Puerto Palomas', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26605, 'Puerto de Anapra', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26606, 'San Buenaventura', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26607, 'San Francisco el Oro', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26608, 'Santa Cruz de Rosales', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26609, 'Saucillo', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26610, 'Valentin Gomez Farias', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26611, 'Valle de Allende', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26612, 'Vicente Guerrero', 2365, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26613, 'Acuna', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26614, 'Allende', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26615, 'Arteaga', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26616, 'Castanos', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26617, 'Cuatrocienagas', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26618, 'El Coyote', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26619, 'Frontera', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26620, 'General Cepeda', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26621, 'Hercules', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26622, 'Matamoros', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26623, 'Minas de Barroteran', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26624, 'Monclova', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26625, 'Muzquiz', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26626, 'Nadadores', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26627, 'Nava', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26628, 'Nueva Rosita', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26629, 'Ocampo', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26630, 'Palau', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26631, 'Parras', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26632, 'Piedras Negras', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26633, 'Ramos Arizpe', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26634, 'Sabinas', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26635, 'Saltillo', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26636, 'Torreon', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26637, 'Viesca', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26638, 'Villa Madero', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26639, 'Villa Union', 2366, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26640, 'Armeria', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26641, 'Cofradia', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26642, 'Colima', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26643, 'Colonia Bayardo', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26644, 'Comala', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26645, 'Coquimatlan', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26646, 'El Colomo', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26647, 'Minatitlan', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26648, 'Queseria', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26649, 'Suchitlan', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26650, 'Tecoman', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26651, 'Villa de Alvarez', 2367, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, 1), -(26652, 'Bermejillo', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26653, 'Canatlan', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26654, 'Cuencame', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26655, 'Durango', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26656, 'Gomez Palacio', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26657, 'Guadalupe Victoria', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26658, 'Lerdo', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26659, 'Mapimi', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26660, 'Nazareno', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26661, 'Nazas', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26662, 'Nombre de Dios', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26663, 'Nuevo Ideal', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26664, 'Panuco', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26665, 'Papasquiaro', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26666, 'Penon Blanco', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26667, 'Poanas', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26668, 'Rodeo', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26669, 'Santa Catarina de Tepehuanes', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26670, 'Santa Clara', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26671, 'Santa Maria del Oro', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26672, 'Suchil', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26673, 'Tayoltita', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26674, 'Tlahualilo', 2368, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26675, 'Abasolo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26676, 'Acambaro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26677, 'Aldama', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26678, 'Antonio Rodriguez', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26679, 'Apaseo el Alto', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26680, 'Apaseo el Grande', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26681, 'Celaya', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26682, 'Centro Familiar la Soledad', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26683, 'Cerano', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26684, 'Cerro Gordo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26685, 'Colonias Nuevo Mexico', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26686, 'Comonfort', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26687, 'Coroneo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26688, 'Cortazar', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26689, 'Cueramaro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26690, 'Doctor Mora', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26691, 'Dolores Hidalgo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26692, 'Duarte', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26693, 'El Sabino', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26694, 'Escobedo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26695, 'Guanajuato', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26696, 'Huanimaro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26697, 'Iramuco', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26698, 'Irapuato', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26699, 'Jaral del Progreso', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26700, 'Jerecuaro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26701, 'Juventino Rosas', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26702, 'La Aldea', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26703, 'La Ermita', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26704, 'La Moncada', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26705, 'Leon', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26706, 'Loma Pelada', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26707, 'Manuel Doblado', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26708, 'Maravatio', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26709, 'Marfil', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26710, 'Mexicanos', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26711, 'Moroleon', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26712, 'Octopan', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26713, 'Pacueco', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26714, 'Palo Verde', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26715, 'Paracuaro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26716, 'Penjamo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26717, 'Plan de Ayala', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26718, 'Purisima de Bustos', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26719, 'Rincon de Tamayo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26720, 'Romita', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26721, 'Salvatierra', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26722, 'San Bartolo de Berrios', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26723, 'San Diego de la Union', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26724, 'San Francisco del Rincon', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26725, 'San Jose Agua Azul', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26726, 'San Jose Iturbide', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26727, 'San Jose Temascatio', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26728, 'San Juan de la Vega', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26729, 'San Luis de la Paz', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26730, 'San Nicolas de los Agustinos', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26731, 'San Pedro de los Naranjos', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26732, 'Santa Teresa', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26733, 'Santiago de Cuenda', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26734, 'Sarabia', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26735, 'Tarandacuao', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26736, 'Tarimoro', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26737, 'Teneria del Santuario', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26738, 'Uriangato', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26739, 'Urireo', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26740, 'Valle de Santiago', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26741, 'Valtierrilla', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26742, 'Villagran', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26743, 'Villas de Irapuato', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26744, 'Yerbabuena', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26745, 'Yuriria', 2370, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26746, 'Acamixtla', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26747, 'Acapulco', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26748, 'Acatlan', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26749, 'Ajuchitlan', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26750, 'Alpoyeca', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26751, 'Apango', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26752, 'Apaxtla', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26753, 'Arcelia', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26754, 'Atliaca', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26755, 'Atoyac', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26756, 'Ayutla', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26757, 'Azoyu', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26758, 'Bajos de Ejido', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26759, 'Chichihualco', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26760, 'Chilapa', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26761, 'Chilpancingo', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26762, 'Coacoyul', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26763, 'Cocula', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26764, 'Copala', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26765, 'Copalillo', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26766, 'Coyuca', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26767, 'Cruz Grande', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26768, 'Cuajinicuilapa', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26769, 'Cuautepec', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26770, 'Cutzamala', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26771, 'El Ocotito', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26772, 'El Suchil', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26773, 'Huamuxtitlan', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26774, 'Huitziltepec', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26775, 'Huitzuco', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26776, 'Iguala', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26777, 'Kilometro Treinta', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26778, 'La Loma', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26779, 'Las Petaquillas', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26780, 'Las Vigas', 2371, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, 1), -(26781, 'Marquelia', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26782, 'Mazatlan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26783, 'Mochitlan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26784, 'Olinala', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26785, 'Ometepec', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26786, 'Petatlan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26787, 'Pilcaya', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26788, 'Quechultenango', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26789, 'San Jeronimito', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26790, 'San Jose Ixtapa', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26791, 'San Luis San Pedro', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26792, 'Taxco', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26793, 'Taxco de Alarcon', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26794, 'Tecoanapa', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26795, 'Tecpan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26796, 'Teloloapan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(26797, 'Tepecoacuilco', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26798, 'Tierra Colorada', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26799, 'Tixtla', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26800, 'Tlacoachistlahuaca', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26801, 'Tlacotepec', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26802, 'Tlalchapa', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26803, 'Tlamacazapa', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26804, 'Tlapa', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26805, 'Tlapehuala', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26806, 'Totolapan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26807, 'Tres Palos', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26808, 'Xalpatlahuac', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26809, 'Xaltianguis', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26810, 'Xochihuehuetlan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26811, 'Xochistlahuaca', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26812, 'Zacualpan', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26813, 'Zihuatanejo', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26814, 'Zirandaro', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26815, 'Zitlala', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26816, 'Zumpango', 2371, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26817, 'Acaxochitlan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26818, 'Acayuca', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26819, 'Actopan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26820, 'Ajacuba', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26821, 'Almoloya', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26822, 'Apan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26823, 'Atengo', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26824, 'Atitalaquia', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26825, 'Atotonilco de Tula', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26826, 'Atotonilco el Grande', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26827, 'Calnali', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26828, 'Cardonal', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26829, 'Chapulhuacan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26830, 'Doxey', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26831, 'El Arenal', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26832, 'El Llano', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26833, 'Emiliano Zapata', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26834, 'Huautla', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26835, 'Huejutla', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26836, 'Hueytlalpan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26837, 'Huichapan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26838, 'Ixmiquilpan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26839, 'Jacala', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26840, 'Jaltocan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26841, 'Los Reyes', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26842, 'Mineral del Monte', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26843, 'Mixquiahuala', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26844, 'Molango', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26845, 'Orizatlan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26846, 'Pachuca', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26847, 'Pachuquilla', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26848, 'Progreso', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26849, 'San Ildefonso', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26850, 'San Juan Tepa', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26851, 'Singuilucan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26852, 'Tasquillo', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26853, 'Tecozautla', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26854, 'Tepatepec', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26855, 'Tepeapulco', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26856, 'Tepeji', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26857, 'Tepepa', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26858, 'Tetepango', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26859, 'Tezontepec', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26860, 'Tizayuca', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26861, 'Tlahuelilpan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26862, 'Tlanalapa', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26863, 'Tlanchinol', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26864, 'Tlaxcoapan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26865, 'Tlaxiaca', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26866, 'Tolcayuca', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26867, 'Tula de Allende', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26868, 'Tulancingo', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26869, 'Tulantepec', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26870, 'Vindho', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26871, 'Zacualtipan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26872, 'Zapotlan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26873, 'Zempoala', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26874, 'Zimapan', 2372, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26875, 'Acatic', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26876, 'Ahualulco', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26877, 'Ajijic', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26878, 'Amatitan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26879, 'Ameca', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26880, 'Antonio Escobedo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26881, 'Arandas', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26882, 'Atemajac', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26883, 'Atequiza', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26884, 'Atotonilco el Alto', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26885, 'Atotonilquillo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26886, 'Autlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26887, 'Ayotlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26888, 'Bellavista', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26889, 'Cajititlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26890, 'Capilla de Guadalupe', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26891, 'Casimiro Castillo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26892, 'Centro de Readaptacion Social', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26893, 'Chapala', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26894, 'Chiquilistlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26895, 'Cihuatlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26896, 'Colotlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26897, 'Concepcion de Buenos Aires', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26898, 'Cosala', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26899, 'Coyula', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26900, 'Cuitzeo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26901, 'Cuqio', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26902, 'Cuyutlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26903, 'Degollado', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26904, 'El Grullo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26905, 'El Limon', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26906, 'El Quince', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26907, 'El Refugio', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26908, 'El Salto', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26909, 'El Verde', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26910, 'Encarnacion', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26911, 'Etzatlan', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26912, 'Guadalajara', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26913, 'Guzman', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26914, 'Hostotipaquillo', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26915, 'Huejucar', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26916, 'Huejuquilla el Alto', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26917, 'Itzican', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26918, 'Ixtlahuacan de los Membrillos', 2373, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, 1), -(26919, 'Ixtlahuacan del Rio', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26920, 'Ixtlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26921, 'Jalostotitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26922, 'Jamay', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26923, 'Jocotepec', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26924, 'Juanacatlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26925, 'Juchitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26926, 'La Barca', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26927, 'La Huerta', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26928, 'La Ribera', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26929, 'La Tijera', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26930, 'La Venta del Astillero', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26931, 'Lagos de Moreno', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26932, 'Las Juntas', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26933, 'Las Pintas', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26934, 'Las Pintitas', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26935, 'Lo Arado', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26936, 'Mascota', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26937, 'Mazamitla', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26938, 'Mexticacan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26939, 'Mezcala', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26940, 'Nuevo Mexico', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26941, 'Ocotlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26942, 'Ojuelos de Jalisco', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26943, 'Pihuamo', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26944, 'Poncitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26945, 'Puente Grande', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26946, 'Puerto Vallarta', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26947, 'San Francisco de Asis', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26948, 'San Jose del Castillo', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26949, 'San Juan de los Lagos', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26950, 'San Martin de Hidalgo', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26951, 'San Miguel el Alto', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26952, 'San Patricio', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26953, 'San Sebastian del Sur', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26954, 'San Sebastian el Grande', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26955, 'Santa Anita', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26956, 'Santa Cruz de las Flores', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26957, 'Santa Cruz del Valle', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26958, 'Sayula', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26959, 'Talpa', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26960, 'Tamazula', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26961, 'Tapalpa', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26962, 'Tecalitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26963, 'Tecolotlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26964, 'Tenamaxtlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26965, 'Teocaltiche', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26966, 'Teocuitatlan de Corona', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26967, 'Tepatitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26968, 'Tequila', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26969, 'Tesistan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26970, 'Teuchitlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26971, 'Tizapan el Alto', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26972, 'Tlajomulco', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26973, 'Tlaquepaque', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26974, 'Tomatlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26975, 'Tonaya', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26976, 'Tonila', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26977, 'Tototlan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26978, 'Tuxpan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26979, 'Union de San Antonio', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26980, 'Union de Tula', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26981, 'Usmajac', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26982, 'Valle de Guadalupe', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26983, 'Valle de Juarez', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26984, 'Villa Corona', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26985, 'Villa Guerrero', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26986, 'Yahualica', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26987, 'Zacoalco', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26988, 'Zapopan', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26989, 'Zapote', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26990, 'Zapotiltic', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26991, 'Zapotlanejo', 2373, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26992, 'Acahualco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26993, 'Acambay', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26994, 'Acazulco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26995, 'Acolman', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26996, 'Acuautla', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26997, 'Acutzilapan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26998, 'Ajoloapan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(26999, 'Alborada', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27000, 'Almaya', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27001, 'Almoloya del Rio', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27002, 'Amanalco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27003, 'Amecameca', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27004, 'Ameyalco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27005, 'Apaxco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27006, 'Atarasquillo', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27007, 'Atenco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27008, 'Atizapan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27009, 'Atlacomulco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27010, 'Atlatlahuca', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27011, 'Atlatongo', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27012, 'Atlautla', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27013, 'Atlazalpan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27014, 'Autopan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27015, 'Axapusco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27016, 'Ayotuzco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27017, 'Ayotzingo', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27018, 'Azcatepec', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27019, 'Balderas', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27020, 'Bocanegra', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27021, 'Boreje', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27022, 'Cacalomacan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27023, 'Cahuacan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27024, 'Calimaya', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27025, 'Calixtlahuaca', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27026, 'Capulhuac', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27027, 'Carbon', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27028, 'Cautzingo', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27029, 'Chalco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27030, 'Chapultepec', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27031, 'Chiautla', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27032, 'Chicoloapan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27033, 'Chiconautla', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27034, 'Chiconcuac', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27035, 'Chimalhuacan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27036, 'Chimalpa', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27037, 'Cholula', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27038, 'Citendeje', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27039, 'Coacalco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27040, 'Coachochitlan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27041, 'Coacomulco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27042, 'Coapango', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27043, 'Coatepec', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27044, 'Coatepec Harinas', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27045, 'Coatlinchan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27046, 'Cocotitlan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27047, 'Colorines', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27048, 'Concepcion Jolalpan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27049, 'Coyotepec', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27050, 'Cuauhtenco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27051, 'Cuautitlan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27052, 'Cuautitlan Izcalli', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27053, 'Cuautlalpan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27054, 'Cuaxustenco', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27055, 'Cuexontitlan', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27056, 'Cuijingo', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27057, 'Ecatepec', 2374, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, 1), -(27058, 'Ecatzingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27059, 'Ejido Cahuacan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27060, 'Ejido Veinte de Noviembre la C', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27061, 'Ejido de la Y Seccion Siete a ', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27062, 'El Coporo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27063, 'El Oro', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27064, 'Enchisi', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27065, 'Enthavi', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27066, 'Fuentes del Valle', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27067, 'Huehuetoca', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27068, 'Huexoculco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27069, 'Hueypoxtla', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27070, 'Huilango', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27071, 'Huitzilzingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27072, 'Huixquilucan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27073, 'Huixquilucan de Degollado', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27074, 'Huixtoco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27075, 'Ixlahuaca', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27076, 'Ixtacalco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27077, 'Ixtapaluca', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27078, 'Ixtapan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27079, 'Ixtlahuatzingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27080, 'Jajalpa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27081, 'Jaltenco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27082, 'Jaltepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27083, 'Jesus del Monte', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27084, 'Jicaltepec Autopan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27085, 'Jilotepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27086, 'Jilotzingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27087, 'Jocotitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27088, 'Joquicingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27089, 'Jorge Jimenez Cantu', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27090, 'Juchitepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27091, 'La Concepcion los Banos', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27092, 'La Constitucion', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27093, 'La Magdalema', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27094, 'Lerma', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27095, 'Loma de Juarez', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27096, 'Lomas de Zacamulpa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27097, 'Lopez Mateos', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27098, 'Los Esparragos', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27099, 'Los Reyes Acozac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27100, 'Luvianos', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27101, 'Malinalco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27102, 'Melchor Ocampo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27103, 'Metepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27104, 'Mexicaltzingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27105, 'Mextepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27106, 'Montecillo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27107, 'Nativitas', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27108, 'Naucalpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27109, 'Nexquipayac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27110, 'Nextlalpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27111, 'Nezahualcoyotl', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27112, 'Nicolas Romero', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27113, 'Nopaltepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27114, 'Ocotitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27115, 'Ocoyoacac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27116, 'Ojo de Agua', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27117, 'Otumba', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27118, 'Otzacatipan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27119, 'Oyamel', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27120, 'Oztolotepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27121, 'Ozumba', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27122, 'Papalotla', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27123, 'Progreso Industrial', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27124, 'Rio Frio', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27125, 'Salitrillo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27126, 'San Antonio Buenavista', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27127, 'San Antonio La Isla', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27128, 'San Bartolo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27129, 'San Bartolo del Llano', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27130, 'San Bernardino', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27131, 'San Felipe del Progreso', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27132, 'San Jose Guadalupe', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27133, 'San Jose el Vidrio', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27134, 'San Juan Tilapa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27135, 'San Juan de las Huertas', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27136, 'San Juan y San Pedro Tezompa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27137, 'San Lorenzo Cuauhtenco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27138, 'San Martin de las Piramides', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27139, 'San Miguel la Labor', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27140, 'San Nicolas Guadalupe', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27141, 'San Nicolas Tolentino', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27142, 'San Pablo de las Salinas', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27143, 'San Pedro Abajo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27144, 'San Pedro Arriba', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27145, 'San Pedro el Alto', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27146, 'San Pedro los Banos', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27147, 'San Simon de la Laguna', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27148, 'Santa Catarina del Monte', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27149, 'Santa Cruz del Monte', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27150, 'Santa Gertrudis', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27151, 'Santa Maria del Monte', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27152, 'Santo Domingo de Guzman', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27153, 'Soyaniquilpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27154, 'Sultepec', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27155, 'Tecalco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27156, 'Tecamac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27157, 'Techuchulco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27158, 'Tecuahutitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27159, 'Tehuixtitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27160, 'Tejupilco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27161, 'Temamatla', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27162, 'Temascalapa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27163, 'Temascalcingo', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27164, 'Temoaya', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27165, 'Tenango de Arista', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27166, 'Tenango del Aire', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27167, 'Tenochtitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27168, 'Teoloyucan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27169, 'Teotihuacan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27170, 'Tepeolulco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27171, 'Tepetitlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27172, 'Tepetlaoxtoc', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27173, 'Tepetlixpa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27174, 'Tepexpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27175, 'Tepotzotlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27176, 'Tequexquinahuac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27177, 'Tequisistlan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27178, 'Tequixquiac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27179, 'Texcalyacac', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27180, 'Texcoco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27181, 'Teyahualco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27182, 'Tezoquipan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27183, 'Tezoyuca', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27184, 'Tianguistenco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27185, 'Tilapa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27186, 'Tlachaloya Segunda Seccion', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27187, 'Tlachihualpa', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27188, 'Tlaixpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27189, 'Tlalcilalcalli', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27190, 'Tlalcilalcalpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27191, 'Tlalmanalco', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27192, 'Tlalmimilolpan', 2374, '2024-01-21 12:07:46', '2024-01-21 12:07:46', NULL, 1), -(27193, 'Tlalnepantla', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27194, 'Tlaltelulco', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27195, 'Tlaltizapan', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27196, 'Tlanisco', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27197, 'Toluca', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27198, 'Tonanitla', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27199, 'Tonatico', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27200, 'Totocuitlapilco', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27201, 'Totoltepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27202, 'Tulantongo', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27203, 'Tultepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27204, 'Tultitlan', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27205, 'Valle de Bravo', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27206, 'Xalatlaco', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27207, 'Xalpa', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27208, 'Xico', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27209, 'Xochimanca', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27210, 'Xolalpa', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27211, 'Xoloc', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27212, 'Xometla', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27213, 'Xonacatlan', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27214, 'Yachihuacaltepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27215, 'Yancuitlalpan', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27216, 'Zacacalco', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27217, 'Zacamulpa', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27218, 'Zictepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27219, 'Zinacantepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27220, 'Zolotepec', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27221, 'Zumpahuacan', 2374, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27222, 'Acuitzio', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27223, 'Aguililla', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27224, 'Angahuan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27225, 'Angamacutiro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27226, 'Angangueo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27227, 'Antunez', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27228, 'Apatzingan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27229, 'Ario', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27230, 'Brisenas', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27231, 'Caltzontzin', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27232, 'Capacuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27233, 'Capula', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27234, 'Caracuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27235, 'Charapan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27236, 'Charo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27237, 'Chavinda', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27238, 'Cheran', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27239, 'Chilchota', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27240, 'Churintzio', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27241, 'Churumuco', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27242, 'Coahuayana', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27243, 'Coalcoman', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27244, 'Coeneo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27245, 'Cojumatlan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27246, 'Comachuen', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27247, 'Contepec', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27248, 'Copandaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27249, 'Cotija', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27250, 'Cuanajo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27251, 'Cuitareo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27252, 'Ecuandureo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27253, 'Huandacareo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27254, 'Huetamo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27255, 'Indaparapeo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27256, 'Irimbo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27257, 'Jacona', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27258, 'Jiquilpan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27259, 'Jungapeo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27260, 'La Huacana', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27261, 'La Mira', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27262, 'La Orilla', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27263, 'La Piedad', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27264, 'La Ruana', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27265, 'Las Guacamayas', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27266, 'Lombardia', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27267, 'Madero', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27268, 'Maya', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27269, 'Morelos', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27270, 'Nahuatzen', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27271, 'Nocupetaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27272, 'Nueva Italia de Ruiz', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27273, 'Nuevo San Juan Parangaricutiro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27274, 'Numaran', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27275, 'Opopeo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27276, 'Pajacuaran', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27277, 'Panindicuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27278, 'Paracho', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27279, 'Pastor Ortiz', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27280, 'Patzcuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27281, 'Penjamillo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27282, 'Periban', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27283, 'Pichataro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27284, 'Purepero', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27285, 'Puruandiro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27286, 'Puruaran', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27287, 'Querendaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27288, 'Quiroga', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27289, 'Rincon de Nicolas Romero', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27290, 'Riva Palacio', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27291, 'Sahuayo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27292, 'San Matias Grande', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27293, 'Santa Clara de Valladares', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27294, 'Santa Clara del Cobre', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27295, 'Santa Fe de la Laguna', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27296, 'Tacambaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27297, 'Tancitaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27298, 'Tangamandapio', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27299, 'Tangancicuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27300, 'Tanhuato', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27301, 'Tarecuato', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27302, 'Taretan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27303, 'Tarimbaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27304, 'Tejaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27305, 'Tepalcatepec', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27306, 'Tingambato', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27307, 'Tinguindin', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27308, 'Tiquicheo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27309, 'Tlalpujahua', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27310, 'Tlazazalca', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27311, 'Tungareo', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27312, 'Tzintzuntzan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27313, 'Uruapan', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27314, 'Villa Jimenez', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27315, 'Villachuato', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27316, 'Villamar', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27317, 'Yurecuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27318, 'Zacapu', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27319, 'Zamora', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27320, 'Zinapecuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27321, 'Zitacuaro', 2375, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27322, 'Alpuyeca', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27323, 'Amacuzac', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27324, 'Amayuca', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27325, 'Anenecuilco', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27326, 'Apatlaco', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27327, 'Atlatlahucan', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27328, 'Axochiapan', 2376, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, 1), -(27329, 'Ayala', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27330, 'Calera Chica', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27331, 'Coatetelco', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27332, 'Cocoyoc', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27333, 'Cuautla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27334, 'Cuernavaca', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27335, 'Higueron', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27336, 'Hueyapan', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27337, 'Huiztilac', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27338, 'Jantetelco', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27339, 'Jiutepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27340, 'Jojutla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27341, 'Jonacatepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27342, 'Juan Morales', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27343, 'La Joya', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27344, 'Los Arcos', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27345, 'Mazatepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27346, 'Miacatlan', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27347, 'Oaxtepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27348, 'Ocuituco', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27349, 'Pedro Amaro', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27350, 'Puente de Ixtla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27351, 'San Jose Vista Hermosa', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27352, 'San Nicolas Galeana', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27353, 'Santa Catarina', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27354, 'Santa Rosa Treinta', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27355, 'Tehuixtla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27356, 'Telixtac', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27357, 'Temixco', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27358, 'Temoac', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27359, 'Tenextepango', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27360, 'Tepalcingo', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27361, 'Tepoztlan', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27362, 'Tetecala', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27363, 'Tetela del Volcan', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27364, 'Tilzapotla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27365, 'Tlaquiltenango', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27366, 'Tlatenchi', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27367, 'Tlayacapan', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27368, 'Tres Marias', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27369, 'Unidad Habitacional Jose Maria', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27370, 'Xochitepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27371, 'Xoxocotla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27372, 'Yautepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27373, 'Yecapixtla', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27374, 'Zacatepec', 2376, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27375, 'Acaponeta', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27376, 'Ahuacatlan', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27377, 'Amatlan', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27378, 'Aztatan', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27379, 'Bucerias', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27380, 'Cerralvo', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27381, 'Compostela', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27382, 'Ixcuintla', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27383, 'Ixtlan del Rio', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27384, 'Jala', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27385, 'Jalcocotan', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27386, 'La Penita de Jaltemba', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27387, 'La Presa', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27388, 'Lagunillas', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27389, 'Las Jarretaderas', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27390, 'Las Varas', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27391, 'Puga', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27392, 'Rosamorada', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27393, 'Ruiz', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27394, 'San Blas', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27395, 'San Jose del Valle', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27396, 'San Juan de Abajo', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27397, 'Tecuala', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27398, 'Tepic', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(27399, 'Valle de Banderas', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27400, 'Xalisco', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27401, 'Yago', 2377, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27402, 'Amilpas', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27403, 'Amuzgos', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27404, 'Asuncion Ixtaltepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27405, 'Asuncion Nochixtlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27406, 'Asuncion Ocotlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27407, 'Atempa', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27408, 'Atzompa', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27409, 'Ayautla', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27410, 'Ayoquezco', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27411, 'Ayotzintepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27412, 'Bajos de Chila', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27413, 'Brisas de Zicatela', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27414, 'Cacahuatepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27415, 'Cacaotepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27416, 'Chahuites', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27417, 'Chichicapam', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27418, 'Chiltepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27419, 'Cienaga de Zimatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27420, 'Coatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27421, 'Comitancillo', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27422, 'Cosolapa', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27423, 'Crucecita', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27424, 'Cuicatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27425, 'Cuilapam', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27426, 'Ejutla de Crespo', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27427, 'El Espinal', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27428, 'Etla', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27429, 'Fraccionamiento el Rosario', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27430, 'Guelavia', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27431, 'Guichicovi', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27432, 'Huajuapan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27433, 'Huatulco', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27434, 'Huaxpaltepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27435, 'Huayapam', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27436, 'Huazolotitlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27437, 'Huitzo', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27438, 'Huixtepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27439, 'Ingenio', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27440, 'Ixcatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27441, 'Ixtepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27442, 'Jamiltepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27443, 'Jicayan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27444, 'Juchitan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27445, 'Juquila', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27446, 'Juxtlahuaca', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27447, 'Loma Bonita', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27448, 'Magdalena Teitipac', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27449, 'Magdalena Tequisistlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27450, 'Matatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27451, 'Matias Romero', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27452, 'Mechoacan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27453, 'Miahuatlan', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27454, 'Mitla', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27455, 'Mixtepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27456, 'Mixtequilla', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27457, 'Nazareno Etla', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27458, 'Niltepec', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27459, 'Oaxaca', 2379, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, 1), -(27460, 'Ojitlan', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27461, 'Palomares', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27462, 'Panixtlahuaca', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27463, 'Pinotepa Nacional', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27464, 'Pinotepa de Don Luis', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27465, 'Pochutla', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27466, 'Putla', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27467, 'Quetzaltepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27468, 'Rincon Viejo', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27469, 'Rio Grande', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27470, 'Salina Cruz', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27471, 'San Agustin de las Juntas', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27472, 'San Antonio Castillo Velasco', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27473, 'San Antonio de la Cal', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27474, 'San Dionisio del Mar', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27475, 'San Francisco del Mar', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27476, 'San Jose del Progreso', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27477, 'San Juan Colorado', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27478, 'San Mateo del Mar', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27479, 'Santa Lucia del Camino', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27480, 'Santa Maria del Tule', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27481, 'Santiago Apostol', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27482, 'Santos Reyes Nopala', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27483, 'Soyaltepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27484, 'Suchilquitongo', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27485, 'Tamazulapam', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27486, 'Tapanatepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27487, 'Tehuantepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27488, 'Teitipac', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27489, 'Telixtlahuaca', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27490, 'Teotitlan', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27491, 'Teotitlan den Valle', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27492, 'Tilquiapam', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27493, 'Tlacolula', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27494, 'Tlalixtac', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27495, 'Tlaxiaco', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27496, 'Tutla', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27497, 'Tuxtepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27498, 'Union Hidalgo', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27499, 'Usila', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27500, 'Valle Nacional', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27501, 'Vicente Camalote', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27502, 'Xadani', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27503, 'Xitla', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27504, 'Xoxocotlan', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27505, 'Yaitepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27506, 'Yatareni', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27507, 'Zaachila', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27508, 'Zanatepec', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27509, 'Zimatlan', 2379, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27510, 'Acajete', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27511, 'Acateno', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27512, 'Acatzingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27513, 'Actipan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27514, 'Acuexcomac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27515, 'Ahuatempan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27516, 'Ajalpan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27517, 'Aljojuca', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27518, 'Almecatla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27519, 'Alseseca', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27520, 'Altepexi', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27521, 'Amecac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27522, 'Amozoc', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27523, 'Aparicio', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27524, 'Atempan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27525, 'Atencingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27526, 'Atlixco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27527, 'Atoyatempan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27528, 'Atzitzintla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27529, 'Azumiatla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27530, 'Cacaloxuchitl', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27531, 'Calipan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27532, 'Calmeca', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27533, 'Calpan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27534, 'Caltenco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27535, 'Canada', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27536, 'Canoa', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27537, 'Caxhuacan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27538, 'Chalchihuapan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27539, 'Chapulco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27540, 'Chautla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27541, 'Chiautzingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27542, 'Chiconquiac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27543, 'Chietla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27544, 'Chignahuapan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27545, 'Chignautla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27546, 'Chilac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27547, 'Chilchotla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27548, 'Citlaltepetl', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27549, 'Coronango', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27550, 'Coxcatlan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27551, 'Cuacnopalan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27552, 'Cuanala', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27553, 'Cuapiaxtla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27554, 'Cuautlancingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27555, 'Cuayucatepec', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27556, 'Cuetzalan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27557, 'Domingo Arenas', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27558, 'Escape', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27559, 'Huaquechula', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27560, 'Huauchinango', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27561, 'Huehuetlan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27562, 'Huejotzingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27563, 'Hueyotlipan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27564, 'Hueytamalco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27565, 'Huixcolotla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27566, 'Ixcaquixtla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27567, 'Ixtiyucan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27568, 'Izucar', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27569, 'Jolalpan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27570, 'La Galarza', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27571, 'La Resureccion', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27572, 'Libres', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27573, 'Los Ranchos', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27574, 'Los Reyes de Juarez', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27575, 'Malacatepec', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27576, 'Metlaltoyuca', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27577, 'Mihuacan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27578, 'Momoxpan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27579, 'Moyotzingo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27580, 'Nealtican', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27581, 'Necaxa', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27582, 'Nopalucan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27583, 'Ocoyucan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27584, 'Oriental', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27585, 'Pahuatlan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27586, 'Palmar de Bravo', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27587, 'Puebla', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27588, 'Quecholac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27589, 'Raboso', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27590, 'Rafael Lara Grajales', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27591, 'San Gabriel Casa Blanca', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27592, 'San Lucas el Grande', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27593, 'San Salvador el Seco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27594, 'San Sebastian Villanueva', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27595, 'Sanctorum', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27596, 'Santa Maria la Alta', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27597, 'Serdan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27598, 'Soltepec', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27599, 'Tatoxcac', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27600, 'Tecali', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27601, 'Tecamachalco', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27602, 'Tehuacan', 2380, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, 1), -(27603, 'Tehuitzingo', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27604, 'Tenango de las Flores', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27605, 'Tenextatiloyan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27606, 'Teontepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27607, 'Teopantlan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27608, 'Teotlalcingo', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27609, 'Tepango', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27610, 'Tepatlaxco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27611, 'Tepeaca', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27612, 'Tepeojuma', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27613, 'Tepexi', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27614, 'Tepulco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27615, 'Tetela Morelos', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27616, 'Tetela de Ocampo', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27617, 'Teteles', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27618, 'Tetzoyocan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27619, 'Texmelucan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27620, 'Teziutlan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27621, 'Tianguismanalco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27622, 'Tlachichuca', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27623, 'Tlacoyalco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27624, 'Tlahuapan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27625, 'Tlalancaleca', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27626, 'Tlaltenango', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27627, 'Tlanalapan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27628, 'Tlancualpican', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27629, 'Tlanepantla', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27630, 'Tlapanala', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27631, 'Tlatlauquitepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27632, 'Tlaxcalancingo', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27633, 'Tlaxco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27634, 'Tochapan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27635, 'Tochimilco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27636, 'Tochtepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27637, 'Tulcingo', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27638, 'Tuxco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27639, 'Xalmimilulco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27640, 'Xaltepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27641, 'Xicotepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27642, 'Xiutetelco', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27643, 'Xochiltenango', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27644, 'Xochitlan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27645, 'Xonatepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27646, 'Xoxtla', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27647, 'Yaonahuac', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27648, 'Yehualtepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27649, 'Zacapechpan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27650, 'Zacapoaxtla', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27651, 'Zacatlan', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27652, 'Zinacatepec', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27653, 'Zongozotla', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27654, 'Zozutla', 2380, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27655, 'Amazcala', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27656, 'Amealco', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27657, 'Cadereyta', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27658, 'Candiles', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27659, 'El Colorado', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27660, 'El Pueblito', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27661, 'El Sauz', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27662, 'Ezequiel Montes', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27663, 'Huimilpan', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27664, 'Jalpan', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27665, 'Jauregui', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27666, 'La Canada', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27667, 'La Estancia', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27668, 'La Lira', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27669, 'La Llave', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27670, 'Paso de Mata', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27671, 'Pedro Escobedo', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27672, 'Queretaro', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27673, 'San Jose de los Olvera', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27674, 'San Jose el Alto', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27675, 'San Juan del Rio', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27676, 'San Pedro Martir', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27677, 'Santa Maria Magdalena', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27678, 'Tequisquiapan', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27679, 'Tlacote el Bajo', 2381, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27680, 'Adolfo Ruiz Cortines', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27681, 'Agua Verde', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27682, 'Ahome', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27683, 'Badiraguato', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27684, 'Bagojo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27685, 'Campo Gobierno', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27686, 'Choix', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27687, 'Compuertas', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27688, 'Constancia', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27689, 'Costa Rica', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27690, 'Culiacan', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27691, 'Culiacancito', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27692, 'El Burrion', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27693, 'El Carrizo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27694, 'El Diez', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27695, 'El Estero', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27696, 'El Fuerte', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27697, 'El Tamarindo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27698, 'Escuinapa', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27699, 'Estacion Naranjo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27700, 'Estancia Bamoa', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27701, 'Gabriel Leyva Solano', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27702, 'Guamuchil', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27703, 'Guasave', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27704, 'Higuera', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27705, 'Isla del Bosque', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27706, 'Jahuara Segundo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27707, 'Juan Jose Rios', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27708, 'La Reforma', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27709, 'La Trinidad', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27710, 'Los Mochis', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27711, 'Mochicahui', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27712, 'Mocorito', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27713, 'Navolato', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27714, 'Pericos', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27715, 'Pueblos Unidos', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27716, 'Quila', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27717, 'Sinaloa', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27718, 'Teacapan', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27719, 'Topolobampo', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27720, 'Zapotitlan', 2384, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27721, 'Agua Prieta', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27722, 'Alamos', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27723, 'Altar', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27724, 'Bacobampo', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27725, 'Bacum', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27726, 'Bahia de Kino', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27727, 'Benjamin Hill', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27728, 'Caborca', 2385, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, 1), -(27729, 'Campo Sesenta', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27730, 'Cananea', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27731, 'Carbo', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27732, 'Cocorit', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27733, 'Cumpas', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27734, 'Empalme', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27735, 'Esqueda', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27736, 'Etchojoa', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27737, 'Etchoropo', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27738, 'Guaymas', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27739, 'Hermosillo', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27740, 'Huatabampo', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27741, 'Imuris', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27742, 'Kino', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27743, 'La Doce', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27744, 'Moctezuma', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27745, 'Naco', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27746, 'Nacozari', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27747, 'Navajoa', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27748, 'Obregon', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27749, 'Pitiquito', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27750, 'Potam', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27751, 'Puerto Penasco', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27752, 'Rio Muerto', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27753, 'Sahuaripa', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27754, 'San Jose de Bacum', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27755, 'San Luis Rio Colorado', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27756, 'Sonoita', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27757, 'Tobarito', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27758, 'Ures', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27759, 'Vicam', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27760, 'Yaqui', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27761, 'Yavaros', 2385, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27762, 'Aquiles Serdan', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27763, 'Ayapa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27764, 'Balancan', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27765, 'Barra de Santa Ana', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27766, 'Bosque de Saloya', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27767, 'Campo Magellanes', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27768, 'Chichicapa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27769, 'Chontalpa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27770, 'Comalcalco', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27771, 'Cunduacan', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27772, 'Fraccionamiento la Selva', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27773, 'Huimanguillo', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27774, 'Jalpa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27775, 'Jonuta', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27776, 'La Curva', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27777, 'La Venta', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27778, 'Luis Gil Perez', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27779, 'Macultepec', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27780, 'Macuspana', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27781, 'Magana', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27782, 'Miguel Hidalgo', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27783, 'Nacajuca', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27784, 'Ocuiltzapotlan', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27785, 'Once de Febrero', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27786, 'Parrilla', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27787, 'Pemex', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27788, 'Playas del Rosario', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27789, 'Simon Sarlat', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27790, 'Tacotalpa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27791, 'Tamulte', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27792, 'Teapa', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27793, 'Tecolutilla', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27794, 'Tenosique', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27795, 'Villa Aldama', 2386, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27796, 'Antiguo Morelos', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27797, 'El Mante', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27798, 'Estacion Manuel', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27799, 'Graciano Sanchez', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27800, 'Guerrero', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27801, 'Gustavo Diaz Ordaz', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27802, 'Jaumave', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27803, 'Llerca', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27804, 'Los Guerra', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27805, 'Mier', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27806, 'Miguel Aleman', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27807, 'Nuevo Laredo', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27808, 'Reynosa', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27809, 'Rio Bravo', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27810, 'Santa Engracia', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27811, 'Santander Jimenez', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27812, 'Soto la Marina', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27813, 'Tampico', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27814, 'Valle Hermoso', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27815, 'Xicotencatl', 2387, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27816, 'Ahuashuatepec', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27817, 'Altzayanca', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27818, 'Amaxac', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27819, 'Apetatitlan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27820, 'Apizaco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27821, 'Apizaquito', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27822, 'Atexcatzingo', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27823, 'Axocomanitla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27824, 'Ayometla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27825, 'Buen Suceso', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27826, 'Calpulalpan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27827, 'Chiautempan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27828, 'Contla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27829, 'Huactzinco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27830, 'Huamantla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27831, 'Huiloac', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27832, 'Ixtacuixtla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27833, 'Ixtenco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27834, 'Mazatecochco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27835, 'Nanacamilpa', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27836, 'Panotla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27837, 'Quilehtla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27838, 'Teacalco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27839, 'Teolocholco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27840, 'Tepetitla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27841, 'Tepeyanco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27842, 'Tequixquitla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27843, 'Terrenate', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27844, 'Tetla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27845, 'Tetlanohcan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27846, 'Tetlatlahuca', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27847, 'Texcalac', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27848, 'Texoloc', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27849, 'Tlaxcala', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27850, 'Tocatlan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27851, 'Totolac', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27852, 'Villa Alta', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27853, 'Xaloztoc', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27854, 'Xaltocan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27855, 'Xicohtzinco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27856, 'Xiloxoxtla', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27857, 'Yauhquemecan', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27858, 'Zacatelco', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27859, 'Zitlaltepec', 2388, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, 1), -(27860, 'Acayucan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27861, 'Acultzingo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27862, 'Agua Dulce', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27863, 'Alamo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27864, 'Alto Lucero', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27865, 'Altotonga', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27866, 'Anton Lizardo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27867, 'Atzacan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27868, 'Azueta', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27869, 'Banderilla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27870, 'Boca del Monte', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27871, 'Boca del Rio', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27872, 'Cabada', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27873, 'Cabezas', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27874, 'Carrillo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27875, 'Castillo de Teayo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27876, 'Catemaco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27877, 'Cazones', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27878, 'Cerro Azul', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27879, 'Chacaltianguis', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27880, 'Chicontepec', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27881, 'Chinameca', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27882, 'Chinampa', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27883, 'Chocaman', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27884, 'Coacoatzintla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27885, 'Coacotla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27886, 'Coatzacoalcos', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27887, 'Coatzintla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27888, 'Comoapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27889, 'Corral Nuevo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27890, 'Cosamaloapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27891, 'Cosautlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27892, 'Coscomatepec', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27893, 'Cosoleacaque', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27894, 'Covarrubias', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27895, 'Coxquihui', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27896, 'Coyutla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27897, 'Cuautlapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27898, 'Cuichapa', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27899, 'Cuitlahuac', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27900, 'El Higo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27901, 'El Naranjito', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27902, 'Emilio Carranza', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27903, 'Estacion Juanita', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27904, 'Estacion del Idolo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27905, 'Filomeno Mata', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27906, 'Fortin', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27907, 'Gabino Barreda', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27908, 'Gutierrez Zamora', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27909, 'Hidalgotitlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27910, 'Huatusco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27911, 'Huayacoctla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27912, 'Huiloapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27913, 'Ignacio de la Llave', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27914, 'Isla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27915, 'Ixcatepec', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27916, 'Ixhuatlan del Cafe', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27917, 'Ixhuatlan del Sureste', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27918, 'Ixhuatlancillo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27919, 'Ixtaczoquitlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27920, 'Jalacingo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27921, 'Jalapilla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27922, 'Jaltipan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27923, 'Jamapa', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27924, 'Jesus Carranza', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27925, 'La Antigua', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27926, 'La Estanzuela', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27927, 'La Perla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27928, 'La Poza', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27929, 'Las Amapolas', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27930, 'Las Choapas', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27931, 'Lomas de Barillas', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27932, 'Los Altos', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27933, 'Los Mangos', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27934, 'Maltrata', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27935, 'Mariano Escobedo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27936, 'Martinez', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27937, 'Mecatlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27938, 'Mecayapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27939, 'Misantla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27940, 'Monte Blanco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27941, 'Moralillo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27942, 'Motzorongo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27943, 'Mundo Nuevo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27944, 'Nanchital', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27945, 'Naolinco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27946, 'Naranjos', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27947, 'Nautla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27948, 'Oluta', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27949, 'Omealca', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27950, 'Orizaba', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27951, 'Otatitlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27952, 'Oteapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27953, 'Ozuluama', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27954, 'Pajapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27955, 'Papantla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27956, 'Paraje Nuevo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27957, 'Paso de Ovejas', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27958, 'Paso del Macho', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27959, 'Paso del Toro', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27960, 'Penuela', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27961, 'Perote', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27962, 'Platon Sanchez', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27963, 'Playa Vicente', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27964, 'Potrero Nuevo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27965, 'Potrero del Llano', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27966, 'Poza Rica', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27967, 'Puntilla Aldama', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27968, 'Rafael Delgado', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27969, 'Rafael Lucio', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27970, 'Saltabarranca', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27971, 'San Juan Evangelista', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27972, 'San Roman', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27973, 'Santiago Tuxtla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27974, 'Soconusco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27975, 'Soteapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27976, 'Tamalin', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27977, 'Tamiahua', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27978, 'Tantoyuca', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27979, 'Tatahuicapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27980, 'Tecolutla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27981, 'Tempoal', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27982, 'Tenango de Rio Blanco', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27983, 'Teocelo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27984, 'Tepetzintla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27985, 'Tetelzingo', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27986, 'Texistepec', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27987, 'Tezonapa', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27988, 'Tihuatlan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27989, 'Tlacojalpan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27990, 'Tlacotalpan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27991, 'Tlaltetela', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27992, 'Tlapacoyan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27993, 'Tocuila', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27994, 'Totula', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27995, 'Tres Valles', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27996, 'Tuxpam', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27997, 'Tuxtla', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27998, 'Tuzamapan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(27999, 'Union y Progreso', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(28000, 'Ursulo Galvan', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(28001, 'Valente Diaz', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(28002, 'Vega de Alatorre', 2389, '2024-01-21 12:07:52', '2024-01-21 12:07:52', NULL, 1), -(28003, 'Veracruz', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(28004, 'Xalapa', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28005, 'Xocotla', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28006, 'Yanga', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28007, 'Yecuatla', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28008, 'Zongolica', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28009, 'Zozocolco', 2389, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28010, 'Acanceh', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28011, 'Akil', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28012, 'Baca', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28013, 'Buctzotz', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28014, 'Cacalchen', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28015, 'Cansahcab', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28016, 'Caucel', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28017, 'Celestun', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28018, 'Cenotillo', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28019, 'Chemax', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28020, 'Chichimila', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28021, 'Chicxulub', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28022, 'Chochola', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28023, 'Cholul', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28024, 'Chumayel', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28025, 'Conkal', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28026, 'Cuzama', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28027, 'Dzan', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28028, 'Dzemul', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28029, 'Dzidzantun', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28030, 'Dzilam Gonzalez', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28031, 'Dzitas', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28032, 'Espita', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28033, 'Halacho', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28034, 'Hocaba', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28035, 'Hoctun', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28036, 'Homun', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28037, 'Huhi', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28038, 'Hunucma', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28039, 'Itzincab', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28040, 'Ixil', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28041, 'Izamal', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28042, 'Kanasin', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28043, 'Kantunil', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28044, 'Kinchil', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28045, 'Mama', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28046, 'Maxcanu', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28047, 'Merida', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28048, 'Motul', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28049, 'Muna', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28050, 'Opichen', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28051, 'Oxkutzcab', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28052, 'Panaba', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28053, 'Peto', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28054, 'Piste', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28055, 'Sacalum', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28056, 'Seye', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28057, 'Sotuta', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28058, 'Sucila', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28059, 'Tahmek', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28060, 'Teabo', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28061, 'Tecoh', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28062, 'Tekanto', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28063, 'Tekax', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28064, 'Tekit', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28065, 'Telchac', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28066, 'Temax', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28067, 'Temozon', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28068, 'Tetiz', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28069, 'Ticul', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28070, 'Timucuy', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28071, 'Tixkokob', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28072, 'Tixpehual', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28073, 'Tizimin', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28074, 'Tunkas', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28075, 'Tzucacab', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28076, 'Uman', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28077, 'Valladolid', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28078, 'X-Can', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28079, 'Yucatan', 2390, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28080, 'Apozol', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28081, 'Banon', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28082, 'Canitas', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28083, 'Chalchihuites', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28084, 'Concepcion del Oro', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28085, 'Cos', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28086, 'Estrada', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28087, 'Fresnillo', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28088, 'Garcia', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28089, 'Gonzalez Ortega', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28090, 'Jerez', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28091, 'Juchipila', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28092, 'Luis Moya', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28093, 'Miguel Auza', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28094, 'Monte Escobedo', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28095, 'Natera', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28096, 'Nieves', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28097, 'Nochistlan', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28098, 'Ojo Caliente', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28099, 'Piedra Gorda', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28100, 'Pinos', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28101, 'Plateros', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28102, 'Pozo de Gamboa', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28103, 'Sain Alto', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28104, 'Sombrerete', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28105, 'Tabasco', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28106, 'Tacoaleche', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28107, 'Tepechitlan', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28108, 'Teul', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28109, 'Trancoso', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28110, 'Victor Rosales', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28111, 'Villa Gonzalez Ortega', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28112, 'Zacatecas', 2391, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28113, 'Tol', 2392, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28114, 'Weno', 2392, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28115, 'Lelu', 2393, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28116, 'Kolonia', 2394, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28117, 'Palikir', 2394, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28118, 'Colonia', 2395, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, 1), -(28119, 'Balti', 2396, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28120, 'Falesti', 2396, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28121, 'Glodeni', 2396, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28122, 'Rascani', 2396, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28123, 'Cahul', 2397, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28124, 'Straseni', 2398, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28125, 'Briceni', 2400, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28126, 'Donduseni', 2400, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28127, 'Edinet', 2400, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28128, 'Ocnita', 2400, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28129, 'Ciadar Lunga', 2401, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28130, 'Comrat', 2401, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28131, 'Vulcanesti', 2401, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28132, 'Basarabeasca', 2402, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28133, 'Cimislia', 2402, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28134, 'Hancesti', 2402, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28135, 'Leova', 2402, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28136, 'Orhei', 2403, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28137, 'Rezina', 2403, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28138, 'Telenesti', 2403, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28139, 'Drochia', 2404, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28140, 'Floresti', 2404, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28141, 'Soroca', 2404, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28142, 'Taraclia', 2405, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28143, 'Causani', 2406, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28144, 'Camenca', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28145, 'Dnestrovsc', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28146, 'Dubasari', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28147, 'Griguriopol', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28148, 'Rabnita', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28149, 'Slobozia', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28150, 'Tighina', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28151, 'Tiraspol ', 2407, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28152, 'Calarasi', 2408, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28153, 'Nisporeni', 2408, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28154, 'Ungheni', 2408, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28155, 'Fontvieille', 2409, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28156, 'Monaco-Ville', 2411, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28157, 'Cecerleg', 2413, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28158, 'Olgij', 2414, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28159, 'Bajanhongor', 2415, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28160, 'Bulgan', 2416, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28161, 'Darhan', 2417, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28162, 'Chojbalsan', 2418, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, 1), -(28163, 'Sajnshand', 2419, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28164, 'Mandalgovi', 2420, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28165, 'Altaj', 2421, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28166, 'Chojr', 2422, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28167, 'Ondorhaan', 2423, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28168, 'Hovd', 2424, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28169, 'Moron', 2425, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28170, 'Dalanzadgad', 2426, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28171, 'Erdenet', 2427, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28172, 'Arvajheer', 2428, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28173, 'Suhbaatar', 2429, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28174, 'Zuunharaa', 2429, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28175, 'Baruun-Urt', 2430, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28176, 'Nalajh', 2431, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28177, 'Zuunmod', 2431, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28178, 'Ulaanbaatar', 2432, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28179, 'Ulaangom', 2433, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28180, 'Tosoncengel', 2434, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28181, 'Uliastaj', 2434, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28182, 'Montserrat', 2435, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28183, 'Agadir', 2436, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28184, 'Mohammedia', 2437, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28185, 'ad-Dar-al-Bayda', 2437, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28186, 'Bin Sulayman', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28187, 'Bir Rashid', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28188, 'Bu-al-Jad', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28189, 'Buznika', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28190, 'Khuribghah', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28191, 'Sattat', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28192, 'Wad Zam', 2438, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28193, 'Asfi', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28194, 'Azimur', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28195, 'Sidi Binnur', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28196, 'Sidi Isma il', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28197, 'Yussufiyah', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28198, 'al-Jadidah', 2439, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28199, 'Fas', 2440, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28200, 'Fes', 2440, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28201, 'Safru', 2440, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, 1), -(28202, 'Ghulimim', 2442, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28203, 'Sidi Ifni', 2442, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28204, 'Tafraut', 2442, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28205, 'Tantan', 2442, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28206, 'Kenitra', 2443, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28207, 'Amalu Ighriban', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28208, 'Azru', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28209, 'Jama at-al-Marirt', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28210, 'Khanifrah', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28211, 'Meknes', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28212, 'Midalt', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28213, 'Miknas', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28214, 'Mulay Idris', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28215, 'al-Hajab', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28216, 'ar-Rasidiyah', 2445, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28217, 'Ahfir', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28218, 'Bin Ansar', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28219, 'Birkan', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28220, 'Fijij', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28221, 'Jaradah', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28222, 'Tawrirt', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28223, 'Ujdah', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28224, 'Zayu', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28225, 'al-Arwi', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28226, 'al-Ayun Sidi Malluk', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28227, 'an-Nadur', 2446, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28228, 'Oujda', 2447, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28229, 'Khamissat', 2449, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28230, 'Sakhirat', 2449, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28231, 'Tiflat', 2449, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28232, 'ar-Ribat', 2449, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28233, 'Settat', 2451, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28234, 'Bani Mallal', 2453, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28235, 'Beni Mellal', 2453, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28236, 'Qasbat Tadlah', 2453, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28237, 'Suq Sabt Awlat Nama', 2453, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28238, 'al-Faqih Bin Salah', 2453, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28239, 'Asilah', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28240, 'Finidiq', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28241, 'Martil', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28242, 'Midiq', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28243, 'Shifshawn', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28244, 'Tangier', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28245, 'Tanjah', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28246, 'Tittawin', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28247, 'Titwan', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28248, 'al- Ara ish', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28249, 'al-Qasr-al-Kabir', 2454, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28250, 'Chibuto', 1751, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28251, 'Chidenguele', 1751, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28252, 'Chokwe', 1751, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, 1), -(28253, 'Chongoene', 1751, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28254, 'Guija', 1751, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28255, 'Macia', 1751, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28256, 'Manjacaze', 1751, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28257, 'Xai-Xai', 1751, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28258, 'Homoine', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28259, 'Inhambane', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28260, 'Inharrime', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28261, 'Jangamo', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28262, 'Maxixe', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28263, 'Panda', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28264, 'Quissico', 2459, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28265, 'Chimoio', 2460, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28266, 'Manica', 2460, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28267, 'Maputo', 2461, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28268, 'Angoche', 2463, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28269, 'Lumbo', 2463, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28270, 'Mocambique', 2463, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28271, 'Nacala', 2463, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28272, 'Nampula', 2463, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28273, 'Cuamba', 2464, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28274, 'Lichinga', 2464, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28275, 'Mandimba', 2464, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28276, 'Maniamba', 2464, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28277, 'Marrupa', 2464, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28278, 'Beira', 2465, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28279, 'Dondo', 2465, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28280, 'Tete', 2466, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28281, 'Zumbo', 2466, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28282, 'Garue', 2467, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28283, 'Mocuba', 2467, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28284, 'Quelimane', 2467, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28285, 'Bogale', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28286, 'Henzada', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28287, 'Kyaiklat', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28288, 'Labutta', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28289, 'Maubin', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28290, 'Moulmeingyun', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28291, 'Myanaung', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28292, 'Pathein', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28293, 'Pyapon', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28294, 'Wakema', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28295, 'Yandoon', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28296, 'Ye', 2468, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28297, 'Bago', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28298, 'Letpadan', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28299, 'Nyaunglebin', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28300, 'Paungde', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28301, 'Pyay', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28302, 'Pyu', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28303, 'Thanatpin', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28304, 'Tharrawaddy', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28305, 'Toungoo', 2469, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28306, 'Falam', 2470, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28307, 'Banmo', 2471, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28308, 'Myitkyina', 2471, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28309, 'Loikaw', 2472, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28310, 'Hpa-an', 2473, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28311, 'Allanmyo', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28312, 'Chauk', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28313, 'Magway', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28314, 'Minbu', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28315, 'Pakokku', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28316, 'Taungdwingyi', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28317, 'Thayetmyo', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28318, 'Yenangyaung', 2474, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, 1), -(28319, 'Kyaukse', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28320, 'Mandalay', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28321, 'Maymyo', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28322, 'Meiktila', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28323, 'Mogok', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28324, 'Myingyan', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28325, 'Pyinmana', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28326, 'Yamethin', 2475, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28327, 'Kyaikkami', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28328, 'Kyaikto', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28329, 'Martaban', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28330, 'Mawlamyine', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28331, 'Mudon', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28332, 'Thaton', 2476, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28333, 'Akyab', 2478, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28334, 'Arakan', 2478, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28335, 'Kalay', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28336, 'Katha', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28337, 'Mawlaik', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28338, 'Monywa', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28339, 'Sagaing', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28340, 'Shwebo', 2479, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28341, 'Keng Tung', 2480, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28342, 'Lashio', 2480, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28343, 'Taunggyi', 2480, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28344, 'Dawei', 2481, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28345, 'Mergui', 2481, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28346, 'Kanbe', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28347, 'Kayan', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28348, 'Syriam', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28349, 'Thongwa', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28350, 'Twante', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28351, 'Yangon', 2482, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28352, 'Katima Mulilo', 2483, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28353, 'Henties Bay', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28354, 'Karibib', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28355, 'Kuisebmond', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28356, 'Omaruru', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28357, 'Otjimbingwe', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28358, 'Swakopmund', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28359, 'Usakos', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28360, 'Walvis Bay', 2484, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28361, 'Aranos', 2485, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28362, 'Maltahohe', 2485, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28363, 'Mariental', 2485, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28364, 'Rehoboth', 2485, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28365, 'Bethanien', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28366, 'Karasburg', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28367, 'Keetmanshoop', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28368, 'Luderitz', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28369, 'Oranjemund', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28370, 'Warmbad', 2486, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28371, 'Rundu', 2487, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28372, 'Windhoek', 2488, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28373, 'Arandis', 2489, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28374, 'Khorixas', 2489, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28375, 'Opuwo', 2489, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28376, 'Outjo', 2489, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28377, 'Oshikango', 2490, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28378, 'Gobabis', 2491, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28379, 'Leonardville', 2491, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28380, 'Ongandjera', 2492, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28381, 'Ongwediva', 2493, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28382, 'Oshakati', 2493, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, 1), -(28383, 'Ondangwa', 2494, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28384, 'Otavi', 2494, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28385, 'Tsumeb', 2494, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28386, 'Grootfontein', 2495, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28387, 'Okahandja', 2495, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28388, 'Okakarara', 2495, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28389, 'Otjiwarongo', 2495, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28390, 'Yaren', 2496, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28391, 'Banepa', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28392, 'Bhaktapur', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28393, 'Bidur', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28394, 'Bishalter', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28395, 'Dhulikhel', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28396, 'Kathmandu', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28397, 'Kirtipur', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28398, 'Madhyapur Thimi', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28399, 'Panauti', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28400, 'Tribuvannagar', 2497, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28401, 'Birendranagar', 2498, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28402, 'Narayan', 2498, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28403, 'Nepalganj', 2498, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28404, 'Surkhet', 2498, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28405, 'Baglung', 2499, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28406, 'Weni', 2499, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28407, 'Byas', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28408, 'Leknath', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28409, 'Pokhara', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28410, 'Prithivinarayan', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28411, 'Putalibazar', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28412, 'Waling', 2500, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28413, 'Bhimeshwar', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28414, 'Jaleshwar', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28415, 'Janakpur', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28416, 'Kamalamai', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28417, 'Malangwa', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28418, 'Sinduli Marhi', 2501, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28419, 'Jumla', 2502, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28420, 'Biratnagar', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28421, 'Dhankuta', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28422, 'Dharan', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28423, 'Inaruwa', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28424, 'Itahari', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28425, 'Khandbari', 2503, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28426, 'Butwal', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28427, 'Kapilwastu', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28428, 'Ramgram', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28429, 'Sidharthanagar', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28430, 'Tansen', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28431, 'Wahadurganj', 2504, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28432, 'Amargadhi', 2505, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28433, 'Dashrathchand', 2505, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28434, 'Mahendranagar', 2505, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28435, 'Bhadrapur', 2506, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28436, 'Damak', 2506, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28437, 'Mechinagar', 2506, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28438, 'Birganj', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28439, 'Chitwan', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28440, 'Gaur', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28441, 'Hetauda', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28442, 'Kalaiya', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28443, 'Ratnanagar', 2507, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28444, 'Lahan', 2509, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28445, 'Rajbiraj', 2509, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28446, 'Siraha', 2509, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28447, 'Triyuga', 2509, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28448, 'Dhangadi', 2510, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28449, 'Dipayal', 2510, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28450, 'Tikapur', 2510, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, 1), -(28451, 'SchipolRijk', 1274, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28452, 'Amstelveen', 2511, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28453, 'Aa en Hunze', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28454, 'Assen', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28455, 'Borger-Odoorn', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28456, 'Coevorden', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28457, 'De Wolden', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28458, 'Den Oever', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28459, 'Emmen', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28460, 'Gasteren', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28461, 'Hoogeveen', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28462, 'Menterwolde', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28463, 'Meppel', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28464, 'Midden-Drenthe', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28465, 'Noordenveld', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28466, 'Stadskanaal', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28467, 'Tynaarlo', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28468, 'Veenoord', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28469, 'Westerveld', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28470, 'Zuidlaren', 2512, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28471, 'Almere', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28472, 'Dronten', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28473, 'Lelystad', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28474, 'Noordoostpolder', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28475, 'Urk', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28476, 'Zeewolde', 2513, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28477, 'Achtkarspelen', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28478, 'Ameland', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28479, 'Boarnsterhim', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28480, 'Bolsward', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28481, 'Dantumadeel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28482, 'Dongeradeel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28483, 'Drachten', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28484, 'Ferwerderadiel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28485, 'Franekeradeel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28486, 'Gaasterlan-Sleat', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28487, 'Gorredijk', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28488, 'Harlingen', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28489, 'Heerenveen', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28490, 'Het Bildt', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28491, 'Kollumerland', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28492, 'Leeuwarden', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28493, 'Leeuwarderadeel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28494, 'Lemsterland', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28495, 'Littenseradiel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28496, 'Menaldumadeel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28497, 'Nijefurd', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28498, 'Oostrum', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28499, 'Ooststellingwerf', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28500, 'Opsterland', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28501, 'Schiermonnikoog', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28502, 'Skasterlan', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28503, 'Smallingerland', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28504, 'Sneek', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28505, 'Terschelling', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28506, 'Tytsjerksteradiel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28507, 'Ureterp', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28508, 'Weststellingwerf', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28509, 'Wolvega', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28510, 'Wunseradiel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28511, 'Wymbritseradiel', 2514, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28512, 'Aalten', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28513, 'Angerlo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28514, 'Apeldoorn', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28515, 'Appeldoorn', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28516, 'Arnhem', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28517, 'Barneveld', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28518, 'Bemmel', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28519, 'Bergh', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28520, 'Beuningen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28521, 'Borculo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28522, 'Brummen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28523, 'Culemborg', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28524, 'Delden', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28525, 'Didam', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28526, 'Dieren', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28527, 'Dinxperlo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28528, 'Dodewaard', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28529, 'Doesburg', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28530, 'Doetinchem', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28531, 'Druten', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28532, 'Duiven', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28533, 'Ede', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28534, 'Eerbeek', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28535, 'Eibergen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28536, 'Elburg', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28537, 'Epe', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28538, 'Ermelo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28539, 'Geldermalsen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28540, 'Gendringen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28541, 'Giesbeek', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28542, 'Gorssel', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28543, 'Groenlo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28544, 'Groesbeek', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28545, 'Harderwijk', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28546, 'Hattem', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28547, 'Heerde', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28548, 'Hengelo', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28549, 'Heumen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28550, 'Huisen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28551, 'Hummelo en Keppel', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28552, 'Kesteren', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28553, 'Kootwijkerbroek', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28554, 'Leerdam', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28555, 'Leeuwen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28556, 'Lichtenvoorde', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28557, 'Lingewaal', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28558, 'Lochem', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28559, 'Loppersum', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28560, 'Maasdriel', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28561, 'Malden', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28562, 'Millingen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28563, 'Molenhoek', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28564, 'Neede', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28565, 'Neerijnen', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28566, 'Nijkerk', 2515, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, 1), -(28567, 'Nijmegen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28568, 'Nunspeet', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28569, 'Oldebroek', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28570, 'Oosterbeek', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28571, 'Overbetuwe', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28572, 'Putten', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28573, 'Renkum', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28574, 'Rheden', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28575, 'Rijnwaarden', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28576, 'Rozendaal', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28577, 'Ruurlo', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28578, 'Scherpenzeel', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28579, 'Steenderen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28580, 'Terborg', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28581, 'Tiel', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28582, 'Twello', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28583, 'Ubbergen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28584, 'Vaassen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28585, 'Varsseveld', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28586, 'Voorst', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28587, 'Vorden', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28588, 'Waardenburg', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28589, 'Wageningen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28590, 'Warmsveld', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28591, 'Wehl', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28592, 'Westervoort', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28593, 'Wijchen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28594, 'Winterswijk', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28595, 'Wisch', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28596, 'Zaltbommel', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28597, 'Zelhem', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28598, 'Zevenaar', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28599, 'Zutphen', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28600, 's-Heerenberg', 2515, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28601, 'Appingedam', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28602, 'Bedum', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28603, 'Bellingwedde', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28604, 'De Marne', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28605, 'Delfzijl', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28606, 'Eemsmond', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28607, 'Groningen', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28608, 'Grootegast', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28609, 'Hoogezand-Sappemeer', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28610, 'Leek', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28611, 'Marum', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28612, 'Midwolda', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28613, 'Muntendam', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28614, 'Pekela', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28615, 'Reiderland', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28616, 'Scheemda', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28617, 'Slochteren', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28618, 'Ten Boer', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28619, 'Tolbert', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28620, 'Veendam', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28621, 'Vlagtwedde', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28622, 'Winschoten', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28623, 'Winsum', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28624, 'Zuidhorn', 2516, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28625, 'Ambt Montfort', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28626, 'Arcen en Velden', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(28627, 'Beek', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28628, 'Beesel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28629, 'Blerick', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28630, 'Brunssum', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28631, 'Echt', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28632, 'Eijsden', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28633, 'Gennep', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28634, 'Gulpen-Wittem', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28635, 'Haelen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28636, 'Heel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28637, 'Heerlen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28638, 'Helden', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28639, 'Heythuysen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28640, 'Horst', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28641, 'Hunsel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28642, 'Kerkrade', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28643, 'Kessel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28644, 'Landgraaf', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28645, 'Maasbracht', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28646, 'Maasbree', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28647, 'Maastricht', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28648, 'Margraten', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28649, 'Meerlo-Wanssum', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28650, 'Meerssen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28651, 'Meijel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28652, 'Mook en Middelaar', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28653, 'Nederweert', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28654, 'Nuth', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28655, 'Onderbanken', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28656, 'Roerdalen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28657, 'Roermond', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28658, 'Roggel', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28659, 'Roggel en Neer', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28660, 'Schinnen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28661, 'Sevenum', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28662, 'Simpelveld', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28663, 'Sittard', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28664, 'Sittard-Geleen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28665, 'Stramproy', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28666, 'Susteren', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28667, 'Swalmen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28668, 'Tegelen', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28669, 'Thorn', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28670, 'Vaals', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28671, 'Valkenburg', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28672, 'Venlo', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28673, 'Venray', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28674, 'Vilt Limburg', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28675, 'Voerendaal', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28676, 'Weert', 428, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28677, ' s-Hertogenbosch', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28678, 'Aalburg', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28679, 'Alphen-Chaam', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28680, 'Baarle-Nassau', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28681, 'Bergeijk', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28682, 'Bergen op Zoom', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28683, 'Berghem', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28684, 'Bernheze', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28685, 'Bernisse', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28686, 'Best', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28687, 'Bladel', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28688, 'Boekel', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28689, 'Boxmeer', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28690, 'Boxtel', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28691, 'Breda', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28692, 'Budel', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28693, 'Cranendonck', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28694, 'Cuijk', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28695, 'Den Bosch', 2517, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, 1), -(28696, 'Den Dungen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28697, 'Dongen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28698, 'Drimmelen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28699, 'Drunen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28700, 'Duizel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28701, 'Eersel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28702, 'Eindhoven', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28703, 'Etten-Leur', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28704, 'Geertruidenberg', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28705, 'Geldrop', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28706, 'Gemert-Bakel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28707, 'Gilze en Rijen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28708, 'Goirle', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28709, 'Grave', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28710, 'Haaren', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28711, 'Halderberge', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28712, 'Heeze-Leende', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28713, 'Heijningen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28714, 'Helmond', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28715, 'Heusden', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28716, 'Hilvarenbeek', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28717, 'Hoeven', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28718, 'Hoogerheide', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28719, 'Kaatsheuvel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28720, 'Korendijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28721, 'Laarbeek', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28722, 'Landerd', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28723, 'Lith', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28724, 'Loon op Zand', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28725, 'Maarheeze', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28726, 'Maasdonk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28727, 'Mierlo', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28728, 'Mill en Sint Hubert', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28729, 'Moerdijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28730, 'Nieuwkuijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28731, 'Nuenen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28732, 'Oirschot', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28733, 'Oisterwijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28734, 'Oosterhout', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28735, 'Oss', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28736, 'Raamsdonksveer', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28737, 'Ravenstein', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28738, 'Reusel-De Mierden', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28739, 'Roosendaal', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28740, 'Rosmalen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28741, 'Rucphen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28742, 'Schaijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28743, 'Schijndel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28744, 'Sint Anthonis', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28745, 'Sint Willebrord', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28746, 'Sint-Michielsgestel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28747, 'Sint-Oedenrode', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28748, 'Sleeuwijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28749, 'Someren', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28750, 'Son en Breugel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28751, 'Steenbergen', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28752, 'Tilburg', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28753, 'Uden', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28754, 'Valkenswaard', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28755, 'Veghel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28756, 'Veldhoven', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28757, 'Vinkel', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28758, 'Vught', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28759, 'Waalre', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28760, 'Waalwijk', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28761, 'Werkendam', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28762, 'Woensdrecht', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28763, 'Woudrichem', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28764, 'Zundert', 2517, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28765, 'Aalsmeer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28766, 'Alkmaar', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28767, 'Amsterdam', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28768, 'Andijk', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28769, 'Ankeveen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28770, 'Anna Paulowna', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28771, 'Assendelft', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28772, 'Badhoevedorp', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28773, 'Beemster', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28774, 'Bennebroek', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28775, 'Beverwijk', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28776, 'Blaricum', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28777, 'Bloemendaal', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28778, 'Bovenkarspel', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28779, 'Bussum', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28780, 'Castricum', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28781, 'Den Helder', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28782, 'Diemen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28783, 'Drechterland', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28784, 'Edam-Volendam', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28785, 'Enkhuizen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28786, 'Graft-De Rijp', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28787, 'Haarlem', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28788, 'Haarlemmerliede', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28789, 'Haarlemmermeer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28790, 'Harenkarspel', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28791, 'Heemskerk', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28792, 'Heemstede', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28793, 'Heerhugowaard', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28794, 'Heiloo', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28795, 'Hillegom', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28796, 'Hilversum', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28797, 'Hoofddorp', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28798, 'Hoorn', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28799, 'Huizen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28800, 'Ijmuiden', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28801, 'Katwijk', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28802, 'Krommenie', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28803, 'Landsmeer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28804, 'Langedijk', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28805, 'Laren', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28806, 'Loosdrecht', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28807, 'Medemblik', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28808, 'Muiden', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28809, 'Naarden', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28810, 'Niedorp', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28811, 'Nieuw-Vennep', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28812, 'Noorder-Koggenland', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28813, 'Obdam', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28814, 'Oostzaan', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28815, 'Opmeer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28816, 'Oude Meer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28817, 'Ouder-Amstel', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28818, 'Oudkarspel', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28819, 'Purmerend', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28820, 'Rozenburg', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28821, 'Schagen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28822, 'Schermer', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28823, 'Stede Broec', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28824, 'Texel', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28825, 'Tuitjenhorn', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28826, 'Uitgeest', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28827, 'Uithoorn', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28828, 'Velsen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28829, 'Venhuizen', 1337, '2024-01-21 12:08:02', '2024-01-21 12:08:02', NULL, 1), -(28830, 'Vijfhuizen', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28831, 'Waarland', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28832, 'Waterland', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28833, 'Weesp', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28834, 'Wervershoof', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28835, 'Wester-Koggenland', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28836, 'Westwoud', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28837, 'Wieringen', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28838, 'Wieringermeer', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28839, 'Wognum', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28840, 'Wormer', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28841, 'Wormerland', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28842, 'Wormerveer', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28843, 'Zaandam', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28844, 'Zaanstad', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28845, 'Zandvoort', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28846, 'Zeevang', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28847, 'Zwaag', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28848, 'Zwanenburg', 1337, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28849, 'Almelo', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28850, 'Bathmen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28851, 'Borne', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28852, 'Dalfsen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28853, 'Dedemsvaart', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28854, 'Denekamp', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28855, 'Deventer', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28856, 'Diepenheim', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28857, 'Enschede', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28858, 'Genemuiden', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28859, 'Haaksbergen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28860, 'Hardenberg', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28861, 'Hellendoorn', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28862, 'Hof van Twente', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28863, 'IJsselmuiden', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28864, 'Kampen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28865, 'Lemelerveld', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28866, 'Losser', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28867, 'Nieuwleusen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28868, 'Nijverdal', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28869, 'Oldenzaal', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28870, 'Olst', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28871, 'Ommen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28872, 'Ootmarsum', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28873, 'Raalte', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28874, 'Rijssen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28875, 'Staphorst', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28876, 'Steenwijk', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28877, 'Tubbergen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28878, 'Vriezenveen', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28879, 'Vroomshoop', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28880, 'Weerselo', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28881, 'Wierden', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28882, 'Zwartewaterland', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28883, 'Zwolle', 2518, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28884, 'Abcoude', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28885, 'Amerongen', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28886, 'Amersfoort', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28887, 'Baarn', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28888, 'Benschop', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28889, 'Breukelen', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28890, 'Bunnik', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28891, 'Bunschoten', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28892, 'De Bilt', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28893, 'De Ronde Venen', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28894, 'Den Dolder', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28895, 'Doorn', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28896, 'Driebergen-Rijsenburg', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28897, 'Eemnes', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28898, 'Houten', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28899, 'IJsselstein', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28900, 'Kockengen', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28901, 'Leersum', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28902, 'Leusden', 2520, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, 1), -(28903, 'Loenen', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28904, 'Lopik', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28905, 'Maarn', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28906, 'Maarsen', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28907, 'Mijdrecht', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28908, 'Montfoort', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28909, 'Nieuwegein', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28910, 'Nigtevecht', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28911, 'Odijk', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28912, 'Oudewater', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28913, 'Renswoude', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28914, 'Rhenen', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28915, 'Soesterberg', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28916, 'Utrecht', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28917, 'Veenendaal', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28918, 'Vianen', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28919, 'Wijdemeren', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28920, 'Wijk', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28921, 'Wilnis', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28922, 'Woerden', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28923, 'Woudenberg', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28924, 'Zeist', 2520, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28925, 'Axel', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28926, 'Borsele', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28927, 'Goes', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28928, 'Hontenisse', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28929, 'Hulst', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28930, 'Kapelle', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28931, 'Middelburg', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28932, 'Noord-Beveland', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28933, 'Oostburg', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28934, 'Reimerswaal', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28935, 'Sas van Gent', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28936, 'Schouwen-Duiveland', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28937, 'Sluis-Aardenburg', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28938, 'Terneuzen', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28939, 'Tholen', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28940, 'Veere', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28941, 'Vlissingen', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28942, 'Zierikzee', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28943, 'Zijpe', 2521, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28944, ' s-Gravendeel', 2522, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28945, ' s-Gravenhage', 2522, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28946, ' s-Gravenzande', 2522, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, 1), -(28947, 'Alblasserdam', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28948, 'Albrandswaard', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28949, 'Alkemade', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28950, 'Alphen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28951, 'Alphen aan den Rijn', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28952, 'Barendrecht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28953, 'Bergambacht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28954, 'Bergschenhoek', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28955, 'Berkel en Rodenrijs', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28956, 'Binnenmaas', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28957, 'Bleiswijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28958, 'Bodegraven', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28959, 'Boskoop', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28960, 'Brielle', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28961, 'Capelle', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28962, 'Cromstrijen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28963, 'De Lier', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28964, 'Delft', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28965, 'Dirksland', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28966, 'Dordrecht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28967, 'Giessenlanden', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28968, 'Goedereede', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28969, 'Gorinchem', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28970, 'Gouda', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28971, 'Graafstroom', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28972, 'Hardinxveld-Giessendam', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28973, 'Heerjansdam', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28974, 'Hellevoetsluis', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28975, 'Hendrik-Ido-Ambacht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28976, 'Jacobswoude', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28977, 'Kinderdijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28978, 'Krimpen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28979, 'Leiden', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28980, 'Leiderdorp', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28981, 'Leidschendam-Voorburg', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28982, 'Liemeer', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28983, 'Liesveld', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28984, 'Lisse', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28985, 'Maasland', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28986, 'Maassluis', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28987, 'Middelharnis', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28988, 'Monster', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28989, 'Moordrecht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28990, 'Naaldwijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28991, 'Nederlek', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28992, 'Nieuw-Lekkerland', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28993, 'Nieuwekerk aan den IJssel', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28994, 'Nieuwkoop', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28995, 'Noordwijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28996, 'Noordwijkerhout', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28997, 'Oegestgeest', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28998, 'Oostflakkee', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(28999, 'Oud-Beijerland', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29000, 'Ouderkerk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29001, 'Papendrecht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29002, 'Pijnacker-Nootdorp', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29003, 'Reeuwijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29004, 'Ridderkerk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29005, 'Rijnsburg', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29006, 'Rijnwoude', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29007, 'Rijswijk', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29008, 'Rotterdam', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29009, 'Sassenheim', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29010, 'Schiedam', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29011, 'Schipluiden', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29012, 'Schoonhoven', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29013, 'Sliedrecht', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29014, 'Spijkenisse', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29015, 'Strijen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29016, 'Ter Aar', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29017, 'The Hague', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29018, 'Vierpolders', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29019, 'Vlaardingen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29020, 'Vlist', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29021, 'Voorhout', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29022, 'Voorschoten', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29023, 'Waddinxveen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29024, 'Warmond', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29025, 'Wassenaar', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29026, 'Wateringen', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29027, 'West Maas en Waal', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29028, 'Westvoorne', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29029, 'Zederik', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29030, 'Zevenhuizen-Moerkapelle', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29031, 'Zoetermeer', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29032, 'Zoeterwoude', 2522, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29033, 'Belep', 2523, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29034, 'Fayaoue', 2523, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29035, 'Tadine', 2523, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29036, 'We', 2523, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29037, 'Canala', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29038, 'Hienghene', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29039, 'Houailu', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29040, 'Kaala Gomen', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29041, 'Kone', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29042, 'Koumac', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29043, 'Ouegoa', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29044, 'Poindimie', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29045, 'Ponerihouen', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29046, 'Pouebo', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29047, 'Pouembout', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29048, 'Poum', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29049, 'Poya', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29050, 'Touho', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29051, 'Voh', 651, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29052, 'Bouloupari', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29053, 'Bourail', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29054, 'Dumbea', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29055, 'Farino', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29056, 'La Foa', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29057, 'Moindou', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29058, 'Mont-Dore', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29059, 'Noumea', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29060, 'Paita', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29061, 'Sarramea', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29062, 'Thio', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29063, 'Yate', 655, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, 1), -(29064, 'Auckland', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29065, 'Helensville', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29066, 'Hillsborough', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29067, 'Lynfield', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29068, 'Manukau', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29069, 'Manurewa', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29070, 'Mt. Roskill', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29071, 'North Shore', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29072, 'Onehunga', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29073, 'Orewa', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29074, 'Otahuhu', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29075, 'Panmure', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29076, 'Papakura', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29077, 'Papatoetoe', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29078, 'Ponsonby', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29079, 'Royal Oak', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29080, 'Snells Beach', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29081, 'Takanini', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29082, 'Waiheke', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29083, 'Waitakere', 221, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29084, 'Amberley', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29085, 'Ashburton', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29086, 'Christchurch', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29087, 'Fairlie', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29088, 'Geraldine', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29089, 'Kaikoura', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29090, 'Leeston', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29091, 'Lyttelton', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29092, 'Oamaru', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29093, 'Rangiora', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29094, 'Temuka', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29095, 'Timaru', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29096, 'Waimate', 2526, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29097, 'Gisborne', 2528, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29098, 'Dannevirke', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29099, 'Feilding', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29100, 'Foxton', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29101, 'Levin', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29102, 'Marton', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29103, 'Palmerston North', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29104, 'Taumarunui', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29105, 'Wanganui', 2530, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29106, 'Nelson', 2532, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29107, 'Dargaville', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29108, 'Kaikohe', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29109, 'Kaitaia', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29110, 'Kerikeri', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29111, 'Maungatapere', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29112, 'Whangarei', 2533, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29113, 'Alexandra', 2534, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29114, 'Balclutha', 2534, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29115, 'Dunedin', 2534, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29116, 'Wanaka', 2534, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29117, 'Warkworth', 2535, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29118, 'Invercargill', 2536, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29119, 'Hawera', 2537, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29120, 'Inglewood', 2537, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29121, 'New Plymouth', 2537, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29122, 'Oakura', 2537, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29123, 'Waitara', 2537, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29124, 'Motueka', 2538, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29125, 'Coromandel', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29126, 'Hillcrest', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29127, 'Huntly', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29128, 'Matamata', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29129, 'Morrinsville', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29130, 'Ngaruawahia', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29131, 'Otorohanga', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29132, 'Paeroa', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29133, 'Pukekohe', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29134, 'Putaruru', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29135, 'Taupo', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29136, 'Te Aroha', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29137, 'Te Awamutu', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29138, 'Te Kuiti', 2539, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, 1), -(29139, 'Thames', 2539, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29140, 'Tokoroa', 2539, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29141, 'Waiuku', 2539, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29142, 'Whangamata', 2539, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29143, 'Whitianga', 2539, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29144, 'Carterton', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29145, 'Kapiti', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29146, 'Lower Hutt', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29147, 'Martinborough', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29148, 'Masterton', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29149, 'Otaki', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29150, 'Paraparaumu', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29151, 'Porirua', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29152, 'Upper Hutt', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29153, 'Wairarapa', 2540, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29154, 'Boaco', 2544, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29155, 'Camoapa', 2544, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29156, 'Diriamba', 2545, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29157, 'Jinotepe', 2545, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29158, 'Masatepe', 2545, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29159, 'Chichigalpa', 2546, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29160, 'Chinandega', 2546, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29161, 'El Viejo', 2546, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29162, 'Puerto Morazan', 2546, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29163, 'Somotillo', 2546, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29164, 'Acoyapa', 2547, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29165, 'Juigalpa', 2547, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29166, 'Villa Sandino', 2547, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29167, 'Condega', 2548, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29168, 'Esteli', 2548, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29169, 'Diriomo', 2549, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29170, 'Nandaime', 2549, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29171, 'Jinotega', 2550, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29172, 'Wiwili', 2550, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29173, 'El Sauce', 2551, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29174, 'La Paz Centro', 2551, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29175, 'Larreynaga', 2551, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29176, 'Nagarote', 2551, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29177, 'Telica', 2551, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29178, 'Somoto', 2552, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29179, 'Managua', 2553, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29180, 'Mateare', 2553, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29181, 'San Rafael del Sur', 2553, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29182, 'Ticuantepe', 2553, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29183, 'Tipitapa', 2553, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29184, 'La Concepcion', 2554, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29185, 'Masaya', 2554, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29186, 'Nandasmo', 2554, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29187, 'Nindiri', 2554, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29188, 'Niquinohomo', 2554, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29189, 'Ciudad Dario', 2555, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29190, 'Matagalpa', 2555, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29191, 'Matiguas', 2555, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29192, 'Rio Blanco', 2555, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29193, 'Sebaco', 2555, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29194, 'Rivas', 2558, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29195, 'San Jorge', 2558, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29196, 'San Juan del Sur', 2558, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, 1), -(29197, 'Agadez', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29198, 'Arlit', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29199, 'Bilma', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29200, 'Fachi', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29201, 'Ingall', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29202, 'Tchirozerine', 2559, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29203, 'Diffa', 2560, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29204, 'Maine-Soroa', 2560, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29205, 'N Guigmi', 2560, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29206, 'Birni N Gaoure', 2561, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29207, 'Boboye', 2561, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29208, 'Dogondoutchi', 2561, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29209, 'Dosso', 2561, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29210, 'Loga', 2561, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29211, 'Aguie', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29212, 'Dakoro', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29213, 'Gazaoua', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29214, 'Guidan Roumdji', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29215, 'Madarounfa', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29216, 'Maradi', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29217, 'Mayahi', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29218, 'Tessaoua', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29219, 'Tibiri', 2562, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29220, 'Niamey', 2563, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29221, 'Birni N Konni', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29222, 'Bouza', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29223, 'Illela', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29224, 'Keita', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29225, 'Madaoua', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29226, 'Malbaza uzine', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29227, 'Tahoua', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29228, 'Tchintabaraden', 2564, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29229, 'Ayorou', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29230, 'Filingue', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29231, 'Kollo', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29232, 'Ouallam', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29233, 'Say', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29234, 'Tera', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29235, 'Tillabery', 2565, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29236, 'Goure', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29237, 'Kantche', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29238, 'Magaria', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29239, 'Matameye', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29240, 'Mirriah', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29241, 'Tanout', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29242, 'Zinder', 2566, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29243, 'Amaigbo', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29244, 'Arochukwu', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29245, 'Bende', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(29246, 'Ohafia', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29247, 'Okwe', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29248, 'Umuahia', 2567, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29249, 'Demsa', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29250, 'Ganye', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29251, 'Girei', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29252, 'Gombi', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29253, 'Jada', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29254, 'Jimeta', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29255, 'Lamurde', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29256, 'Madagala', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29257, 'Maiha', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29258, 'Mubi', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29259, 'Ngurore', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29260, 'Numan', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29261, 'Shelleng', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29262, 'Song', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29263, 'Toungo', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29264, 'Yola', 2569, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29265, 'Aguata', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29266, 'Agulu', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29267, 'Anambra', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29268, 'Awka', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29269, 'Enugu Ukwu', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29270, 'Igbo Ukwu', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29271, 'Ihiala', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29272, 'Nkpor', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29273, 'Nnewi', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29274, 'Obosi', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29275, 'Okija', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29276, 'Okpoko', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29277, 'Onitsha', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29278, 'Ozubulu', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29279, 'Uga', 2571, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29280, 'Alkaleri', 2572, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, 1), -(29281, 'Azare', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29282, 'Bauchi', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29283, 'Bogoro', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29284, 'Bununu Dass', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29285, 'Darazo', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29286, 'Gamawa', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29287, 'Ganjuwa', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29288, 'Jamari', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29289, 'Katagum', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29290, 'Misau', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29291, 'Tafawa Balewa', 2572, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29292, 'Brass', 2573, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29293, 'Ekeremor', 2573, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29294, 'Nembe', 2573, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29295, 'Yenagoa', 2573, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29296, 'Aliade', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29297, 'Gboko', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29298, 'Katsina-Ala', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29299, 'Makurdi', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29300, 'Otukpo', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29301, 'Ukum', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29302, 'Zaki Biam', 2574, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29303, 'Askira', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29304, 'Bama', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29305, 'Biu', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29306, 'Chibok', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29307, 'Damboa', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29308, 'Dikwa', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29309, 'Gamboru', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29310, 'Gubio', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29311, 'Gwoza', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29312, 'Kala', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29313, 'Konduga', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29314, 'Kukawa', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29315, 'Mafa', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29316, 'Magumeri', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29317, 'Maiduguri', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29318, 'Marte', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29319, 'Monguno', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29320, 'Ngala', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29321, 'Shani', 2575, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29322, 'Agbor', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29323, 'Bomadi', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29324, 'Burutu', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29325, 'Okpe', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29326, 'Patani', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29327, 'Sapele', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29328, 'Ughelli', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29329, 'Warri', 2577, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29330, 'Abakaliki', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29331, 'Afikpo', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29332, 'Effium', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29333, 'Ezza', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29334, 'Ishieke', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29335, 'Uburu', 2578, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29336, 'Auchi', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29337, 'Benin', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29338, 'Ekpoma', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29339, 'Igarra', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29340, 'Ikpoba', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29341, 'Irrua', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29342, 'Sabongida', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29343, 'Ubiaja', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29344, 'Uromi', 2579, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29345, 'Ado', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29346, 'Aramoko', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29347, 'Efon Alaye', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29348, 'Emure', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29349, 'Igbara Odo', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29350, 'Igede', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29351, 'Ijero', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29352, 'Ikere', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29353, 'Ikole', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29354, 'Ilawe', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29355, 'Ipoti', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29356, 'Omuo', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29357, 'Osi', 2580, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29358, 'Agwa', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29359, 'Aku', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29360, 'Awgu', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29361, 'Eha Amufu', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29362, 'Enugu', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29363, 'Enugu Ezike', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29364, 'Enugu Ngwo', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29365, 'Ezeagu', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29366, 'Mberubu', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29367, 'Nsukka', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29368, 'Udi', 2581, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29369, 'Deba', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29370, 'Duku', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29371, 'Garko', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29372, 'Gombe', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29373, 'Kaltungo', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29374, 'Kumo', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29375, 'Nafada', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29376, 'Pindiga', 2582, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, 1), -(29377, 'Aboh', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29378, 'Etiti', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29379, 'Ihite', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29380, 'Nkwerre', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29381, 'Oguta', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29382, 'Okigwe', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29383, 'Owerri', 2583, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29384, 'Babura', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29385, 'Birnin Kudu', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29386, 'Buji', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29387, 'Dutse', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29388, 'Garki', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29389, 'Gumel', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29390, 'Gwaram', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29391, 'Gwiwa', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29392, 'Hadejia', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29393, 'Jahun', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29394, 'Kaugama', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29395, 'Kazaure', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29396, 'Keffin Hausa', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29397, 'Kiyawa', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29398, 'Maigatari', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29399, 'Malammaduri', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29400, 'Ringim', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29401, 'Sule Tankarkar', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29402, 'Taura', 2584, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29403, 'Birnin Gwari', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29404, 'Doka', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29405, 'Giwa', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29406, 'Gwagwada', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29407, 'Hunkuyi', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29408, 'Igabi', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29409, 'Ikara', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29410, 'Jemaa', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29411, 'Kachia', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29412, 'Kaduna', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29413, 'Kafanchan', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29414, 'Kagarko', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29415, 'Kagoro', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29416, 'Kaura', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29417, 'Kudan', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29418, 'Makarfi', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29419, 'Sabon Birnin Gwari', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29420, 'Sabongari', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29421, 'Sanga', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29422, 'Soba', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29423, 'Tudun Wada', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29424, 'Zangon Katab', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29425, 'Zaria', 2585, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29426, 'Ajingi', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29427, 'Albasu', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29428, 'Bagwai', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29429, 'Bebeji', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29430, 'Bichi', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29431, 'Bunkure', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29432, 'Dambarta', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29433, 'Dawakin Tofe', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29434, 'Fagge', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29435, 'Garun Mallam', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29436, 'Gezawa', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29437, 'Gwarzo', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29438, 'Kano', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29439, 'Karaye', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29440, 'Kibiya', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29441, 'Kiru', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29442, 'Kumbotso', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29443, 'Kunchi', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29444, 'Kura', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29445, 'Madobi', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29446, 'Makoda', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29447, 'Nassarawa', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29448, 'Rano', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29449, 'Rimin Gado', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29450, 'Shanono', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29451, 'Sumaila', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29452, 'Takai', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29453, 'Tofa', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29454, 'Wudil', 2586, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29455, 'Bakori', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29456, 'Batsari', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29457, 'Bindawa', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29458, 'Cheranchi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29459, 'Dan Dume', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29460, 'Danja', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29461, 'Daura', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29462, 'Dutsi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29463, 'Dutsin Ma', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29464, 'Faskari', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29465, 'Funtua', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29466, 'Ingawa', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29467, 'Jibiya', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29468, 'Kangiwa', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29469, 'Kankara', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29470, 'Kankiya', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29471, 'Katsina', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29472, 'Kurfi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29473, 'Malumfashi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29474, 'Mashi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29475, 'Musawa', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29476, 'Rimi', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29477, 'Sandamu', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29478, 'Zango', 2587, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29479, 'Argungu', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29480, 'Augie', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29481, 'Bagudo', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29482, 'Birnin Kebbi', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29483, 'Birnin Yauri', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29484, 'Bunza', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29485, 'Fakai', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29486, 'Gwandu', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29487, 'Jega', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29488, 'Kalgo', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29489, 'Koko', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29490, 'Maiyema', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29491, 'Sakaba', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29492, 'Shanga', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29493, 'Suru', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29494, 'Wasagu', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29495, 'Zuru', 2588, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, 1), -(29496, 'Ajaokuta', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29497, 'Ankpa', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29498, 'Dekina', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29499, 'Idah', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29500, 'Kabba', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29501, 'Koton-Karifi', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29502, 'Kuroro', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29503, 'Lokoja', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29504, 'Mopa', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29505, 'Ogaminana', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29506, 'Okene', 2589, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29507, 'Ajasse', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29508, 'Ilorin', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29509, 'Jebba', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29510, 'Kaiama', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29511, 'Lafiagi', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29512, 'Offa', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29513, 'Pategi', 2590, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29514, 'Apapa', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29515, 'Badagri', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29516, 'Ibeju', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29517, 'Iganmi', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29518, 'Ikeja', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29519, 'Ikorodu', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29520, 'Lagos', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29521, 'Ojo', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29522, 'Surulere', 2591, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29523, 'Akwanga', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29524, 'Awe', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29525, 'Doma', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29526, 'Keana', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29527, 'Keffi', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29528, 'Lafia', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29529, 'Obi', 2592, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29530, 'Agale', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29531, 'Babana', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29532, 'Bida', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29533, 'Bosso', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29534, 'Chanchaga', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29535, 'Gbako', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29536, 'Kontagora', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29537, 'Lapai', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29538, 'Minna', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29539, 'Mokwa', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29540, 'New Bussa', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29541, 'Rijau', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29542, 'Shiroro', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29543, 'Suleja', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29544, 'Wushishi', 2593, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29545, 'Abeokuta', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29546, 'Ado Odo', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29547, 'Agbara', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29548, 'Aiyetoro', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29549, 'Ewekoro', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29550, 'Ifo', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29551, 'Ijebu Igbo', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29552, 'Ijebu Ode', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29553, 'Ikene', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29554, 'Ilaro', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29555, 'Ipokia', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29556, 'Odogbolu', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29557, 'Owode', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29558, 'Sango Ota', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29559, 'Shagamu', 2594, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29560, 'Akure', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29561, 'Idanre', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29562, 'Ikare', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29563, 'Irele', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29564, 'Odigbo', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29565, 'Oka', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29566, 'Okitipupa', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29567, 'Ondo', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29568, 'Owo', 2595, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29569, 'Apomu', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29570, 'Ejigbo', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29571, 'Erin-Oshogbo', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29572, 'Gbongan', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29573, 'Ife', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29574, 'Ifon Osun', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29575, 'Ijesha', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29576, 'Ikire', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29577, 'Ikirun', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29578, 'Ila', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29579, 'Ilesha', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29580, 'Ilobu', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29581, 'Inisa', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29582, 'Iwo', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29583, 'Modakeke', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29584, 'Oke-Mesi', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29585, 'Olorunda', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29586, 'Olupona', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29587, 'Ore', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29588, 'Orolu', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29589, 'Oshogbo', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29590, 'Oyan', 2596, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29591, 'Akinyele', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29592, 'Egbeda', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29593, 'Eruwa', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29594, 'Fiditi', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29595, 'Ibadan', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29596, 'Ibeto', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29597, 'Igbo Ora', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29598, 'Igboho', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29599, 'Iseyin', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29600, 'Kajola', 2597, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, 1), -(29601, 'Kishi', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29602, 'Lalupon', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29603, 'Ogbomosho', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29604, 'Ogo', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29605, 'Oke-Iho', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29606, 'Oyo', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29607, 'Shaki', 2597, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29608, 'Barakin', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29609, 'Bassa', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29610, 'Bokkos', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29611, 'Bukuru', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29612, 'Jos', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29613, 'Langtang', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29614, 'Pankshin', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29615, 'Riyom', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29616, 'Shendam', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29617, 'Vom', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29618, 'Wase', 453, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29619, 'Abonnema', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29620, 'Abua', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29621, 'Ahoada', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29622, 'Bonny', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29623, 'Bugama', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29624, 'Degema', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29625, 'Egbema', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29626, 'Ogu', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29627, 'Okrika', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29628, 'Omoko', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29629, 'Opobo', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29630, 'Oyigbo', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29631, 'Port Harcourt', 2598, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29632, 'Binji', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29633, 'Bodinga', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29634, 'Dange', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29635, 'Gada', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29636, 'Goronyo', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29637, 'Gwadabawa', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29638, 'Kebbe', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29639, 'Kware', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29640, 'Rabah', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29641, 'Raka', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29642, 'Sabon Birni', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29643, 'Sokoto', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29644, 'Tambawel', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29645, 'Tureta', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29646, 'Wamako', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29647, 'Wurno', 2599, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29648, 'Gashaka', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29649, 'Gassol', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29650, 'Ibi', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29651, 'Jalingo', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29652, 'Lau', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29653, 'Takum', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29654, 'Wukari', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29655, 'Yorro', 2600, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29656, 'Damaturu', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29657, 'Fika', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29658, 'Gashua', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29659, 'Geidam', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29660, 'Gorgoram', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29661, 'Gujba', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29662, 'Gulani', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29663, 'Jakusko', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29664, 'Matsena', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29665, 'Nguru', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29666, 'Potiskum', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29667, 'Yusufari', 2601, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29668, 'Anka', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29669, 'Bungudu', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29670, 'Chafe', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29671, 'Gummi', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29672, 'Gusau', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29673, 'Isa', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29674, 'Kaura Namoda', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29675, 'Maradun', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29676, 'Maru', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29677, 'Shinkafe', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29678, 'Talata Mafara', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29679, 'Zurmi', 2602, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29680, 'Niue', 2603, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29681, 'Songsong', 2606, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29682, 'Capital Hill', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29683, 'Chalan Kanoa', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29684, 'Dandan', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29685, 'Garapan', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29686, 'Gualo Rai', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29687, 'Kagman', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29688, 'Koblerville', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29689, 'Susupe', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29690, 'Tanapag', 2607, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, 1), -(29691, 'Asker', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29692, 'Billingstad', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29693, 'Haslum', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29694, 'Hosle', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29695, 'Kjeller', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29696, 'Lillestrom', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29697, 'Lorenskog', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29698, 'Lysaker', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29699, 'Lørenskog', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29700, 'Rud', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29701, 'Sandvika', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29702, 'Strommen', 2609, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29703, 'Kokstad', 2611, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29704, 'Drammen', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29705, 'Hokksund', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29706, 'Honefoss', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29707, 'Kongsberg', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29708, 'Lyngdal', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29709, 'Nærsnes', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29710, 'Vestby', 2612, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29711, 'Baatsfjord', 2613, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29712, 'Hammerfest', 2613, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29713, 'Brumunddal', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29714, 'Elverum', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29715, 'Hamar', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29716, 'Ilseng', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29717, 'Rena', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29718, 'Trysil', 2614, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29719, 'Høylandsbygd', 2615, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29720, 'Lonevag', 2615, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29721, 'Straume', 2615, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29722, 'Tysnes', 2615, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29723, 'Voss', 2615, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29724, 'Bodo', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29725, 'Mosjoen', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29726, 'Narvik', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29727, 'Nesna', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29728, 'Saltdal', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29729, 'Sortland', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29730, 'Steigen', 2618, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29731, 'Askim', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29732, 'Fredrikstad', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29733, 'Halden', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29734, 'Hovik', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29735, 'Moss', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29736, 'Mysen', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29737, 'Sarpsborg', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29738, 'Tistedal', 2619, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29739, 'Lena', 2620, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29740, 'Lillehammer', 2620, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29741, 'Oslo', 2621, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29742, 'Skedsmo', 2621, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29743, 'Skjetten', 2621, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29744, 'Egersund', 2622, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29745, 'Haugesund', 2622, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29746, 'Kleppe', 2622, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29747, 'Sandnes', 2622, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29748, 'Stavanger', 2622, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29749, 'Stavern', 2625, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, 1), -(29750, 'Sykkylven', 2626, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29751, 'Notodden', 2627, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29752, 'Skien', 2627, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29753, 'Harstad', 2628, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29754, 'Troms', 2628, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29755, 'Tromsø', 2628, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29756, 'Horten', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29757, 'Husøysund', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29758, 'Larvik', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29759, 'Rygge', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29760, 'Sandefjord', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29761, 'Tønsberg', 2630, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29762, 'Salalah', 2633, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29763, 'Azaiba', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29764, 'Bawshar', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29765, 'Madinat Qabus', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29766, 'Masqat', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29767, 'Matrah', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29768, 'Muscat', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29769, 'Muttrah', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29770, 'Qurayyat', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29771, 'Qurm', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29772, 'Ruwi', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29773, 'Wadi Al Kabir', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29774, 'as-Sib', 2634, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29775, 'Khasab', 2635, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29776, 'Rusayl', 2636, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29777, 'Bahla ', 2638, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29778, 'Nizwa', 2638, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29779, 'Sumayl', 2638, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29780, ' Ibri', 2639, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29781, 'al-Buraymi', 2639, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29782, 'Al khuwair', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29783, 'Barkah', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29784, 'Shinas', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29785, 'Suhar', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29786, 'al-Khaburah', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29787, 'al-Masna ah', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29788, 'ar-Rustaq', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29789, 'as-Suwayq', 2640, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29790, 'Ibra', 1037, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29791, 'al-Mudaybi', 1037, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29792, 'Barkhan', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29793, 'Bhag', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29794, 'Chaman', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29795, 'Chitkan', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29796, 'Dalbandin', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29797, 'Dera Allah Yar', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29798, 'Dera Bugti', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29799, 'Dera Murad Jamali', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29800, 'Dhadar', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29801, 'Duki', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29802, 'Gaddani', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29803, 'Gwadar', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29804, 'Harnai', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29805, 'Hub', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29806, 'Jiwani', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29807, 'Kalat', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29808, 'Kharan', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29809, 'Khuzdar', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29810, 'Kohlu', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29811, 'Loralai', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29812, 'Mach', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29813, 'Mastung', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29814, 'Nushki', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29815, 'Ormara', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29816, 'Pasni', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29817, 'Pishin', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29818, 'Quetta', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29819, 'Sibi', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29820, 'Sohbatpur', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29821, 'Surab', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29822, 'Turbat', 2641, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, 1), -(29823, 'Usta Muhammad', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29824, 'Uthal', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29825, 'Wadh', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29826, 'Winder', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29827, 'Zehri', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29828, 'Zhob', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29829, 'Ziarat', 2641, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29830, ' Abdul Hakim', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29831, 'Ahmadpur East', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29832, 'Ahmadpur Lumma', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29833, 'Ahmadpur Sial', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29834, 'Alipur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29835, 'Alipur Chatha', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29836, 'Arifwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29837, 'Attock', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29838, 'Baddomalhi', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29839, 'Bahawalnagar', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29840, 'Bahawalpur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29841, 'Bai Pheru', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29842, 'Basirpur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29843, 'Begowala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29844, 'Bhakkar', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29845, 'Bhalwal', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29846, 'Bhawana', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29847, 'Bhera', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29848, 'Bhopalwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29849, 'Burewala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29850, 'Chak Azam Sahu', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29851, 'Chak Jhumra', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29852, 'Chak Sarwar Shahid', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29853, 'Chakwal', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29854, 'Chawinda', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29855, 'Chichawatni', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29856, 'Chiniot', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29857, 'Chishtian Mandi', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29858, 'Choa Saidan Shah', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29859, 'Chuhar Kana', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29860, 'Chunian', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29861, 'Dajal', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29862, 'Darya Khan', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29863, 'Daska', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29864, 'Daud Khel', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29865, 'Daultala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29866, 'Dera Din Panah', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29867, 'Dera Ghazi Khan', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29868, 'Dhanote', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29869, 'Dhonkal', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29870, 'Dijkot', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29871, 'Dina', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29872, 'Dinga', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29873, 'Dipalpur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29874, 'Dullewala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29875, 'Dunga Bunga', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29876, 'Dunyapur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29877, 'Eminabad', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29878, 'Faisalabad', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29879, 'Faqirwali', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(29880, 'Faruka', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29881, 'Fateh Jang', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29882, 'Fazalpur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29883, 'Ferozwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29884, 'Fort Abbas', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29885, 'Garh Maharaja', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29886, 'Ghakar', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29887, 'Ghurgushti', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29888, 'Gojra', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29889, 'Gujar Khan', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29890, 'Gujranwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29891, 'Gujrat', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29892, 'Hadali', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29893, 'Hafizabad', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29894, 'Harnoli', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29895, 'Harunabad', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29896, 'Hasan Abdal', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29897, 'Hasilpur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29898, 'Haveli', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29899, 'Hazro', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29900, 'Hujra Shah Muqim', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29901, 'Isa Khel', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29902, 'Jahanian', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29903, 'Jalalpur Bhattian', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29904, 'Jalalpur Jattan', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29905, 'Jalalpur Pirwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29906, 'Jalla Jeem', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29907, 'Jamke Chima', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29908, 'Jampur', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29909, 'Jand', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29910, 'Jandanwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29911, 'Jandiala Sherkhan', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29912, 'Jaranwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29913, 'Jatoi', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29914, 'Jauharabad', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29915, 'Jhang', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29916, 'Jhawarian', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29917, 'Jhelum', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29918, 'Kabirwala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29919, 'Kahna Nau', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29920, 'Kahror Pakka', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29921, 'Kahuta', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29922, 'Kalabagh', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29923, 'Kalaswala', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29924, 'Kaleke', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29925, 'Kalur Kot', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29926, 'Kamalia', 1623, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, 1), -(29927, 'Kamar Mashani', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29928, 'Kamir', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29929, 'Kamoke', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29930, 'Kamra', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29931, 'Kanganpur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29932, 'Karampur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29933, 'Karor Lal Esan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29934, 'Kasur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29935, 'Khairpur Tamewali', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29936, 'Khanewal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29937, 'Khangah Dogran', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29938, 'Khangarh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29939, 'Kharian', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29940, 'Khewra', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29941, 'Khundian', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29942, 'Khurianwala', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29943, 'Khushab', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29944, 'Kot Abdul Malik', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29945, 'Kot Addu', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29946, 'Kot Mithan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29947, 'Kot Moman', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29948, 'Kot Radha Kishan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29949, 'Kot Samaba', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29950, 'Kotli Loharan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29951, 'Kundian', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29952, 'Kunjah', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29953, 'Lahore', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29954, 'Lalamusa', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29955, 'Lalian', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29956, 'Liaqatabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29957, 'Liaqatpur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29958, 'Lieah', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29959, 'Liliani', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29960, 'Lodhran', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29961, 'Ludhewala Waraich', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29962, 'Mailsi', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29963, 'Makhdumpur Rashid', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29964, 'Malakwal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29965, 'Mamu Kanjan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29966, 'Mananwala Jodh Singh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29967, 'Mandi Bahauddin', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29968, 'Mandi Sadiq Ganj', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29969, 'Mangat', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29970, 'Mangla', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29971, 'Mankera', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29972, 'Mian Channun', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29973, 'Miani', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29974, 'Mianwali', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29975, 'Minchinabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29976, 'Mitha Tiwana', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29977, 'Multan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29978, 'Muridke', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29979, 'Murree', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29980, 'Muzaffargarh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29981, 'Nankana Sahib', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29982, 'Narang', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29983, 'Narowal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29984, 'Noorpur Thal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29985, 'Nowshera', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29986, 'Nowshera Virkan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29987, 'Okara', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29988, 'Pakpattan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29989, 'Pasrur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29990, 'Pattoki', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29991, 'Phalia', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29992, 'Phularwan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29993, 'Pind Dadan Khan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29994, 'Pindi Bhattian', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29995, 'Pindi Gheb', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29996, 'Pirmahal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29997, 'Qadirabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29998, 'Qadirpur Ran', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(29999, 'Qila Disar Singh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30000, 'Qila Sobha Singh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30001, 'Quaidabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30002, 'Rabwah', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30003, 'Rahim Yar Khan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30004, 'Raiwind', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30005, 'Raja Jang', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30006, 'Rajanpur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30007, 'Rasulnagar', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30008, 'Rawalpindi', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30009, 'Renala Khurd', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30010, 'Rojhan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30011, 'Saddar Gogera', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30012, 'Sadiqabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30013, 'Safdarabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30014, 'Sahiwal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30015, 'Samasatta', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30016, 'Sambrial', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30017, 'Sammundri', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30018, 'Sangala Hill', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30019, 'Sanjwal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30020, 'Sarai Alamgir', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30021, 'Sarai Sidhu', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30022, 'Sargodha', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30023, 'Shadiwal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30024, 'Shahpur City', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30025, 'Shahpur Saddar', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30026, 'Shakargarh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30027, 'Sharqpur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30028, 'Shehr Sultan', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30029, 'Shekhupura', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30030, 'Shujaabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30031, 'Sialkot', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30032, 'Sillanwali', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30033, 'Sodhra', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30034, 'Sohawa', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30035, 'Sukheke', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30036, 'Talagang', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30037, 'Tandlianwala', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30038, 'Taunsa', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30039, 'Taxila', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30040, 'Tibba Sultanpur', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30041, 'Toba Tek Singh', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30042, 'Tulamba', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30043, 'Uch', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30044, 'Vihari', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30045, 'Wah', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30046, 'Warburton', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30047, 'Wazirabad', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30048, 'Yazman', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30049, 'Zafarwal', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30050, 'Zahir Pir', 1623, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30051, 'Adilpur', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30052, 'Badah', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30053, 'Badin', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30054, 'Bagarji', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30055, 'Bakshshapur', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30056, 'Bandhi', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30057, 'Berani', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30058, 'Bhan', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30059, 'Bhiria City', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30060, 'Bhiria Road', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30061, 'Bhit Shah', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30062, 'Bozdar', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30063, 'Bulri', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30064, 'Chak', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30065, 'Chambar', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30066, 'Chohar Jamali', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30067, 'Chor', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30068, 'Dadu', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30069, 'Daharki', 2646, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, 1), -(30070, 'Daro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30071, 'Darya Khan Mari', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30072, 'Daur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30073, 'Dhoronaro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30074, 'Digri', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30075, 'Diplo', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30076, 'Dokri', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30077, 'Faqirabad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30078, 'Gambat', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30079, 'Garello', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30080, 'Garhi Khairo', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30081, 'Garhi Yasin', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30082, 'Gharo', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30083, 'Ghauspur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30084, 'Ghotki', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30085, 'Golarchi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30086, 'Guddu', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30087, 'Gulistan-E-Jauhar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30088, 'Hala', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30089, 'Hingorja', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30090, 'Islamkot', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30091, 'Jacobabad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30092, 'Jam Nawaz Ali', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30093, 'Jam Sahib', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30094, 'Jati', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30095, 'Jhol', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30096, 'Jhudo', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30097, 'Johi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30098, 'Kadhan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30099, 'Kambar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30100, 'Kandhra', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30101, 'Kandiari', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30102, 'Kandiaro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30103, 'Karachi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30104, 'Kario Ghanwar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30105, 'Karoondi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30106, 'Kashmor', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30107, 'Kazi Ahmad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30108, 'Keti Bandar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30109, 'Khadro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30110, 'Khairpur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30111, 'Khairpur Nathan Shah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30112, 'Khandh Kot', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30113, 'Khipro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30114, 'Khoski', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30115, 'Khuhra', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30116, 'Khyber', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30117, 'Kot Diji', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30118, 'Kot Ghulam Mohammad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30119, 'Kotri', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30120, 'Kumb', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30121, 'Kunri', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30122, 'Lakhi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30123, 'Larkana', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30124, 'Madeji', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30125, 'Matiari', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30126, 'Matli', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30127, 'Mehar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30128, 'Mehrabpur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30129, 'Miro Khan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30130, 'Mirpur Bathoro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30131, 'Mirpur Khas', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30132, 'Mirpur Mathelo', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30133, 'Mirpur Sakro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30134, 'Mirwah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30135, 'Mithi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30136, 'Moro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30137, 'Nabisar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30138, 'Nasarpur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30139, 'Naudero', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30140, 'Naukot', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30141, 'Naushahro Firoz', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30142, 'Nawabshah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30143, 'Oderolal Station', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30144, 'Pacca Chang', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30145, 'Padidan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30146, 'Pano Aqil', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30147, 'Perumal', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30148, 'Phulji', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30149, 'Pirjo Goth', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30150, 'Piryaloi', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30151, 'Pithoro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30152, 'Radhan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30153, 'Rajo Khanani', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30154, 'Ratodero', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30155, 'Rohri', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30156, 'Rustam', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30157, 'Saeedabad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30158, 'Sakrand', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30159, 'Samaro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30160, 'Sanghar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30161, 'Sann', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30162, 'Sarhari', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30163, 'Sehwan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30164, 'Setharja', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30165, 'Shah Dipalli', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30166, 'Shahdadkot', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30167, 'Shahdadpur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30168, 'Shahpur Chakar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30169, 'Shahpur Jahania', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30170, 'Sinjhoro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30171, 'Sita Road', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30172, 'Sobhodero', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30173, 'Sujawal', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30174, 'Sukkur', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30175, 'Talhar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30176, 'Tando Adam', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30177, 'Tando Allah Yar', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30178, 'Tando Bagho', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30179, 'Tando Ghulam Ali', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30180, 'Tando Jam', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30181, 'Tando Jan Mohammad', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30182, 'Tando Mitha Khan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30183, 'Tando Muhammad Khan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30184, 'Tangwani', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30185, 'Thano Bula Khan', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30186, 'Thari Mirwah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30187, 'Tharushah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30188, 'Thatta', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30189, 'Ther I', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30190, 'Ther I Mohabat', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30191, 'Thul', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30192, 'Ubauro', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30193, 'Warah', 2646, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30194, 'Ulimang', 2647, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30195, 'Airai', 2648, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30196, 'Ngaramash', 2649, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, 1), -(30197, 'Hatohobei', 2650, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30198, 'Kayangel', 2651, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30199, 'Koror', 2652, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30200, 'Meyungs', 2652, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30201, 'Melekeok', 2653, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30202, 'Ngermechau', 2654, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30203, 'Chol', 2655, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30204, 'Ollei', 2656, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30205, 'Oikul', 2657, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30206, 'Ngerkeai', 2658, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30207, 'Imeong', 2659, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30208, 'Ngetkip', 2660, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30209, 'Kloulklubed', 2661, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30210, 'Dongosaru', 2662, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30211, 'Ariha', 2663, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30212, 'Beit Jala', 1749, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30213, 'Dayr-al-Balah', 2665, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30214, 'al-Burayj', 2665, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30215, 'al-Insayrat', 2665, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30216, 'al-Maghazi', 2665, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30217, 'Ghazzah', 2666, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30218, 'Janin', 2668, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30219, 'Qabatiyah', 2668, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30220, 'Nabulus', 2670, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30221, 'Qalqilyah', 2671, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30222, 'Rafah', 2672, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30223, 'Tall as-Sultan', 2672, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30224, 'Salfit', 2674, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, 1), -(30225, 'Tubas', 2675, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30226, 'Tulkarm', 2676, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30227, 'Dura', 2677, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30228, 'Halhul', 2677, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30229, 'Yattah', 2677, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30230, 'ad-Dahiriyah', 2677, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30231, 'al-Khalil', 2677, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30232, 'Ma ale Adummim', 2678, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30233, 'al-Quds', 2678, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30234, 'Alanje', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30235, 'Bajo Boquete', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30236, 'Boqueron', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30237, 'Bugaba', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30238, 'David', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30239, 'Dolega', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30240, 'Gualaca', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30241, 'Horconcitos', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30242, 'Las Lajas', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30243, 'Puerto Armuelles', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30244, 'Rio Sereno', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30245, 'Tole', 2680, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30246, 'Aguadulce', 2681, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30247, 'Anton', 2681, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30248, 'Nata', 2681, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30249, 'Ola', 2681, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30250, 'Penonome', 2681, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30251, 'Miguel de la Borda', 1546, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30252, 'Nuevo Chagres', 1546, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30253, 'Portobelo', 1546, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30254, 'El Real de Santa Maria', 2682, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30255, 'Cirilo Guainora', 2683, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30256, 'Rio Sabalo', 2683, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30257, 'Chitre', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30258, 'Las Minas', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30259, 'Los Pozos', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30260, 'Ocu', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30261, 'Parita', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30262, 'Pese', 2684, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30263, 'Arraijan', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30264, 'Capira', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30265, 'Chame', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30266, 'Chepo', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30267, 'Chiman', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30268, 'La Chorrera', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30269, 'Panama', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30270, 'San Miguelito', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30271, 'Taboga', 2688, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30272, 'Atalaya', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30273, 'Calobre', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30274, 'Canazas', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30275, 'Las Palmas', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30276, 'Montijo', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30277, 'Rio de Jesus', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30278, 'Santa Fe', 2689, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30279, 'Laiagam', 2693, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30280, 'Porgera', 2693, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30281, 'Wabag', 2693, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, 1), -(30282, 'Kerema', 2695, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30283, 'Finschhafen', 2696, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30284, 'Madang', 2696, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30285, 'Lorengau', 2697, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30286, 'Bulolo', 2699, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30287, 'Kokoda', 2703, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30288, 'Popondetta', 2703, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30289, 'Vanimo', 2704, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30290, 'Kundiawa', 2705, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30291, 'Bella Vista', 2711, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30292, 'Capitan Bado', 2711, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30293, 'Pedro Juan Caballero', 2711, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30294, 'Doctor Pedro P. Pena', 2713, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30295, 'Marechal Estigarribia', 2713, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30296, 'Menno', 2713, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30297, 'Neuland', 2713, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30298, 'Caaguazu', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30299, 'Carayao', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30300, 'Coronel Oviedo', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30301, 'Doctor Cecilio Baez', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30302, 'Doctor Eulogio Estigarribia', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30303, 'Doctor Juan Manuel Frutos', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30304, 'Jose Ocampos', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30305, 'La Pastoria', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30306, 'Marechal Francisco Solano Lope', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30307, 'Mbutuy', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30308, 'Nueva Londres', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30309, 'Raul Arsenio Oviedo', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30310, 'Repatriacion', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30311, 'San Jose de los Arroyos', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30312, 'Simon Bolivar', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30313, 'Tres Corrales', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30314, 'Tres de Febrero', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30315, 'Vaqueria', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30316, 'Yhu', 2714, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30317, 'Abai', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30318, 'Buena Vista', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30319, 'Caazapa', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30320, 'Doctor Moises Bertoni', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30321, 'General Higinio Morinigo', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30322, 'Maciel', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30323, 'Tavai', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30324, 'Yegros', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30325, 'Yuty', 2715, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30326, 'Corpus Christi', 2716, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, 1), -(30327, 'Curuguaty', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30328, 'General Francisco Alvarez', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30329, 'Itanara', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30330, 'Katuete', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30331, 'La Paloma', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30332, 'Nueva Esperanza', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30333, 'Salto del Guaira', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30334, 'Ygatimi', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30335, 'Ypehu', 2716, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30336, 'Aregua', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30337, 'Capiata', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30338, 'Fernando de la Mora', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30339, 'Guarambare', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30340, 'Ita', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30341, 'Itaugua', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30342, 'Juan Augusto Saldivar', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30343, 'Lambare', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30344, 'Limpio', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30345, 'Luque', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30346, 'Nemby', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30347, 'Nueva Italia', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30348, 'Villa Elisa', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30349, 'Ypacarai', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30350, 'Ypane', 1102, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30351, 'Horqueta', 2717, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30352, 'San Lazaro', 2717, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30353, 'Arroyos y Esteros', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30354, 'Atyra', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30355, 'Caacupe', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30356, 'Caraguatay', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30357, 'Emboscada', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30358, 'Eusebio Ayala', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30359, 'Isla Pucu', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30360, 'Itacurubi de la Cordillera', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30361, 'Juan de Mena', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30362, 'Loma Grande', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30363, 'Mbocayty del Yhaguy', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30364, 'Nueva Colombia', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30365, 'Piribebuy', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30366, 'Primero de Marzo', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30367, 'San Jose Obrero', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30368, 'Tobati', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30369, 'Valenzuela', 2718, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30370, 'Borja', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30371, 'Capitan Mauricio Jose Troche', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30372, 'Coronel Martinez', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30373, 'Doctor Botrell', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30374, 'Felix Perez Cardozo', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30375, 'General Eugenio Alejandrino Ga', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30376, 'Itape', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30377, 'Iturbe', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30378, 'Jose Fasardi', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30379, 'Mbocayaty', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30380, 'Natalicio Talavera', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30381, 'Numi', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30382, 'Paso Yobai', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30383, 'San Salvador', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30384, 'Yataity', 2719, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30385, 'Alto Vera', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30386, 'Cambyreta', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30387, 'Capitan Meza', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30388, 'Capitan Miranda', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30389, 'Carlos Antonio Lopez', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30390, 'Carmen del Parana', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30391, 'Coronel Bogado', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30392, 'Edelira', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30393, 'Fram', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30394, 'General Artigas', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30395, 'General Delgado', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30396, 'Hohenau', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30397, 'Itapua Poty', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30398, 'Jesus', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30399, 'Leandro Oviedo', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30400, 'Mayor Otano', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30401, 'Natalio', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30402, 'Nueva Alborada', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30403, 'Obligado', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30404, 'Pirapo', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30405, 'San Cosme y Damian', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30406, 'San Juan del Parana', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30407, 'San Pedro del Parana', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30408, 'San Rafael del Parana', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30409, 'Tomas Romero Pereira', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30410, 'Yatytay', 2720, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30411, 'Ayolas', 197, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30412, 'San Juan Bautista', 197, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30413, 'Villa Florida', 197, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30414, 'Yabebyry', 197, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30415, 'Alberdi', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30416, 'Desmochados', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30417, 'General Jose Eduvigis Diaz', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30418, 'Guazu Cua', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30419, 'Isla Umbu', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30420, 'Laureles', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30421, 'Mayor Jose Dejesus Martinez', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30422, 'Paso de Patria', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30423, 'San Juan Bautista de Neembucu', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30424, 'Tacuaras', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30425, 'Villa Franca', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30426, 'Villa Oliva', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30427, 'Villalbin', 2721, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30428, 'Acahay', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30429, 'Caapucu', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30430, 'Carapegua', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30431, 'Escobar', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30432, 'General Bernardino Caballero', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30433, 'La Colmena', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30434, 'Mbuyapey', 2722, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, 1), -(30435, 'Paraguari', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30436, 'Pirayu', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30437, 'Quiindy', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30438, 'Quyquyho', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30439, 'San Roque Gonzalez de Santa Cr', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30440, 'Sapucai', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30441, 'Tebicuarymi', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30442, 'Yaguaron', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30443, 'Ybycui', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30444, 'Ybytimi', 2722, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30445, 'Bagua Grande', 511, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30446, 'Cajaruro', 511, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30447, 'Chachapoyas', 511, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30448, 'Jazan', 511, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30449, 'La Peca', 511, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30450, 'Ancash', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30451, 'Caraz', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30452, 'Carhuaz', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30453, 'Casma', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30454, 'Chimbote', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30455, 'Choishco', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30456, 'Huallanca', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30457, 'Huaraz', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30458, 'Huari', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30459, 'Huarmey', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30460, 'Pomabamba', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30461, 'Santa', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30462, 'Yungay', 2725, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30463, 'Abancay', 2726, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30464, 'Andahuaylas', 2726, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30465, 'Talavera', 2726, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30466, 'Acari', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30467, 'Arequipa', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30468, 'Camana', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30469, 'Chivay', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30470, 'Cocachacra', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30471, 'Dean Valdivia', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30472, 'Lluta', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30473, 'Mollendo', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30474, 'Nicolas de Pierola', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30475, 'Orcopampa', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30476, 'Punta de Bombon', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30477, 'Yura', 2727, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30478, 'Ayacucho', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30479, 'Ayna', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30480, 'Coracora', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30481, 'Huanta', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30482, 'Puquio', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30483, 'Tambo', 2728, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30484, 'Bambamarca', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30485, 'Cajabamba', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30486, 'Celendin', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30487, 'Chota', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30488, 'Cutervo', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30489, 'Jaen', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30490, 'Pedro Galvez', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30491, 'Pucara', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(30492, 'Yonan', 2729, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30493, 'Anta', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30494, 'Calca', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30495, 'Cusco', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30496, 'Espinar', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30497, 'Oropesa', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30498, 'Quillabamba', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30499, 'Sicuani', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30500, 'Urcos', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30501, 'Urubamba', 2730, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30502, 'Huancavelica', 2731, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30503, 'Lircay', 2731, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30504, 'Pampas', 2731, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30505, 'Ambos', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30506, 'Huanuco', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30507, 'Jose Crespo y Castillo', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30508, 'Llata', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30509, 'Rupa-Rupa', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30510, 'San Miguel de Cauri', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30511, 'Tingo Maria', 2732, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30512, 'Chincha Alta', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30513, 'Ica', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30514, 'Los Aquijes', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30515, 'Marcona', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30516, 'Nazca', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30517, 'Pachacutec', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30518, 'Palpa', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30519, 'Pisco', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30520, 'Salas', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30521, 'Subtanjalla', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30522, 'Tupac Amaru Inca', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30523, 'Vista Alegre', 2733, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, 1), -(30524, 'Acobamba', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30525, 'Acolla', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30526, 'Carhuamayo', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30527, 'Chanchamayo', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30528, 'Chupaca', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30529, 'Huancayo', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30530, 'Huasahuasi', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30531, 'Huayucachi', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30532, 'Jauja', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30533, 'La Oroya', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30534, 'Mazamari', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30535, 'Morococha', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30536, 'Orcotuna', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30537, 'Pangoa', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30538, 'Perene', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30539, 'Pichanaqui', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30540, 'Pilcomayo', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30541, 'San Jeronimo de Tunan', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30542, 'San Pedro de Cajas', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30543, 'Santa Rosa de Saco', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30544, 'Satipo', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30545, 'Sicaya', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30546, 'Tarma', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30547, 'Yauli', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30548, 'Yauya', 2734, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30549, 'Chiclayo', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30550, 'Chongoyape', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30551, 'Eten', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30552, 'Ferrenafe', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30553, 'Illimo', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30554, 'Jayanca', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30555, 'Lagunas', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30556, 'Lambayeque', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30557, 'Manuel Mesones Muro', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30558, 'Mochumi', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30559, 'Monsefu', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30560, 'Morrope', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30561, 'Motupe', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30562, 'Olmos', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30563, 'Oyotun', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30564, 'Picsi', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30565, 'Reque', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30566, 'Sana', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30567, 'Tucume', 2735, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30568, 'Barranca', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30569, 'Contamana', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30570, 'Fernando Lores', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30571, 'Iquitos', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30572, 'Nauta', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30573, 'Paucarpata', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30574, 'Ramon Castilla', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30575, 'Requena', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30576, 'Saquena', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30577, 'Vargas Guerra', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30578, 'Yurimaguas', 2737, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30579, 'Ilo', 2739, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30580, 'Moquegua', 2739, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30581, 'Pacocha', 2739, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30582, 'Torata', 2739, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30583, 'Cerro de Pasco', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30584, 'Chaupimarca', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30585, 'Oxapampa', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30586, 'Paucartambo', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30587, 'Tinyahuarco', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30588, 'Yanacancha', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30589, 'Yanahuanca', 2740, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30590, 'Ayabaca', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30591, 'Bernal', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30592, 'Catacaos', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30593, 'Chulucanas', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30594, 'Colan', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30595, 'Cura Mori', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30596, 'El Alto', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30597, 'Huancabamba', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30598, 'Ignacio Escudero', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30599, 'La Arena', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30600, 'La Brea', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30601, 'La Huaca', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30602, 'La Matanza', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30603, 'Las Lomas', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30604, 'Los Organos', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30605, 'Mancora', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30606, 'Marcavelica', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30607, 'Morropon', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30608, 'Piura', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30609, 'Querecotillo', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30610, 'Salitral', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30611, 'San Juan de Bigote', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30612, 'Sechura', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30613, 'Sullana', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30614, 'Talara', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30615, 'Tamarindo', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30616, 'Tambo Grande', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30617, 'Vice', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30618, 'Vichayal', 2741, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30619, 'Ayaviri', 2742, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, 1), -(30620, 'Azangaro', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30621, 'Desaguadero', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30622, 'Huancane', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30623, 'Ilave', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30624, 'Juli', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30625, 'Juliaca', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30626, 'Macusani', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30627, 'Nunoa', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30628, 'Puno', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30629, 'Putina', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30630, 'Yanahuara', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30631, 'Yunguyo', 2742, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30632, 'Ilabaya', 2744, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30633, 'Tacna', 2744, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30634, 'Aguas Verdes', 2745, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30635, 'Papayal', 2745, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30636, 'Tumbes', 2745, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30637, 'Zarumilla', 2745, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30638, 'Zorritos', 2745, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30639, 'Campoverde', 2746, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30640, 'Padre Abad', 2746, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30641, 'Pucallpa', 2746, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30642, 'Raymondi', 2746, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30643, 'Albay', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30644, 'Daet', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30645, 'Iriga', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30646, 'Legaspi', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30647, 'Naga', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30648, 'Sorsogon', 2748, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30649, 'Bulacan', 2749, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30650, 'Marilao', 2749, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30651, 'Cagayan de Oro', 2750, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30652, 'Tuguegarao', 2750, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30653, 'Bislig', 2751, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30654, 'Butuan', 2751, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30655, 'Surigao', 2751, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30656, 'Baguio', 2718, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30657, 'Bangued', 2718, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30658, 'Davao', 2755, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30659, 'Dagupan', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30660, 'Laoag', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30661, 'Manaoag', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30662, 'Mangaldan', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30663, 'Urdaneta', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30664, 'Vigan', 2758, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30665, 'Binan', 2759, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30666, 'Pangil', 2759, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30667, 'Manila', 2760, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30668, 'Marikina', 2760, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30669, 'Mactan', 2761, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, 1), -(30670, 'Fabryczna', 2771, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30671, 'Bielawa', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30672, 'Bogatynia', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30673, 'Boguszow-Gorce', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30674, 'Boleslawiec', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30675, 'Brzeg Dolny', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30676, 'Bystrzyca Klodzka', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30677, 'Chojnow', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30678, 'Dzierzoniow', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30679, 'Glogow', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30680, 'Gora', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30681, 'Jawor', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30682, 'Jelcz-Laskowice', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30683, 'Jelenia Gora', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30684, 'Kamienna Gora', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30685, 'Klodzko', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30686, 'Kowary', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30687, 'Kudowa-Zdroj', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30688, 'Legnica', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30689, 'Luban', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30690, 'Lubin', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30691, 'Lwowek Slaski', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30692, 'Milicz', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30693, 'Nowa Ruda', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30694, 'Olawa', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30695, 'Olesnica', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30696, 'Piechowice', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30697, 'Pieszyce', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30698, 'Polkowice', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30699, 'Strzegom', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30700, 'Strzelin', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30701, 'Swidnica', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30702, 'Swiebodzice', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30703, 'Sycow', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30704, 'Trzebnica', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30705, 'Walbrzych', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30706, 'Wolow', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30707, 'Wroclaw', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30708, 'Zabkowice Slaskie', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30709, 'Zgorzelec', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30710, 'Ziebice', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30711, 'Zlotoryja', 2772, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30712, 'Hopowo', 2774, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30713, 'Chwaszczyno', 2775, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30714, 'Smigiel', 2776, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30715, 'Jerzmanowice', 2777, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30716, 'Zabierzow', 2777, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30717, 'Aleksandrow Kujawski', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30718, 'Brodnica', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30719, 'Bydgoszcz', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30720, 'Chelmno', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30721, 'Chelmza', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30722, 'Ciechocinek', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30723, 'Golub-Dobrzyn', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30724, 'Grudziadz', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30725, 'Inowroclaw', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30726, 'Janikowo', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30727, 'Koronowo', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30728, 'Kruszwica', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30729, 'Lipno', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30730, 'Mogilno', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30731, 'Naklo nad Notecia', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30732, 'Radziejow', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30733, 'Rypin', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30734, 'Sepolno Krajenskie', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30735, 'Solec Kujawski', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30736, 'Swiecie', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30737, 'Szubin', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30738, 'Torun', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30739, 'Tuchola', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30740, 'Wabrzezno', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30741, 'Wloclawek', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30742, 'Znin', 2778, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, 1), -(30743, 'Aleksandrow Lodzki', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30744, 'Belchatow', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30745, 'Bratoszewice', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30746, 'Brzeziny', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30747, 'Glowno', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30748, 'Koluszki', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30749, 'Konstantynow Lodzki', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30750, 'Kutno', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30751, 'Lask', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30752, 'Leczyca', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30753, 'Lodz', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30754, 'Lowicz', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30755, 'Opoczno', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30756, 'Ozorkow', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30757, 'Pabianice', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30758, 'Piotrkow Trybunalski', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30759, 'Radomsko', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30760, 'Rawa Mazowiecka', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30761, 'Sieradz', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30762, 'Skierniewice', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30763, 'Tomaszow Mazowiecki', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30764, 'Tuszyn', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30765, 'Wielun', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30766, 'Zdunska Wola', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30767, 'Zgierz', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30768, 'Zychlin', 2779, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30769, 'Biala Podlaska', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30770, 'Bilgoraj', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30771, 'Chelm', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30772, 'Deblin', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30773, 'Hrubieszow', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30774, 'Janow Lubelski', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30775, 'Krasnik', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30776, 'Krasnystaw', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30777, 'Leczna', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30778, 'Lubartow', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30779, 'Lublin', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30780, 'Lukow', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30781, 'Miedzyrzec Podlaski', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30782, 'Opole Lubelskie', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30783, 'Parczew', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30784, 'Poniatowa', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30785, 'Pulawy', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30786, 'Radzyn Podlaski', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30787, 'Ryki', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30788, 'Swidnik', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30789, 'Tomaszow Lubelski', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30790, 'Wlodawa', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30791, 'Zamosc', 2780, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30792, 'Drezdenko', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30793, 'Gorzow Wielkopolski', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30794, 'Gubin', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30795, 'Kostrzyn', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30796, 'Kozuchow', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30797, 'Krosno Odrzanskie', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30798, 'Lubsko', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30799, 'Miedzyrzecz', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30800, 'Nowa Sol', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30801, 'Skwierzyna', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30802, 'Slubice', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30803, 'Strzelce Krajenskie', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30804, 'Sulechow', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30805, 'Sulecin', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30806, 'Swiebodzin', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30807, 'Szprotawa', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30808, 'Wschowa', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30809, 'Zagan', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30810, 'Zary', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30811, 'Zielona Gora', 2781, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30812, 'Malomice', 2782, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30813, 'Andrychow', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30814, 'Bochnia', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30815, 'Brzesko', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30816, 'Brzeszcze', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30817, 'Bukowno', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30818, 'Chelmek', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30819, 'Chrzanow', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30820, 'Dabrowa Tarnowska', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30821, 'Gorlice', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30822, 'Kety', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30823, 'Krakow', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30824, 'Krynica', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30825, 'Krzeszowice', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30826, 'Libiaz', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30827, 'Limanowa', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30828, 'Miechow', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30829, 'Myslenice', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30830, 'Nowy Sacz', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30831, 'Nowy Targ', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30832, 'Olkusz', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30833, 'Oswiecim', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30834, 'Poronin', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30835, 'Rabka', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30836, 'Skawina', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30837, 'Stary Sacz', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30838, 'Sucha Beskidzka', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30839, 'Tarnow', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30840, 'Trzebinia', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30841, 'Wadowice', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30842, 'Wieliczka', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30843, 'Wolbrom', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30844, 'Zakopane', 2783, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30845, 'Blonie', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30846, 'Brwinow', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30847, 'Ciechanow', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30848, 'Garwolin', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30849, 'Gora Kalwaria', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30850, 'Gostynin', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30851, 'Grodzisk Mazowiecki', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30852, 'Grojec', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30853, 'Jozefow', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30854, 'Karczew', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30855, 'Kobylka', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30856, 'Konstancin-Jeziorna', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30857, 'Kozienice', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30858, 'Legionowo', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30859, 'Lomianki', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30860, 'Makow Mazowiecki', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30861, 'Marki', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30862, 'Milanowek', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30863, 'Minsk Mazowiecki', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30864, 'Mlawa', 2784, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, 1), -(30865, 'Nowy Dwor Mazowiecki', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30866, 'Ostroleka', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30867, 'Ostrow Mazowiecka', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30868, 'Otwock', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30869, 'Piaseczno', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30870, 'Piastow', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30871, 'Pionki', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30872, 'Plock', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30873, 'Plonsk', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30874, 'Pruszkow', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30875, 'Przasnysz', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30876, 'Pultusk', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30877, 'Radom', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30878, 'Siedlce', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30879, 'Sierpc', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30880, 'Sochaczew', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30881, 'Sokolow Podlaski', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30882, 'Sulejowek', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30883, 'Szydlowiec', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30884, 'Warka', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30885, 'Warszawa', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30886, 'Wegrow', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30887, 'Wesola', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30888, 'Wolomin', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30889, 'Wyszkow', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30890, 'Zabki', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30891, 'Zielonka', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30892, 'Zyrardow', 2784, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30893, 'Dlugoteka', 2785, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30894, 'Brzeg', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30895, 'Glubczyce', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30896, 'Glucholazy', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30897, 'Grodkow', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30898, 'Kedzierzyn-Kozle', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30899, 'Kluczbork', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30900, 'Krapkowice', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30901, 'Namyslow', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30902, 'Niemodlin', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30903, 'Nysa', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30904, 'Olesno', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30905, 'Opole', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30906, 'Ozimek', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30907, 'Prudnik', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30908, 'Strzelce Opolskie', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30909, 'Zawadzkie', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30910, 'Zdzieszowice', 2786, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30911, 'Cmielow', 2787, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30912, 'Debica', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30913, 'Jaroslaw', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30914, 'Jaslo', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30915, 'Krosno', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30916, 'Lancut', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30917, 'Lezajsk', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30918, 'Lubaczow', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30919, 'Mielec', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30920, 'Nisko', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30921, 'Nowa Deba', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30922, 'Przemysl', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30923, 'Przeworsk', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30924, 'Ropczyce', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30925, 'Rzeszow', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30926, 'Sanok', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30927, 'Stalowa Wola', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30928, 'Tarnobrzeg', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30929, 'Ustrzyki Dolne', 2788, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30930, 'Augustow', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30931, 'Bialystok', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30932, 'Bielsk Podlaski', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30933, 'Czarna Bialostocka', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30934, 'Grajewo', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30935, 'Hajnowka', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30936, 'Kolno', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30937, 'Lapy', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30938, 'Lomza', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30939, 'Monki', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30940, 'Siemiatycze', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30941, 'Sokolka', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30942, 'Suwalki', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30943, 'Wysokie Mazowieckie', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30944, 'Zambrow', 2789, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30945, 'Bogumilowice', 2790, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30946, 'Bytow', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30947, 'Chojnice', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30948, 'Czersk', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30949, 'Czluchow', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30950, 'Gdansk', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30951, 'Gdynia', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30952, 'Kartuzy', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30953, 'Koscierzyna', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30954, 'Kwidzyn', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30955, 'Lebork', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30956, 'Malbork', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30957, 'Miastko', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30958, 'Nowy Dwor Gdanski', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30959, 'Pruszcz Gdanski', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30960, 'Puck', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30961, 'Reda', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30962, 'Rumia', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30963, 'Slupsk', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30964, 'Starogard Gdanski', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30965, 'Sztum', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30966, 'Tczew', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30967, 'Ustka', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30968, 'Wejherowo', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30969, 'Wladyslawowo', 2791, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, 1), -(30970, 'Komorniki', 2792, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30971, 'Steszew', 2792, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30972, 'Raszyn', 2793, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30973, 'Rymanowska', 2794, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30974, 'Glogow Malopolski', 2795, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30975, 'Bedzin', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30976, 'Bielsko-Biala', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30977, 'Bierun', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30978, 'Blachowania', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30979, 'Bytom', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30980, 'Chorzow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30981, 'Cieszyn', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30982, 'Czechowice-Dziedzice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30983, 'Czeladz', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30984, 'Czerwionka-Leszczyny', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30985, 'Czestochowa', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30986, 'Dabrowa Gornicza', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30987, 'Gliwice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30988, 'Jastrzebie-Zdroj', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30989, 'Jaworzno', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30990, 'Kalety', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30991, 'Katowice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30992, 'Klobuck', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30993, 'Knurow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30994, 'Laziska Gorne', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30995, 'Ledziny', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30996, 'Lubliniec', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30997, 'Mikolow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30998, 'Myslowice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(30999, 'Myszkow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31000, 'Orzesze', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31001, 'Piekary Slaskie', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31002, 'Poreba', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31003, 'Pszczyna', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31004, 'Pszow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31005, 'Pyskowice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31006, 'Raciborz', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31007, 'Radlin', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31008, 'Radzionkow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31009, 'Ruda Slaska', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31010, 'Rybnik', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31011, 'Rydultowy', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31012, 'Siemianowice Slaskie', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31013, 'Skoczow', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31014, 'Sosnowiec', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31015, 'Swietochlowice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31016, 'Tarnowskie Gory', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31017, 'Tychy', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31018, 'Ustron', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31019, 'Wisla', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31020, 'Wodzislaw Slaski', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31021, 'Wojkowice', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31022, 'Zabrze', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31023, 'Zawiercie', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31024, 'Zory', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31025, 'Zywiec', 2796, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31026, 'Busko-Zdroj', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31027, 'Jedrzejow', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31028, 'Kielce', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31029, 'Konskie', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31030, 'Ostrowiec Swietokrzyski', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31031, 'Pinczow', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31032, 'Polaniec', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31033, 'Sandomierz', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31034, 'Skarzysko-Kamienna', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31035, 'Starachowice', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31036, 'Staszow', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31037, 'Suchedniow', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31038, 'Wloszczowa', 2798, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31039, 'Bartoszyce', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31040, 'Biskupiec', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31041, 'Braniewo', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31042, 'Dobre Miasto', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31043, 'Dzialdowo', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31044, 'Elblag', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31045, 'Elk', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31046, 'Gizycko', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31047, 'Goldap', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31048, 'Ilawa', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31049, 'Ketrzyn', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31050, 'Lidzbark Warminski', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31051, 'Lubawa', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31052, 'Morag', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31053, 'Mragowo', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31054, 'Nidzica', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31055, 'Nowe Miasto Lubawskie', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31056, 'Olecko', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31057, 'Olsztyn', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31058, 'Orneta', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31059, 'Ostroda', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31060, 'Paslek', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31061, 'Pisz', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31062, 'Szczytno', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31063, 'Wegorzewo', 2799, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31064, 'Nadarzyn', 2800, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31065, 'Szemud', 2800, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31066, 'Warsaw', 2800, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31067, 'Goscicino', 2801, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, 1), -(31068, 'Chodziez', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31069, 'Czarnkow', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31070, 'Gniezno', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31071, 'Gostyn', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31072, 'Grodzisk Wielkopolski', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31073, 'Jarocin', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31074, 'Kalisz', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31075, 'Kepno', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31076, 'Kolo', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31077, 'Konin', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31078, 'Koscian', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31079, 'Krotoszyn', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31080, 'Leszno', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31081, 'Lubon', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31082, 'Miedzychod', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31083, 'Mosina', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31084, 'Murowana Goslina', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31085, 'Nowy Tomysl', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31086, 'Oborniki', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31087, 'Opalenica', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31088, 'Ostrow Wielkopolski', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31089, 'Ostrzeszow', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31090, 'Pila', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31091, 'Pleszew', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31092, 'Poznan', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31093, 'Rawicz', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31094, 'Rogozno', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31095, 'Slupca', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31096, 'Srem', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31097, 'Sroda Wielkopolska', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31098, 'Swarzedz', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31099, 'Szamotuly', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31100, 'Trzcianka', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31101, 'Tuliszkow', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31102, 'Turek', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31103, 'Wagrowiec', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31104, 'Wolsztyn', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31105, 'Wronki', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31106, 'Wrzesnia', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31107, 'Zlotow', 2802, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31108, 'Borowa', 2803, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31109, 'Barlinek', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31110, 'Bialogard', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(31111, 'Choszczno', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31112, 'Darlowo', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31113, 'Debno', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31114, 'Drawsko Pomorskie', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31115, 'Goleniow', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31116, 'Gryfice', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31117, 'Gryfino', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31118, 'Kamien Pomorski', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31119, 'Kolobrzeg', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31120, 'Koszalin', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31121, 'Lobez', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31122, 'Mysliborz', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31123, 'Nowogard', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31124, 'Polczyn-Zdroj', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31125, 'Police', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31126, 'Pyrzyce', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31127, 'Slawno', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31128, 'Stargard Szczecinski', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31129, 'Swidwin', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31130, 'Swinoujscie', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31131, 'Szczecin', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31132, 'Szczecinek', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31133, 'Trzebiatow', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31134, 'Walcz', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31135, 'Zlocieniec', 2804, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31136, 'Zukowskie', 2805, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31137, 'Tramagal', 2806, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31138, 'Angra', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31139, 'Arrifes', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31140, 'Faja de Baixo', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31141, 'Horta', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31142, 'Lagoa', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31143, 'Ponta Delgada', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31144, 'Praia da Vitoria', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31145, 'Rabo de Peixe', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31146, 'Ribeira Grande', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31147, 'Rosto do Cao', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31148, 'Vila Franca do Campo', 2807, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31149, 'Alcacer do Sal', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31150, 'Aljustrel', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31151, 'Beja', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31152, 'Caia e Sao Pedro', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31153, 'Castro Verde', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31154, 'Cercal', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31155, 'Elvas', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31156, 'Estremoz', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31157, 'Evora', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31158, 'Ferreira do Alentejo', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31159, 'Grandola', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31160, 'Montemor-o-Novo', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31161, 'Moura', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31162, 'Odemira', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31163, 'Ponte de Sor', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31164, 'Portalegre', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31165, 'Redondo', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31166, 'Reguengos de Monsaraz', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31167, 'Santiago do Cacem', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31168, 'Santo Andre', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31169, 'Sao Teotonio', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31170, 'Serpa', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31171, 'Sines', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31172, 'Vendas Novas', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31173, 'Vila Nova de Milfontes', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31174, 'Vila Vicosa', 2808, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31175, 'Albufeira', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31176, 'Aljezur', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31177, 'Almancil', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31178, 'Alvor', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31179, 'Armacao de Pera', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31180, 'Boliqueime', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31181, 'Castro Marim', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31182, 'Estombar', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31183, 'Faro', 2809, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, 1), -(31184, 'Ferreiras', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31185, 'Guia', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31186, 'Loule', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31187, 'Luz', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31188, 'Moncarapacho', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31189, 'Monchique', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31190, 'Monte Gordo', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31191, 'Olhao', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31192, 'Portimao', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31193, 'Quarteira', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31194, 'Santa Barbara de Nexe', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31195, 'Sao Bartolomeu de Messines', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31196, 'Sao Bras de Alportel', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31197, 'Silves', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31198, 'Tavira', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31199, 'Vila Real de Santo Antonio', 2809, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31200, 'Fafe', 2810, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31201, 'Forjaes', 2810, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31202, 'Vianna do Castello', 2810, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31203, 'Abraveses', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31204, 'Aguada de Cima', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31205, 'Agueda', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31206, 'Albergaria-A-Velha', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31207, 'Alcains', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31208, 'Alhadas', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31209, 'Amor', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31210, 'Aradas', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31211, 'Arazede', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31212, 'Arcos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31213, 'Arganil', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31214, 'Avanca', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31215, 'Aveiro', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31216, 'Beduido', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31217, 'Branca', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31218, 'Buarcos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31219, 'Campo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31220, 'Caranguejeira', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31221, 'Castanheira de Pera', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31222, 'Castelo Branco', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31223, 'Castro Daire', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31224, 'Coimbra', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31225, 'Condeixa-A-Nova', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31226, 'Cortegaca', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31227, 'Covilha', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31228, 'Eixo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31229, 'Esmoriz', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31230, 'Figueira da Foz', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31231, 'Fundao', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31232, 'Gafanha da Encarnacao', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31233, 'Gafanha da Nazare', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31234, 'Guarda', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31235, 'Ilhavo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31236, 'Lavos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31237, 'Leiria', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31238, 'Lorvao', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31239, 'Lourical', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31240, 'Lousa', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31241, 'Maceira', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31242, 'Mangualde', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31243, 'Marinha Grande', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31244, 'Mealhada', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31245, 'Mira de Aire', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31246, 'Miranda do Corvo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31247, 'Monte Redondo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31248, 'Nelas', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31249, 'Oia', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31250, 'Oliveira do Bairro', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31251, 'Oliveira do Hospital', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31252, 'Oliveirinha', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31253, 'Ovar', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31254, 'Pampilhosa', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31255, 'Pardilho', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31256, 'Poiares', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31257, 'Porto de Mos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31258, 'Proenca-A-Nova', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31259, 'Rio de Loba', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31260, 'Salreu', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31261, 'Sangalhos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31262, 'Santa Catarina da Serra', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31263, 'Sao Pedro do Sul', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31264, 'Satao', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31265, 'Seia', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31266, 'Serta', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31267, 'Souto da Carpalhosa', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31268, 'Tavarede', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31269, 'Teixoso', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31270, 'Tondela', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31271, 'Tortosendo', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31272, 'Vagos', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31273, 'Valega', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31274, 'Valongo do Vouga', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31275, 'Vieira de Leiria', 2811, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31276, 'Camacha', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31277, 'Camara de Lobos', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31278, 'Campanario', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31279, 'Canico', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31280, 'Funchal', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31281, 'Machico', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31282, 'Ponta do Sol', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31283, 'Porto Santo', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31284, 'Ribeira Brava', 2817, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31285, 'A Ver-o-Mar', 2818, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31286, 'Adaufe', 2818, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31287, 'Aguas Santas', 2818, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31288, 'Agucadoura', 2818, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31289, 'Alfena', 2818, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, 1), -(31290, 'Alpendurada e Matos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31291, 'Antas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31292, 'Apulia', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31293, 'Arcozelo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31294, 'Areosa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31295, 'Argoncilhe', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31296, 'Aroes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31297, 'Arrifana', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31298, 'Arvore', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31299, 'Aves', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31300, 'Avintes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31301, 'Baguim do Monte', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31302, 'Baltar', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31303, 'Barrosas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31304, 'Bougado', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31305, 'Braga', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31306, 'Brito', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31307, 'Caldas de Vizela', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31308, 'Caldelas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31309, 'Calendario', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31310, 'Candoso', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31311, 'Canedo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31312, 'Canelas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31313, 'Canidelo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31314, 'Carvalhosa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31315, 'Casteloes de Cepeda', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31316, 'Chaves', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31317, 'Coronado', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31318, 'Couto', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31319, 'Custoias', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31320, 'Darque', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31321, 'Ermesinde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31322, 'Espinho', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31323, 'Fanzeres', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31324, 'Feira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31325, 'Ferreira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31326, 'Ferreiros', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31327, 'Fiaes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31328, 'Figueiro', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31329, 'Foz do Sousa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31330, 'Frazao', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31331, 'Freamunde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31332, 'Galegos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31333, 'Gandra', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31334, 'Gemunde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31335, 'Godim', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31336, 'Gondomar', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31337, 'Grijo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31338, 'Gueifaes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31339, 'Guifoes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31340, 'Guimaraes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31341, 'Gulpilhares', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31342, 'Joane', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31343, 'Jovim', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31344, 'Lamego', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31345, 'Lavra', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31346, 'Leca da Palmeira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31347, 'Leca do Bailio', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31348, 'Lobao', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31349, 'Lordelo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31350, 'Lourosa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31351, 'Lustosa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31352, 'Macedo de Cavaleiros', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31353, 'Macieira de Cambra', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31354, 'Madalena', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31355, 'Maia', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31356, 'Margaride', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31357, 'Marinhas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31358, 'Matosinhos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31359, 'Meadela', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31360, 'Meinedo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31361, 'Milheiros', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31362, 'Milheiros de Poiares', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31363, 'Mirandela', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31364, 'Mogadouro', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31365, 'Moreira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31366, 'Moreira de Conegos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31367, 'Mozelos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31368, 'Negrelos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31369, 'Nogueira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31370, 'Nogueira da Regedoura', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31371, 'Olival', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31372, 'Oliveira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31373, 'Oliveira de Azemeis', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31374, 'Oliveira do Douro', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31375, 'Pacos de Brandao', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31376, 'Pacos de Ferreira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31377, 'Pedroso', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31378, 'Pedroucos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31379, 'Penafiel', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31380, 'Perafita', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31381, 'Perozinho', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31382, 'Peso da Regua', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31383, 'Ponte', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31384, 'Povoa de Lanhoso', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31385, 'Povoa de Varzim', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31386, 'Real', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31387, 'Rebordosa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31388, 'Recarei', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31389, 'Refojos de Basto', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31390, 'Rio Meao', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31391, 'Ronfe', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31392, 'Sande', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31393, 'Sandim', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31394, 'Santa Cruz do Bispo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31395, 'Santa Maria de Lamas', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31396, 'Santiago da Riba-Ul', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31397, 'Santo Tirso', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31398, 'Sao Felix da Marinha', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31399, 'Sao Joao da Madeira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31400, 'Sao Joao de Ver', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31401, 'Sao Mamede de Infesta', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31402, 'Sao Pedro da Cova', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31403, 'Sao Pedro de Casteloes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31404, 'Sao Roque', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31405, 'Selho', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31406, 'Senhora da Hora', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31407, 'Seroa', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31408, 'Serzedelo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31409, 'Serzedo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31410, 'Silvalde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31411, 'Sobrado', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31412, 'Sobreira', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31413, 'Souto', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31414, 'Teloes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31415, 'Urgezes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31416, 'Valadares', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31417, 'Valbom', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31418, 'Valongo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31419, 'Valpacos', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31420, 'Viana do Castelo', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31421, 'Vila Cha', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31422, 'Vila Frescainha', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31423, 'Vila Nova da Telha', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31424, 'Vila Nova de Famalicao', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31425, 'Vila Nova de Gaia', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31426, 'Vila Praia de Ancora', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31427, 'Vila Real', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31428, 'Vila Verde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31429, 'Vila de Cucujaes', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31430, 'Vila de Prado', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31431, 'Vila do Conde', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31432, 'Vilar de Andorinho', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31433, 'Vilar do Paraiso', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31434, 'Vilarinho', 2818, '2024-01-21 12:45:53', '2024-01-21 12:45:53', NULL, 1), -(31435, 'Vilela', 2818, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31436, 'Vizela', 2818, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31437, 'Paivas', 2819, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31438, 'Arecibo', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31439, 'Barceloneta', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31440, 'Camuy', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31441, 'Dorado', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31442, 'Isabela', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31443, 'Vega Alta', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31444, 'Vega Baja', 2820, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31445, 'Bayamon', 2821, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31446, 'Catano', 2821, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31447, 'Guaynabo', 2821, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31448, 'Levittown', 2821, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31449, 'Canovanas', 2822, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31450, 'Trujillo Alto', 2822, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31451, 'Aibonito', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31452, 'Arroyo', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31453, 'Barranquitas', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31454, 'Cayey', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31455, 'Coamo', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31456, 'Guayama', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31457, 'Juana Diaz', 2824, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31458, 'Aguas Buenas', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31459, 'Caguas', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31460, 'Culebra', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31461, 'Fajardo', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31462, 'Gurabo', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31463, 'Humacao', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31464, 'Juncos', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31465, 'Vieques', 2825, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31466, 'Aguadilla', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31467, 'Anasco', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31468, 'Cabo Rojo', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31469, 'Hormigueros', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31470, 'Mayaguez', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31471, 'San German', 2826, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31472, 'Adjuntas', 2827, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31473, 'Guanica', 2827, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31474, 'Ponce', 2827, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31475, 'Utuado', 2827, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31476, 'Yauco', 2827, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31477, 'Doha', 2829, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31478, 'Umm Bab', 2830, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31479, 'al-Ghuwayriyah', 2833, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31480, 'Dukhan', 2834, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31481, 'al-Jumayliyah', 2834, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31482, 'al-Khawr', 2835, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31483, 'Musay id', 2836, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31484, 'al-Wakrah', 2836, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31485, 'al-Wukayr', 2836, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31486, 'ar-Rayyan', 2837, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31487, 'ash-Shahaniyah', 2837, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, 1), -(31488, 'ar-Ruways', 2104, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31489, 'Bras-Panon', 2838, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31490, 'Saint-Andre', 2838, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31491, 'Saint-Benoit', 2838, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31492, 'Salazie', 2838, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31493, 'La Possession', 2839, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31494, 'Le Port', 2839, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31495, 'Sainte-Suzanne', 2839, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31496, 'L Etang-Sale', 2840, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31497, 'Les Aviron', 2840, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31498, 'Les Trois-Bassins', 2840, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31499, 'Saint-Leu', 2840, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31500, 'Saint-Paul', 2840, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31501, 'Cilaos', 2332, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31502, 'Entre-Deux', 2332, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31503, 'Le Tampon', 2332, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31504, 'Petite-Ile', 2332, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31505, 'Saint-Philippe', 2332, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31506, 'Abrud', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31507, 'Aiud', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31508, 'Alba Iulia', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31509, 'Albac', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31510, 'Almasu Mare', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31511, 'Arieseni', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31512, 'Avram Iancu', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31513, 'Baia de Aries', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31514, 'Berghin', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31515, 'Bistra', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31516, 'Blaj', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31517, 'Blandiana', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31518, 'Bucium', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31519, 'Calnic', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31520, 'Campeni', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31521, 'Cenade', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31522, 'Cergau', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31523, 'Ceru-Bacainti', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31524, 'Cetatea de Balta', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31525, 'Ciugud', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31526, 'Ciuruleasa', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31527, 'Craciunelu de Jos', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31528, 'Cricau', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31529, 'Cugir', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31530, 'Daia Romana', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31531, 'Dostat', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31532, 'Farau', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31533, 'Galda de Jos', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31534, 'Garbova', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31535, 'Garda de Sus', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31536, 'Hoparta', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31537, 'Horea', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31538, 'Ighiu', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31539, 'Intregalde', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31540, 'Jidvei', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31541, 'Livezile', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31542, 'Lopadea Noua', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31543, 'Lunca Muresului', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31544, 'Lupsa', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31545, 'Metes', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31546, 'Mihalt', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31547, 'Miraslau', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31548, 'Mogos', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31549, 'Noslac', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31550, 'Ocna Mures', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31551, 'Ocolis', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31552, 'Ohaba', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31553, 'Pianu', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31554, 'Poiana Vadului', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31555, 'Ponor', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31556, 'Posaga', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31557, 'Radesti', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31558, 'Ramet', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31559, 'Rimetea', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31560, 'Rosia Montana', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31561, 'Rosia de Secas', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31562, 'Salciua', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31563, 'Salistea', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31564, 'Sancel', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31565, 'Santimbru', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31566, 'Sasciori', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31567, 'Scarisoara', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31568, 'Sebes', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31569, 'Sibot', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31570, 'Sohodol', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31571, 'Spring', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31572, 'Stremt', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31573, 'Sugag', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31574, 'Teius', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31575, 'Unirea', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31576, 'Vadu Motilor', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31577, 'Valea Lunga', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31578, 'Vidra', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31579, 'Vintu de Jos', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31580, 'Zlatna', 2841, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31581, 'Almas', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31582, 'Apateu', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31583, 'Arad', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31584, 'Archis', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31585, 'Barsa', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31586, 'Barzava', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31587, 'Beliu', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31588, 'Birchis', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31589, 'Bocsig', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31590, 'Brazii', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31591, 'Buteni', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31592, 'Carand', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31593, 'Cermei', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31594, 'Chisindia', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31595, 'Chisineu Cris', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31596, 'Conop', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31597, 'Covasint', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31598, 'Craiva', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31599, 'Curtici', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31600, 'Dezna', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31601, 'Dieci', 2842, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, 1), -(31602, 'Dorgos', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31603, 'Fantanele', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31604, 'Felnac', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31605, 'Ghioroc', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31606, 'Graniceri', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31607, 'Gurahont', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31608, 'Halmagel', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31609, 'Halmagiu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31610, 'Hasmas', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31611, 'Ignesti', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31612, 'Ineu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31613, 'Iratosu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31614, 'Lipova', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31615, 'Livada', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31616, 'Macea', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31617, 'Masca', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31618, 'Moneasa', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31619, 'Nadlac', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31620, 'Olari', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31621, 'Pancota', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31622, 'Paulis', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31623, 'Pecica', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31624, 'Peregu Mare', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31625, 'Petris', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31626, 'Pilu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31627, 'Plescuta', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31628, 'Sagu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31629, 'Savarsin', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31630, 'Sebis', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31631, 'Secusigiu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31632, 'Seitin', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31633, 'Seleus', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31634, 'Semlac', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31635, 'Sepreus', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31636, 'Sicula', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31637, 'Silindia', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31638, 'Simand', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31639, 'Sintea Mare', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31640, 'Siria', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31641, 'Sistarovat', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31642, 'Socodor', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31643, 'Sofronea', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31644, 'Tarnova', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31645, 'Taut', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31646, 'Varadia de Mures', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31647, 'Varfurile', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31648, 'Vinga', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31649, 'Vladimirescu', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31650, 'Zabrani', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31651, 'Zerind', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31652, 'Zimandu Nou', 2842, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31653, 'Albesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31654, 'Albestii-Pamanteni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31655, 'Albota', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31656, 'Aninoasa', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31657, 'Arefu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31658, 'Baiculesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31659, 'Balilesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31660, 'Barla', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31661, 'Bascov', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31662, 'Beleti-Negresti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31663, 'Berevoesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31664, 'Bogati', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31665, 'Boteni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31666, 'Botesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31667, 'Bradu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31668, 'Bradulet', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31669, 'Budeasa', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31670, 'Bughea de Jos', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31671, 'Buzoesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31672, 'Caldararu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31673, 'Calinesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31674, 'Campulung', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31675, 'Cateasca', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31676, 'Cepari', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31677, 'Cetateni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31678, 'Cicanesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31679, 'Ciofrangeni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31680, 'Ciomagesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31681, 'Cocu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31682, 'Corbeni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31683, 'Corbi', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31684, 'Cosesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31685, 'Costesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31686, 'Cotmeana', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31687, 'Cuca', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31688, 'Curtea de Arges', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31689, 'Dambovicioara', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31690, 'Darmanesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31691, 'Davidesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31692, 'Dobresti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31693, 'Domnesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31694, 'Draganu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31695, 'Dragoslavele', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31696, 'Godeni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31697, 'Harsesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31698, 'Hartiesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31699, 'Izvoru', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31700, 'Leordeni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31701, 'Leresti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31702, 'Lunca Corbului', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31703, 'Malureni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31704, 'Maracineni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31705, 'Merisani', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31706, 'Micesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31707, 'Mihaesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31708, 'Mioarele', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31709, 'Mioveni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31710, 'Mirosi', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31711, 'Moraresti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31712, 'Mosoaia', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31713, 'Mozaceni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31714, 'Musatesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31715, 'Negrasi', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31716, 'Nucsoara', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31717, 'Oarja', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31718, 'Pietrosani', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31719, 'Pitesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31720, 'Poenari', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31721, 'Poiana Lacului', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31722, 'Popesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31723, 'Priboieni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31724, 'Ratesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31725, 'Recea', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31726, 'Rociu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(31727, 'Rucar', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31728, 'Salatrucu', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31729, 'Sapata', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31730, 'Schitu-Golesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31731, 'Stalpeni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31732, 'Stefan cel Mare', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31733, 'Stefanesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31734, 'Stoenesti', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31735, 'Stolnici', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31736, 'Suici', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31737, 'Suseni', 2843, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, 1), -(31738, 'Teiu', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31739, 'Tigveni', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31740, 'Titesti', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31741, 'Topoloveni', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31742, 'Uda', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31743, 'Valea Danului', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31744, 'Valea Iasului', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31745, 'Valea Mare-Pravat', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31746, 'Vedea', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31747, 'Vladesti', 2843, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31748, 'Agas', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31749, 'Ardeoani', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31750, 'Asau', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31751, 'Bacau', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31752, 'Balcani', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31753, 'Barsanesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31754, 'Beresti-Bistrita', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31755, 'Beresti-Tazlau', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31756, 'Berzunti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31757, 'Blagesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31758, 'Bogdanesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31759, 'Brusturoasa', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31760, 'Buhoci', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31761, 'Buhusi', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31762, 'Caiuti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31763, 'Casin', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31764, 'Cleja', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31765, 'Colonesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31766, 'Comanesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31767, 'Corbasca', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31768, 'Cotofanesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31769, 'Damienesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31770, 'Dealu Morii', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31771, 'Dofteana', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31772, 'Faraoani', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31773, 'Filipeni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31774, 'Filipesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31775, 'Gaiceana', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31776, 'Garleni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31777, 'Ghimes-Faget', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31778, 'Glavanesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31779, 'Gura Vaii', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31780, 'Helegiu', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31781, 'Hemeius', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31782, 'Horgesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31783, 'Huruesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31784, 'Izvoru Berheciului', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31785, 'Letea Veche', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31786, 'Livezi', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31787, 'Luizi-Calugara', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31788, 'Magiresti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31789, 'Manastirea Casin', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31790, 'Margineni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31791, 'Moinesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31792, 'Motoseni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31793, 'Negri', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31794, 'Nicolae Balcescu', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31795, 'Oituz', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31796, 'Oncesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31797, 'Onesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31798, 'Orbeni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31799, 'Palanca', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31800, 'Pancesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31801, 'Parava', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31802, 'Pargaresti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31803, 'Parincea', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31804, 'Parjol', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31805, 'Plopana', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31806, 'Podu Turcului', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31807, 'Poduri', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31808, 'Racaciuni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31809, 'Rachitoasa', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31810, 'Racova', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31811, 'Rosiori', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31812, 'Sanduleni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31813, 'Sascut', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31814, 'Saucesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31815, 'Scorteni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31816, 'Secuieni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31817, 'Slanic-Moldova', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31818, 'Solont', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31819, 'Stanisesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31820, 'Strugari', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31821, 'Targu Ocna', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31822, 'Targu-Trotus', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31823, 'Tatarasti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31824, 'Traian', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31825, 'Ungureni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31826, 'Urechesti', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31827, 'Valea Seaca', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31828, 'Vultureni', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31829, 'Zemes', 2844, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31830, 'Abram', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31831, 'Abramut', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31832, 'Alesd', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31833, 'Astileu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31834, 'Auseu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31835, 'Balc', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31836, 'Batar', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31837, 'Beius', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31838, 'Biharia', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31839, 'Boianu Mare', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31840, 'Borod', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31841, 'Bors', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31842, 'Bratca', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31843, 'Brusturi', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31844, 'Budureasa', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31845, 'Buduslau', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31846, 'Bulz', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31847, 'Buntesti', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31848, 'Cabesti', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31849, 'Campani', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31850, 'Capalna', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31851, 'Carpinet', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31852, 'Cefa', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31853, 'Ceica', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31854, 'Cetariu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31855, 'Cherechiu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31856, 'Chislaz', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31857, 'Ciuhoiu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31858, 'Ciumeghiu', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31859, 'Cociuba Mare', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31860, 'Copacel', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31861, 'Cristioru de Jos', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31862, 'Curatele', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31863, 'Curtuiseni', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31864, 'Derna', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31865, 'Diosig', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31866, 'Draganesti', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31867, 'Dragesti', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31868, 'Finis', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31869, 'Girisu de Cris', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31870, 'Hidiselu de Sus', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31871, 'Holod', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31872, 'Husasau de Tinca', 2845, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, 1), -(31873, 'Lazareni', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31874, 'Lazuri de Beius', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31875, 'Lugasu de Jos', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31876, 'Lunca', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31877, 'Magesti', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31878, 'Marghita', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31879, 'Nojorid', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31880, 'Nucet', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31881, 'Olcea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31882, 'Oradea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31883, 'Osorheiu', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31884, 'Pietroasa', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31885, 'Pocola', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31886, 'Pomezeu', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31887, 'Rabagani', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31888, 'Remetea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31889, 'Rieni', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31890, 'Rosia', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31891, 'Sacadat', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31892, 'Sacueni', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31893, 'Salacea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31894, 'Salard', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31895, 'Salonta', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31896, 'Sambata', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31897, 'Sanmartin', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31898, 'Santandrei', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31899, 'Sarbi', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31900, 'Simian', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31901, 'Sinteu', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31902, 'Soimi', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31903, 'Spinus', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31904, 'Stei', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31905, 'Suncuius', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31906, 'Suplacu de Barcau', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31907, 'Tarcaia', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31908, 'Tarcea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31909, 'Tauteu', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31910, 'Tetchea', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31911, 'Tileagd', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31912, 'Tinca', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31913, 'Tulca', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31914, 'Uileacu de Beius', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31915, 'Vadu Crisului', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31916, 'Valea lui Mihai', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31917, 'Varciorog', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31918, 'Vascau', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31919, 'Viisoara', 2845, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31920, 'Beclean', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31921, 'Bistrita', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31922, 'Bistrita Bargaului', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31923, 'Branistea', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31924, 'Budacu de Jos', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31925, 'Budesti', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31926, 'Caianu Mic', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31927, 'Cetate', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31928, 'Chiochis', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31929, 'Chiuza', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31930, 'Ciceu-Giurgesti', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31931, 'Cosbuc', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31932, 'Dumitra', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31933, 'Feldru', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31934, 'Galatii Bistritei', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31935, 'Ilva Mare', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31936, 'Ilva Mica', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31937, 'Josenii Bargaului', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31938, 'Lechinta', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31939, 'Lesu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31940, 'Lunca Ilvei', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31941, 'Magura Ilvei', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31942, 'Maieru', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31943, 'Mariselu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31944, 'Matei', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31945, 'Micestii de Campie', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31946, 'Milas', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31947, 'Nasaud', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31948, 'Nimigea', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31949, 'Nuseni', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31950, 'Parva', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31951, 'Petru Rares', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31952, 'Prundu Bargaului', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31953, 'Rebra', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31954, 'Rebrisoara', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31955, 'Rodna', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31956, 'Romuli', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31957, 'Salva', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31958, 'Sangeorz-Bai', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31959, 'Sanmihaiu de Campie', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31960, 'Sant', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31961, 'Sieu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31962, 'Sieu-Magherus', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31963, 'Sieu-Odorhei', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31964, 'Sieut', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31965, 'Silvasu de Campie', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31966, 'Sintereag', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31967, 'Spermezeu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31968, 'Tarlisua', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31969, 'Teaca', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31970, 'Telciu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31971, 'Tiha Bargaului', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31972, 'Uriu', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31973, 'Urmenis', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31974, 'Zagra', 2846, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31975, 'Avrameni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31976, 'Baluseni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31977, 'Botosani', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31978, 'Braesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31979, 'Broscauti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31980, 'Bucecea', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31981, 'Concesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31982, 'Copalau', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31983, 'Cordareni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31984, 'Corlateni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31985, 'Corni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31986, 'Cotusca', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31987, 'Cristesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31988, 'Cristinesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31989, 'Curtesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31990, 'Dangeni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31991, 'Darabani', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31992, 'Dersca', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31993, 'Dobarceni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31994, 'Dorohoi', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31995, 'Draguseni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31996, 'Durnesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31997, 'Flamanzi', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31998, 'Frumusica', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(31999, 'George Enescu', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32000, 'Gorbanesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32001, 'Hanesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32002, 'Havarna', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32003, 'Hiliseu-Horia', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32004, 'Hlipiceni', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32005, 'Hudesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32006, 'Ibanesti', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32007, 'Leorda', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32008, 'Manoleasa', 2847, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, 1), -(32009, 'Mihail Eminescu', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32010, 'Mihaileni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32011, 'Mihalaseni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32012, 'Mileanca', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32013, 'Mitoc', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32014, 'Nicseni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32015, 'Paltinis', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32016, 'Pomarla', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32017, 'Prajeni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32018, 'Rachiti', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32019, 'Radauti-Prut', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32020, 'Rauseni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32021, 'Ripiceni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32022, 'Romanesti', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32023, 'Santa-Maria', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32024, 'Saveni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32025, 'Sendriceni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32026, 'Stauceni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32027, 'Stiubieni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32028, 'Suharau', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32029, 'Sulita', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32030, 'Todireni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32031, 'Trusesti', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32032, 'Tudora', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32033, 'Unteni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32034, 'Vaculesti', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32035, 'Varfu Campului', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32036, 'Vladeni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32037, 'Vlasinesti', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32038, 'Vorniceni', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32039, 'Vorona', 2847, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32040, 'Baraganul', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32041, 'Bertestii de Jos', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32042, 'Bordei Verde', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32043, 'Braila', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32044, 'Chiscani', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32045, 'Ciocile', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32046, 'Ciresu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32047, 'Dudesti', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32048, 'Faurei', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32049, 'Frecatei', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32050, 'Galbenu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32051, 'Gemenele', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32052, 'Gradistea', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32053, 'Gropeni', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32054, 'Ianca', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32055, 'Insuratei', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32056, 'Jirlau', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32057, 'Marasu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32058, 'Maxineni', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32059, 'Mircea Voda', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32060, 'Movila Miresei', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32061, 'Racovita', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32062, 'Ramnicelu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32063, 'Romanu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32064, 'Salcia Tudor', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32065, 'Scortaru Nou', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32066, 'Silistea', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32067, 'Stancuta', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32068, 'Surdila-Gaiseanca', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32069, 'Surdila-Greci', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32070, 'Sutesti', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32071, 'Tichilesti', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32072, 'Tudor Vladimirescu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32073, 'Tufesti', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32074, 'Ulmu', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32075, 'Vadeni', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32076, 'Visani', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32077, 'Viziru', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32078, 'Zavoaia', 2848, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32079, 'Apata', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32080, 'Bod', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32081, 'Bran', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32082, 'Brasov', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32083, 'Budila', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32084, 'Bunesti', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32085, 'Cata', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32086, 'Cincu', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32087, 'Codlea', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32088, 'Comana', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32089, 'Cristian', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32090, 'Dumbravita', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32091, 'Fagaras', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32092, 'Feldioara', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32093, 'Fundata', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32094, 'Ghimbav', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32095, 'Halchiu', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32096, 'Harman', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32097, 'Harseni', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32098, 'Hoghiz', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32099, 'Homorod', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32100, 'Jibert', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32101, 'Lisa', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32102, 'Maierus', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32103, 'Moeciu', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32104, 'Ormenis', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32105, 'Parau', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32106, 'Poiana Marului', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32107, 'Predeal', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32108, 'Prejmer', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32109, 'Racos', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32110, 'Rasnov', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32111, 'Rupea', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32112, 'Sacele', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32113, 'Sanpetru', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32114, 'Sercaia', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32115, 'Sinca', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32116, 'Soars', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32117, 'Tarlungeni', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32118, 'Teliu', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32119, 'Ticusul', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32120, 'Ucea', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32121, 'Ungra', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32122, 'Vama Buzaului', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32123, 'Vistea', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32124, 'Voila', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32125, 'Zarnesti', 2849, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, 1), -(32126, 'Bucharest', 2850, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32127, 'Bucuresti', 2850, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32128, 'Balaceanu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32129, 'Balta Alba', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32130, 'Beceni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32131, 'Berca', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32132, 'Bisoca', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32133, 'Blajani', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32134, 'Boldu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32135, 'Bozioru', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32136, 'Bradeanu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32137, 'Breaza', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32138, 'Buda', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32139, 'Buzau', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32140, 'Calvini', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32141, 'Canesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32142, 'Catina', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32143, 'Cernatesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32144, 'Chiliile', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32145, 'Chiojdu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32146, 'Cilibia', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32147, 'Cislau', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32148, 'Cochirleanca', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32149, 'Colti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32150, 'Constantin Rosetti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32151, 'Cozieni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32152, 'Galbinasi', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32153, 'Gheraseni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32154, 'Ghergheasa', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32155, 'Glodeanu-Silistea', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32156, 'Glodeanul Sarat', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32157, 'Grebanu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32158, 'Gura Teghii', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32159, 'Largu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32160, 'Lopatari', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32161, 'Luciu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32162, 'Manzalesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32163, 'Margaritesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32164, 'Merei', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32165, 'Mihailesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32166, 'Movila Banului', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32167, 'Murgesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32168, 'Naeni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32169, 'Nehoiu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32170, 'Odaile', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32171, 'Padina', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32172, 'Panatau', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32173, 'Pardosi', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32174, 'Parscov', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32175, 'Patarlagele', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32176, 'Pietroasele', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32177, 'Podgoria', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32178, 'Pogoanele', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32179, 'Posta Calnau', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32180, 'Puiesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32181, 'Racoviteni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32182, 'Ramnicu Sarat', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32183, 'Robeasca', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32184, 'Rusetu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32185, 'Sageata', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32186, 'Sahateni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32187, 'Sapoca', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32188, 'Sarulesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32189, 'Scortoasa', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32190, 'Scutelnici', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32191, 'Siriu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32192, 'Smeeni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32193, 'Stalpu', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32194, 'Tintesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32195, 'Tisau', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32196, 'Topliceni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32197, 'Ulmeni', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32198, 'Vadu Pasii', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32199, 'Valcelele', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32200, 'Valea Ramnicului', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32201, 'Valea Salciei', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32202, 'Vernesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32203, 'Vintila Voda', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32204, 'Viperesti', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32205, 'Ziduri', 2851, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32206, 'Alexandru Odobescu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32207, 'Belciugatele', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32208, 'Borcea', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32209, 'Cascioarele', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32210, 'Chirnogi', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32211, 'Chiselet', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32212, 'Ciocanesti', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32213, 'Curcani', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32214, 'Cuza Voda', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32215, 'Dichiseni', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32216, 'Dor Marunt', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32217, 'Dorobantu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32218, 'Dragalina', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32219, 'Dragos Voda', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32220, 'Frasinet', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32221, 'Frumusani', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32222, 'Fundeni', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32223, 'Fundulea', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32224, 'Gurbanesti', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32225, 'Ileana', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32226, 'Independenta', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32227, 'Jegalia', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32228, 'Lehliu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32229, 'Lehliu-Gara', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32230, 'Luica', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32231, 'Lupsanu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32232, 'Manastirea', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32233, 'Mitreni', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32234, 'Modelu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32235, 'Nana', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32236, 'Oltenita', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32237, 'Perisoru', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32238, 'Plataresti', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32239, 'Radovanu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32240, 'Roseti', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32241, 'Sohatu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32242, 'Soldanu', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32243, 'Spantov', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32244, 'Stefan Voda', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32245, 'Tamadau Mare', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32246, 'Valea Argovei', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32247, 'Vasilati', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32248, 'Vlad Tepes', 2852, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32249, 'Anina', 2853, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32250, 'Armenis', 2853, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32251, 'Baile Herculane', 2853, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32252, 'Bania', 2853, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, 1), -(32253, 'Bautar', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32254, 'Berliste', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32255, 'Berzasca', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32256, 'Berzovia', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32257, 'Bocsa', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32258, 'Bolvasnita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32259, 'Bozovici', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32260, 'Brebu', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32261, 'Brebu Nou', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32262, 'Buchin', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32263, 'Bucosnita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32264, 'Caransebes', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32265, 'Carasova', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32266, 'Carbunari', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32267, 'Ciclova Romana', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32268, 'Ciuchici', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32269, 'Ciudanovita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32270, 'Constantin Daicoviciu', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32271, 'Copacele', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32272, 'Cornea', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32273, 'Cornereva', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32274, 'Coronini', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32275, 'Dalboset', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32276, 'Doclin', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32277, 'Dognecea', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32278, 'Domasnea', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32279, 'Eftimie Murgu', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32280, 'Ezeris', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32281, 'Farliug', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32282, 'Forotic', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32283, 'Garnic', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32284, 'Glimboca', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32285, 'Goruia', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32286, 'Gradinari', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32287, 'Iablanita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32288, 'Lapusnicel', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32289, 'Lapusnicu Mare', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32290, 'Luncavita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32291, 'Lupac', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32292, 'Marga', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32293, 'Maureni', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32294, 'Mehadia', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32295, 'Mehadica', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32296, 'Moldova Noua', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32297, 'Naidas', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32298, 'Obreja', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32299, 'Ocna de Fier', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32300, 'Oravita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32301, 'Otelu Rosu', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32302, 'Pojejena', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32303, 'Prigor', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32304, 'Racasdia', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32305, 'Ramna', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32306, 'Resita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32307, 'Rusca Montana', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32308, 'Sacu', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32309, 'Sasca Montana', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32310, 'Sichevita', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32311, 'Slatina-Timis', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32312, 'Socol', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32313, 'Sopotu Nou', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32314, 'Teregova', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32315, 'Ticvaniu Mare', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32316, 'Toplet', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32317, 'Turnu Ruieni', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32318, 'Valiug', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32319, 'Varadia', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32320, 'Vermes', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32321, 'Vrani', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32322, 'Zavoi', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32323, 'Zorlentu Mare', 2853, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32324, 'Aghiresu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32325, 'Aiton', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32326, 'Alunis', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32327, 'Apahida', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32328, 'Aschileu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32329, 'Baciu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32330, 'Baisoara', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32331, 'Belis', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32332, 'Bobalna', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32333, 'Bontida', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32334, 'Borsa', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32335, 'Buza', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32336, 'Caianu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32337, 'Calatele', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32338, 'Camarasu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32339, 'Campia Turzii', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32340, 'Capusu Mare', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32341, 'Caseiu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32342, 'Catcau', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32343, 'Ceanu Mare', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32344, 'Chinteni', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32345, 'Chiuiesti', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32346, 'Ciucea', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32347, 'Ciurila', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32348, 'Cluj-Napoca', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(32349, 'Cojocna', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32350, 'Cornesti', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32351, 'Cuzdrioara', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32352, 'Dabaca', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32353, 'Dej', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32354, 'Feleacu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32355, 'Fizesu Gherlii', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32356, 'Frata', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32357, 'Garbau', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32358, 'Geaca', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32359, 'Gherla', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32360, 'Gilau', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32361, 'Huedin', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32362, 'Iara', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32363, 'Iclod', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32364, 'Izvoru Crisului', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32365, 'Jichisu de Jos', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32366, 'Jucu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32367, 'Luna', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32368, 'Maguri-Racatau', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32369, 'Manastireni', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32370, 'Margau', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32371, 'Marisel', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32372, 'Mica', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32373, 'Mihai Viteazu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32374, 'Mintiu Gherlii', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32375, 'Mociu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32376, 'Moldovenesti', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32377, 'Palatca', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32378, 'Panticeu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32379, 'Petrestii de Jos', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32380, 'Ploscos', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32381, 'Poieni', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32382, 'Rasca', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32383, 'Recea Cristur', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32384, 'Sacuieu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32385, 'Sancraiu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32386, 'Sandulesti', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32387, 'Sanpaul', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32388, 'Savadisla', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32389, 'Sic', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32390, 'Suatu', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32391, 'Taga', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32392, 'Tritenii de Jos', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32393, 'Turda', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32394, 'Tureni', 2854, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, 1), -(32395, 'Unguras', 2854, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32396, 'Vad', 2854, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32397, 'Valea Ierii', 2854, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32398, 'Adamclisi', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32399, 'Agigea', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32400, 'Aliman', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32401, 'Amzacea', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32402, 'Baneasa', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32403, 'Basarabi', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32404, 'Castelu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32405, 'Cerchezu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32406, 'Cernavoda', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32407, 'Chirnogeni', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32408, 'Ciobanu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32409, 'Ciocarlia', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32410, 'Cobadin', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32411, 'Cogealac', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32412, 'Constanta', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32413, 'Corbu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32414, 'Costinesti', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32415, 'Crucea', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32416, 'Cumpana', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32417, 'Deleni', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32418, 'Dobromir', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32419, 'Douazeci si Trei August', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32420, 'Dumbraveni', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32421, 'Eforie', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32422, 'Garliciu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32423, 'Ghindaresti', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32424, 'Harsova', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32425, 'Horia', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32426, 'Ion Corvin', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32427, 'Istria', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32428, 'Limanu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32429, 'Lipnita', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32430, 'Lumina', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32431, 'Mangalia', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32432, 'Medgidia', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32433, 'Mereni', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32434, 'Mihail Kogalniceanu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32435, 'Navodari', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32436, 'Negru Voda', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32437, 'Oltina', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32438, 'Ovidiu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32439, 'Pantelimon', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32440, 'Pecineaga', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32441, 'Pestera', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32442, 'Poarta Alba', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32443, 'Rasova', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32444, 'Saraiu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32445, 'Seimeni', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32446, 'Targusor', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32447, 'Techirghiol', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32448, 'Topalu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32449, 'Topraisar', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32450, 'Tortoman', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32451, 'Tuzla', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32452, 'Valu lui Traian', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32453, 'Vulturu', 2855, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32454, 'Aita Mare', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32455, 'Baraolt', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32456, 'Barcani', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32457, 'Batani', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32458, 'Belin', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32459, 'Bodoc', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32460, 'Borosneu Mare', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32461, 'Bradut', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32462, 'Brates', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32463, 'Bretcu', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32464, 'Catalina', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32465, 'Cernat', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32466, 'Chichis', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32467, 'Comandau', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32468, 'Covasna', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32469, 'Dobarlau', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32470, 'Ghelinta', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32471, 'Ghidfalau', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32472, 'Haghig', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32473, 'Ilieni', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32474, 'Intorsura Buzaului', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32475, 'Lemnia', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32476, 'Malnas', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32477, 'Moacsa', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32478, 'Ojdula', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32479, 'Ozun', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32480, 'Poian', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32481, 'Reci', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32482, 'Sanzieni', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32483, 'Sfantu Gheorghe', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32484, 'Sita Buzaului', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32485, 'Targu Secuiesc', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32486, 'Turia', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32487, 'Valcele', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32488, 'Valea Crisului', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32489, 'Valea Mare', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32490, 'Varghis', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32491, 'Zabala', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32492, 'Zagon', 2856, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32493, 'Baleni', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32494, 'Barbuletu', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32495, 'Bezdead', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32496, 'Bilciuresti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32497, 'Branesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32498, 'Brezoaiele', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32499, 'Buciumeni', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32500, 'Bucsani', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32501, 'Butimanu', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32502, 'Candesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32503, 'Cobia', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32504, 'Cojasca', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32505, 'Comisani', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32506, 'Contesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32507, 'Corbii Mari', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32508, 'Cornatelu', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32509, 'Costestii din Vale', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32510, 'Crangurile de Sus', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32511, 'Crevedia', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32512, 'Dobra', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32513, 'Doicesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32514, 'Dragodana', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32515, 'Dragomiresti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32516, 'Edera de Jos', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32517, 'Fieni', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32518, 'Finta', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32519, 'Gaesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32520, 'Gura Foii', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32521, 'Gura Ocnitei', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32522, 'Gura Sutii', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32523, 'Hulubesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32524, 'Ion luca Caragiale', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32525, 'Lucieni', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32526, 'Ludesti', 2857, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, 1), -(32527, 'Lunguletu', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32528, 'Malu cu Flori', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32529, 'Manesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32530, 'Matasaru', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32531, 'Mogosani', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32532, 'Moreni', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32533, 'Moroeni', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32534, 'Morteni', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32535, 'Motaeni', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32536, 'Niculesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32537, 'Odobesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32538, 'Petresti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32539, 'Pietrosita', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32540, 'Poiana', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32541, 'Potlogi', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32542, 'Produlesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32543, 'Pucheni', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32544, 'Pucioasa', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32545, 'Racari', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32546, 'Razvad', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32547, 'Runcu', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32548, 'Salcioara', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32549, 'Selaru', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32550, 'Slobozia Moara', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32551, 'Sotanga', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32552, 'Targoviste', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32553, 'Tartasesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32554, 'Tatarani', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32555, 'Titu', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32556, 'Uliesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32557, 'Ulmi', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32558, 'Vacaresti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32559, 'Valeni-Dambovita', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32560, 'Varfuri', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32561, 'Visina', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32562, 'Visinesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32563, 'Voinesti', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32564, 'Vulcana Bai', 2857, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32565, 'Afumati', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32566, 'Almajiu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32567, 'Amarastii de Jos', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32568, 'Amarastii de Sus', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32569, 'Apele Vii', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32570, 'Argetoaia', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32571, 'Bailesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32572, 'Barca', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32573, 'Bechet', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32574, 'Bistret', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32575, 'Botosesti-Paia', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32576, 'Brabova', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32577, 'Bradesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32578, 'Bralostita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32579, 'Bratovoesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32580, 'Breasta', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32581, 'Bucovat', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32582, 'Bulzesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32583, 'Calafat', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32584, 'Calopar', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32585, 'Caraula', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32586, 'Carpen', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32587, 'Castra-Nova', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32588, 'Celaru', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32589, 'Ceratu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32590, 'Cioroiasiu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32591, 'Ciupercenii Noi', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32592, 'Cosoveni', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32593, 'Cotofenii din Dos', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32594, 'Craiova', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32595, 'Dabuleni', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32596, 'Daneti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32597, 'Desa', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32598, 'Diosti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32599, 'Dragotesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32600, 'Dranic', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32601, 'Farcasu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32602, 'Filiasi', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32603, 'Galicea Mare', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32604, 'Gangiova', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32605, 'Ghercesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32606, 'Gighera', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32607, 'Giubega', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32608, 'Giurgita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32609, 'Gogosu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32610, 'Goicea', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32611, 'Goiesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32612, 'Grecesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32613, 'Isalnita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32614, 'Izvoare', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32615, 'Leu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32616, 'Lipovu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32617, 'Macesu de Jos', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32618, 'Macesu de Sus', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32619, 'Maglavit', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32620, 'Malu Mare', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32621, 'Marsani', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32622, 'Melinesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32623, 'Mischii', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32624, 'Motatei', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32625, 'Murgasi', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32626, 'Negoi', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32627, 'Orodel', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32628, 'Ostroveni', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32629, 'Perisor', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32630, 'Pielesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32631, 'Piscu Vechi', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32632, 'Plenita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32633, 'Podari', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32634, 'Poiana Mare', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32635, 'Predesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32636, 'Radovan', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32637, 'Rastu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32638, 'Robanesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32639, 'Sadova', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32640, 'Salcuta', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32641, 'Scaesti', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32642, 'Seaca de Camp', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32643, 'Seaca de Padure', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32644, 'Secu', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32645, 'Segarcea', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32646, 'Silistea Crucii', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32647, 'Simnicu de Sus', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32648, 'Teasc', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32649, 'Terpezita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32650, 'Teslui', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32651, 'Tuglui', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32652, 'Urzicuta', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32653, 'Valea Stanciului', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32654, 'Vartop', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32655, 'Varvoru', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32656, 'Vela', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32657, 'Verbita', 2858, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, 1), -(32658, 'Balabanesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32659, 'Balasesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32660, 'Barcea', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32661, 'Beresti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32662, 'Beresti-Sat', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32663, 'Brahasesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32664, 'Cavadinesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32665, 'Certesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32666, 'Corod', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32667, 'Cosmesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32668, 'Costache Negri', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32669, 'Cudalbi', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32670, 'Fartanesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32671, 'Foltesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32672, 'Frumusita', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32673, 'Galati', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32674, 'Ghidigeni', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32675, 'Gohor', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32676, 'Grivita', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32677, 'Ivesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32678, 'Jorasti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32679, 'Liesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32680, 'Mastacani', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32681, 'Matca', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32682, 'Movileni', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32683, 'Munteni', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32684, 'Namoloasa', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32685, 'Nicoresti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32686, 'Oancea', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32687, 'Pechea', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32688, 'Piscu', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32689, 'Priponesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32690, 'Rediu', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32691, 'Scanteiesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32692, 'Schela', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32693, 'Sendreni', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32694, 'Slobozia-Conachi', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32695, 'Smardan', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32696, 'Smulti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32697, 'Suceveni', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32698, 'Targu Bujor', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32699, 'Tecuci', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32700, 'Tepu', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32701, 'Tulucesti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32702, 'Umbraresti', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32703, 'Valea Marului', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32704, 'Vanatori', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32705, 'Varlezi', 2859, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32706, 'Adunatii-Copaceni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32707, 'Bolintin Deal', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32708, 'Bolintinu-din-Vale', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32709, 'Bulbucata', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32710, 'Buturugeni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32711, 'Calugareni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32712, 'Clejani', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32713, 'Colibasi', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32714, 'Crevedia Mare', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32715, 'Daia', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32716, 'Floresti-Stoenesti', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32717, 'Fratesti', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32718, 'Gaiseni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32719, 'Gaujani', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32720, 'Ghimpati', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32721, 'Giurgiu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32722, 'Gogosari', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32723, 'Gostinari', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32724, 'Gostinu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32725, 'Greaca', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32726, 'Hotarele', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32727, 'Iepuresti', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32728, 'Izvoarele', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32729, 'Joita', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32730, 'Letca Noua', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32731, 'Marsa', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32732, 'Mihai Bravu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32733, 'Ogrezeni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32734, 'Oinacu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32735, 'Prundu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32736, 'Putineiu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32737, 'Rasuceni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32738, 'Roata de Jos', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32739, 'Schitu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32740, 'Singureni', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32741, 'Stanesti', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32742, 'Toporu', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32743, 'Valea Dragului', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32744, 'Vanatorii Mici', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32745, 'Varasti', 2860, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32746, 'Albeni', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32747, 'Alimpesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32748, 'Arcani', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32749, 'Baia de Fier', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32750, 'Balanesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32751, 'Balesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32752, 'Balteni', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32753, 'Barbatesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32754, 'Bengesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32755, 'Berlesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32756, 'Bolbosi', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32757, 'Borascu', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32758, 'Bumbesti-Jiu', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32759, 'Bumbesti-Piticu', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32760, 'Bustuchin', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32761, 'Capreni', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32762, 'Catunele', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32763, 'Ciuperceni', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32764, 'Crasna', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32765, 'Crusetu', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32766, 'Danciulesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32767, 'Danesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32768, 'Dragutesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32769, 'Farcasesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32770, 'Glogova', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32771, 'Godinesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32772, 'Hurezani', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32773, 'Ionesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32774, 'Jupanesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32775, 'Lelesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32776, 'Licuriciu', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32777, 'Logresti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32778, 'Matasari', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32779, 'Motru', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32780, 'Musetesti', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32781, 'Negomiru', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32782, 'Pades', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32783, 'Pestisani', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32784, 'Plopsoru', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32785, 'Polovragi', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32786, 'Prigoria', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32787, 'Rosia de Amaradia', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32788, 'Rovinari', 2861, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, 1), -(32789, 'Sacelu', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32790, 'Samarinesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32791, 'Saulesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32792, 'Scoarta', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32793, 'Slivilesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32794, 'Stejari', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32795, 'Stoina', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32796, 'Tantareni', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32797, 'Targu Carbunesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32798, 'Targu Jiu', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32799, 'Telesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32800, 'Ticleni', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32801, 'Tismana', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32802, 'Turburea', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32803, 'Turceni', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32804, 'Turcinesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32805, 'Urdari', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32806, 'Vagiulesti', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32807, 'Vladimir', 2861, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32808, 'Atid', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32809, 'Avramesti', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32810, 'Baile Tusnad', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32811, 'Balan', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32812, 'Bilbor', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32813, 'Borsec', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32814, 'Capalnita', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32815, 'Carta', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32816, 'Ciucsangeorgiu', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32817, 'Ciumani', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32818, 'Corund', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32819, 'Cristuru Secuiesc', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32820, 'Darjiu', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32821, 'Dealu', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32822, 'Ditrau', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32823, 'Feliceni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32824, 'Frumoasa', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32825, 'Galautas', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32826, 'Gheorgheni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32827, 'Joseni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32828, 'Lazarea', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32829, 'Lueta', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32830, 'Lunca de Jos', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32831, 'Lunca de Sus', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32832, 'Lupeni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32833, 'Martinis', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32834, 'Meresti', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32835, 'Miercurea-Ciuc', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32836, 'Mugeni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32837, 'Ocland', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32838, 'Odorheiu Secuiesc', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32839, 'Pauleni-Ciuc', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32840, 'Plaiesii-de-Jos', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32841, 'Praid', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32842, 'Sacel', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32843, 'Sancraieni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32844, 'Sandominic', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32845, 'Sansimion', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32846, 'Sarmas', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32847, 'Siculeni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32848, 'Simonesti', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32849, 'Subcetate', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32850, 'Toplita', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32851, 'Tulghes', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32852, 'Tusnad', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32853, 'Ulies', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32854, 'Varsag', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32855, 'Vlahita', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32856, 'Voslobeni', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32857, 'Zetea', 2862, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32858, 'Bacia', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32859, 'Baia de Cris', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32860, 'Baita', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32861, 'Balsa', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32862, 'Banita', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32863, 'Baru', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32864, 'Batrana', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32865, 'Beriu', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32866, 'Berthelot', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32867, 'Blajeni', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32868, 'Bosorod', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32869, 'Brad', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32870, 'Branisca', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32871, 'Bretea Romana', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32872, 'Buces', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32873, 'Bucuresci', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32874, 'Bunila', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32875, 'Burjuc', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32876, 'Calan', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32877, 'Carjiti', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32878, 'Cerbal', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32879, 'Certeju de Sus', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32880, 'Criscior', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32881, 'Densus', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32882, 'Deva', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32883, 'Geoagiu', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32884, 'Ghelari', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32885, 'Gurasada', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32886, 'Harau', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32887, 'Hateg', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32888, 'Hunedoara', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32889, 'Ilia', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32890, 'Lapugiu de Jos', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32891, 'Lelese', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32892, 'Lunca Cernii de Jos', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32893, 'Luncoiu de Jos', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32894, 'Martinesti', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32895, 'Orastie', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32896, 'Orastioara de Sus', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32897, 'Pestisu Mic', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32898, 'Petrila', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32899, 'Petrosani', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32900, 'Pui', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32901, 'Rachitova', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32902, 'Rapoltu Mare', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32903, 'Rau de Mori', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32904, 'Ribita', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32905, 'Romos', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32906, 'Salasu de Sus', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32907, 'Santamaria Orlea', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32908, 'Sarmizegetusa', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32909, 'Simeria', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32910, 'Soimus', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32911, 'Teliucu Inferior', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32912, 'Tomesti', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32913, 'Totesti', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32914, 'Turdas', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32915, 'Uricani', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32916, 'Valisoara', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32917, 'Vata de Jos', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32918, 'Vetel', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32919, 'Vorta', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32920, 'Zam', 2863, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, 1), -(32921, 'Adancata', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32922, 'Alexeni', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32923, 'Amara', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32924, 'Andrasesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32925, 'Armasesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32926, 'Axintele', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32927, 'Balaciu', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32928, 'Barcanesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32929, 'Bordusani', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32930, 'Bucu', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32931, 'Cazanesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32932, 'Ciochina', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32933, 'Ciulnita', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32934, 'Cocora', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32935, 'Cosambesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32936, 'Cosereni', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32937, 'Dragoesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32938, 'Dridu', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32939, 'Facaeni', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32940, 'Fetesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32941, 'Fierbinti-Targ', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32942, 'Garbovi', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32943, 'Gheorghe Doja', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32944, 'Gheorghe Lazar', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32945, 'Giurgeni', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32946, 'Grindu', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32947, 'Ion Roata', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32948, 'Jilavele', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32949, 'Manasia', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32950, 'Milosesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32951, 'Movila', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32952, 'Movilita', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32953, 'Munteni Buzau', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32954, 'Perieti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32955, 'Reviga', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32956, 'Scanteia', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32957, 'Sinesti', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32958, 'Stelnica', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32959, 'Suditi', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32960, 'Tandarei', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32961, 'Urziceni', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32962, 'Valea Ciorii', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32963, 'Valea Macrisului', 2864, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32964, 'Alexandru Ioan Cuza', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32965, 'Andrieseni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32966, 'Aroneanu', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32967, 'Baltati', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32968, 'Barnova', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32969, 'Belcesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(32970, 'Bivolari', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32971, 'Butea', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32972, 'Ceplenita', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32973, 'Ciortesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32974, 'Ciurea', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32975, 'Coarnele Caprei', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32976, 'Comarna', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32977, 'Costuleni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32978, 'Cotnari', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32979, 'Cozmesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32980, 'Cucuteni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32981, 'Dagata', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32982, 'Dobrovat', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32983, 'Dolhesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32984, 'Dumesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32985, 'Erbiceni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32986, 'Focuri', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32987, 'Golaesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32988, 'Gorban', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32989, 'Grajduri', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32990, 'Gropnita', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32991, 'Grozesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32992, 'Halaucesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32993, 'Harlau', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32994, 'Helesteni Harmaneasa', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32995, 'Holboca', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32996, 'Horlesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32997, 'Iasi', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32998, 'Ipatele', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(32999, 'Lespezi', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33000, 'Letcani', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33001, 'Lungani', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33002, 'Madarjac', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33003, 'Mircesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33004, 'Mironeasa', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33005, 'Miroslava', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33006, 'Miroslovesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33007, 'Mogosesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33008, 'Mogosesti-Siret', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33009, 'Mosna', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33010, 'Motca', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33011, 'Oteleni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33012, 'Pascani', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33013, 'Plugari', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33014, 'Podu Iloaiei', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33015, 'Popricani', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33016, 'Prisacani', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33017, 'Probota', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33018, 'Raducaneni', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33019, 'Ruginoasa', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33020, 'Scheia', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33021, 'Schitu-Duca', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33022, 'Scobinti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33023, 'Sipote', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33024, 'Siretel', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33025, 'Stolniceni-Prajescu', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33026, 'Strunga', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33027, 'Tansa', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33028, 'Targu Gangiulesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33029, 'Tatarusi', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33030, 'Tibanesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33031, 'Tiganasi', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33032, 'Todiresti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33033, 'Trifesti', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33034, 'Tutora', 2865, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33035, 'Balotesti', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33036, 'Berceni', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33037, 'Bragadiru', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33038, 'Buftea', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33039, 'Cernica', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33040, 'Chiajna', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33041, 'Chitila', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33042, 'Ciolpani', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33043, 'Ciorogarla', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33044, 'Clinceni', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33045, 'Corbeanca', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33046, 'Cornetu', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33047, 'Darasti-Ilfov', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33048, 'Dascalu', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33049, 'Dobroesti', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33050, 'Dragomiresti-Vale', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33051, 'Ganeasa', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33052, 'Gruiu', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33053, 'Jilava', 2866, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, 1), -(33054, 'Magurele', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33055, 'Moara Vlasiei', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33056, 'Mogosoaia', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33057, 'Nuci', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33058, 'Otopeni', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33059, 'Peris', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33060, 'Petrachioaia', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33061, 'Popesti-Leordeni', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33062, 'Prim Decembrie', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33063, 'Snagov', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33064, 'Stefanestii de Jos', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33065, 'Tunari', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33066, 'Voluntari', 2866, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33067, 'Ardusat', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33068, 'Arinis', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33069, 'Asuaju de Sus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33070, 'Baia Mare', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33071, 'Baia-Sprie', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33072, 'Baita de sub Codru', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33073, 'Baiut', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33074, 'Basesti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33075, 'Bicaz', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33076, 'Bocicoiu Mare', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33077, 'Bogdan Voda', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33078, 'Boiu Mare', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33079, 'Botiza', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33080, 'Campulung la Tisa', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33081, 'Cavnic', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33082, 'Cernesti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33083, 'Cicarlau', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33084, 'Copalnic Manastur', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33085, 'Coroieni', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33086, 'Cupseni', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33087, 'Desesti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33088, 'Farcasa', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33089, 'Giulesti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33090, 'Grosi', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33091, 'Ieud', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33092, 'Lapus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33093, 'Leordina', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33094, 'Miresu Mare', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33095, 'Moisei', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33096, 'Oarta de Jos', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33097, 'Ocna Sugatag', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33098, 'Petrova', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33099, 'Poienile Izei', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33100, 'Poienile de sub Munte', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33101, 'Remetea Chioarului', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33102, 'Remeti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33103, 'Repedea', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33104, 'Rona de Jos', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33105, 'Rona de Sus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33106, 'Rozavlea', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33107, 'Ruscova', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33108, 'Sacalaseni', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33109, 'Salistea de Sus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33110, 'Salsig', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33111, 'Sapanta', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33112, 'Sarasau', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33113, 'Sasar', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33114, 'Satulung', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33115, 'Seini', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33116, 'Sighetu Marmatiei', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33117, 'Sisesti', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33118, 'Somcuta Mare', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33119, 'Stramtura', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33120, 'Suciu de Sus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33121, 'Targu-Lapus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33122, 'Tautii Margheraus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33123, 'Vadu Izei', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33124, 'Valea Chioarului', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33125, 'Vima Mica', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33126, 'Viseu de Jos', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33127, 'Viseu de Sus', 2867, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33128, 'Baclesu', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33129, 'Baia de Arama', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33130, 'Bala', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33131, 'Balacita', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33132, 'Balta', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33133, 'Balvanesti', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33134, 'Breznita Ocol', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33135, 'Breznita-Motru', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33136, 'Brosteni', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33137, 'Burila Mare', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33138, 'Butoiesti', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33139, 'Corcova', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33140, 'Corlatel', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33141, 'Cujmir', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33142, 'Darvari', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33143, 'Devesel', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33144, 'Drobeta-Turnu Severin', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33145, 'Dubova', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33146, 'Dumbrava', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33147, 'Eselnita', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33148, 'Garla Mare', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33149, 'Godeanu', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33150, 'Greci', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33151, 'Gruia', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33152, 'Hinova', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33153, 'Husnicioara', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33154, 'Ilovat', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33155, 'Ilovita', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33156, 'Isverna', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33157, 'Izvoru Barzii', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33158, 'Jiana', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33159, 'Malovat', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33160, 'Obarsia Noua', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33161, 'Obarsia-Closani', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33162, 'Oprisor', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33163, 'Orsova', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33164, 'Patulele', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33165, 'Podeni', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33166, 'Ponoarele', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33167, 'Poroina Mare', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33168, 'Pristol', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33169, 'Prunisor', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33170, 'Punghina', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33171, 'Rogova', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33172, 'Salcia', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33173, 'Sovarna', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33174, 'Stangaceaua', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33175, 'Strehaia', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33176, 'Svinita', 2868, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, 1), -(33177, 'Tamna', 2868, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33178, 'Vanju Mare', 2868, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33179, 'Vanjulet', 2868, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33180, 'Vladaia', 2868, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33181, 'Voloiac', 2868, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33182, 'Acatari', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33183, 'Adamus', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33184, 'Apold', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33185, 'Atintis', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33186, 'Bagaciu', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33187, 'Bahnea', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33188, 'Balauseri', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33189, 'Batos', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33190, 'Beica de Jos', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33191, 'Bichis', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33192, 'Bogata', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33193, 'Brancovenesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33194, 'Ceuasul-de Campie', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33195, 'Chetani', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33196, 'Chiheru de Jos', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33197, 'Coroisanmartin', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33198, 'Cozma', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33199, 'Craciunesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33200, 'Craiesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33201, 'Cucerdea', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33202, 'Cuci', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33203, 'Danes', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33204, 'Deda', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33205, 'Eremitu', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33206, 'Ernei', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33207, 'Faragau', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33208, 'Galesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33209, 'Ganesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33210, 'Ghindari', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33211, 'Gornesti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33212, 'Grebenisu de Campie', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33213, 'Gurghiu', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33214, 'Hodac', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33215, 'Hodosa', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33216, 'Iclanzel', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33217, 'Ideciu de Jos', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33218, 'Iernut', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33219, 'Livezeni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33220, 'Ludus', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33221, 'Lunca Bradului', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33222, 'Magherani', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33223, 'Miercurea Nirajului', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33224, 'Mihesu de Campie', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33225, 'Nades', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33226, 'Neaua', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33227, 'Ogra', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33228, 'Panet', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33229, 'Papiu Ilarian', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33230, 'Pasareni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33231, 'Petelea', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33232, 'Pogaceaua', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33233, 'Raciu', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33234, 'Rastolita', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33235, 'Reghin', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33236, 'Rusii Munti', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33237, 'Sancraiul-de-Mures', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33238, 'Sangeorg-de Mures', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33239, 'Sangeorgiu-de-Padure', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33240, 'Sanger', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33241, 'Sanpetru-de-Campie', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33242, 'Santana-de-Mures', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33243, 'Sarmasu', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33244, 'Saschiz', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33245, 'Saulia', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33246, 'Sighisoara', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33247, 'Sincai', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33248, 'Solovastru', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33249, 'Sovata', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33250, 'Stanceni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33251, 'Suplac', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33252, 'Targu-Mures', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33253, 'Tarnaveni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33254, 'Taureni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33255, 'Valea Larga', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33256, 'Vargata', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33257, 'Vatava', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33258, 'Vetca', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33259, 'Voivodeni', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33260, 'Zagar', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33261, 'Zau de Campie', 2869, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33262, 'Agapia', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33263, 'Bahna', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33264, 'Baltatesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33265, 'Bara', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33266, 'Bargaoani', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33267, 'Bicaz Chei', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33268, 'Bicazu Ardelean', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33269, 'Bodesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33270, 'Borca', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33271, 'Borlesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33272, 'Bozieni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33273, 'Brusturi-Draganesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33274, 'Ceahlau', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33275, 'Cordun', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33276, 'Costisa', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33277, 'Cracaoani', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33278, 'Damuc', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33279, 'Dobreni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33280, 'Doljesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33281, 'Dulcesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33282, 'Dumbrava Rosie', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33283, 'Garcina', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33284, 'Gheraesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33285, 'Girov', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33286, 'Grinties', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33287, 'Grumazesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33288, 'Icusesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33289, 'Ion Creanga', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33290, 'Moldoveni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33291, 'Oniceni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33292, 'Pangarati', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33293, 'Pastraveni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33294, 'Petricani', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33295, 'Piatra Neamt', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33296, 'Piatra Soimului', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33297, 'Pipirig', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33298, 'Podoleni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33299, 'Poiana Teiului', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33300, 'Poienari', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33301, 'Raucesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33302, 'Razboieni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33303, 'Romani', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33304, 'Roznov', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33305, 'Sabaoani', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33306, 'Sagna', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33307, 'Savinesti', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33308, 'Stanita', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33309, 'Tamaseni', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33310, 'Tarcau', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33311, 'Targu-Neamt', 2870, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, 1), -(33312, 'Tasca', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33313, 'Tazlau', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33314, 'Tibucani', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33315, 'Timisesti', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33316, 'Tupilati', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33317, 'Urecheni', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33318, 'Valea Ursului', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33319, 'Vanatori-Neamt', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33320, 'Zanesti', 2870, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33321, 'Babiciu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33322, 'Baldovinesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33323, 'Bals', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33324, 'Barasti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33325, 'Barza', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33326, 'Bobicesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33327, 'Brancoveni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33328, 'Brastavatu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33329, 'Brebeni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33330, 'Bucinisu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33331, 'Caracal', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33332, 'Carlogani', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33333, 'Cezieni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33334, 'Cilieni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33335, 'Corabia', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33336, 'Coteana', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33337, 'Crampoaia', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33338, 'Cungrea', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33339, 'Curtisoara', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33340, 'Daneasa', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33341, 'Deveselu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33342, 'Dobretu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33343, 'Dobrosloveni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33344, 'Dobroteasa', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33345, 'Dobrun', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33346, 'Draganesti-Olt', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33347, 'Draghiceni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33348, 'Fagetelu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33349, 'Falcoiu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33350, 'Farcasele', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33351, 'Garcovu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33352, 'Giuvarasti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33353, 'Gostavatu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33354, 'Grojdibodu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33355, 'Iancu Jianu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33356, 'Icoana', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33357, 'Izbiceni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33358, 'Leleasca', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33359, 'Maruntei', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33360, 'Milcov', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33361, 'Morunglav', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33362, 'Nicolae Titulescu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33363, 'Obarsia', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33364, 'Oboga', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33365, 'Oporelu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33366, 'Optasi', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33367, 'Orlea', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33368, 'Osica de Sus', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33369, 'Parscoveni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33370, 'Piatra Olt', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33371, 'Plesoiu', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33372, 'Poboru', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33373, 'Potcoava', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33374, 'Priseaca', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33375, 'Radomiresti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33376, 'Redea', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33377, 'Rotunda', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33378, 'Rusanesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33379, 'Samburesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33380, 'Scornicesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33381, 'Seaca', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33382, 'Serbanesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33383, 'Slatioara', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33384, 'Spineni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33385, 'Sprancenata', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33386, 'Stoicanesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33387, 'Strejesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33388, 'Studina', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33389, 'Tatulesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33390, 'Tia Mare', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33391, 'Topana', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33392, 'Tufeni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33393, 'Urzica', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33394, 'Vadastra', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33395, 'Vadastrita', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33396, 'Valeni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33397, 'Verguleasa', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33398, 'Vitomiresti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33399, 'Vladila', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33400, 'Voineasa', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33401, 'Vulpeni', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33402, 'Vulturesti', 2871, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33403, 'Adunati', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33404, 'Albesti-Paleologu', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33405, 'Apostolache', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33406, 'Aricestii-Rahtivani', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33407, 'Aricestii-Zeletin', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33408, 'Azuga', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33409, 'Baba Ana', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33410, 'Baicoi', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33411, 'Balta Doamnei', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33412, 'Baltesti', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33413, 'Banesti', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33414, 'Bertea', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33415, 'Blejoi', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33416, 'Boldesti', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33417, 'Boldesti-Scaeni', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33418, 'Brazi', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33419, 'Bucov', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33420, 'Busteni', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33421, 'Campina', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33422, 'Carbunesti', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33423, 'Ceptura', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33424, 'Cerasu', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33425, 'Chiojdeanca', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33426, 'Ciorani', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33427, 'Cocorastii-Misli', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33428, 'Colceag', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33429, 'Comarnic', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33430, 'Cornu', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33431, 'Cosminele', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33432, 'Doftana', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33433, 'Drajna', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33434, 'Dumbravesti', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33435, 'Filipestii de Padure', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33436, 'Filipestii de Targ', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33437, 'Fulga', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33438, 'Gherghita', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33439, 'Gorgota', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33440, 'Gornet', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33441, 'Gornet-Cricov', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33442, 'Gura Vadului', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33443, 'Gura Vitioarei', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33444, 'Iordacheanu', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33445, 'Jugureni', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33446, 'Lapos', 2872, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, 1), -(33447, 'Lipanesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33448, 'Magureni', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33449, 'Maneciu', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33450, 'Mizil', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33451, 'Pacureti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33452, 'Paulesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33453, 'Ploiesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33454, 'Plopeni', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33455, 'Plopu', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33456, 'Podenii Noi', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33457, 'Poenarii-Burchi', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33458, 'Poiana Campina', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33459, 'Posesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33460, 'Predeal-Sarari', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33461, 'Provita de Jos', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33462, 'Provita de Sus', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33463, 'Puchenii Mari', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33464, 'Rafov', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33465, 'Salciile', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33466, 'Sangeru', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33467, 'Secaria', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33468, 'Sinaia', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33469, 'Sirna', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33470, 'Slanic', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33471, 'Soimari', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33472, 'Sotrile', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33473, 'Starchiojd', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33474, 'Stefesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33475, 'Surani', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33476, 'Talea', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33477, 'Targsorul-Vechi', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33478, 'Tataru', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33479, 'Teisani', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33480, 'Telega', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33481, 'Tinosu', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33482, 'Tomsani', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33483, 'Urlati', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33484, 'Valcanesti', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33485, 'Valea Calugareasca', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33486, 'Valenii de Munte', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33487, 'Varbilau', 2872, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33488, 'Agrij', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33489, 'Almasu', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33490, 'Babeni', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33491, 'Banisor', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33492, 'Benesat', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33493, 'Buciumi', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33494, 'Camar', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33495, 'Carastelec', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33496, 'Cehu Silvaniei', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33497, 'Chiesd', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33498, 'Cizer', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33499, 'Coseiu', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33500, 'Creaca', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33501, 'Criseni', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33502, 'Cristolt', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33503, 'Cuzaplac', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33504, 'Dobrin', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33505, 'Dragu', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33506, 'Fildu de Jos', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33507, 'Galgau', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33508, 'Garbou', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33509, 'Halmasd', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33510, 'Hereclean', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33511, 'Hida', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33512, 'Horoatu Crasnei', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33513, 'Ileanda', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33514, 'Ip', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33515, 'Jibou', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33516, 'Letca', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33517, 'Lozna', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33518, 'Maeriste', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33519, 'Marca', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33520, 'Mesesenii de Jos', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33521, 'Mirsid', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33522, 'Napradea', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33523, 'Nusfalau', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33524, 'Periceiu', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33525, 'Plopis', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33526, 'Poiana Blenchii', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33527, 'Romanasi', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33528, 'Rus', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33529, 'Sag', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33530, 'Salatig', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33531, 'Samsud', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33532, 'Sanmihaiul-Almasului', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33533, 'Sarmasag', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33534, 'Simleu Silvaniei', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33535, 'Somes-Odorhei', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33536, 'Surduc', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33537, 'Treznea', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33538, 'Valcau de Jos', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33539, 'Varsolt', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33540, 'Zalau', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33541, 'Zalha', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33542, 'Zimbor', 2873, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33543, 'Agnita', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33544, 'Altina', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33545, 'Apoldu de Jos', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33546, 'Arpasu de Jos', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33547, 'Atel', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33548, 'Avrig', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33549, 'Axente Sever', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33550, 'Barghis', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33551, 'Bazna', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33552, 'Biertan', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33553, 'Blajel', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33554, 'Bradeni', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33555, 'Brateiu', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33556, 'Bruiu', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33557, 'Cartisoara', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33558, 'Chirpar', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33559, 'Cisnadie', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33560, 'Copsa Mica', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33561, 'Darlos', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33562, 'Gura Raului', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33563, 'Hoghilag', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33564, 'Iacobeni', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33565, 'Jina', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33566, 'Laslea', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33567, 'Loamnes', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33568, 'Ludos', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33569, 'Marpod', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33570, 'Medias', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33571, 'Merghindeal', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33572, 'Micasasa', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33573, 'Miercurea Sibiului', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33574, 'Nocrich', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33575, 'Ocna Sibiului', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33576, 'Orlat', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33577, 'Pauca', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33578, 'Poiana Sibiului', 2875, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, 1), -(33579, 'Poplaca', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33580, 'Porumbacu de Jos', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33581, 'Rasinari', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33582, 'Rau Sadului', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33583, 'Sadu', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33584, 'Saliste', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33585, 'Seica Mare', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33586, 'Seica Mica', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33587, 'Selimbar', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(33588, 'Sibiu', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33589, 'Slimnic', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33590, 'Sura Mare', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33591, 'Sura Mica', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33592, 'Talmaciu', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33593, 'Tarnava', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33594, 'Tilisca', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33595, 'Turnu Rosu', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33596, 'Valea Viilor', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33597, 'Vurpar', 2875, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33598, 'Sondelor', 2876, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33599, 'Arbore', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33600, 'Baia', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33601, 'Balcauti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33602, 'Bilca', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33603, 'Boroaia', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33604, 'Bosanci', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33605, 'Botosana', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33606, 'Brodina', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33607, 'Cacica', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33608, 'Cajvana', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33609, 'Calafindesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33610, 'Campulung Moldovenesc', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33611, 'Carlibaba', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33612, 'Ciprian Porumbescu', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33613, 'Cornu Luncii', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33614, 'Dolhasca', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33615, 'Dorna', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33616, 'Dorna Candrenilor', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33617, 'Dornesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33618, 'Falticeni', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33619, 'Forasti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33620, 'Frasin', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33621, 'Fratautii Noi', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33622, 'Fratautii Vechi', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33623, 'Frumosu', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33624, 'Fundu Moldovei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33625, 'Galanesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33626, 'Gramesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33627, 'Granicesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33628, 'Gura Humorului', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33629, 'Horodniceni', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33630, 'Horodnicu', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33631, 'Ipotesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33632, 'Izvoarele Sucevei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33633, 'Liteni', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33634, 'Malini', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33635, 'Manastirea Homorului', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33636, 'Marginea', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33637, 'Milisauti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33638, 'Mitocu Dragomirnei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33639, 'Moara', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33640, 'Moldova Sulita', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33641, 'Moldovita', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33642, 'Musenita', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33643, 'Ostra', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33644, 'Paltinoasa', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33645, 'Panaci', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33646, 'Partestii de Jos', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33647, 'Patrauti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33648, 'Poiana Stampei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33649, 'Pojorata', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33650, 'Preutesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33651, 'Putna', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33652, 'Radaseni', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33653, 'Radauti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33654, 'Salcea', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33655, 'Saru Dornei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33656, 'Satu Mare', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33657, 'Siminicea', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33658, 'Siret', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33659, 'Solca', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33660, 'Straja', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33661, 'Stroiesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33662, 'Stulpicani', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33663, 'Suceava', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33664, 'Sucevita', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33665, 'Udesti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33666, 'Ulma', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33667, 'Vadu Moldovei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33668, 'Valea Moldovei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33669, 'Vama', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33670, 'Vatra Dornei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33671, 'Vatra Moldovitei', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33672, 'Veresti', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33673, 'Vicovu de Jos', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33674, 'Vicovu de Sus', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33675, 'Volovat', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33676, 'Zamostea', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33677, 'Zvoristea', 2877, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33678, 'Babaita', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33679, 'Balaci', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33680, 'Blejesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33681, 'Bogdana', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33682, 'Botoroaga', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33683, 'Branceni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33684, 'Bujoreni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33685, 'Bujoru', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33686, 'Buzescu', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33687, 'Calmatuiu', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33688, 'Cervenia', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33689, 'Ciolanesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33690, 'Crangeni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33691, 'Crangu', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33692, 'Crevenicu', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33693, 'Didesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33694, 'Dobrotesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33695, 'Dracsenei', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33696, 'Draganesti de Vede', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33697, 'Draganesti-Vlasca', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33698, 'Furculesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33699, 'Galateni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33700, 'Gratia', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33701, 'Islaz', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33702, 'Lita', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33703, 'Maldaeni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33704, 'Marzanesti', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33705, 'Mavrodin', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33706, 'Mosteni', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33707, 'Nanov', 2878, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, 1), -(33708, 'Nasturelu', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33709, 'Necsesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33710, 'Olteni', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33711, 'Orbeasca', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33712, 'Peretu', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33713, 'Piatra', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33714, 'Plopii Slavitesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33715, 'Plosca', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33716, 'Poeni', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33717, 'Poroschia', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33718, 'Radoiesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33719, 'Rasmiresti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33720, 'Rosiori de Vede', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33721, 'Saceni', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33722, 'Sarbeni', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33723, 'Scrioastea', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33724, 'Scurtu Mare', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33725, 'Segarcea Vale', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33726, 'Sfintesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33727, 'Silistea-Gumesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33728, 'Slobozia-Mandra', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33729, 'Smardioasa', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33730, 'Stejaru', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33731, 'Storobaneasa', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33732, 'Suhaia', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33733, 'Tatarastii de Jos', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33734, 'Tatarastii de Sus', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33735, 'Tiganesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33736, 'Trivalea-Mosteni', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33737, 'Troianul', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33738, 'Turnu Magurele', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33739, 'Vartoapele-de-Jos', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33740, 'Videle', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33741, 'Vitanesti', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33742, 'Zambreasca', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33743, 'Zimnicea', 2878, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33744, 'Balint', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33745, 'Banloc', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33746, 'Barna', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33747, 'Beba Veche', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33748, 'Becicherecu Mic', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33749, 'Belint', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33750, 'Bethausen', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33751, 'Biled', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33752, 'Bogda', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33753, 'Boldur', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33754, 'Brestovat', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33755, 'Buzias', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33756, 'Carpinis', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33757, 'Cenad', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33758, 'Cenei', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33759, 'Cheveresu Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33760, 'Ciacova', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33761, 'Comlosu Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33762, 'Costeiu', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33763, 'Criciova', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33764, 'Curtea', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33765, 'Darova', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33766, 'Denta', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33767, 'Deta', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33768, 'Dudestii Vechi', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33769, 'Faget', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33770, 'Fardea', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33771, 'Foeni', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33772, 'Gataia', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33773, 'Gavojdia', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33774, 'Ghiroda', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33775, 'Ghizela', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33776, 'Giarmata', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33777, 'Giera', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33778, 'Giroc', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33779, 'Giulvaz', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33780, 'Jamu Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33781, 'Jebel', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33782, 'Jimbolia', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33783, 'Lenauheim', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33784, 'Liebling', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33785, 'Lovrin', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33786, 'Lugoj', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33787, 'Manastiur', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33788, 'Margina', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33789, 'Masloc', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33790, 'Moravita', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33791, 'Mosnita Noua', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33792, 'Nadrag', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33793, 'Nitchidorf', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33794, 'Ohaba Lunga', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33795, 'Ortisoara', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33796, 'Peciu Nou', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33797, 'Periam', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33798, 'Pischia', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33799, 'Recas', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33800, 'Remetea Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33801, 'Sacalaz', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33802, 'Sacosu Turcesc', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33803, 'Sanandrei', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33804, 'Sanmihaiu Roman', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33805, 'Sannicolaul Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33806, 'Sanpetrul-Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33807, 'Satchinez', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33808, 'Secas', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33809, 'Stiuca', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33810, 'Teremia Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33811, 'Timisoara', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33812, 'Topolovatu Mare', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33813, 'Tormac', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33814, 'Traian Vuia', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33815, 'Uivar', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33816, 'Varias', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33817, 'Victor Vlad Delamarina', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33818, 'Voiteg', 2879, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33819, 'Babadag', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33820, 'Beidaud', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33821, 'Carcaliu', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33822, 'Casimcea', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33823, 'Ceamurlia de Jos', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33824, 'Ceatalchioi', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33825, 'Chilia Veche', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33826, 'Ciucurova', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33827, 'Crisan', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33828, 'Daeni', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33829, 'Hamcearca', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33830, 'Ion Bratianu', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33831, 'Isaccea', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33832, 'Jijila', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33833, 'Jurilovca', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33834, 'Macin', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33835, 'Mahmudia', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33836, 'Murighiol', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33837, 'Nalbant', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33838, 'Niculitel', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33839, 'Nufaru', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33840, 'Pardina', 2880, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, 1), -(33841, 'Peceneaga', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33842, 'Sarichioi', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33843, 'Slava Cercheza', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33844, 'Somova', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33845, 'Sulina', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33846, 'Topolog', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33847, 'Tulcea', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33848, 'Turcoaia', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33849, 'Valea Nucarilor', 2880, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33850, 'Alunu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33851, 'Amarasti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33852, 'Baile Govora', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33853, 'Baile Olanesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33854, 'Balcesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33855, 'Berbesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33856, 'Berislavesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33857, 'Boisoara', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33858, 'Brezoi', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33859, 'Caineni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33860, 'Calimanesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33861, 'Cernisoara', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33862, 'Copaceni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33863, 'Creteni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33864, 'Daesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33865, 'Danicei', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33866, 'Dragasani', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33867, 'Fartatesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33868, 'Fauresti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33869, 'Francesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33870, 'Galicea', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33871, 'Ghioroiu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33872, 'Glavile', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33873, 'Golesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33874, 'Gusoeni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33875, 'Horezu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33876, 'Ladesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33877, 'Lalosu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33878, 'Lapusata', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33879, 'Lungesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33880, 'Maciuca', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33881, 'Madulari', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33882, 'Malaia', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33883, 'Maldaresti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33884, 'Mateesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33885, 'Milcoiu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33886, 'Muereasca', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33887, 'Ocnele Mari', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33888, 'Olanu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33889, 'Orlesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33890, 'Otesani', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33891, 'Pausesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33892, 'Pausesti-Maglasi', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33893, 'Perisani', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33894, 'Pesceana', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33895, 'Pietrari', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33896, 'Prundeni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33897, 'Ramnicu Valcea', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33898, 'Roesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33899, 'Rosiile', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33900, 'Salatrucel', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33901, 'Scundu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33902, 'Sirineasa', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33903, 'Stoilesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33904, 'Stroesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33905, 'Susani', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33906, 'Tetoiu', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33907, 'Vaideeni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33908, 'Voicesti', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33909, 'Zatreni', 2881, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33910, 'Alexandru Vlahuta', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33911, 'Arsura', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33912, 'Bacani', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33913, 'Bacesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33914, 'Banca', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33915, 'Barlad', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33916, 'Berezeni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33917, 'Bogdanita', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33918, 'Codaesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33919, 'Coroiesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33920, 'Cretesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33921, 'Delesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33922, 'Dimitrie Cantemir', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33923, 'Dranceni Sat', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33924, 'Duda', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33925, 'Epureni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33926, 'Falciu', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33927, 'Gagesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33928, 'Garceni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33929, 'Gherghesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33930, 'Hoceni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33931, 'Husi', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33932, 'Iana', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33933, 'Ivanesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33934, 'Laza', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33935, 'Lipovat', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33936, 'Lunca Banului', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33937, 'Malusteni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33938, 'Miclesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33939, 'Muntenii de Jos', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33940, 'Murgeni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33941, 'Negresti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33942, 'Oltenesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33943, 'Osesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33944, 'Padureni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33945, 'Perieni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33946, 'Pogana', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33947, 'Poienesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33948, 'Pungesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33949, 'Rebricea', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33950, 'Rosiesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33951, 'Solesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33952, 'Stanilesti', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33953, 'Suletea', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33954, 'Tacuta', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33955, 'Tanacu', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33956, 'Tutova', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33957, 'Vaslui', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33958, 'Vetrisoaia', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33959, 'Vinderei', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33960, 'Vutcani', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33961, 'Zapodeni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33962, 'Zorleni', 2882, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33963, 'Adjud', 2883, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33964, 'Andreiasu de Jos', 2883, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33965, 'Barsesti', 2883, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33966, 'Boghesti', 2883, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, 1), -(33967, 'Bolotesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33968, 'Bordesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33969, 'Campineanca', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33970, 'Campuri', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33971, 'Carligele', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33972, 'Chiojdeni', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33973, 'Ciorasti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33974, 'Corbita', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33975, 'Cotesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33976, 'Dumitresti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33977, 'Fitionesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33978, 'Focsani', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33979, 'Garoafa', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33980, 'Gugesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33981, 'Gura Calitei', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33982, 'Homocea', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33983, 'Jaristea', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33984, 'Jitia', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33985, 'Maicanesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33986, 'Marasesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33987, 'Milcovul', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33988, 'Nanesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33989, 'Naruja', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33990, 'Nereju', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33991, 'Nistoresti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33992, 'Paltin', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33993, 'Panciu', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33994, 'Paunesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33995, 'Poiana Cristei', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33996, 'Pufesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33997, 'Racoasa', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33998, 'Reghiu', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(33999, 'Ruginesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34000, 'Sihlea', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34001, 'Slobozia Bradului', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34002, 'Slobozia-Ciorasti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34003, 'Soveja', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34004, 'Straoane', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34005, 'Suraia', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34006, 'Tamboesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34007, 'Tanasoaia', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34008, 'Tataranu', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34009, 'Tifesti', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34010, 'Tulnici', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34011, 'Valea Sarii', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34012, 'Vartescoiu', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34013, 'Vintileasca', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34014, 'Vizantea', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34015, 'Vrancioaia', 2883, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34016, 'Adygejsk', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34017, 'Enem', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34018, 'Jablonovskij', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34019, 'Kamennomostskij', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34020, 'Majkop', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34021, 'Tulskij', 2884, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34022, 'Aginskoje', 2885, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34023, 'Alagir', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34024, 'Ardon', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34025, 'Beslan', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34026, 'Digora', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34027, 'Mozdok', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34028, 'Vladikavkaz', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34029, 'Zavodskoj', 2886, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34030, 'Alejsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34031, 'Barnaul', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34032, 'Belojarsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34033, 'Belokuriha', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34034, 'Bijsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34035, 'Blagoveshchenka', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34036, 'Gornjak', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34037, 'Jarovoe', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34038, 'Juzhnyj', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34039, 'Kamen-na-Obi', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34040, 'Novoaltajsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34041, 'Novosilikatnyj', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34042, 'Rubcovsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34043, 'Sibirskiy', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34044, 'Slavgorod', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34045, 'Talmenka', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34046, 'Zarinsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34047, 'Zmeinogorsk', 2887, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34048, 'Arhara', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34049, 'Belogorsk', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34050, 'Blagoveshchensk', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34051, 'Jerofej Pavlovich', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34052, 'Magdagachi', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34053, 'Novoburejskij', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34054, 'Progress', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34055, 'Rajchihinsk', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34056, 'Seryshevo', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34057, 'Shimanovsk', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34058, 'Skovorodino', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34059, 'Svobodnyj', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34060, 'Tynda', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34061, 'Urusha', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34062, 'Zavitinsk', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34063, 'Zeja', 2888, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34064, 'Arhangelsk', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34065, 'Jemca', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34066, 'Jercevo', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34067, 'Kargopol', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34068, 'Konosha', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34069, 'Korjazhma', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34070, 'Kotlas', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34071, 'Kuloj', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34072, 'Maloshujka', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34073, 'Mirnyj', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34074, 'Njandoma', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34075, 'Novodvinsk', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34076, 'Obozjorskij', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34077, 'Oktjabrskij', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34078, 'Onega', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34079, 'Plesetsk', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34080, 'Podjuga', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34081, 'Puksoozero', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34082, 'Samoded', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34083, 'Savinskij', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34084, 'Severodvinsk', 2889, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, 1), -(34085, 'Shenkursk', 2889, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34086, 'Udimskij', 2889, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34087, 'Urdoma', 2889, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34088, 'Velsk', 2889, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34089, 'Vychegodskij', 2889, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34090, 'Ahtubinsk', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34091, 'Astrahan', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34092, 'Harabali', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34093, 'Kamyzjak', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34094, 'Kapustin Jar', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34095, 'Liman', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34096, 'Narimanov', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34097, 'Verhnij Baskunchak', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34098, 'Volodarskij', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34099, 'Znamensk', 2890, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34100, 'Agidel', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34101, 'Bajmak', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34102, 'Belebej', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34103, 'Beloreck', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34104, 'Birsk', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34105, 'Chishmy', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34106, 'Davlekanovo', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34107, 'Djurtjuli', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34108, 'Iglino', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34109, 'Ishimbaj', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34110, 'Janaul', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34111, 'Jermolajevo', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34112, 'Kandry', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34113, 'Krasnousolskij', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34114, 'Kumertau', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34115, 'Meleuz', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34116, 'Mezhgorje', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34117, 'Neftekamsk', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34118, 'Oktyabrsky', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34119, 'Prijutovo', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34120, 'Rajevskij', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34121, 'Salavat', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34122, 'Serafimovskij', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34123, 'Sibaj', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34124, 'Sterlitamak', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34125, 'Tujmazy', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34126, 'Uchaly', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34127, 'Ufa', 2891, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34128, 'Aleksejevka', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34129, 'Belgorod', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34130, 'Borisovka', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34131, 'Chernjanka', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34132, 'Grajvoron', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34133, 'Gubkin', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34134, 'Novyj Oskol', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34135, 'Rakitnoe', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34136, 'Razumnoe', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34137, 'Shebekino', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34138, 'Staryj Oskol', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34139, 'Stroitel', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34140, 'Tomarovka', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34141, 'Valujki', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34142, 'Volokonovka', 2892, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34143, 'Belye Berega', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34144, 'Brjansk', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34145, 'Djatkovo', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34146, 'Fokino', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34147, 'Karachev', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34148, 'Kletnja', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34149, 'Klimovo', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34150, 'Klincy', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34151, 'Lokot', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34152, 'Navlja', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34153, 'Novozybkov', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34154, 'Pochjop', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34155, 'Pogar', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34156, 'Selco', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34157, 'Starodub', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34158, 'Surazh', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34159, 'Suzjomka', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34160, 'Trubchjovsk', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34161, 'Unecha', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34162, 'Zhukovka', 2893, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34163, 'Gusinoozjorsk', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34164, 'Kamensk', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34165, 'Kjahta', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34166, 'Novyj Uojan', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34167, 'Onohoj', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34168, 'Selenginsk', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34169, 'Severobajkalsk', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34170, 'Taksimo', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34171, 'Ulan-Ude', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34172, 'Zakamensk', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34173, 'Zarechnyj', 2894, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34174, 'Groznyj', 2895, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34175, 'Gudermes', 2895, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34176, 'Malgobek', 2895, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34177, 'Urus-Martan', 2895, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34178, 'Asha', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34179, 'Bakal', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34180, 'Bazhovo', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34181, 'Berdjaush', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34182, 'Chebarkul', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34183, 'Cheljabinsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34184, 'Chelyabinsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34185, 'Jemanzhelinsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34186, 'Jurjuzan', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34187, 'Juznouralsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34188, 'Karabash', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34189, 'Kartaly', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34190, 'Kasli', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34191, 'Katav-Ivanovsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34192, 'Kopejsk', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34193, 'Korkino', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34194, 'Krasnogorskij', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34195, 'Kusa', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34196, 'Kyshtym', 2896, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, 1), -(34197, 'Lokomotivnyj', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34198, 'Magnitka', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34199, 'Magnitogorsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34200, 'Miass', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34201, 'Minjar', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34202, 'Njazepetrovsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34203, 'Novosineglazovskij', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34204, 'Ozjorsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34205, 'Pervomajskij', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34206, 'Plast', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(34207, 'Satka', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34208, 'Sim', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34209, 'Snezhinsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34210, 'Starokamyshinsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34211, 'Trjohgornij', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34212, 'Troick', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34213, 'Ust-Katav', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34214, 'Verhneuralsk', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34215, 'Verhnij Ufalej', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34216, 'Zlatoust', 2896, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34217, 'Atamanovka', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34218, 'Balej', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34219, 'Borzja', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34220, 'Bukachacha', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34221, 'Chernyshevsk', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34222, 'Darasun', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34223, 'Gornyy', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34224, 'Hilok', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34225, 'Karymskoje', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34226, 'Krasnokamensk', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34227, 'Mogocha', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34228, 'Nerchinsk', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34229, 'Novaja Chara', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34230, 'Novokruchuninskij', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34231, 'Olovjannaja', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34232, 'Petrovsk-Zabajkalskij', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34233, 'Sherlovaja Gora', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34234, 'Shilka', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34235, 'Sretensk', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34236, 'Vershino-Darasunskij', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34237, 'Zabajkalsk', 2897, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34238, 'Anadyr', 2898, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34239, 'Bilibino', 2898, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34240, 'Pevek', 2898, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34241, 'Ugolnyje Kopi', 2898, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34242, 'Alatyr', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34243, 'Cheboksary', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34244, 'Civilsk', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34245, 'Ibresi', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34246, 'Jadrin', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34247, 'Kanash', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34248, 'Kozlovka', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34249, 'Kugesy', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34250, 'Mariinskij Posad', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34251, 'Novocheboksarsk', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34252, 'Shumerlja', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34253, 'Vurnary', 2899, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34254, 'Belidzhi', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34255, 'Bujnaksk', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34256, 'Dagestanskije Ogni', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34257, 'Derbent', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34258, 'Hasavjurt', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34259, 'Izberbash', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34260, 'Juzhno-Suhokumsk', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34261, 'Kaspijsk', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34262, 'Kiziljurt', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34263, 'Kizljar', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34264, 'Mahackala', 2900, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34265, 'Gorno-Altajsk', 2902, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34266, 'Amursk', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34267, 'Bikin', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34268, 'Chegdomyn', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34269, 'Cherdomyn', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34270, 'Habarovsk', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34271, 'Hor', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34272, 'Jelban', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34273, 'Komsomolsk-na-Amure', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34274, 'Litovko', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34275, 'Nikolajevsk-na-Amure', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34276, 'Ohotsk', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34277, 'Perejaslavka', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34278, 'Solnechnyj', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34279, 'Sovetskaja Gavan', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34280, 'Uglegorsk', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34281, 'Vanino', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34282, 'Vjazemskij', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34283, 'Zavety Iljicha', 2903, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34284, 'Abakan', 2904, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34285, 'Abaza', 2904, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34286, 'Cherjomushki', 2904, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34287, 'Chernogorsk', 2904, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, 1), -(34288, 'Sajanogorsk', 2904, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34289, 'Shira', 2904, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34290, 'Sorsk', 2904, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34291, 'Ust-Abakan', 2904, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34292, 'Belojarskij', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34293, 'Belyj Jar', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34294, 'Fjodorovskij', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34295, 'Hanty-Mansijsk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34296, 'Igrim', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34297, 'Izluchinsk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34298, 'Jugorsk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34299, 'Kogalym', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34300, 'Langepas', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34301, 'Ljantor', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34302, 'Megion', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34303, 'Mezhdurechenskij', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34304, 'Neftejugansk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34305, 'Nizhnevartovsk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34306, 'Njagan', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34307, 'Novoagansk', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34308, 'Pojkovskij', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34309, 'Pokachi', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34310, 'Raduzhnyj', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34311, 'Sovetskij', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34312, 'Surgut', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34313, 'Uraj', 2905, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34314, 'Nazran', 2906, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34315, 'Angarsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34316, 'Bajkalsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34317, 'Balagansk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34318, 'Birjusinsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34319, 'Bodajbo', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34320, 'Bratsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34321, 'Cheremhovo', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34322, 'Chunskij', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34323, 'Irkutsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34324, 'Kirensk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34325, 'Kujtun', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34326, 'Mihajlovka', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34327, 'Nizhneudinsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34328, 'Novaja Igirma', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34329, 'Sajansk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34330, 'Shelehov', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34331, 'Sljudjanka', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34332, 'Svirsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34333, 'Tajshet', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34334, 'Tulun', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34335, 'Usolje-Sibirskoje', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34336, 'Ust-Ilimsk', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34337, 'Ust-Kut', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34338, 'Vihorevka', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34339, 'Zalari', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34340, 'Zheleznodorozhnyj', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34341, 'Zheleznogorsk-Ilimskij', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34342, 'Zima', 2907, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34343, 'Furmanov', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34344, 'Ivanovo', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34345, 'Jurjevec', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34346, 'Juzha', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34347, 'Kineshma', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34348, 'Kohma', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34349, 'Komsomolsk', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34350, 'Lezhnjovo', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34351, 'Navoloki', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34352, 'Privolzhsk', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34353, 'Puchezh', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34354, 'Rodniki', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34355, 'Shuja', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34356, 'Tejkovo', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34357, 'Vichuga', 2908, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34358, 'Gubkinskij', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34359, 'Korotchajevo', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34360, 'Labytnangi', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34361, 'Muravlenko', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34362, 'Nadym', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34363, 'Nojabrsk', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34364, 'Novyj Urengoj', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34365, 'Pangody', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34366, 'Salehard', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34367, 'Tarko-Sale', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34368, 'Urengoj', 2909, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34369, 'Danilov', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34370, 'Gavrilov-Jam', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34371, 'Jaroslavl', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34372, 'Pereslavl-Zalesskij', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34373, 'Rostov', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34374, 'Rybinsk', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34375, 'Tutajev', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34376, 'Uglich', 2910, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34377, 'Birakan', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34378, 'Birobidzhan', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34379, 'Imeni Telmana', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34380, 'Izvestkovyj', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34381, 'Londoko', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34382, 'Obluchje', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34383, 'Teploozjorsk', 2911, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34384, 'Baksan', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34385, 'Chegem Pervyj', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34386, 'Majskij', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34387, 'Nalchik', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34388, 'Nartkala', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34389, 'Prohladnyj', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34390, 'Terek', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34391, 'Tyrnyauz', 2912, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34392, 'Bagrationovsk', 2913, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34393, 'Baltijsk', 2913, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, 1), -(34394, 'Chernjahovsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34395, 'Gurjevsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34396, 'Gusev', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34397, 'Gvardejsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34398, 'Kaliningrad', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34399, 'Mamonovo', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34400, 'Neman', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34401, 'Nesterov', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34402, 'Pionerskij', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34403, 'Sovetsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34404, 'Svetlogorsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34405, 'Svetlyj', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34406, 'Zeljenogradsk', 2913, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34407, 'Elista', 2914, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34408, 'Gorodovikovsk', 2914, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34409, 'Lagan', 2914, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34410, 'Balabanovo', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34411, 'Belousovo', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34412, 'Borovsk', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34413, 'Jermolino', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34414, 'Kaluga', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34415, 'Kondrovo', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34416, 'Kozelsk', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34417, 'Kremenki', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34418, 'Ljudinovo', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34419, 'Malojaroslavec', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34420, 'Obninsk', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34421, 'Sosenskij', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34422, 'Suhinichi', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34423, 'Tarusa', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34424, 'Tovarkovo', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34425, 'Zhukov', 2915, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34426, 'Jelizovo', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34427, 'Kljuchi', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34428, 'Mohovaja', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34429, 'Petropavlovsk-Kamchatskij', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34430, 'Ust-Kamchatsk', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34431, 'Viljuchinsk', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34432, 'Vulkannyj', 2916, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34433, 'Cherkessk', 2917, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34434, 'Karachajevsk', 2917, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34435, 'Ust-Dzheguta', 2917, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34436, 'Belomorsk', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34437, 'Kem', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34438, 'Kondopoga', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34439, 'Kostomuksha', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34440, 'Lahdenpohja', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34441, 'Medvezhjegorsk', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34442, 'Nadvoicy', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34443, 'Olonec', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34444, 'Petrozavodsk', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34445, 'Pitkjaranta', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34446, 'Pudozh', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34447, 'Segezha', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34448, 'Sortavala', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34449, 'Suojarvi', 2918, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34450, 'Anzhero-Sudzhensk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34451, 'Bachatskij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34452, 'Berjozovskij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34453, 'Gramoteino', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34454, 'Inskoj', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34455, 'Jashkino', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34456, 'Jurga', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34457, 'Kaltan', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34458, 'Kedrovka', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34459, 'Kemerovo', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34460, 'Kiseljovsk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34461, 'Krasnobrodskij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34462, 'Leninsk-Kuzneckij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34463, 'Malinovka', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34464, 'Mariinsk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34465, 'Mezhdurechensk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34466, 'Myski', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34467, 'Novokuzneck', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34468, 'Novokuznetsk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34469, 'Novyj Gorodok', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34470, 'Osinniki', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34471, 'Polsaevo', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34472, 'Prokopjevsk', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34473, 'Promyshlennaja', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34474, 'Promyshlennovskij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34475, 'Salair', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34476, 'Starobachaty', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34477, 'Tajga', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34478, 'Tajzhina', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34479, 'Tashtagol', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34480, 'Tisul', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34481, 'Tjazhinskij', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34482, 'Topki', 2919, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34483, 'Belaja Holunica', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34484, 'Jaransk', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34485, 'Jurja', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34486, 'Kirovo-Chepeck', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34487, 'Kirs', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34488, 'Kotelnich', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34489, 'Ljangasovo', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34490, 'Luza', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34491, 'Malmyzh', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34492, 'Murashi', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34493, 'Nolinsk', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34494, 'Omutninsk', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34495, 'Orichi', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34496, 'Orlov', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34497, 'Peskovka', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34498, 'Slobodskoj', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34499, 'Urzhum', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34500, 'Vahrushi', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34501, 'Vjatskije Poljany', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34502, 'Zujevka', 2921, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, 1), -(34503, 'Blagoevo', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34504, 'Inta', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34505, 'Jarega', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34506, 'Jeletskij', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34507, 'Jemva', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34508, 'Komsomolskij', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34509, 'Krasnozatonskij', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34510, 'Mikun', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34511, 'Nizhnij Odes', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34512, 'Pechora', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34513, 'Promyshlennyj', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34514, 'Severnyj', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34515, 'Sosnogorsk', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34516, 'Syktyvkar', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34517, 'Troicko-Pechorsk', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34518, 'Uhta', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34519, 'Usinsk', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34520, 'Usogorsk', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34521, 'Vorgashor', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34522, 'Vorkuta', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34523, 'Vuktyl', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34524, 'Zheshart', 2922, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34525, 'Kudymkar', 2923, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34526, 'Palana', 2924, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34527, 'Galich', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34528, 'Kostroma', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34529, 'Makarjev', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34530, 'Manturovo', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34531, 'Neja', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34532, 'Nerehta', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34533, 'Sharja', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34534, 'Vetluzhskij', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34535, 'Volgorechensk', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34536, 'Zavolzhsk', 2925, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34537, 'Abinsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34538, 'Achujevo', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34539, 'Afipskij', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34540, 'Ahtyrskij', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34541, 'Anapa', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34542, 'Apsheronsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34543, 'Belorechensk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34544, 'Gelendzhik', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34545, 'Gorjachi Kljuch', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34546, 'Gulkevichi', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34547, 'Hadyzhensk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34548, 'Ilskij', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34549, 'Jejsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34550, 'Kalinino', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34551, 'Korenovsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34552, 'Krasnodar', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34553, 'Kropotkin', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34554, 'Krymsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34555, 'Kurganinsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34556, 'Labinsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34557, 'Mostovskoj', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34558, 'Neftegorsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34559, 'Novokubansk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34560, 'Novomihajlovskij', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34561, 'Novorossijsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34562, 'Pashkovskij', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34563, 'Primorsko-Ahtarsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34564, 'Psebaj', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34565, 'Slavjansk-na-Kubani', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34566, 'Sochi', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34567, 'Srednjaja Ahtuba', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34568, 'Temrjuk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34569, 'Tihoreck', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34570, 'Timashevsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34571, 'Tuapse', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34572, 'Ust-Labinsk', 2926, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34573, 'Aban', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34574, 'Achinsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34575, 'Artjomovsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34576, 'Bogotol', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34577, 'Borodino', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34578, 'Divnogorsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34579, 'Dubinino', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34580, 'Igarka', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34581, 'Ilanskij', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34582, 'Jemeljanovo', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34583, 'Jenisejsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34584, 'Kajerkan', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34585, 'Kansk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34586, 'Kedrovyj', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34587, 'Kodinsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34588, 'Krasnojarsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34589, 'Kuragino', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34590, 'Lesosibirsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34591, 'Minusinsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34592, 'Nazarovo', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34593, 'Nizhnjaja Pojma', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34594, 'Norilsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34595, 'Podgornyj', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34596, 'Sharypovo', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34597, 'Shushenskoe', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34598, 'Sosnovoborsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34599, 'Talnah', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34600, 'Ujar', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34601, 'Uzhur', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34602, 'Zaozjornyj', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34603, 'Zelenogorsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34604, 'Zheleznogorsk', 2927, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34605, 'Dalmatovo', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34606, 'Kargapolje', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34607, 'Katajsk', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34608, 'Kurgan', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34609, 'Kurtamysh', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34610, 'Makushino', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34611, 'Petuhovo', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34612, 'Shadrinsk', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34613, 'Shumiha', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34614, 'Vargashi', 2929, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, 1), -(34615, 'Dmitriev Lgovskij', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34616, 'Imeni Karla Libknehta', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34617, 'Kurchatov', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34618, 'Kursk', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34619, 'Lgov', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34620, 'Obojan', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34621, 'Rylsk', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34622, 'Shchigry', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34623, 'Shchuchje', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34624, 'Sudzha', 2930, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34625, 'Boksitogorsk', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34626, 'Dubrovka', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34627, 'Gatchina', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34628, 'Imeni Morozova', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34629, 'Ivangorod', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34630, 'Kingisepp', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34631, 'Kirishi', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34632, 'Kirovsk', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34633, 'Kolpino', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34634, 'Kommunar', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34635, 'Kuzmolovskiy', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34636, 'Lodejnoje Pole', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34637, 'Luga', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34638, 'Nikolskoe', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34639, 'Novaja Ladoga', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34640, 'Otradnoe', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34641, 'Pikaljovo', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34642, 'Podporozhje', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34643, 'Priozjorsk', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34644, 'Sertolovo', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34645, 'Shlisselburg', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34646, 'Siverskij', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34647, 'Sjasstroj', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34648, 'Slancy', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34649, 'Sosnovyj Bor', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34650, 'Svetogorsk', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34651, 'Tihvin', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34652, 'Tosno', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34653, 'Uljanovka', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34654, 'Volhov', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34655, 'Volosovo', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34656, 'Vsevolozhsk', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34657, 'Vyborg', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34658, 'Vyrica', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34659, 'Zarskoje Selo', 2931, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34660, 'Chaplygin', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34661, 'Dankov', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34662, 'Dobrinka', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34663, 'Grjazi', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34664, 'Jelec', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34665, 'Lebedjan', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34666, 'Lipeck', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34667, 'Usman', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34668, 'Zadonsk', 2932, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34669, 'Jagodnoje', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34670, 'Magadan', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34671, 'Omsukchan', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34672, 'Palatka', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34673, 'Sinegorje', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34674, 'Susuman', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34675, 'Ust-Omchug', 2933, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34676, 'Ardatov', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34677, 'Chamzinka', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34678, 'Insar', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34679, 'Kovylkino', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34680, 'Krasnoslobodsk', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34681, 'Luhovka', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34682, 'Romodanovo', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34683, 'Ruzajevka', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34684, 'Saransk', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34685, 'Temnikov', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34686, 'Torbeevo', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34687, 'Zubova Poljana', 2935, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34688, 'Moscow', 2936, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34689, 'Moskva', 2939, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34690, 'Vostochnyj', 2939, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34691, 'Zeljenograd', 2939, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34692, 'Apatity', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34693, 'Gadzhievo', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34694, 'Kandalaksha', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34695, 'Kola', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34696, 'Kovdor', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34697, 'Monchegorsk', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34698, 'Murmansk', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34699, 'Murmashi', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34700, 'Nikel', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34701, 'Olenegorsk', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34702, 'Ostrovnoj', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34703, 'Poljarnye Zory', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34704, 'Poljarnyj', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34705, 'Revda', 2940, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, 1), -(34706, 'Severomorsk', 2940, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34707, 'Snezhnogorsk', 2940, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34708, 'Zaozjorsk', 2940, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34709, 'Zapoljarnyj', 2940, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34710, 'Zeljenoborskij', 2940, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34711, 'Narjan-Mar', 2941, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34712, 'Borovichi', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34713, 'Chudovo', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34714, 'Krestcy', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34715, 'Malaja Vishera', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34716, 'Okulovka', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34717, 'Pestovo', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34718, 'Proletarij', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34719, 'Solcy', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34720, 'Staraja Russa', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34721, 'Uglovka', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34722, 'Valdaj', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34723, 'Velikij Novgorod', 2943, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34724, 'Novokusnezk', 2944, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34725, 'Barabinsk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34726, 'Berdsk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34727, 'Bolotnoe', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34728, 'Chany', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34729, 'Cherepanovo', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34730, 'Chulym', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34731, 'Iskitim', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34732, 'Karasuk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34733, 'Kargat', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34734, 'Kochenjovo', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34735, 'Kolcovo', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34736, 'Kolyvan', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34737, 'Krasnoobsk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34738, 'Krasnozerskoe', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34739, 'Kujbyshev', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34740, 'Kupino', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34741, 'Linjovo', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34742, 'Masljanino', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34743, 'Novosibirsk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34744, 'Ob', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34745, 'Suzun', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34746, 'Tatarsk', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34747, 'Toguchin', 2945, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34748, 'Bolsherechje', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34749, 'Cherlak', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34750, 'Isilkul', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34751, 'Kalachinsk', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34752, 'Kormilovka', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34753, 'Ljubinskij', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34754, 'Moskaljoni', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34755, 'Muromcevo', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34756, 'Nazyvajevsk', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34757, 'Omsk', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34758, 'Tara', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34759, 'Tavricheskoje', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34760, 'Tjukalinsk', 2946, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34761, 'Abdulino', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34762, 'Buguruslan', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34763, 'Buzuluk', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34764, 'Jasnyj', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34765, 'Komarovskiy', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34766, 'Kuvandyk', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34767, 'Mednogorsk', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34768, 'Novotroick', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34769, 'Orenburg', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34770, 'Orsk', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34771, 'Sol-Ileck', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34772, 'Sorochinsk', 2947, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34773, 'Bolhov', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34774, 'Gaj', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34775, 'Livny', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34776, 'Mcensk', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34777, 'Orjol', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34778, 'Znamenka', 2948, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34779, 'Bashmakovo', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34780, 'Bekovo', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34781, 'Belinskiy', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34782, 'Kamenka', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34783, 'Kolyshlej', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34784, 'Kuzneck', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34785, 'Mokshan', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34786, 'Nikolsk', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34787, 'Nizhnij Lomov', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34788, 'Pachelma', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34789, 'Penza', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34790, 'Serdobsk', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34791, 'Sursk', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34792, 'Zemetchino', 2949, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34793, 'Aleksandrovsk', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34794, 'Berezniki', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34795, 'Chajkovskij', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34796, 'Chermoz', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34797, 'Chernushka', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34798, 'Chusovoj', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34799, 'Dobrjanka', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34800, 'Gornozavodsk', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34801, 'Gremjachinsk', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34802, 'Gubaha', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34803, 'Jajva', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34804, 'Kizel', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34805, 'Komsomolsky', 2950, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, 1), -(34806, 'Krasnokamsk', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34807, 'Krasnovishersk', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34808, 'Kungur', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34809, 'Lysva', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34810, 'Novye Ljady', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34811, 'Nytva', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34812, 'Ocher', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34813, 'Osa', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34814, 'Pashija', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34815, 'Perm', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34816, 'Polazna', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34817, 'Skalnyj', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34818, 'Solikamsk', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34819, 'Ugleuralskij', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34820, 'Uralskij', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34821, 'Usolje', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34822, 'Vereshchagino', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34823, 'Zvjozdnyj', 2950, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(34824, 'Arsenjev', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34825, 'Artjom', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34826, 'Artjomovskij', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34827, 'Bolshoj Kamen', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34828, 'Dalnegorsk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34829, 'Dalnerechensk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34830, 'Dunaj', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34831, 'Jaroslavskij', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34832, 'Kavalerovo', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34833, 'Kirovskiy', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34834, 'Lesozavodsk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34835, 'Lipovcy', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34836, 'Livadija', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34837, 'Luchegorsk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34838, 'Nahodka', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34839, 'Novoshahtinskij', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34840, 'Partizansk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34841, 'Pogranichnyj', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34842, 'Preobrazhenie', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34843, 'Putjatin', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34844, 'Sibircevo', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34845, 'Slavjanka', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34846, 'Spassk-Dalnij', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34847, 'Tavrichanka', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34848, 'Trudovoe', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34849, 'Uglekamensk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34850, 'Uglovoe', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34851, 'Ussurijsk', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34852, 'Vladivostok', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34853, 'Vrangel', 2951, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34854, 'Dedovichi', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34855, 'Dno', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34856, 'Nevel', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34857, 'Novosokolniki', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34858, 'Opochka', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34859, 'Pechory', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34860, 'Porhov', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34861, 'Pskov', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34862, 'Sebezh', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34863, 'Strugi-Krasnye', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34864, 'Velikije Luki', 2952, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34865, 'Kasimov', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34866, 'Korablino', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34867, 'Mihajlov', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34868, 'Novomichurinsk', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34869, 'Rjazan', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34870, 'Rjazhsk', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34871, 'Rybnoje', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34872, 'Sasovo', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34873, 'Shilovo', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34874, 'Skopin', 2954, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34875, 'Ajutinskij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34876, 'Aksaj', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34877, 'Azov', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34878, 'Batajsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34879, 'Belaja Kalitva', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34880, 'Cimljansk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34881, 'Doneck', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34882, 'Donskoj', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34883, 'Gigant', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34884, 'Glubokij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34885, 'Gornjackij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34886, 'Gukovo', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34887, 'Kamenolomni', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34888, 'Kamensk-Shahtinskij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34889, 'Konstantinovsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34890, 'Krasnyj Sulin', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34891, 'Lihovskoj', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34892, 'Millerovo', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34893, 'Morozovsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34894, 'Novocherkassk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34895, 'Novoshahtinsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34896, 'Proletarsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34897, 'Rostov-na-Donu', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34898, 'Salsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34899, 'Semikarakorsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34900, 'Shahty', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34901, 'Sholohovskij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34902, 'Sinegorskij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34903, 'Sokolovo', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34904, 'Taganrog', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34905, 'Ust-Doneckij', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34906, 'Volgodonsk', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34907, 'Zernograd', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34908, 'Zhirnov', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34909, 'Zverevo', 2955, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34910, 'Ajhan', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34911, 'Aldan', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34912, 'Cherskij', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34913, 'Chulman', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34914, 'Deputatskij', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34915, 'Jakutsk', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34916, 'Lensk', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34917, 'Marha', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34918, 'Nerjungri', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34919, 'Njurba', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34920, 'Oljokminsk', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34921, 'Pokrovsk', 2956, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, 1), -(34922, 'Sangar', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34923, 'Serebrjanyj Bor', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34924, 'Tiksi', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34925, 'Tommot', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34926, 'Udachnyj', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34927, 'Ust-Nera', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34928, 'Verhojansk', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34929, 'Viljujsk', 2956, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34930, 'Aleksandrovsk-Sahalinskij', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34931, 'Dolinsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34932, 'Holmsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34933, 'Juzhno-Sahalinsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34934, 'Korsakov', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34935, 'Makarov', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34936, 'Nevelsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34937, 'Nogliki', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34938, 'Oha', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34939, 'Poronajsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34940, 'Shahtjorsk', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34941, 'Tymovskoje', 2957, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34942, 'Bezenchuk', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34943, 'Chapajevsk', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34944, 'Fjodorovka', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34945, 'Kinel', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34946, 'Novokujbyshevsk', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34947, 'Novosemejkino', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34948, 'Oktjabrsk', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34949, 'Otradnyj', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34950, 'Pohvistnevo', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34951, 'Povolzhskij', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34952, 'Pribrezhnyj', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34953, 'Roscinskij', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34954, 'Smyshljaevka', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34955, 'Suhodol', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34956, 'Syzran', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34957, 'Timashjovo', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34958, 'Toljatti', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34959, 'Zhigulevsk', 2958, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34960, 'Togliatti', 2959, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34961, 'Saint Petersburg', 2960, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34962, 'Sankt Peterburg', 2960, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34963, 'Arkadak', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34964, 'Atkarsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34965, 'Balakovo', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34966, 'Balashov', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34967, 'Bazarnyj Karabulak', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34968, 'Dergachi', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34969, 'Engels', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34970, 'Hvalynsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34971, 'Jershov', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34972, 'Kalininsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34973, 'Krasnoarmejsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34974, 'Krasnyj Kut', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34975, 'Marks', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34976, 'Novouzensk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34977, 'Ozinki', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34978, 'Petrovsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34979, 'Privolzhskij', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34980, 'Pugachjov', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34981, 'Rtishchevo', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34982, 'Saratov', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34983, 'Shihany', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34984, 'Stepnoe', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34985, 'Tatishchevo', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34986, 'Volsk', 2961, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34987, 'Demidov', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34988, 'Desnogorsk', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34989, 'Dorogobuzh', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34990, 'Gagarin', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34991, 'Hislavichi', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34992, 'Jarcevo', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34993, 'Jelnja', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34994, 'Pochinok', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34995, 'Roslavl', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34996, 'Rudnja', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34997, 'Safonovo', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34998, 'Smolensk', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(34999, 'Verhnedneprovskij', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35000, 'Vjazma', 2962, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35001, 'Blagodarnyj', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35002, 'Budjonnovsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35003, 'Georgijevsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35004, 'Gorjachevodskij', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35005, 'Inozemcevo', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35006, 'Ipatovo', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35007, 'Izobilnyj', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35008, 'Jessentuki', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35009, 'Kislovodsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35010, 'Lermontov', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35011, 'Mihajlovsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35012, 'Mineralnyje Vody', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35013, 'Neftekumsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35014, 'Nevinnomyssk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35015, 'Novoaleksandrovsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35016, 'Novopavlovsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35017, 'Pjatigorsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35018, 'Solnechnodolsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35019, 'Stavropol', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35020, 'Svetlograd', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35021, 'Svobody', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35022, 'Zeljenokumsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35023, 'Zheleznovodsk', 2963, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35024, 'Alapajevsk', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35025, 'Aramil', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35026, 'Arti', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35027, 'Asbest', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35028, 'Baranchinskij', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35029, 'Bisert', 2964, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, 1), -(35030, 'Bogdanovich', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35031, 'Bulanash', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35032, 'Degtjarsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35033, 'Ekaterinburg', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35034, 'Irbit', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35035, 'Ivdel', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35036, 'Izumrud', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35037, 'Jekaterinburg', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35038, 'Kachkanar', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35039, 'Kamensk-Uralskij', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35040, 'Kamyshlov', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35041, 'Karpinsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35042, 'Kirovgrad', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35043, 'Krasnoturinsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35044, 'Krasnoufimsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35045, 'Krasnouralsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35046, 'Kushva', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35047, 'Lesnoj', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35048, 'Leviha', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35049, 'Lobva', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35050, 'Malysheva', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35051, 'Monetnyj', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35052, 'Nevjansk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35053, 'Nizhnie Sergi', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35054, 'Nizhnij Tagil', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35055, 'Nizhnjaja Salda', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35056, 'Nizhnjaja Tura', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35057, 'Novaja Ljalja', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35058, 'Novouralsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35059, 'Pervouralsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35060, 'Polevskoj', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35061, 'Pyshma', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35062, 'Pyt-Jah', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35063, 'Reftinskij', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35064, 'Rezh', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35065, 'Serov', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35066, 'Severouralsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35067, 'Sosva', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35068, 'Sredneuralsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35069, 'Suhoj Log', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35070, 'Sysert', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35071, 'Talica', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35072, 'Tavda', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35073, 'Troickij', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35074, 'Turinsk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35075, 'Verhnij Tagil', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35076, 'Verhnjaja Pyshma', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35077, 'Verhnjaja Salda', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35078, 'Verhnjaja Sinyachiha', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35079, 'Verhnjaja Tura', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35080, 'Verhoturje', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35081, 'Volchansk', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35082, 'Yekaterinburg', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35083, 'Zjuzelskij', 2964, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35084, 'Dudinka', 2965, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35085, 'Dmitrievka', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35086, 'Inzhavino', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35087, 'Kirsanov', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35088, 'Kotovsk', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35089, 'Michurinsk', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35090, 'Morshansk', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35091, 'Rasskazovo', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35092, 'Tambov', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35093, 'Uvarovo', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35094, 'Zherdevka', 2966, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35095, 'Agryz', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35096, 'Aksubajevo', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35097, 'Aktjubinskij', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35098, 'Aleksejevskoje', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35099, 'Almetjevsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35100, 'Arsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35101, 'Aznakajevo', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35102, 'Bavly', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35103, 'Bugulma', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35104, 'Buinsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35105, 'Chistopol', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35106, 'Dzhalil', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35107, 'Jelabuga', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35108, 'Kamskie Poljany', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35109, 'Kazan', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35110, 'Kukmor', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35111, 'Leninogorsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35112, 'Mamadysh', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35113, 'Mendelejevsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35114, 'Menzelinsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35115, 'Naberezhnyje Chelny', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35116, 'Nizhnekamsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35117, 'Niznjaja Maktama', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35118, 'Nurlat', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35119, 'Tetjushi', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35120, 'Urussu', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35121, 'Vasiljevo', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35122, 'Zainsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35123, 'Zeljonodolsk', 2967, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35124, 'Bogandinskij', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35125, 'Borovskij', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35126, 'Golyshmanovo', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35127, 'Ishim', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35128, 'Jalutorovosk', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35129, 'Tjumen', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35130, 'Tobolsk', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35131, 'Vinzili', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35132, 'Zavodoukovsk', 2968, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35133, 'Asino', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35134, 'Jaja', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35135, 'Kolpashevo', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35136, 'Seversk', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35137, 'Strezhevoj', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35138, 'Tomsk', 2969, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, 1), -(35139, 'Agejevo', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35140, 'Aleksin', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35141, 'Beljov', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35142, 'Bogoroditsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35143, 'Bolohovo', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35144, 'Dubovka', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35145, 'Jasnogorsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35146, 'Jefremov', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35147, 'Kimovsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35148, 'Kirejevsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35149, 'Kosaja Gora', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35150, 'Leninskij', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35151, 'Lipki', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35152, 'Mendelejevskij', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35153, 'Novomoskovsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35154, 'Plavsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35155, 'Severo-Zadonsk', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35156, 'Shchjokino', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35157, 'Skuratovskij', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35158, 'Sokolniki', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35159, 'Suvorov', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35160, 'Tovarkovskij', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35161, 'Uzlovaja', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35162, 'Venjov', 2970, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35163, 'Andreapol', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35164, 'Bezheck', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35165, 'Bologoe', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35166, 'Kaljazin', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35167, 'Kashin', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35168, 'Kimry', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35169, 'Konakovo', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35170, 'Kuvshinovo', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35171, 'Lihoslavl', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35172, 'Maksatiha', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35173, 'Ostashkov', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35174, 'Ozjornyj', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35175, 'Pelidovo', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35176, 'Rameshki', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35177, 'Redkino', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35178, 'Rzhev', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35179, 'Starica', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35180, 'Toropec', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35181, 'Torzhok', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35182, 'Tver', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35183, 'Udomlja', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35184, 'Vyshnij Volochok', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35185, 'Zapadnaja Dvina', 2971, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35186, 'Ak-Dovurak', 2972, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35187, 'Kyzyl', 2972, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35188, 'Balezino', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35189, 'Glazov', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35190, 'Igra', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35191, 'Izhevsk', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35192, 'Kambarka', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35193, 'Kez', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35194, 'Kizner', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35195, 'Mozhga', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35196, 'Sarapul', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35197, 'Uva', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35198, 'Votkinsk', 2973, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35199, 'Barysh', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35200, 'Cherdakly', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35201, 'Isheevka', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35202, 'Novospasskoe', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35203, 'Novouljanovsk', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35204, 'Sengilej', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35205, 'Uljanovsk', 2974, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35206, 'Ust-Ordynskij', 2976, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35207, 'Aleksandrov', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35208, 'Balakirevo', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35209, 'Gorohovec', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35210, 'Gus-Hrustalnyj', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35211, 'Jurjev Polskij', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35212, 'Kameshkovo', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35213, 'Karabanovo', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35214, 'Kirzhach', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35215, 'Kolchugino', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35216, 'Kosterovo', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35217, 'Kovrov', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35218, 'Krasnaja Gorbatka', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35219, 'Krasnyj Oktjabr', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35220, 'Lakinsk', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35221, 'Melenki', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35222, 'Murom', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35223, 'Novovjazniki', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35224, 'Pokrov', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35225, 'Sobinka', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35226, 'Strunino', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35227, 'Sudogda', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35228, 'Suzdal', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35229, 'Vjazniki', 2977, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35230, 'Frolovo', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35231, 'Gorkovskij', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35232, 'Gorodishche', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35233, 'Ilovlja', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35234, 'Jelan', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35235, 'Kalach-na-Donu', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35236, 'Kamyshin', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35237, 'Kotelnikovo', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35238, 'Kotovo', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35239, 'Leninsk', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35240, 'Nikolajevsk', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35241, 'Nizhny Novgorod', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35242, 'Novoanninskij', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35243, 'Novonikolajevskij', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35244, 'Pallasovka', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35245, 'Petrov Val', 2978, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, 1), -(35246, 'Serafimovich', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35247, 'Surovikino', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35248, 'Svetlyj Jar', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35249, 'Urjupinsk', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35250, 'Volgograd', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35251, 'Volzhskij', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35252, 'Zhirnovsk', 2978, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35253, 'Babajevo', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35254, 'Belozjorsk', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35255, 'Cherepovec', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35256, 'Grjazovec', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35257, 'Harovsk', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35258, 'Kaduj', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35259, 'Krasavino', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35260, 'Sheksna', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35261, 'Sokol', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35262, 'Totma', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35263, 'Velikij Ustjug', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35264, 'Vologda', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35265, 'Vytegra', 2979, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35266, 'Bobrov', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35267, 'Boguchar', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35268, 'Borisoglebsk', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35269, 'Buturlinovka', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35270, 'Ertil', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35271, 'Gribanovskij', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35272, 'Kalach', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35273, 'Kantemirovka', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35274, 'Liski', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35275, 'Novohopjorsk', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35276, 'Novovoronezh', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35277, 'Ostrogozhsk', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35278, 'Pavlovsk', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35279, 'Povorino', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35280, 'Pridonskij', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35281, 'Rossosh', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35282, 'Semiluki', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35283, 'Somovo', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35284, 'Talovaja', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35285, 'Voronezh', 2980, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35286, 'Butare', 2981, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35287, 'Nyanza', 2981, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35288, 'Byumba', 2982, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35289, 'Cyangugu', 2983, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35290, 'Gikongoro', 2984, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35291, 'Gisenyi', 2985, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35292, 'Gitarama', 2986, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35293, 'Kibungo', 2987, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35294, 'Rwamagana', 2987, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35295, 'Kibuye', 2988, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35296, 'Kigali', 2989, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35297, 'Ruhengeri', 2990, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, 1), -(35298, 'Anse-la-Raye', 3009, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35299, 'Canaries', 3010, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35300, 'Castries', 3011, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35301, 'Choc', 3011, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35302, 'Choiseul', 3012, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35303, 'Dennery', 3013, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35304, 'Laborie', 3015, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35305, 'Micoud', 3016, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35306, 'Soufriere', 3017, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35307, 'Miquelon', 3019, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35308, 'Biabou', 3020, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35309, 'Byera', 3020, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35310, 'Dovers', 3021, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35311, 'Port Elizabeth', 3021, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35312, 'Falelatai', 3022, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35313, 'Mulifanua', 3023, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35314, 'Solosolo', 3024, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, 1), -(35315, 'Safotulafai', 3025, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35316, 'Samalae ulu', 3026, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35317, 'A opo', 3027, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35318, 'Gautavai', 3029, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35319, 'Samamea', 3031, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35320, 'Neiafu', 3032, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35321, 'Acquaviva', 3033, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35322, 'Chiesanuova', 3035, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35323, 'Domagnano', 3036, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35324, 'Faetano', 3037, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35325, 'Fiorentino', 3038, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35326, 'Montegiardino', 3039, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35327, 'Serravalle', 3041, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35328, 'Neves', 3044, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35329, 'Santo Antonio', 3047, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35330, 'Mahayel', 3049, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35331, 'Abha', 3051, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35332, 'Abu Aris', 3051, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35333, 'Khamis Mushayt', 3051, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35334, 'Qal at Bishah', 3051, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, 1), -(35335, 'Ha il', 3054, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35336, 'Jawf', 3055, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35337, 'Sakakah', 3055, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35338, 'Jizan', 3056, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35339, 'Sabya', 3056, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35340, 'Makkah', 3057, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35341, 'Rabig', 3057, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35342, 'al-Hawiyah', 3057, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35343, 'at-Ta if', 3057, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35344, 'Dar iyah', 3058, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35345, 'Najran', 3058, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35346, 'Sharurah', 3058, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35347, ' Unayzah', 3059, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35348, 'Buraydah', 3059, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35349, 'ar-Rass', 3059, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35350, 'Tabuk', 3060, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35351, 'Umm Lajj', 3060, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35352, 'al-Bahah', 3062, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35353, 'Ara ar', 3063, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35354, 'Rafha', 3063, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35355, 'Turayf', 3063, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35356, 'al-Qurayyat', 3063, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35357, 'Yanbu', 3064, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35358, 'al-Madinah', 3064, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35359, ' Afif', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35360, 'ad-Dawadimi', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35361, 'ad-Dilam', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35362, 'al-Kharj', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35363, 'al-Majma ah', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35364, 'ar-Riyad', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35365, 'az-Zulfi', 3065, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35366, 'Dakar', 3066, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35367, 'Bambey', 3067, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35368, 'Diourbel', 3067, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35369, 'Mbacke', 3067, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35370, 'Diofior', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35371, 'Fatick', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35372, 'Foundiougne', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35373, 'Gossas', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35374, 'Guinguineo', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35375, 'Kahone', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35376, 'Sokone', 3068, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35377, 'Gandiaye', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35378, 'Kaffrine', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35379, 'Kaolack', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35380, 'Koungheul', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35381, 'Ndoffane Lagheme', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35382, 'Nioro du Rip', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35383, 'Toubakouta', 3069, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35384, 'Dabo', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35385, 'Goudomp', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35386, 'Kolda', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35387, 'Marsassoum', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35388, 'Medina Gounas', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35389, 'Sedhiou', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35390, 'Velingara', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35391, 'Wassadou', 3070, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35392, 'Dahra', 3071, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35393, 'Kebemer', 3071, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35394, 'Linguere', 3071, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35395, 'Louga', 3071, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, 1), -(35396, 'Dagana', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35397, 'Gollere', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35398, 'Kanel', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35399, 'Matam', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35400, 'Ndioum', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35401, 'Ourossogui', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35402, 'Podor', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35403, 'Richard Toll', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35404, 'Semme', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35405, 'Thilogne', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35406, 'Waounde', 3072, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35407, 'Bakel', 3073, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35408, 'Kedougou', 3073, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35409, 'Tambacounda', 3073, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35410, 'Joal-Fadiouth', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35411, 'Kayar', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35412, 'Khombole', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35413, 'Mbour', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35414, 'Meckhe', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35415, 'Nguekhokh', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35416, 'Pout', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35417, 'Thiadiaye', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35418, 'Thies', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35419, 'Tivaouane', 3074, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35420, 'Bignona', 3075, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35421, 'Oussouye', 3075, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35422, 'Thionck-Essyl', 3075, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35423, 'Ziguinchor', 3075, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35424, 'Cascade', 3081, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35425, 'Takamaka', 3082, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35426, 'Biama', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35427, 'Daru', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35428, 'Kailahun', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35429, 'Kenema', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35430, 'Koidu', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35431, 'Koindu', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35432, 'Pendembu', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35433, 'Sefadu', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35434, 'Segbwema', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35435, 'Yengema', 140, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35436, 'Kambia', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35437, 'Lungi', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35438, 'Lunsar', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35439, 'Magburaka', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35440, 'Makeni', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35441, 'Mambolo', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(35442, 'Moyamba', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35443, 'Pepel', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35444, 'Port Loko', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35445, 'Yele', 1103, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35446, 'Binkolo', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35447, 'Bo', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35448, 'Bonthe', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35449, 'Bumpe', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35450, 'Matru', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35451, 'Pujehun', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35452, 'Taiama', 1089, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35453, 'York', 143, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35454, 'Singapore', 3083, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35455, 'Banska Bystrica', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35456, 'Banska Shtiavnica', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35457, 'Brezno', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35458, 'Chierny Balog', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35459, 'Detva', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35460, 'Fil akovo', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35461, 'Hnusht a', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35462, 'Hrinova', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35463, 'Kremnica', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35464, 'Krupina', 3084, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, 1), -(35465, 'Luchenec', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35466, 'Nova Bana', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35467, 'Podbrezova', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35468, 'Poltar', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35469, 'Revuca', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35470, 'Rimavska Sobota', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35471, 'Sliach', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35472, 'Tisovec', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35473, 'Tornal a', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35474, 'Vel ky Krtish', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35475, 'Vlkanova', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35476, 'Zharnovica', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35477, 'Zhiar', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35478, 'Ziar nad Hronom', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35479, 'Zvolen', 3084, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35480, 'Bernolakovo', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35481, 'Bratislava', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35482, 'Ivanka pri Dunaji', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35483, 'Malacky', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35484, 'Modra', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35485, 'Pezinok', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35486, 'Senec', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35487, 'Shenkvice', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35488, 'Stupava', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35489, 'Svaty Jur', 3085, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35490, 'Chana', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35491, 'Chierna nad Tisou', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35492, 'Dobshina', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35493, 'Gelnica', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35494, 'Kosice', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35495, 'Kral ovsky Chlmec', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35496, 'Krompachy', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35497, 'Medzev', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35498, 'Michalovce', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35499, 'Moldava nad Bodvou', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35500, 'Pavlovce nad Uhom', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35501, 'Rozhnava', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35502, 'Sechovce', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35503, 'Smizhany', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35504, 'Sobrance', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35505, 'Strazhske', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35506, 'Trebishov', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35507, 'Vel ke Kapushany', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35508, 'Vranov', 3086, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35509, 'Dvory nad Zhitavou', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35510, 'Hurbanovo', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35511, 'Kolarovo', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35512, 'Komarno', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35513, 'Komjatice', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35514, 'Levice', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35515, 'Levocha', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35516, 'Mocenok', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35517, 'Nesvady', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35518, 'Nitra', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35519, 'Nove Zamky', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35520, 'Palarikovo', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35521, 'Shahy', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35522, 'Shal a', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35523, 'Shturovo', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35524, 'Shurany', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35525, 'Svodin', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35526, 'Tlmache', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35527, 'Tvrdoshovce', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35528, 'Vrable', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35529, 'Zlate Moravce', 3087, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35530, 'Bardejov', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35531, 'Giraltovce', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35532, 'Humenne', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35533, 'Jarovnice', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35534, 'Kezhmarok', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35535, 'Lipany', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35536, 'Medzilaborce', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35537, 'Podolinec', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35538, 'Poprad', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35539, 'Preshov', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35540, 'Presov', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35541, 'Sabinov', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35542, 'Snina', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35543, 'Spishska Bela', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35544, 'Spishska Nova Ves', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35545, 'Spishske Podhradie', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35546, 'Stara L ubovna', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35547, 'Stropkov', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35548, 'Svidnik', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35549, 'Svit', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35550, 'Vel ky Sharish', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35551, 'Vysoke Tatry', 3088, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35552, 'Banovce', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35553, 'Belusha', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35554, 'Bojnice', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35555, 'Boshany', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35556, 'Dubnica', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35557, 'Handlova', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35558, 'Ilava', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35559, 'Lednicke Rovne', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35560, 'Lendak', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35561, 'Myjava', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35562, 'Nemshova', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35563, 'Nova Dubnica', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35564, 'Novaky', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35565, 'Nove Mesto', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35566, 'Partizanske', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35567, 'Povazhska Bystrica', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35568, 'Prievidza', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35569, 'Puchov', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35570, 'Stara Tura', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35571, 'Topol chany', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35572, 'Trenchianske Teplice', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35573, 'Trenchin', 3089, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35574, 'Brezova pod Bradlom', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35575, 'Dunajska Streda', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35576, 'Gabchikovo', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35577, 'Galanta', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35578, 'Gbely', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35579, 'Hlohovec', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35580, 'Holich', 3090, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, 1), -(35581, 'Kuty', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35582, 'Leopoldov', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35583, 'Piesht any', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35584, 'Piestany', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35585, 'Senica', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35586, 'Sered ', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35587, 'Shamorin', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35588, 'Shashtin-Strazhe', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35589, 'Shoporna', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35590, 'Skalica', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35591, 'Sladkovichovo', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35592, 'Trnava', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35593, 'Vel ke Ul any', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35594, 'Vel ky Meder', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35595, 'Vrbove', 3090, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35596, 'Bytcha', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35597, 'Chadca', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35598, 'Chierne', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35599, 'Dolny Kubin', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35600, 'Krasno nad Kysucou', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35601, 'Kysucke Nove Mesto', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35602, 'Liptovsky Hradok', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35603, 'Liptovsky Mikulash', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35604, 'Namestovo', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35605, 'Nizhna', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35606, 'Oshchadnica', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35607, 'Rabcha', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35608, 'Rajec', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35609, 'Rakova', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35610, 'Ruzhomberok', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35611, 'Ruzomberok', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35612, 'Shtiavnik', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35613, 'Skalite', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35614, 'Suchany', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35615, 'Terchova', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35616, 'Trstena', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35617, 'Turany', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35618, 'Turchianske Teplice', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35619, 'Turzovka', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35620, 'Tvrdoshin', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35621, 'Vel ke Rovne', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35622, 'Vrutky', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35623, 'Zakamenne', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35624, 'Zhilina', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35625, 'Zilina', 3091, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35626, 'Semic', 3092, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35627, 'Skofljica', 3092, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35628, 'Zelezniki', 3092, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35629, 'Begunje na Gorenjskem', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35630, 'Bistrica ob Trzhichu', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35631, 'Bled', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35632, 'Blejska Dobrava', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35633, 'Bohinjska Bistrica', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35634, 'Britof', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35635, 'Cerklje na Gorenjskem', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35636, 'Golnik', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35637, 'Gorenja Vas', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35638, 'Hrastje', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35639, 'Hrushica', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35640, 'Kokrica', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35641, 'Koroshka Bela', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35642, 'Kranj', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35643, 'Kranjska Gora', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35644, 'Krizhe', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35645, 'Kropa', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35646, 'Lesce', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35647, 'Mlaka pri Kranju', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35648, 'Mojstrana', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35649, 'Preddvor', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35650, 'Predoslje', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35651, 'Pristava', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35652, 'Radovljica', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35653, 'Shenchur', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35654, 'Shkofja Loka', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35655, 'Slovenski Javornik', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35656, 'Spodnja Besnica', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35657, 'Spodnje Gorje', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35658, 'Stara Loka', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35659, 'Sveti Duh', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35660, 'Trzhich', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35661, 'Visoko', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35662, 'Zasip', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35663, 'Zgornje Bitnje', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35664, 'Zhelezniki', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35665, 'Zhiri', 3093, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35666, 'Ajdovshchina', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35667, 'Bovec', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35668, 'Branik', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35669, 'Cerkno', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35670, 'Deskle', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35671, 'Idrija', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35672, 'Kanal', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35673, 'Kobarid', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35674, 'Kromberk', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35675, 'Lokavec', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35676, 'Miren', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35677, 'Nova Gorica', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35678, 'Prvachina', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35679, 'Renche', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35680, 'Rozhna Dolina', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35681, 'Shempas', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35682, 'Shempeter', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35683, 'Solkan', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35684, 'Spodnja Idrija', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35685, 'Tolmin', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35686, 'Vipava', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35687, 'Vrtojba', 3094, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35688, 'Chrna na Koroshkem', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35689, 'Dravograd', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35690, 'Legen', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35691, 'Mezhica', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35692, 'Mislinja', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35693, 'Muta', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35694, 'Otishki Vrh', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35695, 'Pameche', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35696, 'Prevalje', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35697, 'Radlje ob Dravi', 3096, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, 1), -(35698, 'Ravne', 3096, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35699, 'Shmartno pri Slovenj Gradcu', 3096, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35700, 'Slovenj Gradec', 3096, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35701, 'Vuhred', 3096, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35702, 'Vuzenica', 3096, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35703, 'Cerknica', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35704, 'Ilirska Bistrica', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35705, 'Pivka', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35706, 'Postojna', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35707, 'Rakek', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35708, 'Stari trg pri Lozhu', 3097, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35709, 'Ankaran', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35710, 'Bertoki', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35711, 'Dekani', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35712, 'Divacha', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35713, 'Hrvatni', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35714, 'Izola', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35715, 'Jagodje', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35716, 'Koper', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35717, 'Lucija', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35718, 'Pareceg', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35719, 'Piran', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35720, 'Pobegi', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35721, 'Portorozh', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35722, 'Prade', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35723, 'Secha', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35724, 'Sezhana', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35725, 'Spodnje Shkofije', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35726, 'Sveti Anton', 3098, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35727, 'Borovnica', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35728, 'Brezovica pri Ljubljani', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35729, 'Dob', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35730, 'Dobrova', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35731, 'Domzhale', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35732, 'Dragomer', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35733, 'Grosuplje', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35734, 'Horjul', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35735, 'Ig', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35736, 'Ivanchna Gorica', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35737, 'Kamnik', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35738, 'Lavrica', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35739, 'Litija', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35740, 'Ljubljana', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35741, 'Log pri Brezovici', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35742, 'Logatec', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35743, 'Medvode', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35744, 'Mekinje', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35745, 'Mengesh', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35746, 'Moravche', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35747, 'Notranje', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35748, 'Preserje pri Radomljah', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35749, 'Radomlje', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35750, 'Rovte', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35751, 'Shentvid pri Stichni', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35752, 'Shkofljica', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35753, 'Shmarca', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35754, 'Shmartno pri Litiji', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35755, 'Smarje-Sap', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35756, 'Trzin', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35757, 'Verd', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35758, 'Vishnja Gora', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35759, 'Vnanje Gorice', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35760, 'Vrhnika', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35761, 'Zgornje Pirniche', 3101, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35762, 'Bistrica ob Dravi', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35763, 'Bresternica', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35764, 'Bukovci', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35765, 'Dogoshe', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35766, 'Dornava', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35767, 'Hotinja Vas', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35768, 'Kamnica', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35769, 'Kidrichevo', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35770, 'Koshaki', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35771, 'Krchevina pri Vurbergu', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35772, 'Lenart', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35773, 'Limbush', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35774, 'Lovrenc na Pohorju', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35775, 'Maribor', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35776, 'Miklavzh na Dravskem Polju', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35777, 'Ormozh', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35778, 'Pekre', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35779, 'Pesnica pri Mariboru', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35780, 'Pobrezhje', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35781, 'Podvinci', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35782, 'Poljchane', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35783, 'Pragersko', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35784, 'Ptuj', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35785, 'Rache', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35786, 'Radizel', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35787, 'Razvanje', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35788, 'Rogoza', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35789, 'Rushe', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35790, 'Selnica ob Dravi', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35791, 'Selnica ob Muri', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35792, 'Shentilj', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35793, 'Skoke', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35794, 'Slovenska Bistrica', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35795, 'Spodnja Polskava', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35796, 'Spodnje Hoche', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35797, 'Spodnji Duplek', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35798, 'Spuhlja', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35799, 'Sredishche ob Dravi', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35800, 'Stojnci', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35801, 'Zgornja Polskava', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35802, 'Zgornje Poljchane', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35803, 'Zgornji Duplek', 3102, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35804, 'Bakovci', 3103, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35805, 'Beltinci', 3103, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35806, 'Chernelavci', 3103, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35807, 'Chrenshovci', 3103, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35808, 'Dobrovnik', 3103, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, 1), -(35809, 'Doklezhovje', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35810, 'Ganchani', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35811, 'Gornja Radgona', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35812, 'Izhakovci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35813, 'Krog', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35814, 'Lendava', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35815, 'Lipovci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35816, 'Ljutomer', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35817, 'Melinci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35818, 'Murska Sobota', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35819, 'Odranci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35820, 'Petishovci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35821, 'Radenci', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35822, 'Rakichan', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35823, 'Turnishche', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35824, 'Velika Polana', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35825, 'Verzej', 3103, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35826, 'Breg pri Polzeli', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35827, 'Celje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35828, 'Gornji Grad', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35829, 'Gotovlje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35830, 'Kasaze', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35831, 'Lashko', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35832, 'Ljubechna', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35833, 'Ljubno ob Savinji', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35834, 'Loka pri Zusmu', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35835, 'Lokovica', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35836, 'Mozirje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35837, 'Naklo', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35838, 'Nazarje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35839, 'Oplotnica', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35840, 'Petrovche', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35841, 'Polzela', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35842, 'Prebold', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35843, 'Radeche', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35844, 'Rimske Toplica', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35845, 'Rogashka Slatina', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35846, 'Rogatec', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35847, 'Sentjernej', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35848, 'Shentjur', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35849, 'Shkale', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35850, 'Shmarje pri Jelshah', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35851, 'Shoshtanj', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35852, 'Shtore', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35853, 'Slovenske Konjice', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35854, 'Topolshica', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35855, 'Trnovlje pri Celju', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35856, 'Velenje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35857, 'Vitanje', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35858, 'Vojnik', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35859, 'Zabukovica', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35860, 'Zadobrova', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35861, 'Zhalec', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35862, 'Zreche', 3104, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35863, 'Brestanica', 3106, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35864, 'Brezhice', 3106, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35865, 'Krshko', 3106, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35866, 'Leskovac pri Krshkem', 3106, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35867, 'Sevnica', 3106, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35868, 'Dol pri Hrastniku', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35869, 'Hrastnik', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35870, 'Izlake', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35871, 'Kisovec', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35872, 'Trbovlje', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35873, 'Zagorje ob Savi', 3107, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35874, 'Tulagi', 1102, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35875, 'Taro Island', 3012, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35876, 'Honiara', 3108, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35877, 'Buala', 3109, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35878, 'Auki', 3111, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35879, 'Lata', 3113, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35880, 'Gizo', 143, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35881, 'Borama', 3114, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35882, 'Gebilay', 3114, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35883, 'Sayla ', 3114, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35884, 'Tayeglo', 3115, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35885, 'Xuddur', 3115, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, 1), -(35886, 'Yet', 3115, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35887, 'Muqdisho', 3116, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35888, ' Alula', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35889, 'Bandarbeyla', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35890, 'Bandarmu ayo', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35891, 'Bargal', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35892, 'Bereda', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35893, 'Bosaso', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35894, 'Iskushuban', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35895, 'Qandala', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35896, 'Qardho', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35897, 'Xafun', 1777, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35898, 'Baydhabo', 3117, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35899, 'Bur Hakkaba', 3117, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35900, 'Dinsor', 3117, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35901, ' Elbur', 3118, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35902, ' Eldhere', 3118, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35903, 'Dhusa Marreb', 3118, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35904, 'Bardhere', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35905, 'Dolaw', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35906, 'Dujuma', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35907, 'Garbaharey', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35908, 'Luq', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35909, 'Sa o', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35910, 'Wajid', 3119, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35911, 'Bal ad', 3120, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35912, 'Beled Weyne', 3120, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35913, 'Bulobarde', 3120, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35914, 'Jalalassi', 3120, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35915, 'Galka yo', 3123, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35916, 'Hobyo', 3123, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35917, 'Xarardhere', 3123, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35918, 'Eyl', 3124, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35919, 'Garowe', 3124, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35920, 'Las anod', 3124, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35921, ' Erigabo', 3125, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35922, 'Lasqoray', 3125, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35923, ' Ek', 3128, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35924, 'Bur o', 3128, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35925, 'Odweyne', 3128, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35926, 'Alberton', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35927, 'Alrode', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35928, 'Benmore', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35929, 'Benoni', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35930, 'Boksburg', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35931, 'Booysens', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35932, 'Brakpan', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35933, 'Bronkhorstspruit', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35934, 'Bryanston', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35935, 'Carltonville', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35936, 'Centurion', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35937, 'Cullinan', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35938, 'Dainfern', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35939, 'Edenvale', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35940, 'Ferndale', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35941, 'Fourways', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35942, 'Gardenview', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35943, 'Gauteng', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35944, 'Grant Park', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35945, 'Isando', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35946, 'Johannesburg', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35947, 'Kelvin', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35948, 'Krugersdorp', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35949, 'Linmeyer', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35950, 'Maraisburg', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35951, 'Midrand', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35952, 'Nigel', 3132, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, 1), -(35953, 'Northmead', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35954, 'Petervale', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35955, 'Pinegowrie', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35956, 'Pretoria', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35957, 'Primrose', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35958, 'Randburg', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35959, 'Randfontein', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35960, 'Randvaal', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35961, 'Rivonia', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35962, 'Robertville', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35963, 'Soweto', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35964, 'Springs', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35965, 'Temba', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35966, 'Tembisa', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35967, 'Troyeville', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35968, 'Vanderbijlpark', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35969, 'Vereeniging', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35970, 'Verwoerdburg', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35971, 'Vorna Valley', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35972, 'Wadeville', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35973, 'Westonaria', 3132, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35974, 'Sandton', 3134, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35975, 'Bela-Bela', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35976, 'Dendron', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35977, 'Duiwelskloof', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35978, 'Ellisras', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35979, 'Giyani', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35980, 'Lebowakgomo', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35981, 'Louis Trichardt', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35982, 'Lulekani', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35983, 'Mankweng', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35984, 'Mogalakwena', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35985, 'Mutale', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35986, 'Nkowakowa', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35987, 'Nylstroom', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35988, 'Phalaborwa', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35989, 'Pietersburg', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35990, 'Polokwane', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35991, 'Soekmekaar', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35992, 'Southdale', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35993, 'Thabazimbi', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35994, 'Thohoyandou', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35995, 'Thulamahashe', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35996, 'Tzaneen', 3136, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35997, 'Botleng', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35998, 'Ekangala', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(35999, 'Embalenhle', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36000, 'Emjindini', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36001, 'Empuluzi', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36002, 'Emzinoni', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36003, 'Ethandakukhanja', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36004, 'Groblersdal', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36005, 'Komatipoort', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36006, 'Kriel', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36007, 'KwaZanele', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36008, 'Kwazamokuhle', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36009, 'Lebohang', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36010, 'Marblehall', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36011, 'Mashishing', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36012, 'Mhluzi', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36013, 'Nelspruit', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36014, 'Phola', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36015, 'Sakhile', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36016, 'Secunda', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36017, 'Siyabuswa', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36018, 'Siyathemba', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36019, 'Siyathuthuka', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36020, 'Vukuzakhe', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36021, 'Witbank', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36022, 'Witrivier', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36023, 'eLukwatini', 3137, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36024, 'Parow', 3140, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36025, 'Umtentweni', 3142, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36026, 'Bertamirans', 3145, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36027, 'ALbatera', 3146, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, 1), -(36028, 'Alacant', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36029, 'Alcoi', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36030, 'Almoradi', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36031, 'Altea', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36032, 'Aspe', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36033, 'Benidorm', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36034, 'Benissa', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36035, 'Callosa de Segura', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36036, 'Calp', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36037, 'Cocentaina', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36038, 'Crevillent', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36039, 'Denia', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36040, 'El Campello', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36041, 'Elda', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36042, 'Elx', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36043, 'Guardamar del Segura', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36044, 'L Alfas del Pi', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36045, 'La Vila Joiosa', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36046, 'Monover', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36047, 'Mutxamel', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36048, 'Novelda', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36049, 'Orihuela', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36050, 'Pedreguer', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36051, 'Pego', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36052, 'Petrer', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36053, 'Pilar de la Horadada', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36054, 'Pinoso', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36055, 'Rojales', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36056, 'Sant Joan d Alacant', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(36057, 'Sant Vicent del Raspeig', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36058, 'Santa Pola', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36059, 'Sax', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36060, 'Teulada', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36061, 'Torrevieja', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36062, 'Villena', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36063, 'Xabia', 3146, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36064, 'Amurrio', 3147, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36065, 'Llodio', 3147, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36066, 'Vitoria', 3147, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36067, 'Albacete', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36068, 'Almansa', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36069, 'Caudete', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36070, 'Hellin', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36071, 'La Roda', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36072, 'Villarrobledo', 3148, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36073, 'Albox', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36074, 'Almeria', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36075, 'Berja', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36076, 'Cuevas del Almanzora', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36077, 'El Ejido', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36078, 'Huercal de Almeria', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36079, 'Huercal-Overa', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36080, 'Nijar', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36081, 'Roquetas de Mar', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36082, 'Vicar', 3149, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36083, 'Aller', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36084, 'Aviles', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36085, 'C/ Pena Salon', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36086, 'Cangas del Narcea', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36087, 'Carreno', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36088, 'Castrillon', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36089, 'Corvera de Asturias', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36090, 'Gijon', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36091, 'Gozon', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36092, 'Grado', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36093, 'Langreo', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36094, 'Laviana', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36095, 'Llanera', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36096, 'Llanes', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36097, 'Mieres', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36098, 'Navia', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36099, 'Oviedo', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36100, 'Pilona', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36101, 'Pravia', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36102, 'San Martin del Rey Aurelio', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36103, 'Siero', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36104, 'Tineo', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36105, 'Valdes', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36106, 'Villaviciosa', 3150, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36107, 'Avila', 3151, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36108, 'Almendralejo', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36109, 'Azuaga', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36110, 'Badajoz', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36111, 'Don Benito', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36112, 'Jerez de los Caballeros', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36113, 'Olivenza', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36114, 'Villafranca de los Barros', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36115, 'Villanueva de la Serena', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36116, 'Zafra', 3152, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36117, 'Alayor-Menorca', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36118, 'Alcudia', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36119, 'Calvia', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36120, 'Capdepera', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36121, 'Ciutadella de Menorca', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36122, 'Eivissa', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36123, 'Felanitx', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36124, 'Inca', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36125, 'Llucmajor', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36126, 'Mahon', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36127, 'Manacor', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36128, 'Marratxi', 3153, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, 1), -(36129, 'Palma', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36130, 'Pollenca', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36131, 'Sa Pobla', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36132, 'Sant Antoni de Portmany', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36133, 'Sant Josep de sa Talaia', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36134, 'Santa Eulalia del Rio', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36135, 'Santanyi', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36136, 'Soller', 3153, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36137, 'Abrera', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36138, 'Alella', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36139, 'Arenys de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36140, 'Argentona', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36141, 'Badalona', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36142, 'Badia del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36143, 'Barbera del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36144, 'Barcelona', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36145, 'Berga', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36146, 'Cabrera de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36147, 'Caldes de Montbui', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36148, 'Calella', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36149, 'Canet de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36150, 'Canovelles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36151, 'Cardedeu', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36152, 'Castellar del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36153, 'Castellbisbal', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36154, 'Castelldefels', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36155, 'Cerdanyola', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36156, 'Corbera de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36157, 'Cornella', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36158, 'El Masnou', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36159, 'El Prat de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36160, 'Esparreguera', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36161, 'Esplugues de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36162, 'Gava', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36163, 'Granollers', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36164, 'Igualada', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36165, 'L Hospitalet de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36166, 'La Garriga', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36167, 'La Llagosta', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36168, 'Les Franquesas del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36169, 'Llica d Amunt', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36170, 'Malgrat de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36171, 'Manlleu', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36172, 'Manresa', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36173, 'Martorell', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36174, 'Mataro', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36175, 'Molins de Rei', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36176, 'Mollet del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36177, 'Montcada i Reixac', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36178, 'Montgat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36179, 'Montmelo', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36180, 'Montornes del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36181, 'Olesa de Montserrat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36182, 'Palau-solita i Plegamans', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36183, 'Palleja', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36184, 'Parets del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36185, 'Piera', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36186, 'Pineda de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36187, 'Premia de Dalt', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36188, 'Premia de Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36189, 'Ripollet', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36190, 'Rubi', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36191, 'Sabadell', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36192, 'Sant Adria de Besos', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36193, 'Sant Andreu de la Barca', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36194, 'Sant Boi de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36195, 'Sant Celoni', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36196, 'Sant Cugat del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36197, 'Sant Feliu de Llobregat', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36198, 'Sant Joan Despi', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36199, 'Sant Joan de Vilatorrada', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36200, 'Sant Just Desvern', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36201, 'Sant Pere de Ribes', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36202, 'Sant Quirze del Valles', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36203, 'Sant Sadurni d Anoia', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36204, 'Sant Vicenc dels Horts', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36205, 'Santa Coloma de Gramenet', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36206, 'Santa Margarida de Montbui', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36207, 'Santa Perpetua de Mogoda', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36208, 'Sitges', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36209, 'Son Servera', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36210, 'Terrassa', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36211, 'Tordera', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36212, 'Torello', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36213, 'Vallirana', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36214, 'Vic', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36215, 'Viladecans', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36216, 'Viladecavalls', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36217, 'Vilafranca del Penedes', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36218, 'Vilanova del Cami', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36219, 'Vilanova i la Geltru', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36220, 'Vilassar del Mar', 3154, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36221, 'Aranda de Duero', 3155, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36222, 'Burgos', 3155, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36223, 'Miranda de Ebro', 3155, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36224, 'Coria', 3156, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36225, 'Miajadas', 3156, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36226, 'Navalmoral de la Mata', 3156, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36227, 'Plasencia', 3156, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36228, 'Talayuela', 3156, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36229, 'Arcos de la Frontera', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36230, 'Barbate', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36231, 'Cadiz', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36232, 'Chiclana', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36233, 'Chipiona', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36234, 'Conil', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36235, 'El Puerto de Santa Maria', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36236, 'Jimena de la Frontera', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36237, 'La Linea', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36238, 'Los Barrios', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36239, 'Medina-Sidonia', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36240, 'Olvera', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36241, 'Puerto Real', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36242, 'Rota', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36243, 'Sanlucar de Barrameda', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36244, 'Tarifa', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36245, 'Ubrique', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36246, 'Vejer de la Frontera', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36247, 'Villamartin', 3157, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36248, 'Castro-Urdiales', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36249, 'El Astillero', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36250, 'Laredo', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36251, 'Los Corrales de Buelna', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36252, 'Pielagos', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36253, 'Reinosa', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36254, 'San Felices De Buelna', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36255, 'Santa Cruz de Bezana', 3158, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, 1), -(36256, 'Santander', 3158, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36257, 'Santona', 3158, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36258, 'Torrelavega', 3158, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36259, 'Almassora', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36260, 'Benicarlo', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36261, 'Benicassim', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36262, 'Burriana', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36263, 'Castello', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36264, 'L Alcora', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36265, 'La Vall d Uixo', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36266, 'Nules', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36267, 'Onda', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36268, 'Segorbe', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36269, 'Vila-real', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36270, 'Vinaros', 3159, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36271, 'Ceuta', 3160, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36272, 'Aguilar de la Frontera', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36273, 'Baena', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36274, 'Bujalance', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36275, 'Cabra', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36276, 'Fernan-Nunez', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36277, 'Fuente Palmera', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36278, 'La Carlota', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36279, 'Lucena', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36280, 'Montilla', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36281, 'Montoro', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36282, 'Palma del Rio', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36283, 'Penarroya-Pueblonuevo', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36284, 'Pozoblanco', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36285, 'Priego de Cordoba', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36286, 'Puente Genil', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36287, 'Rute', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36288, 'Villanueva de Cordoba', 188, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36289, 'Tarancon', 3162, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36290, 'Banyoles', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36291, 'Blanes', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36292, 'Empuriabrava', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36293, 'Figueres', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36294, 'Girona', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36295, 'La Bisbal d Emporda', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36296, 'Lloret de Mar', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36297, 'Massanet de la Selva', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36298, 'Olot', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36299, 'Palafrugell', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36300, 'Palamos', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36301, 'Ripoll', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36302, 'Roses', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36303, 'Salt', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36304, 'Sant Feliu de Guixols', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36305, 'Santa Coloma de Farners', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36306, 'Torroella de Montgri', 3163, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36307, 'Albolote', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36308, 'Almunecar', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36309, 'Armilla', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36310, 'Atarfe', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36311, 'Baza', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36312, 'Guadix', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36313, 'Huescar', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36314, 'Huetor Tajar', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36315, 'Huetor Vega', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36316, 'Illora', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36317, 'La Zubia', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36318, 'Las Gabias', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36319, 'Maracena', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36320, 'Motril', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36321, 'Ogijares', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36322, 'Peligros', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36323, 'Pinos Puente', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36324, 'Salobrena', 2549, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36325, 'Azuqueca de Henares', 3164, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36326, 'Aduna', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36327, 'Lazakao', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36328, 'Andoain', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36329, 'Anoeta', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36330, 'Arrasate', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36331, 'Azkoitia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36332, 'Azpeitia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36333, 'Beasain', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36334, 'Bergara', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36335, 'Donostia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36336, 'Eibar', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36337, 'Elgoibar', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36338, 'Errenteria', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36339, 'Guipuuzcoa', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36340, 'Hernani', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36341, 'Hondarribia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36342, 'Irun', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36343, 'Legazpi', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36344, 'Mendaro', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36345, 'Mondragon', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36346, 'Oiartzun', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36347, 'Onati', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36348, 'Ordizia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36349, 'Pasaia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36350, 'Tolosa', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36351, 'Zarautz', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36352, 'Zumaia', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36353, 'Zumarraga', 3165, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36354, 'Aljaraque', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36355, 'Ayamonte', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36356, 'Bollullos Par del Condado', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36357, 'Cartaya', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36358, 'Gibraleon', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36359, 'Huelva', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36360, 'Isla Cristina', 3166, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, 1), -(36361, 'La Palma del Condado', 3166, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36362, 'Lepe', 3166, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36363, 'Moguer', 3166, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36364, 'Punta Umbria', 3166, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36365, 'Valverde del Camino', 3166, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36366, 'Barbastro', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36367, 'Binefar', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36368, 'Fraga', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36369, 'Huesca', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36370, 'Jaca', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36371, 'Monzon', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36372, 'Sabinanigo', 3167, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36373, 'Alcala la Real', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36374, 'Alcaudete', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36375, 'Andujar', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36376, 'Baeza', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36377, 'Bailen', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36378, 'Cazorla', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36379, 'Jodar', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36380, 'La Carolina', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36381, 'Mancha Real', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36382, 'Martos', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36383, 'Mengibar', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36384, 'Torre del Campo', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36385, 'Torredonjimeno', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36386, 'Ubeda', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36387, 'Villacarrillo', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36388, 'Villanueva del Arzobispo', 3168, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36389, 'Bembibre', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36390, 'La Baneza', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36391, 'Ponferrada', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36392, 'San Andres del Rabanedo', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36393, 'Villablino', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36394, 'Villaquilambre', 2551, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36395, 'Tora', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36396, 'Balaguer', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36397, 'La Seu d Urgell', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36398, 'Lleida', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36399, 'Mollerussa', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36400, 'Tarrega', 3170, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36401, 'Burela', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36402, 'Cervo', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36403, 'Chantada', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36404, 'Foz', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36405, 'Monforte de Lemos', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36406, 'Ribadeo', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36407, 'Sarria', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36408, 'Vilalba', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36409, 'Viveiro', 3171, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36410, 'Alcala de Henares', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36411, 'Alcobendas', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36412, 'Alcorcon', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36413, 'Algete', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36414, 'Alpedrete', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36415, 'Aranjuez', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36416, 'Arganda del Rey', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36417, 'Boadilla del Monte', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36418, 'Ciempozuelos', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36419, 'Collado Villalba', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36420, 'Colmenar Viejo', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36421, 'Coslada', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36422, 'El Escorial', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36423, 'Fuenlabrada', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36424, 'Galapagar', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36425, 'Getafe', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36426, 'Guadarrama', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36427, 'Humanes de Madrid', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36428, 'Las Rozas de Madrid', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36429, 'Leganes', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36430, 'Majadahonda', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36431, 'Meco', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36432, 'Mejorada del Campo', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36433, 'Mostoles', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36434, 'Navalcarnero', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36435, 'Parla', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36436, 'Pinto', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36437, 'Pozuelo de Alarcon', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36438, 'Rivas-Vaciamadrid', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36439, 'San Fernando de Henares', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36440, 'San Lorenzo de El Escorial', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36441, 'San Martin de la Vega', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36442, 'San Sebastian de los Reyes', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36443, 'Torrejon de Ardoz', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36444, 'Torrelodones', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36445, 'Tres Cantos', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36446, 'Valdemoro', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36447, 'Velilla de San Antonio', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36448, 'Villanueva de la Canada', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36449, 'Villaviciosa de Odon', 3172, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36450, 'Benalmadena', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36451, 'Alhaurin de la Torre', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36452, 'Alhaurin el Grande', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36453, 'Alora', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36454, 'Antequera', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36455, 'Cartama', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36456, 'Coin', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36457, 'Estepona', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36458, 'Fuengirola', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36459, 'Marbella', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36460, 'Mijas', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36461, 'Nerja', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36462, 'Rincon de la Victoria', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36463, 'Ronda', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36464, 'Torremolinos', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36465, 'Torrox', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36466, 'Velez-Malaga', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36467, 'maro', 3173, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, 1), -(36468, 'Melilla', 3174, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36469, 'Abaran', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36470, 'Aguilas', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36471, 'Alcantarilla', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36472, 'Alhama de Murcia', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36473, 'Archena', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36474, 'Beniel', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36475, 'Bullas', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36476, 'Calasparra', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36477, 'Caravaca de la Cruz', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36478, 'Cehegin', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36479, 'Cieza', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36480, 'Fuente Alamo de Murcia', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36481, 'Jumilla', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36482, 'Las Torres de Cotillas', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36483, 'Lorca', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36484, 'Los Alcazares', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36485, 'Mazarron', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36486, 'Molina de Segura', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36487, 'Moratella', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36488, 'Mula', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36489, 'Murcia', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36490, 'Puerto Lumbreras', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36491, 'San Pedro del Pinatar', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36492, 'Santomera', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36493, 'Torre Pacheco', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36494, 'Torre-Pacheco', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36495, 'Totana', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36496, 'Yecla', 3175, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36497, 'Ansoain', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36498, 'Atarrabia', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36499, 'Baranain', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36500, 'Burlata', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36501, 'Iruna', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36502, 'Lizarra', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36503, 'Navarra', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36504, 'Orkoien', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36505, 'Tafalla', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36506, 'Tudela', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36507, 'Zizur Nagusia', 3176, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36508, 'O Barco de Valdeorras', 3177, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36509, 'O Carballino', 3177, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36510, 'Ourense', 3177, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36511, 'Verin', 3177, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36512, 'Xinzo de Limia', 3177, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36513, 'Guardo', 3179, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36514, 'Palencia', 3179, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36515, 'A Estrada', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36516, 'A Guarda', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36517, 'Baiona', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36518, 'Bueu', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36519, 'Caldas de Reis', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36520, 'Cambados', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36521, 'Cangas', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36522, 'Cangas De Morrazo', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36523, 'Lalin', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36524, 'Marin', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36525, 'Moana', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36526, 'Mos', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36527, 'Nigran', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36528, 'O Grove', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36529, 'O Porrino', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36530, 'Poio', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36531, 'Ponteareas', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36532, 'Pontevedra', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36533, 'Redondela', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36534, 'Salvaterra de Mino', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36535, 'Sanxenxo', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36536, 'Silleda', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36537, 'Tomino', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36538, 'Tui', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36539, 'Vigo', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36540, 'Vilagarcia de Arousa', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36541, 'Vilanova de Arousa', 3180, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36542, 'Bejar', 3181, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36543, 'Ciudad Rodrigo', 3181, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36544, 'Santa Marta de Tormes', 3181, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36545, 'Cuellar', 3182, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36546, 'Alcala de Guadaira', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36547, 'Alcala del Rio', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36548, 'Arahal', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36549, 'Bormujos', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36550, 'Brenes', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36551, 'Camas', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36552, 'Cantillana', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36553, 'Carmona', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36554, 'Castilleja de la Cuesta', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36555, 'Coria del Rio', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36556, 'Dos Hermanas', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36557, 'Ecija', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36558, 'El Viso del Alcor', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36559, 'Estepa', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36560, 'Gines', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36561, 'Guillena', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36562, 'La Algaba', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36563, 'La Puebla de Cazalla', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36564, 'La Puebla del Rio', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36565, 'La Rinconada', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36566, 'Las Cabezas de San Juan', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36567, 'Lora del Rio', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36568, 'Los Palacios y Villafranca', 3183, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, 1), -(36569, 'Mairena del Alcor', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36570, 'Mairena del Aljarafe', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36571, 'Marchena', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36572, 'Moron de la Frontera', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36573, 'Olivares', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36574, 'Osuna', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36575, 'Pilas', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36576, 'San Juan de Aznalfarache', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36577, 'Sanlucar la Mayor', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36578, 'Tocina', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36579, 'Tomares', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36580, 'Utrera', 3183, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36581, 'Soria', 3184, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36582, 'Alcanar', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36583, 'Amposta', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36584, 'Calafell', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36585, 'Cambrils', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36586, 'Deltrebe', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36587, 'El Vendrell', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36588, 'Reus', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36589, 'Salou', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36590, 'Sant Carles de la Rapita', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36591, 'Tarragona', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36592, 'Torredembarra', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36593, 'Tortosa', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36594, 'Valls', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36595, 'Vila-seca', 3185, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36596, 'Alcaniz', 3187, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36597, 'Consuegra', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36598, 'Illescas', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36599, 'Madridejos', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36600, 'Mora', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36601, 'Pepino', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36602, 'Quintanar de la Orden', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36603, 'Sonseca', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36604, 'Talavera de la Reina', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36605, 'Torrijos', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36606, 'Villacanas', 442, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36607, 'Agullent', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36608, 'Alaquas', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36609, 'Albal', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36610, 'Alberic', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36611, 'Alboraya', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36612, 'Aldaia', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36613, 'Alfafar', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36614, 'Algemesi', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36615, 'Alginet', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36616, 'Alzira', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36617, 'Benaguasil', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36618, 'Benetusser', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36619, 'Benifaio', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36620, 'Beniparrell', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36621, 'Betera', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36622, 'Bunol', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36623, 'Burjassot', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36624, 'Canals', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36625, 'Carcaixent', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36626, 'Carlet', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36627, 'Catarroja', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36628, 'Chiva', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36629, 'Cullera', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36630, 'Elche', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36631, 'Gandia', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36632, 'Godella', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36633, 'L Alcudia', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36634, 'L Eliana', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36635, 'La Pobla de Vallbona', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36636, 'Lliria', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36637, 'Los Montesinos', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36638, 'Manises', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36639, 'Massamagrell', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36640, 'Meliana', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36641, 'Mislata', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36642, 'Moncada', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36643, 'Oliva', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36644, 'Ontinyent', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36645, 'Paiporta', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36646, 'Paterna', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36647, 'Picanya', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36648, 'Picassent', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36649, 'Pucol', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36650, 'Quart de Poblet', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36651, 'Riba-roja de Turia', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36652, 'Sagunt', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36653, 'Sedavi', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36654, 'Sueca', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36655, 'Tavernes Blanques', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36656, 'Tavernes de la Valldigna', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36657, 'Torrent', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36658, 'Utiel', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36659, 'Xativa', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36660, 'Xirivella', 3188, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36661, 'Laguna de Duero', 3189, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(36662, 'Medina del Campo', 3189, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36663, 'Tordesillas', 3189, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36664, 'Berriatua', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36665, 'Derio', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36666, 'Elorio', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36667, 'Loiu', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36668, 'Abadiano', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36669, 'Abanto Zierbena', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36670, 'Amorebieta', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36671, 'Arrigorriaga', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36672, 'Barakaldo', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36673, 'Basauri', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36674, 'Bermeo', 3190, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, 1), -(36675, 'Berriz', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36676, 'Bilbao', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36677, 'Erandio', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36678, 'Ermua', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36679, 'Etxano', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36680, 'Galdakao', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36681, 'Gernika-Lumo', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36682, 'Getxo', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36683, 'Igorre', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36684, 'Leioa', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36685, 'Mungia', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36686, 'Ondarroa', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36687, 'Ortuella', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36688, 'Portugalete', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36689, 'Santurtzi', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36690, 'Sestao', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36691, 'Sopelana', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36692, 'Trapagaran', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36693, 'Zamudio', 3190, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36694, 'Benavente', 3191, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36695, 'Calatayud', 3192, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36696, 'Ejea de los Caballeros', 3192, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36697, 'Tarazona', 3192, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36698, 'Utebo', 3192, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36699, 'Amparai', 3193, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36700, 'Galmune', 3193, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36701, 'Anuradhapuraya', 3194, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36702, 'Badulla', 3195, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36703, 'Bandarawela', 3195, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36704, 'Haputale', 3195, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36705, 'Boralesgamuwa', 3196, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36706, 'Battaramulla', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36707, 'Dehiwala-Mount Lavinia', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36708, 'Homagama', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36709, 'Jayawardanapura', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36710, 'Kolonnawa', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36711, 'Kotikawatta', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36712, 'Maharagama', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36713, 'Moratuwa', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36714, 'Mulleriyawa', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36715, 'Ratmalana', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36716, 'Seethawakapura', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36717, 'Sri Jayawardanapura', 3197, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36718, 'Ambalamgoda', 3198, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36719, 'Galla', 3198, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36720, 'Daluguma', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36721, 'Gampaha', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36722, 'Hendala', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36723, 'Jaela', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36724, 'Kandana', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36725, 'Katunayaka', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36726, 'Kelaniya', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36727, 'Migamuwa', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36728, 'Minuwangoda', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36729, 'Peliyagoda', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36730, 'Ragama', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36731, 'Wattala', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36732, 'Welesara', 3199, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36733, 'Hambantota', 3200, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36734, 'Tanggalla', 3200, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36735, 'Beruwala', 3201, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36736, 'Horana', 3201, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36737, 'Kalutara', 3201, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36738, 'Keselwatta', 3201, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36739, 'Panadraya', 3201, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36740, 'Kegalla', 3202, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36741, 'Kilinochchi', 3203, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36742, 'Kuliyapitiya', 3204, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36743, 'Kurunegala', 3204, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36744, 'Polgahawela', 3204, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, 1), -(36745, 'Eravur', 3205, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36746, 'Katankudi', 3205, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36747, 'Madakalpuwa', 3205, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36748, 'Malwana', 3207, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36749, 'Mannarama', 3208, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36750, 'Dambulla', 3209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36751, 'Matale', 3209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36752, 'Sigiriya', 3209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36753, 'Matara', 3210, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36754, 'Weligama', 3210, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36755, 'Monaragala', 3211, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36756, 'Wattegama', 3211, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36757, 'Mullaitivu', 3212, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36758, 'Polonnaruwa', 3216, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36759, 'Halawata', 3217, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36760, 'Puttalama', 3217, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36761, 'Balangoda', 3218, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36762, 'Ratnapuraya', 3218, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36763, 'Tirikunamalaya', 3220, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36764, 'Querceta', 3221, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36765, 'Vavuniyawa', 3222, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36766, 'Chavakachcheri', 3223, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36767, 'Peduru Tuduwa', 3223, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36768, 'Valvedditturai', 3223, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36769, 'Yapanaya', 3223, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36770, 'Mahara', 3224, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36771, 'Kodok', 3225, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36772, 'Malakal', 3225, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36773, 'Nasir', 3225, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36774, 'ar-Rank', 3225, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36775, 'Juba', 3226, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36776, 'Yei', 3226, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, 1), -(36777, 'Maridi', 3230, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36778, 'Nzara', 3230, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36779, 'Tambura', 3230, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36780, 'Yambio', 3230, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36781, 'Bur', 3233, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36782, 'Aruma', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36783, 'Halfa al-Jadidah', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36784, 'Kassala', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36785, 'Khashm-al-Qirbah', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36786, 'Wagar', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36787, 'al-Masnah', 3234, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36788, ' Atbarah', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36789, 'Barbar', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36790, 'Kabushiyah', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36791, 'Shandi', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36792, 'ad-Damir', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36793, 'al-Bawga', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36794, 'al-Matammah', 3235, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36795, 'Kapoeta', 3239, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36796, 'Torit', 3239, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36797, 'Abu Hijar', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36798, 'Galgani', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36799, 'Hajj Abdallah', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36800, 'Karkawj', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36801, 'Mayurnu', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36802, 'Sinjah', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36803, 'Sinnar-at-Tagatu', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36804, 'Umm Shawkah', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36805, 'ad-Dindar', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36806, 'as-Suki', 3240, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36807, 'Mashra ar-Raqq', 3241, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36808, 'Tonj', 3241, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36809, 'Warab', 3241, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36810, 'Bur Sudan', 1023, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36811, 'Gabait', 1023, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36812, 'Sawakin', 1023, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36813, 'Sinkat', 1023, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36814, 'Tawkar', 1023, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36815, 'Rumbik', 3243, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36816, 'Yirol', 3243, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36817, 'Abu Usar', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36818, 'Arba atun wa Ishrun-al-Qurash', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36819, 'Maharaybah', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36820, 'Miallayab', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36821, 'Rufa a', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36822, 'Sharafat', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36823, 'Tabat', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36824, 'Tambul', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36825, 'Wad Madani', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36826, 'Wad Rawah', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36827, 'al-Hawsh', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36828, 'al-Hilaliyah', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36829, 'al-Huda', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36830, 'al-Husayhisah', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36831, 'al-Kamilin', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36832, 'al-Karaymat', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36833, 'al-Manaqil', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36834, 'al-Mu sadiyah', 3244, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, 1), -(36835, 'al-Musallamiyah', 3244, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36836, 'Umm Dawm', 3245, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36837, 'Umm Durman', 3245, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36838, 'al-Khartum', 3245, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36839, 'al-Khartum Bahri', 3245, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36840, 'Qala -an-Nahl', 3246, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36841, 'Shuwak', 3246, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36842, 'al-Hawatah', 3246, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36843, 'al-Qadarif', 3246, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36844, 'Bentiu', 3247, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36845, 'Ler', 3247, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36846, 'Asalaya', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36847, 'Bufi', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36848, 'Gulli', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36849, 'Kinanah', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36850, 'Kusti', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36851, 'Marabba', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36852, 'Rabak', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36853, 'Shabashah', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36854, 'Tandalti', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36855, 'Umm Jarr', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36856, 'Wad-az-Zaki', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36857, 'ad-Duwaym', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36858, 'al-Jazirah', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36859, 'al-Kawah', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36860, 'al-Qutaynah', 3248, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36861, 'ad-Damazin', 3249, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36862, 'al-Kurumuk', 3249, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36863, 'al-Quwaysi', 3249, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36864, 'ar-Rusayris', 3249, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36865, 'Argu', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36866, 'Dalqu', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36867, 'Dunqulah', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36868, 'Kanisah', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36869, 'Karmah-an-Nuzul', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36870, 'Kurti', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36871, 'Marawi', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36872, 'Tangasi-ar-Ru ays', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36873, 'Wadi Halfa', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36874, 'ad-Dabbah', 3250, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36875, 'Brokopondo', 3251, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36876, 'Brownsweg', 3251, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36877, 'Marienburg', 3252, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36878, 'Meerzorg', 3252, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36879, 'Nieuw Amsterdam', 3252, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36880, 'Totness', 3253, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36881, 'Albina', 3254, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36882, 'Moengo', 3254, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36883, 'Nieuw Nickerie', 3255, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36884, 'Onverwacht', 521, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36885, 'Paramaribo', 3256, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36886, 'Lelydorp', 3258, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36887, 'Barentsburg', 3259, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36888, 'Hornsund', 3259, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36889, 'Isfjord Radio', 3259, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36890, 'Longyearbyen', 3259, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36891, 'Ny-Alesund', 3259, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36892, 'Bulembu', 3260, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36893, 'Ezulwini', 3260, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36894, 'Mbabane', 3260, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36895, 'Ngwenya', 3260, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36896, 'Pigg s Peak', 3260, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, 1), -(36897, 'Big Bend', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36898, 'Mhlume', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36899, 'Mpaka', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36900, 'Nsoko', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36901, 'Simunye', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36902, 'Siteki', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36903, 'Tshaneni', 3261, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36904, 'Bhunya', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36905, 'Kwaluseni', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36906, 'Lobamba', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36907, 'Malkerns', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36908, 'Mankayane', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36909, 'Manzini', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36910, 'Matsapha', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36911, 'Mhlambanyatsi', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36912, 'Sidvokodvo', 3262, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36913, 'Hlatikulu', 3263, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36914, 'Hluti', 3263, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36915, 'Kubuta', 3263, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36916, 'Lavumisa', 3263, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36917, 'Nhlangano', 3263, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36918, 'Karlshamn', 3266, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36919, 'Karlskrona', 3266, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36920, 'Ronneby', 3266, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36921, 'Stenungsund', 3267, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36922, 'Avesta', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36923, 'Borlange', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36924, 'Falun', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36925, 'Hedemora', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36926, 'Ludvika', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36927, 'Malung', 3268, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36928, 'Bollnas', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36929, 'Bro', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36930, 'Gavle', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36931, 'Hudiksvall', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36932, 'Sandviken', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36933, 'Soderhamn', 3269, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36934, 'Skara', 3270, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36935, 'Visby', 3270, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36936, 'Anderstorp', 3271, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36937, 'Falkenberg', 3271, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36938, 'Halmstad', 3271, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36939, 'Ullared', 3271, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36940, 'Varberg', 3271, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36941, 'Farjestaden', 3272, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36942, 'Ostersund', 3272, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36943, 'Gislaved', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36944, 'Jonkoping', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36945, 'Nassjo', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36946, 'Tranas', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36947, 'Varnamo', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36948, 'Vetlanda', 3273, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36949, 'Blomstermala', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36950, 'Kalmar', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36951, 'Nybro', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36952, 'Oskarshamn', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36953, 'Solna', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36954, 'Torsas', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36955, 'Vastervik', 3274, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36956, 'Habo', 3275, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36957, 'Limhamn', 3275, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36958, 'Segeltorp', 3275, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36959, 'Svedala', 3275, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, 1), -(36960, 'Ljungby', 3276, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36961, 'Vaxjo', 3276, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36962, 'Boden', 3277, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36963, 'Kiruna', 3277, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36964, 'Lulea', 3277, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36965, 'Pitea', 3277, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36966, 'Askersund', 3278, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36967, 'Karlskoga', 3278, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36968, 'Kumla', 3278, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36969, 'Orebro', 3278, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36970, 'Finspang', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36971, 'Follinge', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36972, 'Kisa', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36973, 'Linkoping', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36974, 'Mjolby', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36975, 'Motala', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36976, 'Norrkoping', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36977, 'Vadstena', 3279, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36978, 'Skarpovagen', 3280, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36979, 'Angelholm', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36980, 'Arlov', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36981, 'Bastad', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36982, 'Eslov', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36983, 'Hassleholm', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36984, 'Helsingborg', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36985, 'Hjarup', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36986, 'Hoganas', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36987, 'Horby', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36988, 'Jonstorp', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36989, 'Klagstorp', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36990, 'Kristianstad', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36991, 'Landskrona', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36992, 'Lund', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36993, 'Malmo', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36994, 'Skanor', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36995, 'Staffanstorp', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36996, 'Trelleborg', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36997, 'Ystad', 3281, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36998, 'Hillerstorp', 3282, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(36999, 'Markaryd', 3282, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37000, 'Smalandsstenar', 3282, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37001, 'Eskilstuna', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37002, 'Gnesta', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37003, 'Katrineholm', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37004, 'Nacka Strand', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37005, 'Nykoping', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37006, 'Strangnas', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37007, 'Vingaker', 3283, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37008, 'Akersberga', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37009, 'Boo', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37010, 'Bromma', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37011, 'Djursholm', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37012, 'Hallstavik', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37013, 'Jarfalla', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37014, 'Johannesfred', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37015, 'Lidingo', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37016, 'Marsta', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37017, 'Norrtalje', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37018, 'Norsborg', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37019, 'Nynashamn', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37020, 'Rosersberg', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37021, 'Sodertalje', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37022, 'Sollentuna', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37023, 'Stockholm', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37024, 'Sundbyberg', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37025, 'Taby', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37026, 'Tumba', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37027, 'Upplands-Vasby', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37028, 'Vallentuna', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37029, 'Vasterhaninge', 3284, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37030, 'Balsta', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37031, 'Enkoping', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37032, 'Knivsta', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37033, 'Skyttorp', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37034, 'Storvreta', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37035, 'Uppsala', 3285, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37036, 'Arvika', 3286, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37037, 'Hammaro', 3286, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37038, 'Karlstad', 3286, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37039, 'Kristinehamn', 3286, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37040, 'Skoghall', 3286, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37041, 'Robertsfors', 3287, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37042, 'Skelleftea', 3287, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37043, 'Umea', 3287, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37044, 'Gothenburg', 3288, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37045, 'Kallered', 3288, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37046, 'Kvanum', 3288, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37047, 'Timmersdala', 3288, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, 1), -(37048, 'Harnosand', 3289, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37049, 'Ornskoldsvik', 3289, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37050, 'Sundsvall', 3289, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37051, 'Arboga', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37052, 'Fagersta', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37053, 'Hallstahammar', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37054, 'Koping', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37055, 'Sala', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37056, 'Vasteras', 3290, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37057, 'Aarau', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37058, 'Aarburg', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37059, 'Bevilard', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37060, 'Bremgarten', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37061, 'Brugg', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37062, 'Buchs', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37063, 'Chevenez', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37064, 'Fislisbach', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37065, 'Granichen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37066, 'Hagglingen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37067, 'Kaiseraugst', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37068, 'Kleindoettingen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37069, 'Klingnau', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37070, 'Kuttigen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37071, 'Lenzburg', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37072, 'Menziken', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37073, 'Mohlin', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37074, 'Mumpf', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37075, 'Neuenhof', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37076, 'Niederlenz', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37077, 'Niederwangen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37078, 'Niederwil', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37079, 'Oberentfelden', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37080, 'Obersiggenthal', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37081, 'Oftringen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37082, 'Reinach', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37083, 'Rosshausern', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37084, 'Rothrist', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37085, 'Rupperswil', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37086, 'Schmitten', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37087, 'Seon', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37088, 'Spreitenbach', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37089, 'Suhr', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37090, 'Trogen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37091, 'Untersiggenthal', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37092, 'Villmergen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37093, 'Wettingen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37094, 'Windisch', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37095, 'Wohlen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37096, 'Wurenlos', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37097, 'Zofingen', 3292, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37098, 'Aesch', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37099, 'Allschwil', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37100, 'Arlesheim', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37101, 'Binningen', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37102, 'Birsfelden', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37103, 'Bottmingen', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37104, 'Ettingen', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37105, 'Frenkendorf', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37106, 'Gelterkinden', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37107, 'Laufen', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37108, 'Lausen', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37109, 'Liestal', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37110, 'Munchenstein', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37111, 'Muttenz', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37112, 'Oberwil', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37113, 'Pratteln', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37114, 'Sissach', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37115, 'Therwil', 3295, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37116, 'Basel', 3296, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37117, 'Riehen', 3296, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37118, 'Belp', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37119, 'Bern', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37120, 'Biel', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37121, 'Biel-Bienne', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37122, 'Bolligen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37123, 'Frutigen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37124, 'Heimberg', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37125, 'Herzogenbuchsee', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37126, 'Huttwil', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37127, 'Interlaken', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37128, 'Ittigen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37129, 'Koniz', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37130, 'Konolfingen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37131, 'Langenthal', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37132, 'Langnau', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37133, 'Lengnau', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37134, 'Lyss', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37135, 'Meiringen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37136, 'Moutier', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37137, 'Munchenbuchsee', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37138, 'Nidau', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37139, 'Orpund', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37140, 'Ostermundingen', 3297, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, 1), -(37141, 'Pieterlen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37142, 'Saanen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37143, 'Saint-Imier', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37144, 'Sonceboz', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37145, 'Spiez', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37146, 'Steffisburg', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37147, 'Sumiswald', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37148, 'Thun', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37149, 'Uetendorf', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37150, 'Unterseen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37151, 'Urtenen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37152, 'Vechingen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37153, 'Wahlern', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37154, 'Worb', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37155, 'Zollikofen', 3297, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37156, 'Bulle', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37157, 'Dudingen', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37158, 'Fribourg', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37159, 'Granges-Paccot', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37160, 'Muntelier', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37161, 'Murten', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37162, 'Remaufens', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37163, 'Villars-sur-Glane', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37164, 'Villaz-Saint-Pierre', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37165, 'Wunnewil-Flamatt', 3299, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37166, 'Bernex', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37167, 'Carouge', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37168, 'Chene-Bougeries', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37169, 'Chene-Bourg', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37170, 'Collonge-Bellerive', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37171, 'Cologny', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37172, 'Geneva', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37173, 'Geneve', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37174, 'Lancy', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37175, 'Le Grand-Saconnex', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37176, 'Meyrin', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37177, 'Onex', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37178, 'Plan-les-Ouates', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37179, 'Thonex', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37180, 'Vernier', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37181, 'Versoix', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37182, 'Veyrier', 3300, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37183, 'Glarus', 3301, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37184, 'Nafels', 3301, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37185, 'Arosa', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37186, 'Chur', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37187, 'Davos', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37188, 'Domat', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37189, 'Igis', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37190, 'Landquart', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37191, 'Maienfeld', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37192, 'Sankt Moritz', 3302, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37193, 'Heerbrugg', 3303, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37194, 'Delemont', 1200, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37195, 'Glovelier', 1200, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37196, 'Le Noirmont', 1200, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37197, 'Porrentruy', 1200, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37198, 'Adligenswil', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37199, 'Ballwil', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37200, 'Buchrain', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37201, 'Ebikon', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37202, 'Hochdorf', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37203, 'Horw', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37204, 'Kriens', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37205, 'Littau', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37206, 'Luzern', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37207, 'Malters', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37208, 'Meggen', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37209, 'Neuenkirch', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37210, 'Perlern', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37211, 'Ruswil', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37212, 'Sursee', 3305, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37213, 'Muhen', 3307, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37214, 'Bole', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37215, 'Boudry', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37216, 'Colombier', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37217, 'La Chaux-de-Fonds', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37218, 'Le Locle', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37219, 'Neuchatel', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37220, 'Peseux', 3308, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37221, 'Buochs', 3309, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37222, 'Hergiswil', 3309, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37223, 'Stans', 3309, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37224, 'Stansstad', 3309, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, 1), -(37225, 'Alpnach', 3310, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37226, 'Kerns', 3310, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37227, 'Sachseln', 3310, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37228, 'Sarnen', 3310, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37229, 'Schaffhausen', 3312, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37230, 'Arth', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37231, 'Buron', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37232, 'Einsiedeln', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37233, 'Feusisberg', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37234, 'Freienbach', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37235, 'Ingenbohl', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37236, 'Kussnacht', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37237, 'Lachen', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37238, 'Schubelbach', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37239, 'Schwyz', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37240, 'Wollerau', 3313, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37241, 'Balsthal', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37242, 'Bellach', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37243, 'Bettlach', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37244, 'Biberist', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37245, 'Derendingen', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37246, 'Dornach', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37247, 'Dulliken', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37248, 'Feldbrunnen', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37249, 'Gerlafingen', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37250, 'Grenchen', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37251, 'Hagendorf', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37252, 'Olten', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37253, 'Schonenwerd', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37254, 'Solothurn', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37255, 'Trimbach', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37256, 'Zuchwil', 3314, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37257, 'Aadorf', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37258, 'Amriswil', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37259, 'Arbon', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37260, 'Bischofszell', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37261, 'Felben-Wellhausen', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37262, 'Frauenfeld', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37263, 'Guttingen', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37264, 'Kreuzlingen', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37265, 'Romanshorn', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37266, 'Sirnach', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37267, 'Sulgen', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37268, 'Tagerwilen', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37269, 'Weinfelden', 3315, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37270, 'Ascona', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37271, 'Bellinzona', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37272, 'Biasca', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37273, 'Breganzona', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37274, 'Cadempino', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37275, 'Chiasso', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37276, 'Giubiasco', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37277, 'Locarno', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37278, 'Losone', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37279, 'Lugano', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37280, 'Massagno', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37281, 'Melide', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(37282, 'Mendrisio', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37283, 'Mezzovico', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37284, 'Minusio', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37285, 'Porza', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37286, 'Pregassona', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37287, 'Viganello', 3316, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37288, 'Schattdorf', 3317, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37289, 'Bagnes', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37290, 'Brig-Glis', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37291, 'Collombey-Muraz', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37292, 'Conthey', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37293, 'Evionnaz', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37294, 'Fully', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37295, 'Martigny', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37296, 'Monthey', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37297, 'Naters', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37298, 'Nendaz', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37299, 'Niederwald', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37300, 'Saviese', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37301, 'Sierre', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37302, 'Sion', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37303, 'Visp', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37304, 'Vouvry', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37305, 'Zermatt', 3318, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37306, 'Aigle', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37307, 'Ballaigues', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37308, 'Bex', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37309, 'Blonay', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37310, 'Bussigny', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37311, 'Chavannes', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37312, 'Crissier', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37313, 'Ecublens', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37314, 'Epalinges', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37315, 'Gland', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37316, 'La Tour-de-Peilz', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37317, 'Lausanne', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37318, 'Le Mont-sur-Lausanne', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37319, 'Lucerne', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37320, 'Lutry', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37321, 'Montreux', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37322, 'Morges', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37323, 'Nyon', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37324, 'Ollon', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37325, 'Orbe', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37326, 'Payerne', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37327, 'Prilly', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37328, 'Puidoux', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37329, 'Pully', 3319, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, 1), -(37330, 'Renens', 3319, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37331, 'Romainmotier', 3319, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37332, 'Saint Sulpice', 3319, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37333, 'Vevey', 3319, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37334, 'Yverdon', 3319, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37335, 'Vauffelin', 3320, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37336, 'Baar', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37337, 'Hunenberg', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37338, 'Menzingen', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37339, 'Neuheim', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37340, 'Oberageri', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37341, 'Risch', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37342, 'Risch-Rotkreuz', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37343, 'Steinhausen', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37344, 'Unterageri', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37345, 'Zug', 3321, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37346, 'Adliswil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37347, 'Affoltern', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37348, 'Bachenbulach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37349, 'Bassersdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37350, 'Birmensdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37351, 'Bubikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37352, 'Bulach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37353, 'Dielsdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37354, 'Dietikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37355, 'Dietlikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37356, 'Dubendorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37357, 'Durnten', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37358, 'Ebmatingen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37359, 'Egg', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37360, 'Embrach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37361, 'Fallanden', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37362, 'Fehraltdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37363, 'Geroldswil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37364, 'Gossau', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37365, 'Greifensee', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37366, 'Herrliberg', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37367, 'Hinwil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37368, 'Hombrechtikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37369, 'Horgen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37370, 'Illnau-Effretikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37371, 'Kilchberg', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37372, 'Kloten', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37373, 'Kusnacht', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37374, 'Mannedorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37375, 'Meilen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37376, 'Neftenbach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37377, 'Niederhasli', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37378, 'Nurensdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37379, 'Oberengstringen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37380, 'Oberglatt', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37381, 'Oberrieden', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37382, 'Opfikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37383, 'Pfaffikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37384, 'Rafz', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37385, 'Regensdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37386, 'Richterswil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37387, 'Rumlang', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37388, 'Ruschlikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37389, 'Ruti', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37390, 'Schlieren', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37391, 'Schwerzenbach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37392, 'Seuzach', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37393, 'Stafa', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37394, 'Thalwil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37395, 'Uetikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37396, 'Urdorf', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37397, 'Uster', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37398, 'Volketswil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37399, 'Wadenswil', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37400, 'Wald', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37401, 'Wallisellen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37402, 'Wangen-Bruttisellen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37403, 'Weiningen', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37404, 'Wetzikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37405, 'Winterthur', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37406, 'Zell', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37407, 'Zollikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37408, 'Zumikon', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37409, 'Zurich', 3322, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37410, 'Aleppo', 3323, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37411, 'Dar a', 3324, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37412, 'Abu Kamal', 3325, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37413, 'Dayr az-Zawr', 3325, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37414, 'al-Mayadin', 3325, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37415, 'Damascus', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37416, 'Darayya', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37417, 'Duma', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37418, 'Hajar Aswad', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37419, 'Harasta al-Bas', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37420, 'Jaramanah', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37421, 'Kabir-as-Sit', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37422, 'Kesweh', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37423, 'Qatana', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37424, 'Yabrud', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37425, 'al-Qutayfah', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37426, 'an-Nabk', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37427, 'at-Tall', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37428, 'az-Zabadani', 3326, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37429, ' Afrin', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37430, ' Ayn-al- Arab', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37431, 'A zaz', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37432, 'Halab', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37433, 'Manbij', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37434, 'al-Bab', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37435, 'as-Safirah', 3327, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, 1), -(37436, 'Hamah', 3328, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37437, 'Masyaf', 3328, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37438, 'Muhradah', 3328, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37439, 'Salamiyah', 3328, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37440, 'Hims', 3329, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37441, 'Homs', 3329, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37442, 'Tudmur', 3329, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37443, 'ar-Rastan', 3329, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37444, 'Idlib', 3330, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37445, 'Jisr-ash-Shughur', 3330, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37446, 'Ma arrat-an-Nu man', 3330, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37447, 'Baniyas', 3332, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37448, 'Safita', 3332, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37449, 'Tartus', 3332, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37450, 'Ra s-al- Ayn', 3333, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37451, 'al-Hasakah', 3333, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37452, 'al-Malikiyah', 3333, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37453, 'al-Qamishli', 3333, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37454, 'Jablah', 3334, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37455, 'Lattakia', 3334, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37456, 'al-Ladhiqiyah', 3334, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37457, 'al-Qunaytirah', 3335, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37458, 'ar-Raqqah', 3336, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37459, 'ath-Thawrah', 3336, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37460, 'as-Suwayda', 3337, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37461, 'Changhua City', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37462, 'Changhwa', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37463, 'Chihu', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37464, 'Erhlin', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37465, 'Hemei', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37466, 'Homei', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37467, 'Hua Tan Hsiang', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37468, 'Huatan Township', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37469, 'Lukang', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37470, 'Peitou', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37471, 'Puyen Hsiang', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37472, 'Tienchung', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37473, 'Yuanlin', 3338, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37474, 'Fenglin', 3344, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37475, 'Hualian', 3344, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37476, 'Yuli', 3344, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37477, 'Kincheng', 3347, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37478, 'Kinhsia', 3347, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37479, 'Kinhu', 3347, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37480, 'Cholan', 3348, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37481, 'Chunan', 3348, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37482, 'Houlung', 3348, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37483, 'Miaoli', 3348, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, 1), -(37484, 'Toufen', 3348, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37485, 'Tunghsiao', 3348, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37486, 'Yuanli', 3348, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37487, 'Zaociao', 3348, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37488, 'Chichi', 3349, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37489, 'Chushan', 3349, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37490, 'Nantou', 3349, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37491, 'Tsaotun', 3349, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37492, 'Makung', 3350, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37493, 'Chaochou', 3351, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37494, 'Hengchun', 3351, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37495, 'Pingtung', 3351, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37496, 'Tungkang', 3351, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37497, 'South District', 3352, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37498, 'Ta-Ya Shang', 3352, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37499, 'Kuanshan', 3355, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37500, 'Taitung', 3355, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37501, 'Chengkung', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37502, 'Chungli', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37503, 'Kuan Yin', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37504, 'Pate', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37505, 'Pingchen', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37506, 'Ta Yuan', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37507, 'Tachi', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37508, 'Taoyuan', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37509, 'Tungshih', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37510, 'Yangmei', 3356, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37511, 'Wujie', 3357, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37512, 'Dushanbe', 3360, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37513, 'Khorug', 3361, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37514, 'Murgob', 3361, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37515, 'Garm', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37516, 'Hisor', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37517, 'Kofarnihon', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37518, 'Leninskiy', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37519, 'Rogun', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37520, 'Shakhrinau', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37521, 'Tursunzoda', 3362, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37522, 'Dangara', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37523, 'Farkhor', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37524, 'Jilikul', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37525, 'Khojamaston', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37526, 'Kolhozobod', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37527, 'Kulob', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37528, 'Kumsangir', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37529, 'Mu minobod', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37530, 'Nurak', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37531, 'Pyanj', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37532, 'Qurgonteppa', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37533, 'Shaartuz', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37534, 'Sovetskiy', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37535, 'Vakhsh', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37536, 'Vose', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37537, 'Yovon', 3363, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37538, 'Adrasmon', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37539, 'Asht', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37540, 'Ayni', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37541, 'Buston', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37542, 'Chkalov', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37543, 'Chorku', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37544, 'Gafurov', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37545, 'Ganchi', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37546, 'Isfara', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37547, 'Khujand', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37548, 'Konibodom', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37549, 'Matcha', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37550, 'Nau', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37551, 'Panjakent', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37552, 'Qayroqqum', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37553, 'Shurob', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37554, 'Taboshar', 3364, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, 1), -(37555, 'Uroteppa', 3364, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37556, 'Zafarobod', 3364, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37557, 'Arusha', 3365, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37558, 'Dodoma', 3367, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37559, 'Kondoa', 3367, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37560, 'Mpwapwa', 3367, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37561, 'Iringa', 3368, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37562, 'Njombe', 3368, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37563, 'Bukoba', 3369, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37564, 'Bwanga', 3369, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37565, 'Ngara', 3369, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37566, 'Kasulu', 3370, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37567, 'Kigoma', 3370, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37568, 'Uvinza', 3370, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37569, 'Moshi', 3371, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37570, 'Same', 3371, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37571, 'Kilwa Kivinje', 3372, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37572, 'Nachingwea', 3372, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37573, 'Musoma', 3373, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37574, 'Tarime', 3373, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37575, 'Mbeya', 3374, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37576, 'Mwaya', 3374, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37577, 'Tukuyu', 3374, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37578, 'Kilosa', 3375, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37579, 'Mahenge', 3375, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37580, 'Morogoro', 3375, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37581, 'Masasi', 3376, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37582, 'Mikindani', 3376, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37583, 'Mtwara', 3376, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37584, 'Newala', 3376, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37585, 'Magu', 2239, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37586, 'Nansio', 2239, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37587, 'Sengerama', 2239, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37588, 'Bagamoyo', 3377, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37589, 'Kibaha', 3377, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37590, 'Rufiji', 3377, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37591, 'Utete', 3377, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37592, 'Mpanda', 3378, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37593, 'Sumbawanga', 3378, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37594, 'Songea', 3379, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37595, 'Tunduru', 3379, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37596, 'Kahama', 3380, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37597, 'Maswa', 3380, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37598, 'Mwadui', 3380, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37599, 'Old Shinyanga', 3380, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37600, 'Shinyanga', 3380, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37601, 'Manyoni', 3381, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37602, 'Singida', 3381, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37603, 'Bukene', 3382, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37604, 'Nzega', 3382, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37605, 'Tabora', 3382, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37606, 'Urambo', 3382, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, 1), -(37607, 'Korogwe', 3383, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37608, 'Muheza', 3383, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37609, 'Pangani', 3383, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37610, 'Tanga', 3383, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37611, 'Bangkhen', 3387, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37612, 'Bangkok', 3387, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37613, 'Phatumthanee', 3387, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37614, 'Bang Khla', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37615, 'Bang Pakong', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37616, 'Bangpakong', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37617, 'Chachoengsao', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37618, 'Phanom Sarakham', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37619, 'Plaeng Yao', 3389, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37620, 'Bamnet Narong', 3391, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37621, 'Chaiyaphum', 3391, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37622, 'Kaeng Khlo', 3391, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37623, 'Kaset Sombun', 3391, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37624, 'Phu Khieo', 3391, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37625, 'Chanthaburi', 3393, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37626, 'Khlung', 3393, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37627, 'Laem Sing', 3393, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37628, 'Soydow', 3393, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37629, 'Tha Mai', 3393, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37630, 'Chumphon', 3397, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37631, 'Lang Suan', 3397, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37632, 'Huai Mek', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37633, 'Kalasin', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37634, 'Kamalasai', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37635, 'Khao Wong', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37636, 'Kuchinarai', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37637, 'Nong Kung Si', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37638, 'Yang Talat', 3398, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37639, 'Bo Phloi', 3400, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37640, 'Kanchanaburi', 3400, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37641, 'Phanom Thuan', 3400, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37642, 'Tha Maka', 3400, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37643, 'Tha Muang', 3400, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37644, 'Ao Luk', 3402, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, 1), -(37645, 'Lampang', 3404, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37646, 'Thoen', 3404, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37647, 'Lamphun', 3405, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37648, 'Mae Tha', 3405, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37649, 'Pa Sang', 3405, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37650, 'Loei', 3406, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37651, 'Phu Kra Dung', 3406, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37652, 'Wang Saphung', 3406, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37653, 'Mukdahan', 3410, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37654, 'Chiang Klang', 3417, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37655, 'Nan', 3417, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37656, 'Bacho', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37657, 'Narathiwat', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37658, 'Rangae', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37659, 'Sungai Kolok', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37660, 'Sungai Padi', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37661, 'Tak Bai', 3418, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37662, 'Bang Bo Thong', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37663, 'Bang Kruai', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37664, 'Bang Yai', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37665, 'Nonthaburi', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37666, 'Pak Kret', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37667, 'Sainoi', 3421, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37668, 'Nong Chik', 3423, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37669, 'Pattani', 3423, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37670, 'Sai Buri', 3423, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37671, 'Yaring', 3423, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37672, 'Phangnga', 3424, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37673, 'Phatthalung', 3425, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37674, 'Chiang Kham', 3426, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37675, 'Dok Kham Tai', 3426, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37676, 'Phayao', 3426, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37677, 'Pong', 3426, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37678, 'Chon Daen', 3427, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37679, 'Lom Sak', 3427, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37680, 'Nong Phai', 3427, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37681, 'Phetchabun', 3427, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37682, 'Wichian Buri', 3427, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, 1), -(37683, 'Ban Laem', 3428, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37684, 'Chaam', 3428, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37685, 'Khao Yoi', 3428, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37686, 'Phetchaburi', 3428, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37687, 'Tha Yang', 3428, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37688, 'Bang Mun Nak', 3429, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37689, 'Phichit', 3429, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37690, 'Taphan Hin', 3429, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37691, 'Thap Khlo', 3429, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37692, 'Bang Krathum', 3430, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37693, 'Bang Rakam', 3430, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37694, 'Nakhon Thai', 3430, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37695, 'Phitsanulok', 3430, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37696, 'Den Chai', 3432, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37697, 'Long', 3432, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37698, 'Phrae', 3432, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37699, 'Rong Kwang', 3432, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37700, 'Kathu', 3433, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37701, 'Phuket', 3433, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37702, 'Ranong', 3436, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37703, 'Ban Pong', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37704, 'Bang Phae', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37705, 'Chom Bung', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37706, 'Damnoen Saduak', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37707, 'Photharam', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37708, 'Ratchaburi', 3437, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37709, 'Ban Chang', 3438, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37710, 'Klaeng', 3438, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37711, 'Rayong', 3438, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37712, 'Ban Mo', 3445, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37713, 'Kaeng Khoi', 3445, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37714, 'Nong Khae', 3445, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37715, 'Phra Phutthabat', 3445, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37716, 'Saraburi', 3445, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37717, 'Satun', 3446, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37718, 'Hat Yai', 3449, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37719, 'Ranot', 3449, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37720, 'Sadao', 3449, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37721, 'Singha Nakhon', 3449, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37722, 'Songkhla', 3449, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37723, 'Khiri Mat', 3450, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, 1), -(37724, 'Sawankhalok', 3450, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37725, 'Si Satchanalai', 3450, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37726, 'Sukhothai', 3450, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37727, 'Phasat', 3453, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37728, 'Surin', 3453, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37729, 'Ban Tak', 3454, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37730, 'Mae Ramat', 3454, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37731, 'Mae Sot', 3454, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37732, 'Tak', 3454, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37733, 'Huai Yot', 3455, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37734, 'Kantang', 3455, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37735, 'Trang', 3455, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37736, 'Bo Rai', 3456, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37737, 'Trat', 3456, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37738, 'Laplae', 3460, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37739, 'Uttaradit', 3460, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37740, 'Betong', 3461, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37741, 'Yala', 3461, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37742, 'Yasothon', 3462, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37743, 'Guerin Kouka', 649, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37744, 'Sokode', 649, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37745, 'Sotouboua', 649, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37746, 'Tchamba', 649, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37747, 'Bafilo', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37748, 'Bassar', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37749, 'Kande', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37750, 'Kara', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37751, 'Kpagouda', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37752, 'Niamtougou', 3463, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37753, 'Agbelouve', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37754, 'Aneho', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37755, 'Lome', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37756, 'Tabligbo', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37757, 'Tsevie', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37758, 'Vogan', 3464, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37759, 'Amlame', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37760, 'Anie', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37761, 'Atakpame', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37762, 'Badou', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37763, 'Blitta', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37764, 'Kouve', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37765, 'Kpalime', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37766, 'Kpessi', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37767, 'Notse', 800, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37768, 'Dapaong', 846, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37769, 'Tandjouare', 846, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, 1), -(37770, 'Atafu', 3465, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37771, 'Fakaofo', 3466, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37772, 'Nukunonu', 3467, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37773, 'Ohonua', 3468, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37774, 'Pangai', 3469, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37775, 'Hihifo', 3470, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37776, 'Haveloloto', 3471, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37777, 'Mu a', 3471, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37778, 'Nuku alofa', 3471, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37779, 'Tofoa-Koloua', 3471, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37780, 'Vaini', 3471, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37781, 'Arima', 3473, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37782, 'Arouca', 3473, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37783, 'Tacarigua', 3473, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37784, 'Tunapuna', 3473, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37785, 'Carapichaima', 3474, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37786, 'Claxton Bay', 3474, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37787, 'Chaguanas', 3475, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37788, 'Couva', 3476, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37789, 'Tabaquite', 3476, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37790, 'Siparia', 3485, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37791, 'Aryanah', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37792, 'Bordj Aalouine', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37793, 'Burj-al- Amri', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37794, 'La Soukra', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37795, 'Qal at-al-Andalus', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37796, 'Sidi Thabit', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37797, 'Taburbah', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37798, 'Wadi al-Layl', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37799, 'ad-Dandan', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37800, 'al-Battan', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37801, 'al-Murnaqiyah', 3487, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, 1), -(37802, 'at-Tadaman Dawwar Hishar', 3487, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37803, 'Bajah', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37804, 'Majaz-al-Bab', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37805, 'Nafzah', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37806, 'Quballat', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37807, 'Tabursuq', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37808, 'Tastur', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37809, 'Zahrat Madina', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37810, 'al-Ma qulah', 3488, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37811, ' Awsajah', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37812, 'Binzart', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37813, 'Ghar-al-Milh', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37814, 'Manzil Abd-ar-Rahman', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37815, 'Manzil Bu Ruqaybah', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37816, 'Manzil Jamil', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37817, 'Matir', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37818, 'Rafraf', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37819, 'Ras-al-Jabal', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37820, 'Sajanan', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37821, 'Tinjah', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37822, 'al- Aliyah', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37823, 'al-Matlin', 3490, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37824, ' Ayn Darahim', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37825, 'Bani Matir', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37826, 'Bu Salim', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37827, 'Firnanah', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37828, 'Ghar-ad-Dima ', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37829, 'Jundubah', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37830, 'Tabarqah', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37831, 'Wadi Maliz', 3495, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37832, 'Bani Khaddash', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37833, 'Bin Qirdan', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37834, 'Jarbah Ajim', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37835, 'Jarbah Hawmat-as-Suq', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37836, 'Jarbah Midun', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37837, 'Jarjis', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37838, 'Madaniyin', 3496, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37839, 'Manubah', 3497, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37840, 'Monastir', 3498, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37841, 'Bani Hiyar', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37842, 'Bani Khallad', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37843, 'Bu Urqub', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37844, 'Dar Alush', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37845, 'Dar Sha ban', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37846, 'Hammam-al-Aghzaz', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37847, 'Manzil Bu Zalafah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37848, 'Manzil Hurr', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37849, 'Manzil Tamim', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37850, 'Nabul', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37851, 'Qalibiyah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37852, 'Qurbah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37853, 'Qurbus', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37854, 'Qurunbaliyah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37855, 'Sulayman', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37856, 'Taklisah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37857, 'Tazirkah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37858, 'Zawiyat-al-Jadidi', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37859, 'al-Hammamat', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37860, 'al-Huwariyah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37861, 'al-Ma murah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37862, 'al-Middah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37863, 'as-Sama ah', 3499, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37864, 'Ghannush', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37865, 'Marath', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37866, 'Matmatat-al-Jadidah', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37867, 'Matmatat-al-Qadimah', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37868, 'Qabis', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37869, 'Sanini an-Nahal', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37870, 'Wadhraf', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37871, 'al-Hammah', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37872, 'al-Matwiyah', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37873, 'az-Zarat', 3500, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37874, 'Qafsah', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37875, 'Umm-al- Arais', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37876, 'al-Madilah', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37877, 'al-Mitlawi', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37878, 'al-Qatar', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37879, 'ar-Rudayyif', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37880, 'as-Sanad', 3501, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, 1), -(37881, 'Duz', 3502, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37882, 'Jamnah', 3502, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37883, 'Qibili', 3502, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37884, 'Suq-al-Ahad', 3502, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37885, ' Aqarib', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37886, 'Bi r Ali Bin Khalifah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37887, 'Jabinyanah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37888, 'Manzil Shakir', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37889, 'Qarmadah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37890, 'Qarqannah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37891, 'Safaqis', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37892, 'Saqiyat-ad-Dair', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37893, 'Saqiyat-az-Zayt', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37894, 'Sfax', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37895, 'Tinah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37896, 'al- Ayn', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37897, 'al-Hanashah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37898, 'al-Mahras', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37899, 'as-Sukhayrah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37900, 'ash-Shayhiyah', 3503, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37901, 'Barqu', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37902, 'Bu Aradah', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(37903, 'Bu Ruwis', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37904, 'Kasra', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37905, 'Makthar', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37906, 'Qa afur', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37907, 'Silyanah', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37908, 'al- Arusah', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37909, 'al-Karib', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37910, 'ar-Rawhiyah', 3506, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37911, 'Akkudah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37912, 'Bu Fishah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37913, 'Hammam Susah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37914, 'Harqalah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37915, 'Masakin', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37916, 'Qusaybat-ath-Thurayat', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37917, 'Sidi Bu Ali', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37918, 'Sidi al-Hani', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37919, 'Susah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37920, 'Zawiyat Susah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37921, 'al-Masa din', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37922, 'al-Qal at-al-Kabirah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37923, 'al-Qal at-as-Saghirah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37924, 'an-Nafidah', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37925, 'az-Zuhur', 3507, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37926, 'Bi r-al-Ahmar', 3508, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37927, 'Dhahibah', 3508, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37928, 'Ghumrassin', 3508, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37929, 'Rimadah', 3508, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37930, 'Tatawin', 3508, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37931, 'Daqash', 3509, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37932, 'Hammat-al-Jarid', 3509, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37933, 'Naftah', 3509, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37934, 'Tamaghzah', 3509, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37935, 'Tawzar', 3509, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37936, 'Bardaw', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37937, 'Ben Arous', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37938, 'Carthage', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37939, 'Halq-al-Wadi', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37940, 'Megrine', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37941, 'Qartaj', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37942, 'Sidi Bu Sa id', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37943, 'Tunis', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37944, 'al-Marsa', 3510, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37945, 'Bi r Mashariqah', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37946, 'Jabal-al-Wust', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37947, 'Zaghwan', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37948, 'al-Fahs', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37949, 'an-Nazur', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37950, 'az-Zaribah', 3511, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37951, 'Manzil Salim', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37952, 'Nibbar', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37953, 'Qal at-as-Sanan', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37954, 'Saqiyat Sidi Yussuf', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37955, 'Tajarwin', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37956, 'ad-Dahmani', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37957, 'al-Jarissah', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37958, 'al-Kaf', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37959, 'al-Qal at-al-Khasba ', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37960, 'al-Qusur', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37961, 'as-Sars', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37962, 'at-Tawiraf', 3512, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37963, 'Awlad ash-Shamakh', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37964, 'Bumirdas', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37965, 'Habirah', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37966, 'Karkar', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37967, 'Mallulash', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37968, 'Qusur-as-Saf', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37969, 'Rajish', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37970, 'Shurban', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37971, 'Sidi Ulwan', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37972, 'al-Baradi ah', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37973, 'al-Jamm', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37974, 'al-Mahdiyah', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37975, 'as-Sawasi', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37976, 'ash-Shabbah', 3513, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, 1), -(37977, ' Amirat-al-Fahul', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37978, ' Amirat-al-Hajjaj', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37979, ' Amirat-at-Tawazarah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37980, 'Banan Budar', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37981, 'Banblat wal-Manarah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37982, 'Bani Hassan', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37983, 'Bu Hajjar', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37984, 'Ghanadah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37985, 'Jammal', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37986, 'Khunays', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37987, 'Lamtah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37988, 'Manzil Farsi', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37989, 'Manzil Hayah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37990, 'Manzil Kamil', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37991, 'Manzil Nur', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37992, 'Qasr Hallal', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37993, 'Qusaybat-al-Madyuni', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37994, 'Sahilin Ma atmar', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37995, 'Sayyadah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37996, 'Sidi Amara', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37997, 'Sidi Bin Nur', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37998, 'Tabulbah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(37999, 'Tuzah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38000, 'Zaramidin', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38001, 'Zawiyat Quntash', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38002, 'al-Baqalitah', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38003, 'al-Masdur', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38004, 'al-Muknin', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38005, 'al-Munastir', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38006, 'al-Wardanin', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38007, 'ash-Sharahil', 3514, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38008, 'Firyanah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38009, 'Fussanah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38010, 'Haydrah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38011, 'Jadliyan', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38012, 'Majal Bal Abbas', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38013, 'Sabibah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38014, 'Subaytilah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38015, 'Talabat', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38016, 'Talah', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38017, 'al-Qasrayn', 3515, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38018, ' Ayn Jalulah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38019, 'Buhajlah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38020, 'Haffuz', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38021, 'Hajib-al- Ayun', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38022, 'Manzil Mahidi', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38023, 'Nasr Allah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38024, 'al- Ala', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38025, 'al-Qayrawan', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38026, 'al-Waslatiyah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38027, 'as-Subaykhah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38028, 'ash-Shabikah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38029, 'ash-Sharardah', 3516, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38030, 'Adana', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38031, 'Aladag', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38032, 'Ceyhan', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38033, 'Feke', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38034, 'Imamoglu', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38035, 'Karaisali', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38036, 'Karatas', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38037, 'Kozan', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38038, 'Pozanti', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38039, 'Saimbeyli', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38040, 'Tufanbeyli', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38041, 'Yumurtalik', 3517, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38042, 'Adiyaman', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38043, 'Besni', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38044, 'Celikhan', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38045, 'Gerger', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38046, 'Golbasi', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38047, 'Kahta', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38048, 'Samsat', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38049, 'Sincik', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38050, 'Tut', 3518, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38051, 'Afyonkarahisar', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38052, 'Basmakci', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38053, 'Bayat', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38054, 'Bolvadin', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38055, 'Cay', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38056, 'Dazkiri', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38057, 'Dinar', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38058, 'Emirdag', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38059, 'Evciler', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38060, 'Hocalar', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38061, 'Ihsaniye', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38062, 'Iscehisar', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38063, 'Kiziloren', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38064, 'Sandikli', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38065, 'Sincanli', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38066, 'Suhut', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38067, 'Sultandagi', 3519, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38068, 'Diyadin', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38069, 'Dogubeyazit', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38070, 'Eleskirt', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38071, 'Hamur', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38072, 'Karakose', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38073, 'Patnos', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38074, 'Taslicay', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38075, 'Tutak', 3520, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38076, 'Agacoren', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38077, 'Aksaray', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38078, 'Eskil', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38079, 'Gulagac', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38080, 'Guzelyurt', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38081, 'Ortakoy', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38082, 'Sariyahsi', 3521, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, 1), -(38083, 'Amasya', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38084, 'Goynucek', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38085, 'Gumushacikoy', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38086, 'Hamamozu', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38087, 'Merzifon', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38088, 'Suluova', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38089, 'Tasova', 3522, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38090, 'Akyurt', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38091, 'Ankara', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38092, 'Ayas', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38093, 'Beypazari', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38094, 'Camlidere', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38095, 'Cubuk', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38096, 'Elmadag', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38097, 'Evren', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38098, 'Gudul', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38099, 'Haymana', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38100, 'Kalecik', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38101, 'Kizilcahamam', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38102, 'Nallihan', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38103, 'Polatli', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38104, 'Sereflikochisar', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38105, 'Yenisehir', 3523, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38106, 'Akseki', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38107, 'Alanya', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38108, 'Antalya', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38109, 'Elmali', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38110, 'Finike', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38111, 'Gazipasa', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38112, 'Gundogmus', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38113, 'Ibradi', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38114, 'Kale', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38115, 'Kemer', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38116, 'Konya', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38117, 'Korkuteli', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38118, 'Kumluca', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38119, 'Manavgat', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38120, 'Serik', 3524, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38121, 'Ardahan', 3525, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38122, 'Damal', 3525, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38123, 'Gole', 3525, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38124, 'Hanak', 3525, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38125, 'Posof', 3525, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38126, 'Ardanuc', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38127, 'Arhavi', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38128, 'Artvin', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38129, 'Borcka', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38130, 'Hopa', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38131, 'Murgul', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38132, 'Savsat', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38133, 'Yusufeli', 3526, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38134, 'Aydin', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38135, 'Bozdogan', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38136, 'Buharkent', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38137, 'Cine', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38138, 'Didim', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38139, 'Germencik', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38140, 'Incirliova', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38141, 'Karacasu', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38142, 'Karpuzlu', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38143, 'Kocarli', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38144, 'Kosk', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38145, 'Kusadasi', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38146, 'Kuyucak', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38147, 'Nazilli', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38148, 'Soke', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38149, 'Sultanhisar', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38150, 'Yenipazar', 3527, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38151, 'Ayvalik', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38152, 'Balikesir', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38153, 'Balya', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38154, 'Bandirma', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38155, 'Bigadic', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38156, 'Burhaniye', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38157, 'Dursunbey', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38158, 'Edremit', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38159, 'Erdek', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38160, 'Gomec', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38161, 'Gonen', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38162, 'Havran', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38163, 'Ivrindi', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38164, 'Kepsut', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38165, 'Manyas', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38166, 'Marmara', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38167, 'Sakarya', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38168, 'Savastepe', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38169, 'Sindirgi', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38170, 'Susurluk', 3528, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38171, 'Amasra', 3529, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38172, 'Bartin', 3529, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38173, 'Kurucasile', 3529, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38174, 'Ulus', 3529, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38175, 'Besiri', 3530, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38176, 'Gercus', 3530, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38177, 'Hasankeyf', 3530, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38178, 'Kozluk', 3530, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38179, 'Sason', 3530, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38180, 'Aydintepe', 3531, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38181, 'Bayburt', 3531, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38182, 'Demirozu', 3531, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, 1), -(38183, 'Bilecik', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38184, 'Bozuyuk', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38185, 'Golpazari', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38186, 'Inhisar', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38187, 'Osmaneli', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38188, 'Pazaryeri', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38189, 'Sogut', 3532, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38190, 'Adakli', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38191, 'Bingol', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38192, 'Genc', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38193, 'Karliova', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38194, 'Kigi', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38195, 'Solhan', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38196, 'Yayladere', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38197, 'Yedisu', 3533, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38198, 'Adilcevaz', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38199, 'Ahlat', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38200, 'Bitlis', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38201, 'Guroymak', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38202, 'Hizan', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38203, 'Mutki', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38204, 'Tatvan', 3534, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38205, 'Akcakoca', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38206, 'Bolu', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38207, 'Dortdivan', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38208, 'Gerede', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38209, 'Goynuk', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38210, 'Kibriscik', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38211, 'Mudurnu', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38212, 'Seben', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38213, 'Yenicaga', 3535, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38214, 'Aglasun', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38215, 'Altinyayla', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38216, 'Bucak', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38217, 'Burdur', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38218, 'Golhisar', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38219, 'Karamanli', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38220, 'Tefenni', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38221, 'Yesilova', 3536, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38222, 'Bursa', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38223, 'Buyukorhan', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38224, 'Gemlik', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38225, 'Gursu', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38226, 'Harmancik', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38227, 'Inegol', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38228, 'Iznik', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38229, 'Karacabey', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38230, 'Keles', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38231, 'Kestel', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38232, 'Mudanya', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38233, 'Mustafakemalpasa', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38234, 'Orhaneli', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38235, 'Orhangazi', 3537, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38236, 'Ayvacik', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38237, 'Bayramic', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38238, 'Biga', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38239, 'Bozcaada', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38240, 'Can', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38241, 'Canakkale', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38242, 'Eceabat', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38243, 'Ezine', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38244, 'Gelibolu', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38245, 'Gokceada', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38246, 'Lapseki', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38247, 'Yenice', 3538, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38248, 'Atkaracalar', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38249, 'Bayramoren', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38250, 'Cankiri', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38251, 'Cerkes', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38252, 'Eldivan', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38253, 'Ilgaz', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38254, 'Kizilirmak', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38255, 'Korgun', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38256, 'Kursunlu', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38257, 'Orta', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38258, 'Sabanozu', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38259, 'Yaprakli', 3539, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38260, 'Alaca', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38261, 'Corum', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38262, 'Dodurga', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38263, 'Iskilip', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38264, 'Kargi', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38265, 'Mecitozu', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38266, 'Oguzlar', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38267, 'Osmancik', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38268, 'Sungurlu', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38269, 'Ugurludag', 3540, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38270, 'Acipayam', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38271, 'Akkoy', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38272, 'Baklan', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38273, 'Bekilli', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38274, 'Bozkurt', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38275, 'Buldan', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38276, 'Cardak', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38277, 'Civril', 3541, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, 1), -(38278, 'Denizli', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38279, 'Guney', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38280, 'Honaz', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38281, 'Saraykoy', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38282, 'Serinhisar', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38283, 'Tavas', 3541, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38284, 'Bismil', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38285, 'Cermik', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38286, 'Cinar', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38287, 'Cungus', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38288, 'Dicle', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38289, 'Diyarbakir', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38290, 'Egil', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38291, 'Ergani', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38292, 'Hani', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38293, 'Kocakoy', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38294, 'Kulp', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38295, 'Lice', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38296, 'Silvan', 3542, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38297, 'Cumayeri', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38298, 'Duzce', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38299, 'Golyaka', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38300, 'Gumusova', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38301, 'Kaynasli', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38302, 'Yigilca', 3543, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38303, 'Edirne', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38304, 'Enez', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38305, 'Havsa', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38306, 'Ipsala', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38307, 'Kesan', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38308, 'Lalapasa', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38309, 'Meric', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38310, 'Suleoglu', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38311, 'Uzunkopru', 3544, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38312, 'Agin', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38313, 'Alacakaya', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38314, 'Aricak', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38315, 'Baskil', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38316, 'Elazig', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38317, 'Karakocan', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38318, 'Keban', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38319, 'Kovancilar', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38320, 'Maden', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38321, 'Palu', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38322, 'Sivrice', 3545, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38323, 'Erzincan', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38324, 'Ilic', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38325, 'Kemah', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38326, 'Kemaliye', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38327, 'Otlukbeli', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38328, 'Refahiye', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38329, 'Tercan', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38330, 'Uzumlu', 3546, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38331, 'Askale', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38332, 'Erzurum', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38333, 'Hinis', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38334, 'Horasan', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38335, 'Ilica', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38336, 'Ispir', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38337, 'Karacoban', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38338, 'Karayazi', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38339, 'Koprukoy', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38340, 'Narman', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38341, 'Oltu', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38342, 'Olur', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38343, 'Pasinler', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38344, 'Pazaryolu', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38345, 'Senkaya', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38346, 'Tekman', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38347, 'Tortum', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38348, 'Uzundere', 3547, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38349, 'Alpu', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38350, 'Beylikova', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38351, 'Cifteler', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38352, 'Eskisehir', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38353, 'Gunyuzu', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38354, 'Han', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38355, 'Inonu', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38356, 'Mahmudiye', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38357, 'Mihalgazi', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38358, 'Mihaliccik', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38359, 'Saricakaya', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38360, 'Seyitgazi', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38361, 'Sivrihisar', 3548, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38362, 'Araban', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38363, 'Gaziantep', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38364, 'Islahiye', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38365, 'Karkamis', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38366, 'Nizip', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38367, 'Nurdagi', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38368, 'Oguzeli', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38369, 'Sehitkamil', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38370, 'Yavuzeli', 3549, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38371, 'Aluca', 3550, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38372, 'Bulancak', 3550, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38373, 'Dereli', 3550, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38374, 'Dogankent', 3550, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, 1), -(38375, 'Espiye', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38376, 'Eynesil', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38377, 'Giresun', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38378, 'Gorele', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38379, 'Guce', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38380, 'Kesap', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38381, 'Piraziz', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38382, 'Sebinkarahisar', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38383, 'Tirebolu', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38384, 'Yaglidere', 3550, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38385, 'Gumushane', 3551, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38386, 'Kelkit', 3551, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38387, 'Kurtun', 3551, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38388, 'Siran', 3551, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38389, 'Torul', 3551, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38390, 'Cukurca', 3552, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38391, 'Hakkari', 3552, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38392, 'Semdinli', 3552, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38393, 'Yuksekova', 3552, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38394, 'Altinozu', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38395, 'Antakya', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38396, 'Dortyol', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38397, 'Erzin', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38398, 'Hassa', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38399, 'Iskenderun', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38400, 'Kirikhan', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38401, 'Kumlu', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38402, 'Reyhanli', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38403, 'Samandag', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38404, 'Yayladagi', 3553, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38405, 'Anamur', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38406, 'Aydincik', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38407, 'Bozyazi', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38408, 'Erdemli', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38409, 'Gulnar', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38410, 'Mersin', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38411, 'Mut', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38412, 'Silifke', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38413, 'Tarsus', 3554, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38414, 'Aralik', 3555, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38415, 'Igdir', 3555, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38416, 'Karakoyunlu', 3555, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38417, 'Tuzluca', 3555, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38418, 'Atabey', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38419, 'Egirdir', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38420, 'Gelendost', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38421, 'Isparta', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38422, 'Keciborlu', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38423, 'Sarkikaraagac', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38424, 'Senirkent', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38425, 'Sutculer', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38426, 'Uluborlu', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38427, 'Yalvac', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38428, 'Yenisarbademli', 3556, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38429, 'Buyukcekmece', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38430, 'Catalca', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38431, 'Eminonu', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38432, 'Esenler', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38433, 'Istanbul', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38434, 'Kadıkoy', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38435, 'Sile', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38436, 'Silivri', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38437, 'Sultanbeyli', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38438, 'Topkapı', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38439, 'Umraniye', 3557, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38440, 'Aliaga', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38441, 'Alsancak', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38442, 'Bayindir', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38443, 'Bergama', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38444, 'Beyagac', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38445, 'Bornova', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38446, 'Cesme', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38447, 'Digor', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38448, 'Dikili', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38449, 'Foca', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38450, 'Izmir', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38451, 'Karaburun', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38452, 'Kemalpasa', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38453, 'Kinik', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38454, 'Kiraz', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38455, 'Menderes', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38456, 'Menemen', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38457, 'Merkezi', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38458, 'Mersinli', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38459, 'Odemis', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38460, 'Seferihisar', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38461, 'Selcuk', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38462, 'Torbali', 3558, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38463, 'Afsin', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38464, 'Andirin', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38465, 'Caglayancerit', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38466, 'Ekinozu', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38467, 'Elbistan', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38468, 'Goksun', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38469, 'Kahramanmaras', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38470, 'Nurhak', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38471, 'Pazarcik', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38472, 'Turkoglu', 3559, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, 1), -(38473, 'Eflani', 3560, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38474, 'Eskipazar', 3560, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38475, 'Karabuk', 3560, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38476, 'Ovacik', 3560, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38477, 'Safranbolu', 3560, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38478, 'Ayranci', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38479, 'Basyayla', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38480, 'Ermenek', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38481, 'Karaman', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38482, 'Kazimkarabekir', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38483, 'Sariveliler', 3561, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38484, 'Akyaka', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38485, 'Arpacay', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38486, 'Kagizman', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38487, 'Sarikamis', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38488, 'Selim', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38489, 'Susuz', 3562, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38490, 'Karsiyaka', 3563, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38491, 'Abana', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38492, 'Agli', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38493, 'Arac', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38494, 'Azdavay', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38495, 'Daday', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38496, 'Devrekani', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38497, 'Doganyurt', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38498, 'Hanonu', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38499, 'Ihsangazi', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38500, 'Inebolu', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38501, 'Kastamonu', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38502, 'Pinarbasi', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38503, 'Senpazar', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38504, 'Seydiler', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38505, 'Taskopru', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38506, 'Tosya', 3564, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38507, 'Akkisla', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38508, 'Bunyan', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38509, 'Develi', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38510, 'Felahiye', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38511, 'Hacilar', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38512, 'Incesu', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38513, 'Kayseri', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38514, 'Ozvatan', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38515, 'Sarioglan', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38516, 'Sariz', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38517, 'Tomarza', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38518, 'Yahyali', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38519, 'Yesilhisar', 3565, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38520, 'Elbeyli', 3566, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38521, 'Kilis', 3566, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38522, 'Musabeyli', 3566, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38523, 'Polateli', 3566, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38524, 'Bahsili', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38525, 'Baliseyh', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38526, 'Delice', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38527, 'Karakecili', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(38528, 'Keskin', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38529, 'Kirikkale', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38530, 'Sulakyurt', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38531, 'Yahsihan', 3567, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38532, 'Babaeski', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38533, 'Demirkoy', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38534, 'Kirklareli', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38535, 'Kofcaz', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38536, 'Kumkoy', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38537, 'Luleburgaz', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38538, 'Pehlivankoy', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38539, 'Pinarhisar', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38540, 'Vize', 3568, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38541, 'Akcakent', 3569, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38542, 'Akpinar', 3569, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38543, 'Boztepe', 3569, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38544, 'Kirsehir', 3569, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38545, 'Mucur', 3569, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38546, 'Cayırova', 3570, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38547, 'Derince', 3570, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38548, 'Dilovası', 3570, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38549, 'Gebze', 3570, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38550, 'Golcuk', 3570, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, 1), -(38551, 'Izmit', 3570, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38552, 'Kandira', 3570, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38553, 'Karamursel', 3570, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38554, 'Kocaeli', 3570, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38555, 'Korfez', 3570, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38556, 'Ahirli', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38557, 'Akoren', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38558, 'Aksehir', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38559, 'Altinekin', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38560, 'Beysehir', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38561, 'Bozkir', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38562, 'Cihanbeyli', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38563, 'Cumra', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38564, 'Derebucak', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38565, 'Doganhisar', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38566, 'Emirgazi', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38567, 'Eregli', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38568, 'Guneysinir', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38569, 'Hadim', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38570, 'Halkapinar', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38571, 'Huyuk', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38572, 'Ilgin', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38573, 'Kadinhani', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38574, 'Karapinar', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38575, 'Sarayonu', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38576, 'Seydisehir', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38577, 'Taskent', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38578, 'Tuzlukcu', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38579, 'Yalihuyuk', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38580, 'Yunak', 3571, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38581, 'Altinas', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38582, 'Aslanapa', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38583, 'Domanic', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38584, 'Dumlupinar', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38585, 'Emet', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38586, 'Gediz', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38587, 'Kutahya', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38588, 'Pazarlar', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38589, 'Saphane', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38590, 'Simav', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38591, 'Tavsanli', 3572, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38592, 'Lefkosa', 3573, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38593, 'Akcadag', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38594, 'Arapkir', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38595, 'Arguvan', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38596, 'Battalgazi', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38597, 'Darende', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38598, 'Dogansehir', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38599, 'Doganyol', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38600, 'Hekimhan', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38601, 'Kuluncak', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38602, 'Malatya', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38603, 'Poturge', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38604, 'Yazihan', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38605, 'Yesilyurt', 3574, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38606, 'Ahmetli', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38607, 'Akhisar', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38608, 'Alasehir', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38609, 'Demirci', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38610, 'Golmarmara', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38611, 'Gordes', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38612, 'Kirkagac', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38613, 'Koprubasi', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38614, 'Manisa', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38615, 'Salihli', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38616, 'Sarigol', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38617, 'Saruhanli', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38618, 'Selendi', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38619, 'Turgutlu', 3575, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38620, 'Dargecit', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38621, 'Derik', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38622, 'Kiziltepe', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38623, 'Mardin', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38624, 'Mazidagi', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38625, 'Midyat', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38626, 'Nusaybin', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38627, 'Omerli', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38628, 'Savur', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38629, 'Yesilli', 3576, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38630, 'Bodrum', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38631, 'Dalaman', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38632, 'Datca', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38633, 'Fethiye', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38634, 'Kavaklidere', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38635, 'Koycegiz', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38636, 'Marmaris', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38637, 'Mugla', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38638, 'Ortaca', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38639, 'Yatagan', 3577, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38640, 'Bulanik', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38641, 'Haskoy', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38642, 'Korkut', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38643, 'Malazgirt', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38644, 'Mus', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38645, 'Varto', 3578, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38646, 'Acigol', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38647, 'Avanos', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38648, 'Derinkuyu', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38649, 'Gulsehir', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38650, 'Hacibektas', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38651, 'Kozakli', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38652, 'Nevsehir', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38653, 'Urgup', 3579, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, 1), -(38654, 'Altunhisar', 3580, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38655, 'Bor', 3580, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38656, 'Nigde', 3580, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38657, 'Ulukisla', 3580, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38658, 'Akkus', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38659, 'Aybasti', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38660, 'Fatsa', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38661, 'Golkoy', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38662, 'Gulyali', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38663, 'Gurgentepe', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38664, 'Ikizce', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38665, 'Kabaduz', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38666, 'Kabatas', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38667, 'Korgan', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38668, 'Kumru', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38669, 'Mesudiye', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38670, 'Ordu', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38671, 'Persembe', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38672, 'Ulubey', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38673, 'Unye', 3581, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38674, 'Bahce', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38675, 'Duzici', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38676, 'Hasanbeyli', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38677, 'Kadirli', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38678, 'Osmaniye', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38679, 'Sumbas', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38680, 'Toprakkale', 3582, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38681, 'Ardesen', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38682, 'Cayeli', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38683, 'Derepazan', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38684, 'Findikli', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38685, 'Guneysu', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38686, 'Hemsin', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38687, 'Ikizdere', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38688, 'Iyidere', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38689, 'Kalkandere', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38690, 'Pazar', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38691, 'Rize', 3583, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38692, 'Adapazari', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38693, 'Akyazi', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38694, 'Ferizli', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38695, 'Geyve', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38696, 'Hendek', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38697, 'Karapurcek', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38698, 'Karasu', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38699, 'Kaynarca', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38700, 'Kocaali', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38701, 'Pamukova', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38702, 'Sapanca', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38703, 'Sogutlu', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38704, 'Tarakli', 3584, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38705, 'Akcakale', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38706, 'Alacam', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38707, 'Asarcik', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38708, 'Bafra', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38709, 'Carsamba', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38710, 'Havza', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38711, 'Kavak', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38712, 'Ladik', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38713, 'Mayis 19', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38714, 'Salipazan', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38715, 'Samsun', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38716, 'Tekkekoy', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38717, 'Terme', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38718, 'Vezirkopru', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38719, 'Yakakent', 3585, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38720, 'Birecik', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38721, 'Bozova', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38722, 'Ceylanpinar', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38723, 'Halfeti', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38724, 'Harran', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38725, 'Hilvan', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38726, 'Sanliurfa', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38727, 'Siverek', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38728, 'Suruc', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38729, 'Urfa', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38730, 'Viransehir', 3586, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38731, 'Aydinlar', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38732, 'Baykan', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38733, 'Eruh', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38734, 'Kurtalan', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38735, 'Pervari', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38736, 'Siirt', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38737, 'Sirvan', 3587, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38738, 'Ayancik', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38739, 'Boyabat', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38740, 'Dikmen', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38741, 'Duragan', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38742, 'Erfelek', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38743, 'Gerze', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38744, 'Sarayduzu', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38745, 'Sinop', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38746, 'Turkeli', 3588, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, 1), -(38747, 'Beytussebap', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38748, 'Cizre', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38749, 'Guclukonak', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38750, 'Idil', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38751, 'Silopi', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38752, 'Sirnak', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38753, 'Uludere', 3589, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38754, 'Akincilar', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38755, 'Divrigi', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38756, 'Dogansar', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38757, 'Gemerek', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38758, 'Golova', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38759, 'Hafik', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38760, 'Imranli', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38761, 'Kangal', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38762, 'Koyulhisar', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38763, 'Sarkisla', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38764, 'Sivas', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38765, 'Susehri', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38766, 'Ulas', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38767, 'Yildizeli', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38768, 'Zara', 3590, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38769, 'Cerkezkoy', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38770, 'Corlu', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38771, 'Hayrabolu', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38772, 'Malkara', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38773, 'Marmaraereglisi', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38774, 'Muratli', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38775, 'Saray', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38776, 'Sarkoy', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38777, 'Tekirdag', 3591, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38778, 'Almus', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38779, 'Artova', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38780, 'Basciftlik', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38781, 'Erbaa', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38782, 'Niksar', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38783, 'Resadiye', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38784, 'Sulusaray', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38785, 'Tokat', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38786, 'Turhal', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38787, 'Zile', 3592, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38788, 'Akcaabat', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38789, 'Arakli', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38790, 'Arsin', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38791, 'Besikduzu', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38792, 'Caykara', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38793, 'Dernekpazari', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38794, 'Duzkoy', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38795, 'Hayrat', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38796, 'Macka', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38797, 'Of', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38798, 'Salpazari', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38799, 'Surmene', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38800, 'Tonya', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38801, 'Trabzon', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38802, 'Vakfikebir', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38803, 'Yomra', 3593, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38804, 'Hozat', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38805, 'Mazgirt', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38806, 'Nazimiye', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38807, 'Pertek', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38808, 'Pulumur', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38809, 'Tunceli', 3594, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38810, 'Banaz', 3595, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38811, 'Esme', 3595, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38812, 'Karahalli', 3595, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38813, 'Sivasli', 3595, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38814, 'Usak', 3595, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38815, 'Bahcesaray', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38816, 'Baskale', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38817, 'Caldiran', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38818, 'Ercis', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38819, 'Gevas', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38820, 'Gurpinar', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38821, 'Muradiye', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38822, 'Ozalp', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38823, 'Van', 3596, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38824, 'Altinova', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38825, 'Armutlu', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38826, 'Ciftlikkoy', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38827, 'Cinarcik', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38828, 'Termal', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38829, 'Yalova', 3597, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38830, 'Akdagmadeni', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38831, 'Bogaziliyan', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38832, 'Candir', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38833, 'Cayiralan', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38834, 'Cekerek', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38835, 'Kadisehri', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38836, 'Saraykent', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38837, 'Sarikaya', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38838, 'Sefaatli', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38839, 'Sorgun', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38840, 'Yenifakili', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38841, 'Yerkoy', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38842, 'Yozgat', 3598, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, 1), -(38843, 'Alapli', 3599, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38844, 'Caycuma', 3599, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38845, 'Devrek', 3599, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38846, 'Gokcebey', 3599, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38847, 'Zonguldak', 3599, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38848, 'Ahchadepe', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38849, 'Annau', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38850, 'Babadayhan', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38851, 'Baherden', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38852, 'Birleshik Pervi', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38853, 'Buzmeyin', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38854, 'Dushak', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38855, 'Gokedepe', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38856, 'Kaka', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38857, 'Miana', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38858, 'Ovaz Jalatay', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38859, 'Saragt', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38860, 'Tecen', 3600, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38861, 'Asgabat', 3601, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38862, 'Adyndaky', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38863, 'Balkanabat', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38864, 'Bekdash', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38865, 'Gasanguli', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38866, 'Gazanjyk', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38867, 'Goturdepe', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38868, 'Gumdag', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38869, 'Karakala', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38870, 'Khazar', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38871, 'Serdar', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38872, 'Sharlawuk', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38873, 'Turkmenbasi', 3602, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38874, 'Akdepe', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38875, 'Boldumsaz', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38876, 'Dasoguz', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38877, 'Gubadag', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38878, 'Kohne Urgenc', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38879, 'Tagta', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38880, 'Yilanli', 3603, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38881, 'Darganata', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38882, 'Esenmengli', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38883, 'Farap', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38884, 'Gazojak', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38885, 'Govurdak', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38886, 'Halac', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38887, 'Kerki', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38888, 'Mukri', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38889, 'Sayat', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38890, 'Seydi', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38891, 'Turkmenabat', 3604, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38892, 'Bayramali', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38893, 'Eloten', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38894, 'Murgab', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38895, 'Sakarchage', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38896, 'Tagtabazar', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38897, 'Turkmengala', 3605, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38898, 'Vaiaku', 3608, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38899, 'Tonga', 3609, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38900, 'Lolua', 3610, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38901, 'Kua', 3611, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38902, 'Tanrake', 3612, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38903, 'Savave', 3613, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38904, 'Fangaua', 3614, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, 1), -(38905, 'Bombo', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38906, 'Bweyogerere', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38907, 'Entebbe', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38908, 'Jinja-Kawempe', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38909, 'Kajansi', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38910, 'Kalangala', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38911, 'Kampala', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38912, 'Kayunga', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38913, 'Kiboga', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38914, 'Kireka', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38915, 'Kyotera', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38916, 'Lugazi', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38917, 'Lukaya', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38918, 'Luwero', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38919, 'Lyantonde', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38920, 'Masaka', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38921, 'Mityana', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38922, 'Mpigi', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38923, 'Mubende', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38924, 'Mukono', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38925, 'Nakasongola', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38926, 'Namasuba', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38927, 'Njeru', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38928, 'Nkonkonjeru', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38929, 'Rakai', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38930, 'Sembabule', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38931, 'Wakiso', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38932, 'Wobulenzi', 1102, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38933, 'Bugembe', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38934, 'Bugiri', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38935, 'Busembatia', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38936, 'Buwenge', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38937, 'Iganga', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38938, 'Jinja', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38939, 'Kaberamaido', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38940, 'Kamuli', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38941, 'Kapchorwa', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38942, 'Katakwi', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38943, 'Malaba', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38944, 'Mayuge', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38945, 'Mbale', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38946, 'Ngora', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38947, 'Pallisa', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38948, 'Sironko', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38949, 'Soroti', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38950, 'Tororo', 140, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38951, 'Adjumani', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38952, 'Amudat', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38953, 'Apac', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38954, 'Arua', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38955, 'Gulu', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38956, 'Kaabong', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38957, 'Kitgum', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38958, 'Koboko', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38959, 'Kotido', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38960, 'Lira', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38961, 'Moroto', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38962, 'Moyo', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38963, 'Nakapiripirit', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38964, 'Nebbi', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38965, 'Pader', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38966, 'Paidha', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38967, 'Pakwach', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38968, 'Yumbe', 1103, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38969, 'Bundibugyo', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38970, 'Bushenyi', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38971, 'Fort Portal', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38972, 'Hima', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38973, 'Hoima', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38974, 'Ibanda', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38975, 'Kabale', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38976, 'Kabwohe-Itendero', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38977, 'Kagadi', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38978, 'Kamwenge', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38979, 'Kanungu', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38980, 'Kasese', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38981, 'Katwe', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38982, 'Kibaale', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38983, 'Kigorobya', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38984, 'Kilembe', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38985, 'Kisoro', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38986, 'Kyenjojo', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38987, 'Masindi', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38988, 'Masindi-Port', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38989, 'Mbarara', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38990, 'Muhororo', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38991, 'Ntungamo', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38992, 'Rukungiri', 143, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38993, 'Cherkasy', 3616, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38994, 'Smila', 3616, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38995, 'Uman ', 3616, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38996, 'Chernihiv', 3617, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38997, 'Nizhyn', 3617, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38998, 'Pryluky', 3617, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(38999, 'Chernivtsi', 3618, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(39000, 'Alushta', 3619, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(39001, 'Sevastopol', 3619, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, 1), -(39002, 'Dneprodzerzhinsk', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39003, 'Dnipropetrovsk', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39004, 'Kryvyy Rih', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39005, 'Marhanets ', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39006, 'Nikopol ', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39007, 'Novomoskovs k', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39008, 'Pavlohrad', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39009, 'Plekhanov', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39010, 'Zhovti Vody', 3620, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39011, 'Artemivs k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39012, 'Donets k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39013, 'Donetsk', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39014, 'Druzhkivka', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39015, 'Dymytrov', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39016, 'Dzerzhyns k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39017, 'Horlivka', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39018, 'Khartsyz k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39019, 'Kostyantynivka', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39020, 'Kramators k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39021, 'Krasnoarmiys k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39022, 'Makiyivka', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39023, 'Mariupol ', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39024, 'Shakhtars k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39025, 'Slov yans k', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39026, 'Snizhne', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39027, 'Torez', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39028, 'Yenakiyeve', 3621, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39029, 'Ivano-Frankivs k', 3622, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39030, 'Kalush', 3622, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39031, 'Kolomyya', 3622, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39032, 'Izyum', 3623, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39033, 'Kharkiv', 3623, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39034, 'Lozova', 3623, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39035, 'Kherson', 3625, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39036, 'Nova Kakhovka', 3625, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39037, 'Geologov', 3626, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39038, 'Kam yanets -Podil s kyy', 3626, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39039, 'Khmel nyts kyy', 3626, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39040, 'Shepetivka', 3626, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39041, 'khmelnitskiy', 3626, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39042, 'Kirovohrad', 3627, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39043, 'Oleksandriya', 3627, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39044, 'Svidlovodsk', 3627, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39045, 'Dzhankoy', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39046, 'Feodosiya', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39047, 'Kerch', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39048, 'Simferopol ', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39049, 'Yalta', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39050, 'Yevpatoriya', 3628, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39051, 'Kiev', 3629, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39052, 'Kyyiv', 3629, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39053, 'Bila Tserkva', 3630, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39054, 'Boryspil ', 3630, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39055, 'Brovary', 3630, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39056, 'Fastiv', 3630, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39057, 'Chervonohrad', 3631, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39058, 'Drohobych', 3631, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39059, 'L viv', 3631, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39060, 'Stryy', 3631, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39061, 'Yavoriv', 3631, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39062, 'Alchevs k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39063, 'Antratsyt', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39064, 'Bryanka', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39065, 'Krasnodon', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39066, 'Krasnyy Luch', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39067, 'Luhans k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39068, 'Luhansk', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39069, 'Lysychans k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39070, 'Pervomays k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39071, 'Roven ky', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39072, 'Rubizhne', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39073, 'Stakhanov', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39074, 'Sverdlovs k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39075, 'Syeverodonets k', 3632, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39076, 'Mykolayiv', 3633, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39077, 'Bilhorod-Dnistrovs kyy', 3634, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39078, 'Illichivs k', 3634, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39079, 'Izmayil', 3634, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, 1), -(39080, 'Odesa', 3634, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39081, 'Odessa', 3635, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39082, 'Komsomol s k', 3636, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39083, 'Kremenchuh', 3636, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39084, 'Lubny', 3636, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39085, 'Poltava', 3636, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39086, 'Rivne', 3637, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39087, 'Konotop', 3639, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39088, 'Okhtyrka', 3639, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39089, 'Romny', 3639, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39090, 'Shostka', 3639, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39091, 'Sumy', 3639, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39092, 'Ternopil ', 3640, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39093, 'Kovel ', 3641, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39094, 'Luts k', 3641, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39095, 'Novovolyns k', 3641, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39096, 'Vinnitsa', 3642, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39097, 'Vinnytsya', 3642, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39098, 'Mukacheve', 3643, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39099, 'Uzhhorod', 3643, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39100, 'Berdyans k', 3644, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39101, 'Enerhodar', 3644, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39102, 'Melitpol ', 3644, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39103, 'Zaporizhia', 3644, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39104, 'Berdychiv', 3645, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39105, 'Korosten ', 3645, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39106, 'Novohrad-Volyns kyy', 3645, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39107, 'Zhytomyr', 3645, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39108, 'Ajman', 3647, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39109, 'Al Qusais', 3648, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39110, 'Deira', 3648, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39111, 'Dubai', 3648, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39112, 'Jebel Ali', 3648, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39113, 'Sharjah', 3650, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39114, 'Khawr Fakkan', 3653, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39115, 'al-Fujayrah', 3653, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39116, 'Gilberdyke', 3655, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39117, 'Llanrwst', 3655, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39118, 'Swadlincote', 3655, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39119, 'Turriff', 3655, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, 1), -(39120, 'Westhill', 3656, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39121, 'Oban', 3657, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39122, 'Craigavon', 1716, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39123, 'Barton-le-Clay', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39124, 'Biggleswade', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39125, 'Caddington', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39126, 'Flitton', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39127, 'Flitwick', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39128, 'Leighton Buzzard', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39129, 'Marston Moretaine', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39130, 'Sandy', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39131, 'Westoning', 3658, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39132, 'Dundonald', 3659, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39133, 'Holywood', 3659, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39134, 'Berkshire', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39135, 'Bracknell', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39136, 'Littlewick Green', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39137, 'Maidenhead', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39138, 'Newbury', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39139, 'Reading', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39140, 'Sandhurst', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39141, 'Slough', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39142, 'Sunninghill', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39143, 'Twyford', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39144, 'Wokingham', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39145, 'Woodley', 3660, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39146, 'Coleshill', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39147, 'Edgbaston', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39148, 'Hockley', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39149, 'Ladywood', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39150, 'Nechells', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39151, 'Rubery', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39152, 'Small Heath', 3661, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39153, 'Angus', 3662, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(39154, 'Bridgnorth', 3663, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39155, 'Fishponds', 3664, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39156, 'Henleaze', 3664, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39157, 'Warmley', 3664, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39158, 'Amersham', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39159, 'Aston Clinton', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39160, 'Beaconsfield', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39161, 'Bletchley', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39162, 'Bourne End', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39163, 'High Wycombe', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39164, 'Iver', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39165, 'Marlow', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39166, 'Milton Keynes', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39167, 'Newport Pagnell', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39168, 'Piddington', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39169, 'Princes Risborough', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39170, 'Rowsham', 3665, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39171, 'Ely', 3666, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39172, 'Haddenham', 3667, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39173, 'Sawtry', 3667, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39174, 'Wisbech', 3667, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39175, 'Alderley Edge', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39176, 'Altrincham', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39177, 'Betley', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39178, 'Cheadle Gatley', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39179, 'Cheadle Hulme', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39180, 'Crewe', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39181, 'Dukinfield', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39182, 'Holmes Chapel', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39183, 'Hyde', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39184, 'Knuntsford', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39185, 'Knutsford', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39186, 'Lymm', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39187, 'Malpas', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39188, 'Merseyside', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39189, 'Middlewich', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39190, 'Mobberley', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39191, 'Nantwich', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39192, 'Saltney', 3669, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, 1), -(39193, 'Sandbach', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39194, 'Stalybridge', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39195, 'Stockport', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39196, 'Tarporley', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39197, 'Timperley', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39198, 'Widnes', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39199, 'Winsford', 3669, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39200, 'Redcar', 3670, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39201, 'Stockton-on-Tees', 3670, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39202, 'Conwy', 3672, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39203, 'Llandudno', 3672, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39204, 'Bude', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39205, 'Camborne', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39206, 'Fowey', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39207, 'Hayle', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39208, 'Helston', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39209, 'Liskeard', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39210, 'Looe', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39211, 'Mevegissey', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39212, 'Newquay', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39213, 'Penryn', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39214, 'Penzance', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39215, 'St. Ives', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39216, 'Truro', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39217, 'Wadebridge', 3673, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39218, 'Holbrooks', 3674, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39219, 'Askam-in-Furness', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39220, 'Flookburgh', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39221, 'Grasmere', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39222, 'Keswick', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39223, 'Kirkby Stephen', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39224, 'Milnthorpe', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39225, 'Penrith', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39226, 'Ulverston', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39227, 'Windermere', 3676, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39228, 'Denbigh', 3677, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39229, 'Buxton', 3678, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39230, 'Chesterfield', 3678, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39231, 'Eckington', 3678, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39232, 'Bakewell', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39233, 'Belper', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39234, 'Breaston', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39235, 'Derby', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39236, 'Ilkeston', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39237, 'Matlock', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39238, 'Ripley', 3679, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39239, 'Axminster', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39240, 'Barnstaple', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39241, 'Beaworthy', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39242, 'Bideford', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39243, 'Bovey Tracey', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39244, 'Braunton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39245, 'Brixham', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39246, 'Chudleigh', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39247, 'Crediton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39248, 'Dalwood', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39249, 'Dartmouth', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39250, 'Dawlish', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39251, 'Exmouth', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39252, 'Great Torrington', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39253, 'Holsworthy', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39254, 'Kingsbridge', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39255, 'Modbury', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39256, 'Newton Abbot', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39257, 'Okehampton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39258, 'Plymouth', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39259, 'Plympton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39260, 'Salcombe', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39261, 'Tiverton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39262, 'Totnes', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39263, 'Winkleigh', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39264, 'Woodburyd', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39265, 'Yelverton', 3680, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39266, 'Didcot', 3682, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39267, 'Beaminster', 3683, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, 1), -(39268, 'Blandford Forum', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39269, 'Dorset', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39270, 'Poole', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39271, 'Sherborne', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39272, 'Sturminster Newton', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39273, 'Swanage', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39274, 'Verwood', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39275, 'Wimborne', 3683, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39276, 'Crook', 3685, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39277, 'Spennymoor', 3685, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39278, 'Abingdon', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39279, 'Accrington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39280, 'Aldershot', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39281, 'Alfreton', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39282, 'Andover', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39283, 'Arnold', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39284, 'Ashford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39285, 'Ashington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39286, 'Ashton-in-Makerfield', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39287, 'Ashton-under-Lyne', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39288, 'Aylesbury', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39289, 'Aylesford-East Malling', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39290, 'Banbury', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39291, 'Banstead-Tadworth', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39292, 'Barnsley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39293, 'Barrow-in-Furness', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39294, 'Basildon', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39295, 'Basingstoke', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39296, 'Bath', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39297, 'Batley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39298, 'Bebington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39299, 'Bedworth', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39300, 'Beeston and Stapleford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39301, 'Benfleet', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39302, 'Bentley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39303, 'Berwick-upon-Tweed', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39304, 'Beverley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39305, 'Bexhil', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39306, 'Bicester', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39307, 'Billericay', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39308, 'Billingham', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39309, 'Birkenhead', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39310, 'Birmingham', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39311, 'Bishop Auckland', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39312, 'Bishop s Stortford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39313, 'Blackpool', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39314, 'Blyth', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39315, 'Bodmin', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39316, 'Bognor Regis', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39317, 'Bootle', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39318, 'Boston', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39319, 'Bournemouth', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39320, 'Braintree', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39321, 'Bredbury and Romiley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39322, 'Brentwood', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39323, 'Bridgwater', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39324, 'Bridlington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39325, 'Brigg', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39326, 'Brighouse', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39327, 'Bristol', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39328, 'Broadstairs', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39329, 'Bromley Cross-Bradshaw', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39330, 'Bromsgrove-Catshill', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39331, 'Burgess Hill', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39332, 'Burnley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39333, 'Burntwood', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39334, 'Burton-upon-Trent', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39335, 'Bury', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39336, 'Bury Saint Edmunds', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39337, 'Camberley-Frimley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39338, 'Cambourne-Redruth', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39339, 'Cannock', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39340, 'Canterbury', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39341, 'Canvey Island', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39342, 'Carlton', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39343, 'Castleford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39344, 'Caterham and Warlingham', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39345, 'Chadderton', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39346, 'Chapeltown', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39347, 'Cheadle and Gatley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39348, 'Chelmsford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39349, 'Chesham', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39350, 'Cheshunt', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39351, 'Chessington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39352, 'Chester-le-Street', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39353, 'Chichester', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39354, 'Chippenham', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39355, 'Chipping Sodbury', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39356, 'Chorley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39357, 'Clacton-on-Sea', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39358, 'Clay Cross-North Wingfield', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39359, 'Cleethorpes', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39360, 'Clevedon', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39361, 'Coalville', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39362, 'Congleton', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39363, 'Consett', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39364, 'Corby', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39365, 'Coventry', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39366, 'Cramlington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39367, 'Crawley', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39368, 'Crosby', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39369, 'Crowthorne', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39370, 'Darlington', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39371, 'Dartford', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39372, 'Darwen', 3691, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, 1), -(39373, 'Deal', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39374, 'Denton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39375, 'Dewsbury', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39376, 'Doncaster', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39377, 'Dorchester', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39378, 'Dover', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39379, 'Droitwich', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39380, 'Dronfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39381, 'Droylsden', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39382, 'Dudley', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39383, 'Dunstable', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39384, 'East Grinstead', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39385, 'East Retford', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39386, 'Eastbourne', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39387, 'Eastleigh', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39388, 'Eaton Socon-Saint Neots', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39389, 'Eccles', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39390, 'Egham', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39391, 'Ellesmere Port', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39392, 'Epsom and Ewell', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39393, 'Esher-Molesey', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39394, 'Eston and South Bank', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39395, 'Failsworth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39396, 'Falmouth-Penryn', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39397, 'Fareham', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39398, 'Farnborough', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39399, 'Farnworth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39400, 'Farring', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39401, 'Felixtowe', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39402, 'Felling', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39403, 'Ferndown', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39404, 'Fleetwood', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39405, 'Folkestone', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39406, 'Formby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39407, 'Frome', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39408, 'Fulham', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39409, 'Gateshead', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39410, 'Gillingham', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39411, 'Glossop', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39412, 'Gloucester', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39413, 'Godalming', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39414, 'Golborne', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39415, 'Gosforth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39416, 'Gosport', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39417, 'Grantham', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39418, 'Gravesend', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39419, 'Grays', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39420, 'Greasby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39421, 'Great Malvern', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39422, 'Great Sankey', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39423, 'Great Yarmouth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39424, 'Grimsby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39425, 'Guildford', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39426, 'Guiseley-Yeadon', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39427, 'Halesowen', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39428, 'Halifax', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39429, 'Harlow', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39430, 'Harpenden', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39431, 'Harrogate', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39432, 'Hartlepool', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39433, 'Hatfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39434, 'Hatfield-Stainforth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39435, 'Havant', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39436, 'Haywards Heath', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39437, 'Hazel Grove and Bramhill', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39438, 'Hazlemere', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39439, 'Heanor', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39440, 'Hemel Hempstead', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39441, 'Hereford', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39442, 'Herne Bay', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39443, 'Hertford', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39444, 'Heswall', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39445, 'Heywood', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39446, 'Hinckley', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39447, 'Hindley', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39448, 'Hitchin', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39449, 'Hoddesdon', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39450, 'Holmfirth-Honley', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39451, 'Honiton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39452, 'Houghton-le-Spring', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39453, 'Hoylake-West Kirby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39454, 'Hucknall', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39455, 'Huddersfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39456, 'Huyton-with-Roby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39457, 'Ilfracombe', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39458, 'Ivybridge', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39459, 'Jarrow', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39460, 'Keighley', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39461, 'Kenilworth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39462, 'Kettering', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39463, 'Kidderminster', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39464, 'Kidsgrove', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39465, 'King s Lynn', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39466, 'Kingsteignton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39467, 'Kingston upon Hull', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39468, 'Kingswood', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39469, 'Kirby in Ashfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39470, 'Kirkby', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39471, 'Lancaster', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39472, 'Leatherhead', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39473, 'Leeds', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39474, 'Leicester', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39475, 'Leigh', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39476, 'Letchworth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39477, 'Lewes', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39478, 'Leyland', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39479, 'Lichfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39480, 'Lincoln', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39481, 'Litherland', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39482, 'Littlehampton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39483, 'Liverpool', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39484, 'Locks Heath', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39485, 'Long Benton-Killingworth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39486, 'Long Eaton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39487, 'Loughborough', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39488, 'Loughton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39489, 'Louth', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39490, 'Lowestoft', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39491, 'Luton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39492, 'Lyminge', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39493, 'Lytham Saint Anne s', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39494, 'Mablethorpe and Sutton', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39495, 'Macclesfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39496, 'Maghull-Lydiate', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39497, 'Manchester', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39498, 'Mangotsfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39499, 'Mansfield', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39500, 'Margate', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39501, 'Melton Mowbray', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39502, 'Middlesbrough', 3691, '2024-01-21 12:47:19', '2024-01-21 12:47:19', NULL, 1), -(39503, 'Middleton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39504, 'Midsomer Norton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39505, 'Morecambe', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39506, 'Morley', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39507, 'Nailsea', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39508, 'New Addington', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39509, 'New Milton-Barton-on-Sea', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39510, 'Newark-on-Trent', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39511, 'Newburn', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39512, 'Newcastle upon Tyne', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39513, 'Newcastle-under-Lyme', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39514, 'Newport', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39515, 'Newton Aycliffe', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39516, 'North Hykeham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39517, 'North Shields', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39518, 'Northallerton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39519, 'Northam', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39520, 'Northampton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39521, 'Northfleet', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39522, 'Northwich', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39523, 'Nottingham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39524, 'Nuneaton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39525, 'Oakengates-Donnington', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39526, 'Oakham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39527, 'Oldbury-Smethwick', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39528, 'Oldham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39529, 'Ormskirk', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39530, 'Ossett', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39531, 'Oxford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39532, 'Paignton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39533, 'Peterlee', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39534, 'Pontefract', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39535, 'Portsmouth', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39536, 'Potters Bar', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39537, 'Prescot', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39538, 'Prestwich', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39539, 'Prestwood', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39540, 'Pudsey', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39541, 'Radcliffe', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39542, 'Ramsgate', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39543, 'Rawtenstall', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39544, 'Rayleigh', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39545, 'Redditch', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39546, 'Reigate', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39547, 'Rochdale', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39548, 'Rochester', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39549, 'Rotherham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39550, 'Rottingdean', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39551, 'Royal Tunbridge Wells', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39552, 'Royton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39553, 'Rugby', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39554, 'Rugeley', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39555, 'Runcorn', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39556, 'Rushden', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39557, 'Ryde', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39558, 'Saint Albans', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39559, 'Saint Austell', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39560, 'Saint Helens', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39561, 'Salford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39562, 'Salisbury', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39563, 'Scunthorpe', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39564, 'Seaham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39565, 'Sevenoaks', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39566, 'Shipley', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39567, 'Shrewsbury', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39568, 'Sidmouth', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39569, 'Sittingbourne', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39570, 'Skegness', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39571, 'Skelmersdale', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39572, 'Sleaford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39573, 'Solihull', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39574, 'Sompting-Lancing', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39575, 'South Shields', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39576, 'Southend-on-Sea', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39577, 'Spalding-Pinchbeck', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39578, 'St. Helens', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39579, 'Stafford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39580, 'Staines', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39581, 'Stamford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39582, 'Stanford le Hope-Corringham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39583, 'Stanley-Annfield Plain', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39584, 'Staveley', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39585, 'Stevenage', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39586, 'Stockton Heath-Thelwall', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39587, 'Stoke-on-Trent', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39588, 'Stourbridge', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39589, 'Stratford-upon-Avon', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39590, 'Stretford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39591, 'Strood', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39592, 'Stubbington', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39593, 'Sunderland', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39594, 'Sutton Coldfield', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39595, 'Sutton in Ashfield', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39596, 'Swanley-Hextable', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39597, 'Swindon', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39598, 'Swinton and Pendlebury', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39599, 'Tamworth', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39600, 'Taunton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39601, 'Teignmouth', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39602, 'Telford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39603, 'Tenbury Wells', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39604, 'Thatcham', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39605, 'The Deepings', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39606, 'Thetford', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39607, 'Thornaby', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39608, 'Thornton-Cleveleys', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39609, 'Tonbridge', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39610, 'Totton', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39611, 'Trowbridge', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39612, 'Tyldesley', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39613, 'Urmston', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39614, 'Wakefield', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39615, 'Walkden', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39616, 'Wallasey', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39617, 'Wallsend', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39618, 'Walsall', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39619, 'Walton and Weybridge', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39620, 'Warrington', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39621, 'Waterlooville', 3691, '2024-01-21 12:47:20', '2024-01-21 12:47:20', NULL, 1), -(39622, 'Wellingborough', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39623, 'Welwyn Garden City', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39624, 'West Bridgeford', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39625, 'West Bromwich', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39626, 'Westhoughton', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39627, 'Weston-super-Mare', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39628, 'Weymouth', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39629, 'Whitefield', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39630, 'Whitehaven', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39631, 'Whitley Bay', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39632, 'Wickford', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39633, 'Wigan', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39634, 'Wigston', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39635, 'Wilmslow', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39636, 'Wimbourne Minster', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39637, 'Windsor Berks', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39638, 'Windsor-Eton', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39639, 'Witham', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39640, 'Witney', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39641, 'Woking-Byfleet', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39642, 'Wolverhampton', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39643, 'Wolverton-Stony Stratford', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39644, 'Worcester', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39645, 'Worcestershire', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39646, 'Workington', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39647, 'Worksop', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39648, 'Worthing', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39649, 'Yeovil', 3691, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39650, 'Barking', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39651, 'Cambrridge', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39652, 'Dagenham', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39653, 'Dunmow', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39654, 'Epping', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39655, 'Ilford', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39656, 'Ingatestone', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39657, 'Leigh on Sea', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39658, 'Rainham', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39659, 'Romford', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39660, 'Saffron Walden', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39661, 'Stansted', 3692, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39662, 'Ballinamallard', 3693, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39663, 'Kirkcaldy', 3694, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39664, 'Ewloe', 3695, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39665, 'Greenfield', 3695, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39666, 'Imperial Wharf', 3696, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39667, 'Kirton-in-Lindsey', 3697, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39668, 'Berkeley', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39669, 'Churchham', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39670, 'Cirencester', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39671, 'East Kilbride', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39672, 'Lechlade', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39673, 'Lydney', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39674, 'Moreton in Marsh', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39675, 'Stroud', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39676, 'Tewkesbury', 3698, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39677, 'Blackwood', 3699, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39678, 'Blaenavon', 3699, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39679, 'Tredegar', 3699, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39680, 'Alton', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39681, 'Bordon', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39682, 'Botley', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39683, 'Fleet', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39684, 'Fordingbridge', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39685, 'Hayling Island', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39686, 'Hook', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39687, 'Isle of wight', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39688, 'Liphook', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39689, 'Longparish', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39690, 'Old Bishopstoke', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39691, 'Petersfield', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39692, 'Romsey', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39693, 'South Harting', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39694, 'West Wellow', 3700, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39695, 'Lymington', 3701, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39696, 'Pennington', 3701, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39697, 'Kington', 3702, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39698, 'Ledbury', 3702, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39699, 'Leominster', 3702, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39700, 'Barnet', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39701, 'Bishops Stortford', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39702, 'Borehamwood', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39703, 'Brookmans Park', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39704, 'Bushey', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39705, 'Cuffley', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39706, 'Elstree', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39707, 'Hertfordshire', 3703, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, 1), -(39708, 'Kings Langley', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39709, 'Much Hadham', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39710, 'Radlett', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39711, 'Rickmansworth', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39712, 'Royston', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39713, 'Waltham Cross', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39714, 'Welwyn', 3703, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39715, 'Beckenham', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39716, 'Bromley', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39717, 'Brookland', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39718, 'Charing', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39719, 'Chatam', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39720, 'Crayford', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39721, 'Edenbridge', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39722, 'Erith', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39723, 'Faversham', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39724, 'Five Oak Green', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39725, 'Hartlip', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39726, 'Hayes', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39727, 'Hythe', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39728, 'Lenham', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39729, 'Minster', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39730, 'New Romney', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39731, 'Orpington', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39732, 'Paddock Wood', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39733, 'Sandwich', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39734, 'Sheerness', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39735, 'Sidcup', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39736, 'Staplehurst', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39737, 'Tunbridge Wells', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39738, 'West Malling', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39739, 'Westerham', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39740, 'Whitstable', 3708, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39741, 'Ayrshire', 3709, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39742, 'Glasgow', 3710, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39743, 'Clayton-Le-Moors', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39744, 'Cleveleys', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39745, 'Gisburn', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39746, 'Greater Manchester', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39747, 'Kirkby Lonsdale', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39748, 'Littleborough', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39749, 'Lytham St Annes', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39750, 'Out Rawcliffe', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39751, 'Padiham', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39752, 'Rossendale', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39753, 'Tarleton', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39754, 'Todmorden', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39755, 'West Lancashire', 3711, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39756, 'Fleckney', 3712, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39757, 'Lutterworth', 3712, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39758, 'Market Harborough', 3712, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39759, 'Tur Langton', 3712, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39760, 'Alford', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39761, 'Bourne', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(39762, 'Casewick', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39763, 'Digby', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39764, 'Gainsborough', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39765, 'Immingham', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39766, 'Laceby', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39767, 'Market Deeping', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39768, 'Market Rasen', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39769, 'Spalding', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39770, 'Spilsby', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39771, 'Swinderby', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39772, 'Thurlby', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39773, 'Witham St Hughs', 3713, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39774, 'Llanymynech', 3714, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39775, 'Abbeywood', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39776, 'Aldgate', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39777, 'Alperton', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39778, 'Castledawson', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39779, 'Enfield', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39780, 'Forest Gate', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39781, 'Greenwich', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39782, 'Hainault', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39783, 'Harrow Weald', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39784, 'Hendon', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39785, 'Leyton', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39786, 'Magherafelt', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39787, 'Mill Hill', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39788, 'Southwark', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39789, 'Suffolk', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39790, 'Sulham', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39791, 'Walthamstow', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39792, 'Wandsworth', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39793, 'Wimbledon', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39794, 'Woolwich', 3715, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39795, 'Ludlow', 3716, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, 1), -(39796, 'Swinton', 1872, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39797, 'Worsley', 1872, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39798, 'Mayfair', 3717, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39799, 'Brentford', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39800, 'Brimsdown', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39801, 'Edgware', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39802, 'Feltham', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39803, 'Greenford', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39804, 'Hampton', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39805, 'Harmondsworth', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39806, 'Isleworth', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39807, 'Northolt', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39808, 'Northwood', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39809, 'Perivale', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39810, 'Pinner', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39811, 'Ruislip', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39812, 'Ruislip Manor', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39813, 'South Harrow', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39814, 'Southall', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39815, 'Stamore', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39816, 'Stanmore', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39817, 'Stanwell', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39818, 'Teddington', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39819, 'Twickenham', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39820, 'West Drayton', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39821, 'Wraysbury', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39822, 'hounslow', 3720, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39823, 'Mildenhall', 3721, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39824, 'Abergavenny', 3722, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39825, 'Monmouth', 3722, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39826, 'Attleborough', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39827, 'Bacton', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39828, 'Briston', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39829, 'Dereham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39830, 'Diss', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39831, 'Downham Market', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39832, 'Fakenham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39833, 'Garboldisham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39834, 'Gayton', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39835, 'Glandford', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39836, 'Heacham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39837, 'Hopton', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39838, 'Kings Lynn', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39839, 'Little Cressingham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39840, 'Sheringham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39841, 'Trunch', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39842, 'Winordhan', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39843, 'Wymondham', 3724, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39844, 'Daventry', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39845, 'Irthlingborough', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39846, 'Middleton Cheney', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39847, 'Oundle', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39848, 'Towcester', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39849, 'Welford', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39850, 'Woodford Halse', 3727, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39851, 'Brackley', 3728, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39852, 'Desborough', 3728, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39853, 'weedon', 3728, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39854, 'Bedlington', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39855, 'Corbridge', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39856, 'Morpeth', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39857, 'Northumberland', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39858, 'Ponteland', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39859, 'Wooler', 3730, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39860, 'Burton Joyce', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39861, 'Cotgraves', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39862, 'Gonalston', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39863, 'Newark', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39864, 'Pennyfoot Street', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39865, 'Sandiacre', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39866, 'Southwell', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39867, 'Whatton', 3731, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, 1), -(39868, 'Bampton', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39869, 'Blewbury', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39870, 'Chipping Norton', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39871, 'Eynsham', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39872, 'Farringdon', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39873, 'Henely on Thames', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39874, 'Henley-on-Thames', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39875, 'Shenington', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39876, 'Thame', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39877, 'Wantage', 3732, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39878, 'Builth Wells', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39879, 'Knighton', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39880, 'Llanbrynmair', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39881, 'New town', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39882, 'Newtown', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39883, 'Rhaeadr', 3733, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39884, 'Hill of Fearn', 3734, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39885, 'Shoreham', 3735, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39886, 'Sark', 3736, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39887, 'Aberdeen', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39888, 'Alloa', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39889, 'Alness', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39890, 'Annan', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39891, 'Arbroath', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39892, 'Ardrossan', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39893, 'Armadale', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39894, 'Bathgate', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39895, 'Blairgowrie', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39896, 'Blantyre-Hamilton', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39897, 'Boness', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39898, 'Bonnybridge', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39899, 'Broxburn', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39900, 'Broxham', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39901, 'Buckhaven', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39902, 'Burntisland', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39903, 'Carluke', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39904, 'Carnoustie', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39905, 'Coatbridge', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39906, 'Cowdenbeath', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39907, 'Cumbernauld', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39908, 'Cumnock', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39909, 'Cupar', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39910, 'Dalbeattie', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39911, 'Dalkeith', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39912, 'Dingwall', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39913, 'Dumbarton', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39914, 'Dumfries', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39915, 'Dundee', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39916, 'Dunfermline', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39917, 'Dunoon', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39918, 'Edimburah', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39919, 'Edinburgh', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39920, 'Elgin', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39921, 'Ellon', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39922, 'Erskine', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39923, 'Falkirk', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39924, 'Forfar', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39925, 'Forres', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39926, 'Fort William', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39927, 'Fraserburgh', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39928, 'Galashiels', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39929, 'Galston-Newmilns', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39930, 'Girvan', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39931, 'Glenrothes', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39932, 'Greengairs', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39933, 'Greenock', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39934, 'Haddington', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39935, 'Hawick', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39936, 'Helensburgh', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39937, 'Insch', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39938, 'Inverkeithing-Dalgety Bay', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39939, 'Inverness', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39940, 'Inverurie', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39941, 'Irvine', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39942, 'Isle of Lewis', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39943, 'Kilmarnock', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39944, 'Kilwinning', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39945, 'Kirkintilloch-Lenzie', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39946, 'Kirkwall', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39947, 'Largs', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39948, 'Larkhall', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39949, 'Lerwick', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39950, 'Linlithgow', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39951, 'Livingston', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39952, 'Loanhead', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39953, 'Montrose', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39954, 'Motherwell', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39955, 'Nairn', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39956, 'Newtown Saint Boswells', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39957, 'Penicuik', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39958, 'Peterhead', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39959, 'Saint Andrews', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39960, 'Selkirkshire', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39961, 'Shotts', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39962, 'Stonehaven', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39963, 'Stornoway', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39964, 'Stranraer', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39965, 'Tranent', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39966, 'Troon', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39967, 'Whitburn', 3737, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39968, 'Bishops Castle', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39969, 'Bucknell', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39970, 'Greete', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39971, 'Hinstock', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39972, 'Jackfield', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39973, 'Much Wenlock', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39974, 'Oswestry', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39975, 'Ryton', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39976, 'Shifnal', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39977, 'Whitchurch', 3739, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, 1), -(39978, 'Brent Knoll', 3740, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39979, 'Castle Cary', 3740, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39980, 'Shepton Mallet', 3740, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39981, 'Somerset', 3740, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39982, 'Wedmore', 3740, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39983, 'Burton-on-Trent', 3745, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39984, 'Hednesford', 3745, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39985, 'Stoke on Trent', 3745, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39986, 'Stone', 3745, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39987, 'Strabane', 3746, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39988, 'Bury St Edmunds', 3747, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39989, 'Felixstowe', 3747, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39990, 'Haverhill', 3747, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39991, 'Leiston', 3747, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39992, 'Stowmarket', 3747, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39993, 'Ashtead', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39994, 'Bagshot', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39995, 'Betchworth', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39996, 'Bletchingley', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39997, 'Carshalton', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39998, 'Chertsey', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(39999, 'Claygate', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40000, 'Croydon', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40001, 'Dorking', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40002, 'Effingham', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40003, 'Epsom', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40004, 'Haslemere', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40005, 'Kingston Upon Thames', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40006, 'New Malden', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40007, 'Redhill', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40008, 'Salfords', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40009, 'Shepperton', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40010, 'Stoneleigh', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40011, 'Surbiton', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40012, 'Surrey', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40013, 'Tadworth', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40014, 'Walton on Thames', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40015, 'West Molesey', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40016, 'Wisley', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40017, 'Woking', 3748, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40018, 'Henfield', 3735, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40019, 'Sussex', 3735, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40020, 'Omagh', 3751, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40021, 'Santaquin', 3752, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40022, 'Aberdare', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40023, 'Aberystwyth', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40024, 'Barry', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40025, 'Brecon', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40026, 'Bridgend', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40027, 'Brynmawr', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40028, 'Caernarfon', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40029, 'Caerphily', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40030, 'Caldicot', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40031, 'Cardiff', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40032, 'Carmarthen', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40033, 'Colwyn Bay', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40034, 'Connahs Quay', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40035, 'Cwmbran', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40036, 'Dolgellau', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40037, 'Ebbw Vale', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40038, 'Gaerwen', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40039, 'Gwynedd', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40040, 'Haverfordwest', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40041, 'Isle of Anglesey', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40042, 'Islwyn', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40043, 'Llandrindod Wells', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40044, 'Llanelli', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40045, 'Llangefni', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40046, 'Maesteg', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40047, 'Merthyr Tydfil', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40048, 'Mold', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40049, 'Mountain Ash-Abercynon', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40050, 'Neath', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40051, 'Pembrokeshire', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40052, 'Penarth', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40053, 'Pencader', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40054, 'Pontypool', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40055, 'Pontypridd', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40056, 'Port Talbot', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40057, 'Queensferry', 3753, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, 1), -(40058, 'Rhondda', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40059, 'Rhyl', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40060, 'Ruthin', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40061, 'Shotton-Hawarden', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40062, 'St. Asaph', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40063, 'Swansea', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40064, 'West Glamorgan', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40065, 'Wrexham', 3753, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40066, 'Alcester', 3754, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40067, 'Henley in Arden', 3754, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40068, 'Pershore', 3754, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40069, 'Southam', 3754, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40070, 'Whissendine', 3759, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40071, 'Amesbury', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40072, 'Bradford on Avon', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40073, 'Calne', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40074, 'Corsham', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40075, 'Cosham', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40076, 'Devizes', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40077, 'Downton', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40078, 'Malmesbury', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40079, 'Marlborough', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40080, 'Melksham', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40081, 'Pewsey', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40082, 'Southwick', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40083, 'Warminster', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40084, 'Westbury', 3760, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40085, 'Winnersh', 3761, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40086, 'Evesham', 3762, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40087, 'Hartlebury', 3762, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40088, 'Caergwrle', 3763, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40089, 'Ruabon', 3763, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40090, 'Neuffen', 3764, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40091, 'Malton', 3765, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40092, 'Mexborough', 3765, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40093, 'Alabaster', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40094, 'Alexander City', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40095, 'Anniston', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40096, 'Arab', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40097, 'Ashville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40098, 'Atmore', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40099, 'Auburn', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40100, 'Bessemer', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40101, 'Capshaw', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40102, 'Center Point', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40103, 'Childersburg', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40104, 'Cullman', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40105, 'Daleville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40106, 'Daphne', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40107, 'Decatur', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40108, 'Dothan', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40109, 'Enterprise', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40110, 'Eufaula', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40111, 'Fairhope', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40112, 'Fort Payne', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40113, 'Gadsden', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40114, 'Grand Bay', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40115, 'Grove Hill', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40116, 'Guntersville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40117, 'Hampton Cove', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40118, 'Hanceville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40119, 'Hartselle', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40120, 'Headland', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40121, 'Helena', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40122, 'Hodges', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40123, 'Homewood', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40124, 'Hoover', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40125, 'Hueytown', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40126, 'Jacksonville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40127, 'Luverne', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40128, 'Madison', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40129, 'Mobile', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40130, 'Montgomery', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40131, 'Mountain Brook', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40132, 'Muscle Shoals', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40133, 'Northport', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40134, 'Notasulga', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40135, 'Opelika', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40136, 'Ozark', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40137, 'Pelham', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40138, 'Pell City', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40139, 'Pennsylvania', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40140, 'Phenix City', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40141, 'Prattville', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40142, 'Prichard', 3766, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, 1), -(40143, 'Ramer', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40144, 'Roanoke', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40145, 'Saraland', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40146, 'Scottsboro', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40147, 'Selma', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40148, 'Smiths', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40149, 'Sumiton', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40150, 'Sylacauga', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40151, 'Talladega', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40152, 'Thomasville', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40153, 'Trafford', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40154, 'Troy', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40155, 'Trussville', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40156, 'Tuscaloosa', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40157, 'Tuskegee', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40158, 'Vestavia Hills', 3766, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40159, 'Anchorage', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40160, 'Barrow', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40161, 'College', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40162, 'Fairbanks', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40163, 'Homer', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40164, 'Juneau', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40165, 'Kenai', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40166, 'Ketchikan', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40167, 'Kodiak', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40168, 'Nome', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40169, 'Palmer', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40170, 'Sitka', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40171, 'Soldotna', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40172, 'Sterling', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40173, 'Unalaska', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40174, 'Wasilla', 3767, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40175, 'Apache Junction', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40176, 'Avondale', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40177, 'Bisbee', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40178, 'Bouse', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40179, 'Bullhead City', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40180, 'Carefree', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40181, 'Casa Grande', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40182, 'Casas Adobes', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40183, 'Clarkdale', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40184, 'Cottonwood', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40185, 'Douglas', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40186, 'Drexel Heights', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40187, 'El Mirage', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40188, 'Flagstaff', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40189, 'Flowing Wells', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40190, 'Fort Mohave', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40191, 'Fortuna Foothills', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40192, 'Fountain Hills', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40193, 'Gilbert', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40194, 'Glendale', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40195, 'Globe', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40196, 'Goodyear', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40197, 'Green Valley', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40198, 'Kingman', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40199, 'Lake Havasu City', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40200, 'Laveen', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40201, 'Litchfield Park', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40202, 'Marana', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40203, 'Mesa', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40204, 'New Kingman-Butler', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40205, 'Oracle', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40206, 'Oro Valley', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40207, 'Paradise Valley', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40208, 'Parker', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40209, 'Payson', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40210, 'Peoria', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40211, 'Phoenix', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40212, 'Pine', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40213, 'Pinetop', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40214, 'Prescott Valley', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40215, 'Quartzsite', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40216, 'Queen Creek', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40217, 'Rio Rico', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40218, 'Safford', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40219, 'Scottsdale', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40220, 'Sedona', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40221, 'Sierra Vista', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40222, 'Sierra Vista Southeast', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40223, 'Sun City', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40224, 'Sun City West', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40225, 'Surprise', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40226, 'Tempe', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40227, 'Tombstone', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40228, 'Tucson', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40229, 'Winslow', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40230, 'Yuma', 3768, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40231, 'Alexander', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40232, 'Arkadelphia', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40233, 'Batesville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40234, 'Benton', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40235, 'Bentonville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40236, 'Berryville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40237, 'Blytheville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40238, 'Cabot', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40239, 'Camden', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40240, 'Cherry Valley', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40241, 'Conway', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40242, 'Corning', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40243, 'Fayetteville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40244, 'Forrest City', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40245, 'Fort Smith', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40246, 'Harrison', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40247, 'Hope', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40248, 'Hot Springs', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40249, 'Jonesboro', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40250, 'Lake City', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40251, 'Little Rock', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40252, 'Magnolia', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40253, 'Mount Vernon', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40254, 'Mountain Home', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40255, 'Norfork', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40256, 'North Little Rock', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40257, 'Paragould', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40258, 'Piggott', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40259, 'Pine Bluff', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40260, 'Pocahontas', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40261, 'Quitman', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40262, 'Rogers', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40263, 'Russellville', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40264, 'Searcy', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40265, 'Sheridan', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40266, 'Sherwood', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40267, 'Siloam Springs', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40268, 'Springdale', 3769, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, 1), -(40269, 'Texarkana', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40270, 'Van Buren', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40271, 'Ward', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40272, 'West Helena', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40273, 'West Memphis', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40274, 'Wynne', 3769, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40275, 'Adelanto', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40276, 'Agoura Hills', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40277, 'Aguanga', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40278, 'Alameda', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40279, 'Albany', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40280, 'Alhambra', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40281, 'Aliso Viejo', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40282, 'Alondra Park', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40283, 'Alpine', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40284, 'Alta Loma', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40285, 'Altadena', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40286, 'American Canyon', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40287, 'Anaheim', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40288, 'Anderson', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40289, 'Antelope', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40290, 'Antioch', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40291, 'Apple Valley', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40292, 'Aptos', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40293, 'Arcadia', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40294, 'Arcata', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40295, 'Arden-Arcade', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40296, 'Arroyo Grande', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40297, 'Artesia', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40298, 'Arvin', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40299, 'Ashland', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40300, 'Atascadero', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40301, 'Atwater', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40302, 'Avalon', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40303, 'Avenal', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40304, 'Avocado Heights', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40305, 'Azusa', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40306, 'Bakersfield', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40307, 'Baldwin Park', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40308, 'Banning', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40309, 'Barstow', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40310, 'Bay Point', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40311, 'Baywood-Los Osos', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40312, 'Bear Valley Springs', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40313, 'Bell Gardens', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40314, 'Bellflower', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40315, 'Ben Lomond', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40316, 'Benicia', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40317, 'Beverly Hills', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40318, 'Big Bear Lake', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40319, 'Bloomington', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40320, 'Blythe', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40321, 'Bonita', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40322, 'Bostonia', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40323, 'Brawley', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40324, 'Brea', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40325, 'Brookdale', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40326, 'Buena Park', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40327, 'Burbank', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40328, 'Burlingame', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40329, 'Burnham', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40330, 'Byron', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40331, 'Calabasas', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40332, 'Calexico', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40333, 'California City', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40334, 'Camarillo', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40335, 'Cameron Park', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40336, 'Camino', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40337, 'Camp Pendleton North', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40338, 'Camp Pendleton South', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40339, 'Campbell', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40340, 'Canoga Park', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40341, 'Canyon Lake', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40342, 'Capitola', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40343, 'Carlsbad', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40344, 'Carmel', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40345, 'Carmel Valley', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40346, 'Carmichael', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40347, 'Carpinteria', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40348, 'Carson', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40349, 'Casa de Oro-Mount Helix', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40350, 'Castaic', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40351, 'Castro Valley', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40352, 'Cathedral City', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40353, 'Cayucos', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40354, 'Cerritos', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40355, 'Charter Oak', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40356, 'Chatsworth', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40357, 'Cherryland', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40358, 'Chico', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40359, 'Chino Hills', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40360, 'Chula Vista', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40361, 'Citrus', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40362, 'Citrus Heights', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40363, 'City of Commerce', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40364, 'City of Industry', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40365, 'Claremont', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40366, 'Clearlake', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40367, 'Clovis', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40368, 'Coachella', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40369, 'Coalinga', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40370, 'Colfax', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40371, 'Colton', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40372, 'Colusa', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40373, 'Commerce', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40374, 'Compton', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40375, 'Corcoran', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40376, 'Corona', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(40377, 'Corte Madera', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40378, 'Costa Mesa', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40379, 'Cotati', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40380, 'Country Club', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40381, 'Covina', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40382, 'Crestline', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40383, 'Cudahy', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40384, 'Culver City', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40385, 'Cupertino', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40386, 'Cypress', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40387, 'Daly City', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40388, 'Dana Point', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40389, 'Davis', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40390, 'Del Mar', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40391, 'Delano', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40392, 'Desert Hot Springs', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40393, 'Diamond Bar', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40394, 'Dinuba', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40395, 'Dixon', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40396, 'Downey', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40397, 'East Foothills', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40398, 'East Hemet', 3771, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, 1), -(40399, 'East La Mirada', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40400, 'East Palo Alto', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40401, 'East San Gabriel', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40402, 'El Cajon', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40403, 'El Centro', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40404, 'El Granada', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40405, 'El Paso de Robles', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40406, 'El Segundo', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40407, 'El Sobrante', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40408, 'Elk Grove', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40409, 'Emeryville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40410, 'Encinitas', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40411, 'Escondido', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40412, 'Etna', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40413, 'Eureka', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40414, 'Fair Oaks', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40415, 'Fairfax', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40416, 'Fallbrook', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40417, 'Fillmore', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40418, 'Florence-Graham', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40419, 'Florin', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40420, 'Folsom', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40421, 'Fontana', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40422, 'Foothill Farms', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40423, 'Foothill Ranch', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40424, 'Fort Bragg', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40425, 'Foster City', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40426, 'Fountain Valley', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40427, 'Freedom', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40428, 'Fremont', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40429, 'Fullerton', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40430, 'Galt', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40431, 'Garberville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40432, 'Garden Acres', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40433, 'Garden Grove', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40434, 'Gardena', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40435, 'Gilroy', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40436, 'Glen Avon', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40437, 'Glendora', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40438, 'Goleta', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40439, 'Gonzales', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40440, 'Granada Hills', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40441, 'Grand Terrace', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40442, 'Grass Valley', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40443, 'Grover Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40444, 'Gualala', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40445, 'Guerneville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40446, 'Hacienda Heights', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40447, 'Half Moon Bay', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40448, 'Hanford', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40449, 'Harbor City', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40450, 'Hawaiian Gardens', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40451, 'Hawthorne', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40452, 'Hayward', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40453, 'Hemet', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40454, 'Hermosa Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40455, 'Hesperia', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40456, 'Highland', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40457, 'Hollister', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40458, 'Hollywood', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40459, 'Huntington Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40460, 'Huntington Park', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40461, 'Idyllwild', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40462, 'Imperial Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40463, 'Indio', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40464, 'Industry', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40465, 'Irwindale', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40466, 'Isla Vista', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40467, 'Jackson', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40468, 'Jamul', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40469, 'La Canada Flintridge', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40470, 'La Crescenta-Montrose', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40471, 'La Habra', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40472, 'La Jolla', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40473, 'La Mirada', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40474, 'La Puente', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40475, 'La Quinta', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40476, 'La Riviera', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40477, 'La Verne', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40478, 'LaVerne', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40479, 'Ladera Ranch', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40480, 'Lafayette', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40481, 'Laguna Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40482, 'Laguna Hills', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40483, 'Laguna Niguel', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40484, 'Lake Elsinore', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40485, 'Lake Forest', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40486, 'Lakeside', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40487, 'Lakewood', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40488, 'Larkspur', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40489, 'Lawndale', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40490, 'Laytonville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40491, 'Lemon Grove', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40492, 'Lemoore', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40493, 'Lennox', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40494, 'Linda', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40495, 'Live Oak', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40496, 'Livermore', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40497, 'Loma Linda', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40498, 'Lomita', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40499, 'Lompoc', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40500, 'Long Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40501, 'Los Alamitos', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40502, 'Los Angeles', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40503, 'Los Angeles East', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40504, 'Los Banos', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40505, 'Los Gatos', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40506, 'Los Olivos', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40507, 'Lynwood', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40508, 'MacKinleyville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40509, 'Magalia', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40510, 'Malibu', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40511, 'Mammoth Lakes', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40512, 'Manhattan Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40513, 'Manteca', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40514, 'Marina del Rey', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40515, 'Mariposa', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40516, 'Marshall', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40517, 'Marysville', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40518, 'Maywood', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40519, 'Menlo Park', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40520, 'Merced', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40521, 'Middletown', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40522, 'Midway City', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40523, 'Mill Valley', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40524, 'Millbrae', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40525, 'Milpitas', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40526, 'Mira Loma', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40527, 'Mission Viejo', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40528, 'Modesto', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40529, 'Monclair', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40530, 'Montara', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40531, 'Montclair', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40532, 'Montecito', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40533, 'Monterey', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40534, 'Monterey Park', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40535, 'Moorpark', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40536, 'Moraga Town', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40537, 'Moreno Valley', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40538, 'Morgan Hill', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40539, 'Morro Bay', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40540, 'Moss Beach', 3771, '2024-01-21 12:47:29', '2024-01-21 12:47:29', NULL, 1), -(40541, 'Mount Shasta', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40542, 'Mountain View', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40543, 'Murrieta', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40544, 'N. Hollywood', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40545, 'Napa', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40546, 'National City', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40547, 'Nevada City', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40548, 'Newport Beach', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40549, 'Norco', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40550, 'North Auburn', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40551, 'North Fair Oaks', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40552, 'North Fork', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40553, 'North Highlands', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40554, 'North Hills', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40555, 'North Hollywood', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40556, 'Northridge', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40557, 'Norwalk', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40558, 'Novato', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40559, 'Nuevo', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40560, 'Oak View', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40561, 'Oakdale', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40562, 'Oakhurst', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40563, 'Oakland', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40564, 'Oakley', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40565, 'Oceanside', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40566, 'Oildale', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40567, 'Ojai', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40568, 'Olivehurst', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40569, 'Orangevale', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40570, 'Orcutt', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40571, 'Oregon House', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40572, 'Orinda', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40573, 'Oroville', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40574, 'Oxnard', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40575, 'Pacific Grove', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40576, 'Pacific Palisades', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40577, 'Pacifica', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40578, 'Pacoima', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40579, 'Pajaro', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40580, 'Palm Desert', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40581, 'Palm Springs', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40582, 'Palmdale', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40583, 'Palos Verdes Estates', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40584, 'Pamona', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40585, 'Panorama City', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40586, 'Paramount', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40587, 'Parkway-South Sacramento', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40588, 'Parlier', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40589, 'Pasadena', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40590, 'Patterson', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40591, 'Pedley', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40592, 'Perris', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40593, 'Petaluma', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40594, 'Pico Rivera', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40595, 'Piedmont', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40596, 'Pinole', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40597, 'Pismo Beach', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40598, 'Pittsburg', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40599, 'Placentia', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40600, 'Placerville', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40601, 'Playa del Rey', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40602, 'Pleasant Hill', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40603, 'Pleasanton', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40604, 'Point Reyes Station', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40605, 'Pollock Pines', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40606, 'Pomona', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40607, 'Port Costa', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40608, 'Port Hueneme', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40609, 'Porterville', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40610, 'Poway', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40611, 'Quartz Hill', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40612, 'Ramona', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40613, 'Rancho Cordova', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40614, 'Rancho Cucamonga', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40615, 'Rancho Dominguez', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40616, 'Rancho Mirage', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40617, 'Rancho Murieta', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40618, 'Rancho Palos Verdes', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40619, 'Rancho San Diego', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40620, 'Rancho Santa Margarita', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40621, 'Red Bluff', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40622, 'Redding', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40623, 'Redlands', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40624, 'Redondo Beach', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40625, 'Redway', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40626, 'Redwood City', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40627, 'Reedley', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40628, 'Reseda', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40629, 'Rialto', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40630, 'Ridgecrest', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40631, 'Rio Linda', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40632, 'Rio Nido', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40633, 'Rio del Mar', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40634, 'Riverbank', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40635, 'Riverside', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40636, 'Rocklin', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40637, 'Rohnert Park', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40638, 'Rolling Hills', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40639, 'Rosamond', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40640, 'Roseland', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40641, 'Rosemead', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40642, 'Rosemont', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40643, 'Roseville', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40644, 'Rossmoor', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40645, 'Rowland Heights', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40646, 'Rubidoux', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40647, 'Sacramento', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40648, 'San Anselmo', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40649, 'San Bruno', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40650, 'San Dimas', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40651, 'San Juan Capistrano', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40652, 'San Leandro', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40653, 'San Luis Obispo', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40654, 'San Marino', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40655, 'San Ysidro', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40656, 'Santa Clarita', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40657, 'Santa Fe Springs', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40658, 'Santa Monica', 3771, '2024-01-21 12:47:30', '2024-01-21 12:47:30', NULL, 1), -(40659, 'Santa Paula', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40660, 'Santa Ynez', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40661, 'Santee', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40662, 'Saratoga', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40663, 'Sausalito', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40664, 'Scotts Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40665, 'Seal Beach', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40666, 'Seaside', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40667, 'Shafter', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40668, 'Sherman Oaks', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40669, 'Sierra Madre', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40670, 'Signal Hill', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40671, 'Simi Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40672, 'Solana Beach', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40673, 'Solvang', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40674, 'Sonoma', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40675, 'Sonora', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40676, 'Soquel', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40677, 'South El Monte', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40678, 'South Gate', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40679, 'South Lake Tahoe', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40680, 'South Pasadena', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40681, 'South San Francisco', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40682, 'South San Jose Hills', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40683, 'South Whittier', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40684, 'South Yuba City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40685, 'Spring Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40686, 'St. Helena', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40687, 'Stanford', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40688, 'Stanton', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40689, 'Stevenson Ranch', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40690, 'Stockton', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40691, 'Studio City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40692, 'Suisun City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40693, 'Sun Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40694, 'Sunland', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40695, 'Sunnyvale', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40696, 'Susanville', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40697, 'Sutter', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40698, 'Sylmar', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40699, 'Tahoe City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40700, 'Tamalpais-Homestead Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40701, 'Tarzana', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40702, 'Tehachapi', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40703, 'Temecula', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40704, 'Temple City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40705, 'Thousand Oaks', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40706, 'Tiburon', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40707, 'Topanga', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40708, 'Torrance', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40709, 'Trabuco Canyon', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40710, 'Tracy', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40711, 'Trona', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40712, 'Truckee', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40713, 'Tujunga', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40714, 'Tulare', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40715, 'Turlock', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40716, 'Tustin', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40717, 'Tustin Foothills', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40718, 'Twentynine Palms', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40719, 'Twentynine Palms Base', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40720, 'Ukiah', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40721, 'Union City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40722, 'Upland', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40723, 'Vacaville', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40724, 'Valinda', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40725, 'Valle Vista', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40726, 'Vallejo', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40727, 'Valley Center', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40728, 'Valley Glen', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40729, 'Valley Village', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40730, 'Van Nuys', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40731, 'Vandenberg Air Force Base', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40732, 'Ventura', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40733, 'Victorville', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40734, 'View Park-Windsor Hills', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40735, 'Vincent', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40736, 'Visalia', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40737, 'Vista', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40738, 'Walnut', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40739, 'Walnut Creek', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40740, 'Walnut Park', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40741, 'Wasco', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40742, 'Watsonville', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40743, 'West Athens', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40744, 'West Carson', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40745, 'West Covina', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40746, 'West Hills', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40747, 'West Hollywood', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40748, 'West Puente Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40749, 'West Sacramento', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40750, 'West Whittier-Los Nietos', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40751, 'Westlake Village', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40752, 'Westminster', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40753, 'Westmont', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40754, 'Whittier', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40755, 'Wildomar', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40756, 'Willits', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40757, 'Willowbrook', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40758, 'Wilmington', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40759, 'Woodland', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40760, 'Woodland Hills', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40761, 'Yorba Linda', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40762, 'Yreka', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40763, 'Yuba City', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40764, 'Yucaipa', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40765, 'Yucca Valley', 3771, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40766, 'Air Force Academy', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40767, 'Alamosa', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40768, 'Applewood', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40769, 'Arvada', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40770, 'Aspen', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40771, 'Basalt', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40772, 'Bellvue', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40773, 'Black Forest', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40774, 'Boulder', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40775, 'Broomfield', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40776, 'Canon City', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40777, 'Carbondale', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40778, 'Castle Rock', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40779, 'Castlewood', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40780, 'Centennial', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40781, 'Cimarron Hills', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40782, 'Clifton', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40783, 'Colorado Springs', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40784, 'Columbine', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40785, 'Commerce City', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40786, 'Cortez', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40787, 'Crawford', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40788, 'Denver', 3773, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, 1), -(40789, 'Edwards', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40790, 'Elizabeth', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40791, 'Englewood', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40792, 'Estes Park', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40793, 'Evergreen', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40794, 'Federal Heights', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40795, 'Fort Carson', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40796, 'Fort Collins', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40797, 'Fort Morgan', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40798, 'Fountain', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40799, 'Grand Junction', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40800, 'Greeley', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40801, 'Greenwood Village', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40802, 'Gunbarrel', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40803, 'Highlands Ranch', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40804, 'Holly', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40805, 'Ken Caryl', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40806, 'Littleton', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40807, 'Longmont', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40808, 'Louisville', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40809, 'Loveland', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40810, 'Lyons', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40811, 'Monument', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40812, 'Nederland', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40813, 'Niwot', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40814, 'Northglenn', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40815, 'Pagosa Springs', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40816, 'Penrose', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40817, 'Peyton', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40818, 'Pueblo', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40819, 'Ridgway', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40820, 'Rifle', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40821, 'Rocky Ford', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40822, 'Sanford', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40823, 'Security-Widefield', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40824, 'Sherrelwood', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40825, 'Silver Cliff', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40826, 'Snowmass Village', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40827, 'Southglenn', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40828, 'Steamboat Springs', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40829, 'Superior', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40830, 'Telluride', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40831, 'Thornton', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40832, 'Vail', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40833, 'Welby', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40834, 'Westcliffe', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40835, 'Wheat Ridge', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40836, 'Woodland Park', 3773, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40837, 'Ansonia', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40838, 'Bloomfield', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40839, 'Branford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40840, 'Bridgeport', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40841, 'Canaan', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40842, 'Canton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40843, 'Central Manchester', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40844, 'Cheshire', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40845, 'Conning Towers-Nautilus Park', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40846, 'Coscob', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40847, 'Cranbury', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40848, 'Cromwell', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40849, 'Danbury', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40850, 'Darien', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40851, 'Dayville', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40852, 'East Hartford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40853, 'East Haven', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40854, 'Ellington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40855, 'Farmington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40856, 'Glastonbury', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40857, 'Greens Farms', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40858, 'Groton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40859, 'Guilford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40860, 'Haddam', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40861, 'Hamden', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40862, 'Hartford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40863, 'Harwinton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40864, 'Lakeville', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40865, 'Lyme', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40866, 'Meriden', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40867, 'Monroe', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40868, 'Mystic', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40869, 'Naugatuck', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40870, 'New Britain', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40871, 'New Canaan', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40872, 'New Hartford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40873, 'New Haven', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40874, 'New London', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40875, 'New Milford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40876, 'Newington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40877, 'North Haven', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40878, 'North Stonington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40879, 'Old Saybrook', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40880, 'Oneco', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40881, 'Pawcatuck', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40882, 'Plainville', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40883, 'Putnam', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40884, 'Rocky Hill', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40885, 'Rowayton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40886, 'Sandy Hook', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40887, 'Sharon', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40888, 'Shelton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40889, 'South Windsor', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40890, 'Southington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40891, 'Storrs', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40892, 'Suffield', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40893, 'Taftville', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40894, 'Terryville', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40895, 'Tolland', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40896, 'Torrington', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40897, 'Trumbull', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40898, 'Wallingford Center', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40899, 'Waterbury', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40900, 'Watertown', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40901, 'West Hartford', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40902, 'West Haven', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40903, 'Weston', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40904, 'Wethersfield', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40905, 'Willimantic', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40906, 'Wilton', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40907, 'Windsor Locks', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40908, 'Winsted', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40909, 'Woodbury', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40910, 'pomfret', 3774, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40911, 'Bear', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40912, 'Brookside', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40913, 'Claymont', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40914, 'Dover Base Housing', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40915, 'Edgemoor', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40916, 'Elsmere', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40917, 'Pike Creek', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40918, 'Seaford', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40919, 'Smyrna', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40920, 'Talleyville', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40921, 'Wilmington Manor', 3775, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, 1), -(40922, 'Alachua', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40923, 'Altamonte Springs', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40924, 'Apopka', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40925, 'Atlantic Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40926, 'Auburndale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40927, 'Aventura', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40928, 'Avon Park', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40929, 'Azalea Park', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40930, 'Bal Harbour', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40931, 'Bartow', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40932, 'Bayonet Point', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40933, 'Bayshore Gardens', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40934, 'Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40935, 'Bellair-Meadowbrook Terrace', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40936, 'Belle Glade', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40937, 'Bellview', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40938, 'Bloomingdale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40939, 'Boca Raton', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40940, 'Boca del Mar', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40941, 'Bonita Springs', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40942, 'Boynton Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40943, 'Bradenton', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40944, 'Brent', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40945, 'Brooksville', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40946, 'Brownsville', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40947, 'Buena Ventura Lakes', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40948, 'Bunnell', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40949, 'Callaway', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40950, 'Cape Coral', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40951, 'Carol City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40952, 'Casselberry', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40953, 'Catalina Foothills', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40954, 'Celebration', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40955, 'Century Village', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40956, 'Citrus Park', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40957, 'Clearwater', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40958, 'Cocoa', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40959, 'Cocoa Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40960, 'Coconut Creek', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40961, 'Coconut Grove', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40962, 'Cooper City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40963, 'Coral Gables', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40964, 'Coral Springs', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40965, 'Coral Terrace', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40966, 'Cortlandt Manor', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40967, 'Crestview', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40968, 'Crystal River', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40969, 'Cutler', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40970, 'Cutler Ridge', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40971, 'Cypress Gardens', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40972, 'Cypress Lake', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40973, 'Dania', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40974, 'Dania Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40975, 'Davie', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40976, 'Daytona Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40977, 'De Bary', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40978, 'De Funiak Springs', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40979, 'De Land', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40980, 'Debary', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40981, 'Deer Park', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40982, 'Deerfield Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40983, 'Del Rio', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40984, 'Delray Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(40985, 'Deltona', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40986, 'Destin', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40987, 'Doctor Phillips', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40988, 'Dora', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40989, 'Doral', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40990, 'East Lake', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40991, 'Edgewater', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40992, 'Eglin Air Force Base', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40993, 'Egypt Lake-Leto', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40994, 'Elfers', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40995, 'Ensley', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40996, 'Eustis', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40997, 'Fairview Shores', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40998, 'Fern Park', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(40999, 'Fernandina Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41000, 'Ferry Pass', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41001, 'Flagler Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41002, 'Floral City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41003, 'Florida City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41004, 'Florida Ridge', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41005, 'Forest City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41006, 'Fort Lauderdale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41007, 'Fort Myers', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41008, 'Fort Myers Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41009, 'Fort Pierce', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41010, 'Fort Walton Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41011, 'Freeport', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41012, 'Fruitville', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41013, 'Ft. Lauderdale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41014, 'Gainesville', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41015, 'Gladeview', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41016, 'Glenvar Heights', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41017, 'Golden Gate', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41018, 'Golden Glades', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41019, 'Goldenrod', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41020, 'Greater Carrollwood', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41021, 'Greater Northdale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41022, 'Green Cove Springs', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41023, 'Greenacres', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41024, 'Gulf Gate Estates', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41025, 'Gulfport', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41026, 'Haines City', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41027, 'Hallandale', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41028, 'Hallandale Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41029, 'Hammocks', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41030, 'Hamptons at Boca Raton', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41031, 'Hialeah', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41032, 'Hialeah Gardens', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41033, 'Highpoint', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41034, 'Hobe Sound', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41035, 'Holiday', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41036, 'Holly Hill', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41037, 'Homestead', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41038, 'Homosassa', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41039, 'Hudson', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41040, 'Immokalee', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41041, 'Iona', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41042, 'Ives Estates', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41043, 'Jacksonville Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41044, 'Jasmine Estates', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41045, 'Jensen Beach', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41046, 'Jupiter', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41047, 'Kendale Lakes', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41048, 'Kendall', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41049, 'Kendall West', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41050, 'Key Biscayne', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41051, 'Key Largo', 2823, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, 1), -(41052, 'Key West', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41053, 'Kings Point', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41054, 'Kissimmee', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41055, 'Lady Lake', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41056, 'Lake Alfred', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41057, 'Lake Lucerne', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41058, 'Lake Magdalene', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41059, 'Lake Mary', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41060, 'Lake Placid', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41061, 'Lake Wales', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41062, 'Lake Worth', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41063, 'Lakeland', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41064, 'Lakeland Highlands', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41065, 'Land O Lakes', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41066, 'Largo', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41067, 'Lauderdale Lakes', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41068, 'Lauderhill', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41069, 'Laurel', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41070, 'Lecanto', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41071, 'Leesburg', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41072, 'Lehigh Acres', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41073, 'Leisure City', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41074, 'Lighthouse Point', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41075, 'Lockhart', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41076, 'Longwood', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41077, 'Loxahatchee', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41078, 'Lutz', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41079, 'Lynn Haven', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41080, 'Maitland', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41081, 'Medley', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41082, 'Merritt Island', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41083, 'Miami Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41084, 'Miami Gardens', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41085, 'Miami Lakes', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41086, 'Miami Shores', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41087, 'Miami Springs', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41088, 'Micco', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41089, 'Mims', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41090, 'Mulberry', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41091, 'Myrtle Grove', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41092, 'Naples Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41093, 'Naranja', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41094, 'New Port Richey', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41095, 'New Port Richey East', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41096, 'New Smyrna Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41097, 'Niceville', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41098, 'Nokomis', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41099, 'Norland', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41100, 'North Andrews Gardens', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41101, 'North Fort Myers', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41102, 'North Lauderdale', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41103, 'North Miami', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41104, 'North Miami Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41105, 'North Naples', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41106, 'North Palm Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41107, 'North Port', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41108, 'Oak Ridge', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41109, 'Oakland Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41110, 'Ocala', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41111, 'Ocoee', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41112, 'Ojus', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41113, 'Okeechobee', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41114, 'Oldsmar', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41115, 'Olympia Heights', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41116, 'Opa-locka', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41117, 'Orange City', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41118, 'Orange Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41119, 'Orlando', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41120, 'Ormond Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41121, 'Ormond-by-the-Sea', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41122, 'Osprey', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41123, 'Palm Bay', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41124, 'Palm Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41125, 'Palm Beach Gardens', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41126, 'Palm City', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41127, 'Palm Coast', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41128, 'Palm Harbor', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41129, 'Palm River-Clair Mel', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41130, 'Palm Valley', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41131, 'Palmetto', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41132, 'Palmetto Estates', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41133, 'Panama City', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41134, 'Parkland', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41135, 'Pembroke Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41136, 'Pembroke Pines', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41137, 'Pensacola', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41138, 'Perrine', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41139, 'Pine Castle', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41140, 'Pine Hills', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41141, 'Pinellas Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41142, 'Pinewood', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41143, 'Plant City', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41144, 'Plantation', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41145, 'Pompano Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41146, 'Pompano Beach Highlands', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41147, 'Ponte Vedra', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41148, 'Port Charlotte', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41149, 'Port Orange', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41150, 'Port Saint John', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41151, 'Port Saint Lucie', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41152, 'Quincy', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41153, 'Redington Shores', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41154, 'Richmond Heights', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41155, 'Richmond West', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41156, 'Riverview', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41157, 'Riviera Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41158, 'Rockledge', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41159, 'Royal Palm Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41160, 'Safety Harbor', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41161, 'Saint Augustine', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41162, 'Saint Cloud', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41163, 'Saint Petersburg Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41164, 'San Carlos Park', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41165, 'Sandalfoot Cove', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41166, 'Sanibel', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41167, 'Sarasota', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41168, 'Sarasota Springs', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41169, 'Satellite Beach', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41170, 'Scott Lake', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41171, 'Sebastian', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41172, 'Seminole', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41173, 'Shalimar', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41174, 'South Bradenton', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41175, 'South Daytona', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41176, 'South Miami', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41177, 'South Miami Heights', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41178, 'South Patrick Shores', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41179, 'South Venice', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41180, 'Spring Hill', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41181, 'Stuart', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41182, 'Sun City Center', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41183, 'Sunny Isles', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41184, 'Sunrise', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41185, 'Sunset', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41186, 'Sweetwater', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41187, 'Tallahassee', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41188, 'Tamarac', 2823, '2024-01-21 12:47:34', '2024-01-21 12:47:34', NULL, 1), -(41189, 'Tamiami', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41190, 'Tampa', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41191, 'Tarpon Springs', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41192, 'Temple Terrace', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41193, 'The Crossings', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41194, 'The Hammocks', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41195, 'Titusville', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41196, 'Town n Country', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41197, 'University', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41198, 'University Park', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41199, 'Valrico', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41200, 'Vero Beach', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41201, 'Vero Beach South', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41202, 'Villas', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41203, 'Wekiva Springs', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41204, 'Wesley Chapel', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41205, 'West Little River', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41206, 'West Palm Beach', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41207, 'West Park', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41208, 'West Pensacola', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41209, 'West and East Lealman', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41210, 'Westchester', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41211, 'Westview', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41212, 'Westwood Lakes', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41213, 'Wilton Manors', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41214, 'Winston', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41215, 'Winter Garden', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41216, 'Winter Haven', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41217, 'Winter Park', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41218, 'Winter Springs', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41219, 'Wright', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41220, 'Yeehaw Junction', 2823, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41221, 'Acworth', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41222, 'Adel', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41223, 'Alpharetta', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41224, 'Americus', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41225, 'Athens-Clarke', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41226, 'Atlanta', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41227, 'Augusta-Richmond', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41228, 'Austell', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41229, 'Bainbridge', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41230, 'Barnesville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41231, 'Belvedere Park', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41232, 'Bogart', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41233, 'Bowdon', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41234, 'Braselton', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41235, 'Buford', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41236, 'Calhoun', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41237, 'Candler-MacAfee', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41238, 'Carrollton', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41239, 'Cartersville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41240, 'Chamblee', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41241, 'Clarkston', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41242, 'Cochran', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41243, 'College Park', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41244, 'Columbus', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41245, 'Comer', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41246, 'Conley', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41247, 'Conyers', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41248, 'Cordele', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41249, 'Covington', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41250, 'Culloden', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41251, 'Cumming', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41252, 'Dacula', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41253, 'Dahlonega', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41254, 'Dallas', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41255, 'Dalton', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41256, 'Dewy Rose', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41257, 'Doraville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41258, 'Douglasville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41259, 'Druid Hills', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41260, 'Duluth', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41261, 'Dunwoody', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41262, 'East Point', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41263, 'Elberton', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41264, 'Ellenwood', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41265, 'Ellijay', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41266, 'Evans', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41267, 'Fairmount', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41268, 'Flowery Branch', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41269, 'Folkston', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41270, 'Forest Park', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41271, 'Fort Benning South', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41272, 'Fort Gordon', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41273, 'Fort Stewart', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41274, 'Fort Valley', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41275, 'Foxborough', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41276, 'Gaines School', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41277, 'Glennville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41278, 'Gresham Park', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41279, 'Griffin', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41280, 'Grovetown', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41281, 'Hartwell', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41282, 'Hinesville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41283, 'Kennesaw', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41284, 'Kingsland', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41285, 'LaGrange', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41286, 'Lawrenceville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41287, 'Lilburn', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41288, 'Lithia Springs', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41289, 'Lithonia', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41290, 'Locust Grove', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41291, 'Loganville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41292, 'Mableton', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41293, 'Marietta', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41294, 'McDonough', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41295, 'Milledgeville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41296, 'Morrow', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41297, 'Moultrie', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41298, 'Mountain', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41299, 'Mountain Park', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41300, 'Newnan', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41301, 'Norcross', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41302, 'North Atlanta', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41303, 'North Decatur', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41304, 'North Druid Hills', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41305, 'Oakwood', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41306, 'Panthersville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41307, 'Peachtree City', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41308, 'Powder Springs', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41309, 'Redan', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41310, 'Rex', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41311, 'Riverdale', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41312, 'Rossville', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41313, 'Roswell', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41314, 'Saint Simons', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41315, 'Sandy Springs', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41316, 'Savannah', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41317, 'Scottdale', 3777, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, 1), -(41318, 'Sharpsburg', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41319, 'Snellville', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41320, 'Sparks', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41321, 'Statesboro', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41322, 'Stockbridge', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41323, 'Stone Mountain', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41324, 'Suwanee', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41325, 'Tifton', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41326, 'Tucker', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41327, 'Tybee Island', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41328, 'Valdosta', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41329, 'Vidalia', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41330, 'Warner Robins', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41331, 'Waycross', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41332, 'Wilmington Island', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41333, 'Woodbine', 3777, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41334, 'Ahuimanu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41335, 'Aiea', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41336, 'Aliamanu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41337, 'Ewa Beach', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41338, 'Haiku', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41339, 'Halawa', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41340, 'Hanalei', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41341, 'Hilo', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41342, 'Holualoa', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41343, 'Honolulu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41344, 'Kahului', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41345, 'Kailua', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41346, 'Kalaheo', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41347, 'Kamuela', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41348, 'Kaneohe', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41349, 'Kaneohe Station', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41350, 'Kapaa', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41351, 'Kapolei', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41352, 'Kihei', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41353, 'Lahaina', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41354, 'Lanai City', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41355, 'Lihue', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41356, 'Makaha', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41357, 'Makakilo City', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41358, 'Makawao', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41359, 'Mi-Wuk Village', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41360, 'Mililani Town', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41361, 'Naalehu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41362, 'Nanakuli', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41363, 'Pahoa', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41364, 'Pearl City', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41365, 'Schofield Barracks', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41366, 'Wahiawa', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41367, 'Waialua', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41368, 'Waianae', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41369, 'Wailuku', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41370, 'Waimalu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41371, 'Waipahu', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41372, 'Waipio', 3778, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41373, 'Blackfoot', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41374, 'Boise', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41375, 'Boise City', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41376, 'Boulder Hill', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41377, 'Burley', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41378, 'Caldwell', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41379, 'Coeur d Alene', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41380, 'Eagle', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41381, 'Garden City', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41382, 'Idaho Falls', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41383, 'Lewiston', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41384, 'Meridian', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41385, 'Nampa', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41386, 'Payette', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41387, 'Pocatello', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41388, 'Post Falls', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41389, 'Rexburg', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41390, 'Rigby', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41391, 'Sandpoint', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41392, 'Twin Falls', 3779, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41393, 'Addison', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41394, 'Algonquin', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41395, 'Alsip', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41396, 'Arlington Heights', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41397, 'Bannockburn', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41398, 'Barrington', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41399, 'Bartlett', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41400, 'Batavia', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41401, 'Beach Park', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41402, 'Beardstown', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41403, 'Bedford Park', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41404, 'Bellwood', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41405, 'Belvidere', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41406, 'Bensenville', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41407, 'Berwyn', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41408, 'Blue Island', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41409, 'Boling Brook', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41410, 'Bolingbrook', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41411, 'Bourbonnais', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41412, 'Bradley', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41413, 'Breese', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41414, 'Bridgeview', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41415, 'Brimfield', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41416, 'Broadview', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41417, 'Brookfield', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41418, 'Buffalo Grove', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41419, 'Burr Ridge', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41420, 'Cahokia', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41421, 'Calumet City', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41422, 'Carlinville', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41423, 'Carol Stream', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41424, 'Carpentersville', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41425, 'Cary', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41426, 'Centralia', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41427, 'Champaign', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41428, 'Channahon', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41429, 'Charleston', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41430, 'Chicago', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41431, 'Chicago Heights', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41432, 'Chicago Ridge', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41433, 'Cicero', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41434, 'Coal City', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41435, 'Collinsville', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41436, 'Congerville', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41437, 'Country Club Hills', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41438, 'Crest Hill', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41439, 'Crestwood', 3780, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, 1), -(41440, 'Crystal Lake', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41441, 'DeKalb', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41442, 'Deerfield', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41443, 'Des Plaines', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41444, 'Dolton', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41445, 'Downers Grove', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41446, 'Earlville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41447, 'East Dundee', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41448, 'East Moline', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41449, 'East Peoria', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41450, 'East Saint Louis', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41451, 'Edwardsville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41452, 'Elburn', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41453, 'Elk Grove Village', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41454, 'Elmhurst', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41455, 'Elmwood Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41456, 'Evanston', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41457, 'Evergreen Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41458, 'Fairview Heights', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41459, 'Flossmoor', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41460, 'Frankfort', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41461, 'Franklin Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41462, 'Galena', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41463, 'Galesburg', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41464, 'Glen Carbon', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41465, 'Glen Ellyn', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41466, 'Glendale Heights', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41467, 'Glenview', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41468, 'Godfrey', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41469, 'Goodings Grove', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41470, 'Granite City', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41471, 'Grayslake', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41472, 'Gurnee', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41473, 'Hampshire', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41474, 'Hanover Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41475, 'Harvard', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41476, 'Harvey', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41477, 'Hawthorn Woods', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41478, 'Hazel Crest', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41479, 'Herrin', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41480, 'Hickory Hills', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41481, 'Highland Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41482, 'Hinsdale', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41483, 'Hoffman Estates', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41484, 'Huntley', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41485, 'Illinois City', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41486, 'Ingleside', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41487, 'Itasca', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41488, 'Johnston City', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41489, 'Joliet', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41490, 'Justice', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41491, 'Kankakee', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41492, 'Kewanee', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41493, 'La Grange', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41494, 'La Grange Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41495, 'La Salle', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41496, 'Lake Bluff', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41497, 'Lake Zurich', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41498, 'Lake in the Hills', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41499, 'Lansing', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41500, 'Lemont', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41501, 'Libertyville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41502, 'Lincolnwood', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41503, 'Lindenhurst', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41504, 'Lindenwood', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41505, 'Lisle', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41506, 'Lockport', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41507, 'Lombard', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41508, 'Long Grove', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41509, 'Loves Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41510, 'MacHenry', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41511, 'Machesney Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41512, 'Macomb', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41513, 'Marion', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41514, 'Martinsville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41515, 'Maryville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41516, 'Matteson', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41517, 'Mattoon', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41518, 'McHenry', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41519, 'Melrose Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41520, 'Midlothian', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41521, 'Minooka', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41522, 'Mokena', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41523, 'Moline', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41524, 'Momence', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41525, 'Monticello', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41526, 'Morton', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41527, 'Morton Grove', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41528, 'Mossville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41529, 'Mount Prospect', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41530, 'Mount Zion', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41531, 'Mundelein', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41532, 'Naperville', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41533, 'New Lenox', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41534, 'Niles', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41535, 'Normal', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41536, 'Norridge', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41537, 'North Aurora', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41538, 'North Chicago', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41539, 'Northbrook', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41540, 'Northfield', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41541, 'Northlake', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41542, 'O Fallon', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41543, 'Oak Forest', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41544, 'Oak Lawn', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41545, 'Oakbrook', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41546, 'Olney', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41547, 'Orland Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41548, 'Osco', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41549, 'Palatine', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41550, 'Palos Heights', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41551, 'Palos Hills', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41552, 'Park Forest', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41553, 'Park Ridge', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41554, 'Pekin', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41555, 'Peru', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41556, 'Plainfield', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41557, 'Pontiac', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41558, 'Princeton', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41559, 'Prospect Heights', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41560, 'Ramsey', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41561, 'Rantoul', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41562, 'Richton Park', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41563, 'River Forest', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41564, 'Rochelle', 3780, '2024-01-21 12:47:37', '2024-01-21 12:47:37', NULL, 1), -(41565, 'Rock Island', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41566, 'Rockford', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41567, 'Rolling Meadows', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41568, 'Romeoville', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41569, 'Roscoe', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41570, 'Roselle', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41571, 'Round Lake Beach', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41572, 'Saint Charles', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41573, 'Sauget', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41574, 'Sauk Village', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41575, 'Schaumburg', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41576, 'Schiller Park', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41577, 'Shumway', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41578, 'Skokie', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41579, 'South Elgin', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41580, 'South Holland', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41581, 'Streamwood', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41582, 'Streator', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41583, 'Sycamore', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41584, 'Taylorville', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41585, 'Tinley Park', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41586, 'Trenton', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41587, 'Urbana', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41588, 'Ursa', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41589, 'Vernon Hills', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41590, 'Villa Park', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41591, 'Warrenville', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(41592, 'Waukegan', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41593, 'West Chicago', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41594, 'West Dundee', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41595, 'Western Springs', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41596, 'Wheaton', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41597, 'Wheeling', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41598, 'Wilmette', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41599, 'Winnebago', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41600, 'Winnetka', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41601, 'Wood Dale', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41602, 'Wood River', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41603, 'Woodridge', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41604, 'Zion', 3780, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41605, 'Angola', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41606, 'Beech Grove', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41607, 'Cedar Lake', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41608, 'Chesterton', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41609, 'Clarksville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41610, 'Connersville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41611, 'Crawfordsville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41612, 'Crown Point', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41613, 'Dyer', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41614, 'East Chicago', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41615, 'Elkhart', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41616, 'Evansville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41617, 'Fishers', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41618, 'Fort Wayne', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41619, 'Franklin', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41620, 'Gary', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41621, 'Goshen', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41622, 'Granger', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41623, 'Greensburg', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41624, 'Greenwood', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41625, 'Griffith', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41626, 'Hammond', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41627, 'Helmsburg', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41628, 'Huntington', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41629, 'Indianapolis', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41630, 'Jeffersonville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41631, 'Knightstown', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41632, 'Kokomo', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41633, 'La Porte', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41634, 'Lake Station', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41635, 'Lawrence', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41636, 'Lebanon', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41637, 'Liberty', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41638, 'Logansport', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41639, 'Merrillville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41640, 'Michigan City', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41641, 'Mishawaka', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41642, 'Muncie', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41643, 'N. Albany', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41644, 'Nashville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41645, 'New Albany', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41646, 'New Castle', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41647, 'New Trenton', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41648, 'Noblesville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41649, 'North Vernon', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41650, 'Osceola', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41651, 'Poland', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41652, 'Portage', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41653, 'Rising Sun', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41654, 'Rockport', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41655, 'Schererville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41656, 'Scottsburg', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41657, 'Shelbyville', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41658, 'South Bend', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41659, 'Speedway', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41660, 'St. John', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41661, 'Terre Haute', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41662, 'Thorntown', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41663, 'Tippecanoe', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41664, 'Wabash', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41665, 'West Lafayette', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41666, 'Williams', 3781, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41667, 'Altoona', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41668, 'Ames', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41669, 'Ankeny', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41670, 'Boone', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41671, 'Carroll', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41672, 'Cedar Falls', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41673, 'Cedar Rapids', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41674, 'Clarinda', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41675, 'Clive', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41676, 'Coralville', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41677, 'Council Bluffs', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41678, 'Davenport', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41679, 'Des Moines', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41680, 'Dubuque', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41681, 'Eldridge', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41682, 'Elkader', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41683, 'Fayette', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41684, 'Fort Dodge', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41685, 'Fort Madison', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41686, 'Harlan', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41687, 'Indianola', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41688, 'Iowa City', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41689, 'Kalona', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41690, 'Keokuk', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41691, 'Marshalltown', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41692, 'Mason City', 3782, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, 1), -(41693, 'Muscatine', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41694, 'Newton', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41695, 'Oskaloosa', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41696, 'Ottumwa', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41697, 'Pella', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41698, 'Sioux City', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41699, 'Spencer', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41700, 'Storm Lake', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41701, 'Urbandale', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41702, 'West Des Moines', 3782, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41703, 'Arkansas City', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41704, 'Atchison', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41705, 'Coffeyville', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41706, 'Dodge City', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41707, 'Elk City', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41708, 'Emporia', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41709, 'Fort Riley North', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41710, 'Great Bend', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41711, 'Hays', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41712, 'Hutchinson', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41713, 'Independence', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41714, 'Junction City', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41715, 'Kansas City', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41716, 'Leavenworth', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41717, 'Leawood', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41718, 'Lenexa', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41719, 'Liberal', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41720, 'MacPherson', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41721, 'Manhattan', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41722, 'Merriam', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41723, 'Minneapolis', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41724, 'Moundridge', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41725, 'Olathe', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41726, 'Overland Park', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41727, 'Parsons', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41728, 'Prairie Village', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41729, 'Rose Hill', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41730, 'Salina', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41731, 'Shawnee', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41732, 'Topeka', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41733, 'Wichita', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41734, 'Winfield', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41735, 'tecumseh', 3783, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41736, 'Bardstown', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41737, 'Berea', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41738, 'Bowling Green', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41739, 'Campbellsville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41740, 'Catlettsburg', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41741, 'Crescent Springs', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41742, 'Dawson Springs', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41743, 'Eastview', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41744, 'Eddyville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41745, 'Elizabethtown', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41746, 'Erlanger', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41747, 'Evarts', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41748, 'Fern Creek', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41749, 'Fort Campbell North', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41750, 'Fort Knox', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41751, 'Fort Mitchell', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41752, 'Fort Thomas', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41753, 'Grays Knob', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41754, 'Highview', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41755, 'Hopkinsville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41756, 'Jeffersontown', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41757, 'Lawrenceburg', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41758, 'Lexington', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41759, 'Lexington-Fayette', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41760, 'Madisonville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41761, 'Mayfield', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41762, 'Maysville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41763, 'Middlesborough', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41764, 'Murray', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41765, 'Nebo', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41766, 'Newburg', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41767, 'Nicholasville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41768, 'Okolona', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41769, 'Olive Hill', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41770, 'Owensboro', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41771, 'Paducah', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41772, 'Pikeville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41773, 'Pleasure Ridge Park', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41774, 'Queens', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41775, 'Radcliff', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41776, 'Saint Dennis', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41777, 'Saint Matthews', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41778, 'Scottsville', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41779, 'Shively', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41780, 'South Shore', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41781, 'Tollesboro', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41782, 'Valley Station', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41783, 'Wallins Creek', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41784, 'Walton', 3784, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41785, 'Amite', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41786, 'Baker', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41787, 'Bastrop', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41788, 'Baton Rouge', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41789, 'Bayou Cane', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41790, 'Bogalusa', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41791, 'Bossier City', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41792, 'Broussard', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41793, 'Chalmette', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41794, 'Crowley', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41795, 'De Ridder', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41796, 'Delcambre', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41797, 'Denham Springs', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41798, 'Estelle', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41799, 'Eunice', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41800, 'Fort Polk South', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41801, 'French Settlement', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41802, 'Garyville', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41803, 'Geismar', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41804, 'Gretna', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41805, 'Harahan', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41806, 'Jefferson', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41807, 'Jennings', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41808, 'Kenner', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41809, 'Lake Charles', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41810, 'Laplace', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41811, 'Marrero', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41812, 'Merrydale', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41813, 'Metairie', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41814, 'Morgan City', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41815, 'Natchitoches', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41816, 'New Iberia', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41817, 'New Orleans', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41818, 'Opelousas', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41819, 'Pineville', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41820, 'Pioneer', 3785, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, 1), -(41821, 'Prairieville', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41822, 'River Ridge', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41823, 'Ruston', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41824, 'Saint Amant', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41825, 'Saint Martinville', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41826, 'Shenandoah', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41827, 'Shreveport', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41828, 'Slidell', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41829, 'Sulphur', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41830, 'Terrytown', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41831, 'Thibodaux', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41832, 'Timberlane', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41833, 'Vinton', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41834, 'Waggaman', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41835, 'West Monroe', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41836, 'Westwego', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41837, 'Zachary', 3785, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41838, 'Bangor', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41839, 'Biddeford', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41840, 'Cornish', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41841, 'Dover-Foxcroft', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41842, 'Ellsworth', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41843, 'Gorham', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41844, 'Greene', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41845, 'Harmony', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41846, 'Lyman', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41847, 'Maine', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41848, 'New Gloucester', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41849, 'Norridgewock', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41850, 'North Yarmouth', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41851, 'Old Town', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41852, 'Presque Isle', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41853, 'Saco', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41854, 'South Portland', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41855, 'Spruce Head', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41856, 'Thomaston', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41857, 'Waldoboro', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41858, 'Waterville', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41859, 'West Buxton', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41860, 'Westbrook', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41861, 'Windham', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41862, 'Yarmouth', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41863, 'York Harbor', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41864, 'stockton springs', 3787, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41865, 'Accokeek', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41866, 'Adelphi', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41867, 'Andrews Air Force Base', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41868, 'Annapolis', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41869, 'Arbutus', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41870, 'Aspen Hill', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41871, 'Baltimore', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41872, 'Bel Air North', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41873, 'Bel Air South', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41874, 'Beltsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41875, 'Bethesda', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41876, 'Bladensburg', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41877, 'Boonsboro', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41878, 'Bowie', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41879, 'Brookeville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41880, 'Brooklandville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41881, 'Brooklyn Park', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41882, 'Burtonsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41883, 'Calverton', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41884, 'Camp Springs', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41885, 'Capitol Heights', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41886, 'Carney', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41887, 'Catonsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41888, 'Chestertown', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41889, 'Chillum', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41890, 'Clarksburg', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41891, 'Cockeysville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41892, 'Colesville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41893, 'Columbia', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41894, 'Cooksville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41895, 'Coral Hills', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41896, 'Crofton', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41897, 'Cumberland', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41898, 'District Heights', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41899, 'East Riverdale', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41900, 'Easton', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41901, 'Edgemere', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41902, 'Edgewood', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41903, 'Eldersburg', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41904, 'Elkridge', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41905, 'Elkton', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41906, 'Ellicott City', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41907, 'Fairland', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41908, 'Forest Hill', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41909, 'Fort Meade', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41910, 'Fort Washington', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41911, 'Frederick', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41912, 'Fredrick', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41913, 'Friendly', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41914, 'Gaithersburg', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41915, 'Germantown', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41916, 'Glen Burnie', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41917, 'Glenn Dale', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41918, 'Greater Landover', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41919, 'Greater Upper Marlboro', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41920, 'Green Haven', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41921, 'Greenbelt', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41922, 'Hagerstown', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41923, 'Harmans', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41924, 'Havre de Grace', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41925, 'Hillandale', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41926, 'Hillcrest Heights', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41927, 'Hunt Valley', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41928, 'Hurlock', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41929, 'Hyattsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41930, 'Ijamsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41931, 'Jessup', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41932, 'Joppatowne', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41933, 'Lake Shore', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41934, 'Langley Park', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41935, 'Lanham', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41936, 'Lanham-Seabrook', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41937, 'Lansdowne-Baltimore Highlands', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41938, 'Lexington Park', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41939, 'Lochearn', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41940, 'Lutherville-Timonium', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41941, 'Marriottsville', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41942, 'Maryland City', 3788, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, 1), -(41943, 'Mays Chapel', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41944, 'Middle River', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41945, 'Milford Mill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41946, 'Millersville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41947, 'Mitchellville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41948, 'Montgomery Village', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41949, 'National Harbor', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41950, 'New Carrollton', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41951, 'North Bethesda', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41952, 'North Laurel', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41953, 'North Potomac', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41954, 'Odenton', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41955, 'Overlea', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41956, 'Owings Mills', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41957, 'Oxon Hill-Glassmanor', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41958, 'Parkville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41959, 'Perry Hall', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41960, 'Pikesville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41961, 'Poolesville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41962, 'Potomac', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41963, 'Randallstown', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41964, 'Redland', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41965, 'Reisterstown', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41966, 'Rockville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41967, 'Rosaryville', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41968, 'Rosedale', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41969, 'Sandy Spring', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41970, 'Savage Guilford', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41971, 'Severn', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41972, 'Severna Park', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41973, 'Silver Spring', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41974, 'Snow Hill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41975, 'South Laurel', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41976, 'Suitland-Silver Hill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41977, 'Takoma Park', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41978, 'Temple Hill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41979, 'Thurmont', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41980, 'Timonium', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41981, 'Towson', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41982, 'Upper Marlboro', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41983, 'Waldorf', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41984, 'Walker Mill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41985, 'Washington Grove', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41986, 'Wheaton-Glenmont', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41987, 'White Oak', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41988, 'Windsor Mill', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41989, 'Woodlawn', 3788, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41990, 'Abington', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41991, 'Agawam', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41992, 'Amherst Center', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41993, 'Arlington', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41994, 'Athol', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41995, 'Attleboro', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41996, 'Barnstable Town', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41997, 'Baxboro', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41998, 'Becket', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(41999, 'Beverly', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42000, 'Billerica', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42001, 'Boylston', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42002, 'Brockton', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42003, 'Brookline', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42004, 'Charlestown', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42005, 'Chelsea', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42006, 'Chicopee', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42007, 'Danvers', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42008, 'Dedham', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42009, 'Devens', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42010, 'Devenscrest', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42011, 'Duxbury', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42012, 'Easthampton', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42013, 'Fairhaven', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42014, 'Fall River', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42015, 'Fitchburg', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42016, 'Framingham', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42017, 'Gardner', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42018, 'Great Barrington', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42019, 'Hadley', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42020, 'Hingham', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42021, 'Holbrook', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42022, 'Holliston', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42023, 'Holyoke', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42024, 'Hopedale', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42025, 'Housatonic', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42026, 'Hubbardston', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42027, 'Hull', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42028, 'Hyannis', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42029, 'Jamaica Plain', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42030, 'Lee', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42031, 'Lenox', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42032, 'Longmeadow', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42033, 'Lowell', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42034, 'Lynn', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42035, 'Lynnfield', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42036, 'Marblehead', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42037, 'Marshfield', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42038, 'Massachusetts', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42039, 'Maynard', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42040, 'Medfield', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42041, 'Medford', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42042, 'Medway', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42043, 'Methuen', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42044, 'Middleboro', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42045, 'Monson', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42046, 'Montague', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42047, 'Nantucket', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42048, 'Natick', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42049, 'Needham', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42050, 'New Bedford', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42051, 'Newburyport', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42052, 'North Adams', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42053, 'North Andover', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42054, 'North Attleborough Center', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42055, 'North Easton', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42056, 'Northborough', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42057, 'Peabody', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42058, 'Pepperell', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42059, 'Pittsfield', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42060, 'Provincetown', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42061, 'Randolph', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42062, 'Revere', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42063, 'Roslindale', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42064, 'Saugus', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42065, 'Scituate', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42066, 'Seekonk', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42067, 'Shelburne Falls', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42068, 'Sherborn', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42069, 'South Boston', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42070, 'South Deerfield', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42071, 'South Hadley', 3789, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, 1), -(42072, 'South Lee', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42073, 'South Yarmouth', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42074, 'Southborough', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42075, 'Southbridge', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42076, 'Stoneham', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42077, 'Sturbridge', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42078, 'Swampscott', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42079, 'Tewksbury', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42080, 'Three Rivers', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42081, 'Upton', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42082, 'Vineyard Haven', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42083, 'Waltham', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42084, 'Ware', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42085, 'Wareham', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42086, 'Wayland', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42087, 'Webster', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42088, 'Wellesley Hills', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42089, 'West Concord', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42090, 'West Roxbury', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42091, 'West Springfield', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42092, 'West Yarmouth', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42093, 'Westborough', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42094, 'Westfield', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42095, 'Westford', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42096, 'Wilbraham', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42097, 'Winthrop', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42098, 'Woburn', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42099, 'Yarmouthport', 3789, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42100, 'Adrian', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42101, 'Allegan', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42102, 'Allen Park', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42103, 'Alpena', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42104, 'Ann Arbor', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42105, 'Attica', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42106, 'Auburn Hills', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42107, 'Battle Creek', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42108, 'Bay City', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42109, 'Beecher', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42110, 'Benton Harbor', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42111, 'Berkley', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42112, 'Big Rapids', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42113, 'Bloomfield Hills', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42114, 'Bloomfield Township', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42115, 'Boyne City', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42116, 'Burt', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42117, 'Burton', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42118, 'Cadillac', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42119, 'Charlotte', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42120, 'Clawson', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42121, 'Comstock Park', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42122, 'Coopersville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42123, 'Cornell', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42124, 'Cutlerville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42125, 'Davisburg', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42126, 'Dearborn', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42127, 'Dearborn Heights', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42128, 'Delton', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42129, 'Detroit', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42130, 'Dexter', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42131, 'Dowagiac', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42132, 'East Grand Rapids', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42133, 'East Lansing', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42134, 'Eastpointe', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42135, 'Ecorse', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42136, 'Escanaba', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42137, 'Evart', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42138, 'Fair Haven', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42139, 'Fairgrove', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42140, 'Farmington Hills', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42141, 'Fenton', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42142, 'Flint', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42143, 'Forest Hills', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42144, 'Fowlerville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42145, 'Frankenmuth', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42146, 'Fraser', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42147, 'Fruitport', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42148, 'Goodrich', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42149, 'Grand Blanc', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42150, 'Grand Haven', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42151, 'Grand Rapids', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42152, 'Grandville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42153, 'Grosse Ile', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42154, 'Grosse Pointe Farms', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42155, 'Grosse Pointe Park', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42156, 'Grosse Pointe Woods', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42157, 'Gwinn', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42158, 'Hamtramck', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42159, 'Hancock', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42160, 'Harper Woods', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42161, 'Haslett', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42162, 'Hazel Park', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42163, 'Holland', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42164, 'Holt', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42165, 'Houghton', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42166, 'Hudsonville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42167, 'Huntington Woods', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42168, 'Imlay', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42169, 'Inkster', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42170, 'Jackon', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42171, 'Jenison', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42172, 'Kalamazoo', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42173, 'Kalkaska', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42174, 'Kentwood', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42175, 'Kingsford', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42176, 'Lapeer', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42177, 'Lincoln Park', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42178, 'Litchfield', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42179, 'Livonia', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42180, 'Ludington', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42181, 'Madison Heights', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42182, 'Manistee', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42183, 'Marquette', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42184, 'Melvindale', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42185, 'Mount Clemens', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42186, 'Mount Morris', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42187, 'Mount Pleasant', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42188, 'Mt. Pleasant', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42189, 'Muskegon', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42190, 'Muskegon Heights', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42191, 'New Hudson', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42192, 'Newaygo', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42193, 'Northview', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42194, 'Northville', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42195, 'Norton Shores', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42196, 'Novi', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42197, 'Okemos', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42198, 'Oscoda', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42199, 'Owosso', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42200, 'Petoskey', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42201, 'Pinckney', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(42202, 'Plymouth Township', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42203, 'Port Huron', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42204, 'Redford', 3791, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, 1), -(42205, 'Reese', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42206, 'River Rouge', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42207, 'Rochester Hills', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42208, 'Romeo', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42209, 'Romulus', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42210, 'Saginaw', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42211, 'Saginaw Township North', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42212, 'Saginaw Township South', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42213, 'Saint Clair Shores', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42214, 'Saint Louis', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42215, 'Saline', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42216, 'Saugatuck', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42217, 'Schoolcraft', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42218, 'Shelby', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42219, 'Southfield', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42220, 'Southgate', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42221, 'Sterling Heights', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42222, 'Sturgis', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42223, 'Taylor', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42224, 'Traverse City', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42225, 'Walker', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42226, 'Walled Lake', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42227, 'Warren', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42228, 'Waverly', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42229, 'Wayne', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42230, 'West Bloomfield Township', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42231, 'Westland', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42232, 'White Lake', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42233, 'Whitmore Lake', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42234, 'Williamston', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42235, 'Wixom', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42236, 'Woodhaven', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42237, 'Wyandotte', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42238, 'Ypsilanti', 3791, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42239, 'Albert Lea', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42240, 'Alger', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42241, 'Annandale', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42242, 'Anoka', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42243, 'Austin', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42244, 'Baxter', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42245, 'Bemidji', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42246, 'Blaine', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42247, 'Blomkest', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42248, 'Blue Earth', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42249, 'Brainerd', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42250, 'Brooklyn Center', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42251, 'Burnsville', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42252, 'Champlin', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42253, 'Chanhassen', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42254, 'Chaska', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42255, 'Chatfield', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42256, 'Circle Pines', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42257, 'Cloquet', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42258, 'Cokato', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42259, 'Columbia Heights', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42260, 'Coon Rapids', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42261, 'Cottage Grove', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42262, 'Crystal', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42263, 'Eagan', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42264, 'East Bethel', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42265, 'Eden Prairie', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42266, 'Edina', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42267, 'Elk River', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42268, 'Fairmont', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42269, 'Faribault', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42270, 'Fergus Falls', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42271, 'Frazee', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42272, 'Fridley', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42273, 'Golden Valley', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42274, 'Ham Lake', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42275, 'Hamel', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42276, 'Hibbing', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42277, 'Hopkins', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42278, 'Houston', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42279, 'Inver Grove Heights', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42280, 'Isanti', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42281, 'LaCrescent', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42282, 'Le Sueur', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42283, 'Lino Lakes', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42284, 'Mankato', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42285, 'Maple Grove', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42286, 'Maplewood', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42287, 'Mendota Heights', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42288, 'Minnetonka', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42289, 'Moorhead', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42290, 'Mounds View', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42291, 'New Brighton', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42292, 'New Hope', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42293, 'New Ulm', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42294, 'North Mankato', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42295, 'North Saint Paul', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42296, 'Onamia', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42297, 'Owatonna', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42298, 'Pequot Lakes', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42299, 'Prior Lake', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42300, 'Red Wing', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42301, 'Renville', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42302, 'Richfield', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42303, 'Robbinsdale', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42304, 'Rosemount', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42305, 'Royalton', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42306, 'Saint Louis Park', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42307, 'Saint Michael', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42308, 'Saint Peter', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42309, 'Sauk Rapids', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42310, 'Savage', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42311, 'Shakopee', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42312, 'Shoreview', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42313, 'South Saint Paul', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42314, 'St. Paul', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42315, 'Stewartville', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42316, 'Stillwater', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42317, 'Vadnais Heights', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42318, 'Waconia', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42319, 'West Saint Paul', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42320, 'White Bear Lake', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42321, 'Willmar', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42322, 'Winona', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42323, 'Worthington', 3792, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42324, 'Bay Saint Louis', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42325, 'Biloxi', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42326, 'Brookhaven', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42327, 'Byhalia', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42328, 'Byram', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42329, 'Clarksdale', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42330, 'Corinth', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42331, 'Diamondhead', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42332, 'Gautier', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42333, 'Grenada', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42334, 'Hattiesburg', 3793, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, 1), -(42335, 'Hernando', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42336, 'Horn Lake', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42337, 'Lucedale', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42338, 'MacComb', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42339, 'Moselle', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42340, 'Moss Point', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42341, 'Natchez', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42342, 'Ocean Springs', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42343, 'Olive Branch', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42344, 'Orange Grove', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42345, 'Pascagoula', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42346, 'Pearl', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42347, 'Pelahatchie', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42348, 'Picayune', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42349, 'Ridgeland', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42350, 'Senatobia', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42351, 'Southaven', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42352, 'Southhaven', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42353, 'Starkville', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42354, 'Tupelo', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42355, 'Vicksburg', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42356, 'Yazoo City', 3793, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42357, 'Affton', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42358, 'Ballwin', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42359, 'Belgique', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42360, 'Bellefontaine Neighbors', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42361, 'Belton', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42362, 'Blue Springs', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42363, 'Branson', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42364, 'Bridgeton', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42365, 'Camdenton', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42366, 'Cape Girardeau', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42367, 'Chaffee', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42368, 'Chillicothe', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42369, 'Clever', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42370, 'Desloge', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42371, 'Earth City', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42372, 'Excelsior Springs', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42373, 'Ferguson', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42374, 'Florissant', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42375, 'Forsyth', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42376, 'Fort Leonard Wood', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42377, 'Fulton', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42378, 'Grain Valley', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42379, 'Grandview', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42380, 'Gravois Mills', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42381, 'Hannibal', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42382, 'Harrisonville', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42383, 'Hazelwood', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42384, 'High Ridge', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42385, 'Jefferson City', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42386, 'Joplin', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42387, 'Kennett', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42388, 'Kirksville', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42389, 'Kirkwood', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42390, 'Kissee Mills', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42391, 'Lamar', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42392, 'Lees Summit', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42393, 'Lemay', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42394, 'Lone Jack', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42395, 'Maryland Heights', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42396, 'Mehlville', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42397, 'Mexico', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42398, 'Moberly', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42399, 'Murphy', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42400, 'Nixa', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42401, 'Overland', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42402, 'Pacific', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42403, 'Park Hills', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42404, 'Peculiar', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42405, 'Poplar Bluff', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42406, 'Raytown', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42407, 'Rolla', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42408, 'Saint Ann', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42409, 'Saint Clair', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42410, 'Saint Joseph', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42411, 'Saint Peters', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42412, 'Sappington', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42413, 'Sedalia', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42414, 'Sikeston', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42415, 'Spanish Lake', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42416, 'St. Louis', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42417, 'Steelville', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42418, 'Sunrise Beach', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42419, 'Town and Country', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42420, 'Trimble', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42421, 'University City', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42422, 'Warrensburg', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42423, 'Webb City', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42424, 'Webster Groves', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42425, 'Wentzville', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42426, 'West Plains', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42427, 'Wildwood', 3794, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42428, 'Anaconda-Deer Lodge County', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42429, 'Arlee', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42430, 'Belgrade', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42431, 'Billings', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42432, 'Bozeman', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42433, 'Butte', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42434, 'Butte-Silver Bow', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42435, 'Great Falls', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42436, 'Havre', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42437, 'Helena Valley Southeast', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42438, 'Helena Valley West Central', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42439, 'Kalispell', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42440, 'Lame Deer', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42441, 'Lewistown', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42442, 'Malmstrom Air Force Base', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42443, 'Miles City', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42444, 'Missoula', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42445, 'Orchard Homes', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42446, 'Pablo', 549, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, 1), -(42447, 'Polson', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42448, 'Roberts', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42449, 'Ryegate', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42450, 'Sidney', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42451, 'Stevensville', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42452, 'Whitefish', 549, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42453, 'Beatrice', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42454, 'Bellevue', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42455, 'Central City', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42456, 'Cozad', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42457, 'Creighton', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42458, 'Gering', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42459, 'Grand Island', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42460, 'Keamey', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42461, 'Kearney', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42462, 'La Vista', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42463, 'McCook', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42464, 'Norfolk', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42465, 'North Platte', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42466, 'Offutt Air Force Base West', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42467, 'Ogallala', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42468, 'Omaha', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42469, 'Papillion', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42470, 'Scottsbluff', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42471, 'South Sioux City', 3795, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42472, 'Boulder City', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42473, 'Carson City', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42474, 'Elko', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42475, 'Goldfield', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42476, 'Las Vegas', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42477, 'Laughlin', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42478, 'Lovelock', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42479, 'Mesquite', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42480, 'Nellis Air Force Base', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42481, 'North Las Vegas', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42482, 'Pahrump', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42483, 'Reno', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42484, 'Sunrise Manor', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42485, 'Winnemucca', 3796, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42486, 'Nashua', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42487, 'Derry', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42488, 'Merrimack', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42489, 'Londonderry', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42490, 'Keene', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42491, 'Goffstown', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42492, 'Laconia', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42493, 'Hooksett', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42494, 'Somersworth', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42495, 'Amherst', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42496, 'Weare', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42497, 'Seabrook', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42498, 'Hollis', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42499, 'Plaistow', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42500, 'Bow', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42501, 'Stratham', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42502, 'Swanzey', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42503, 'Gilford', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42504, 'Atkinson', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42505, 'Wolfeboro', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42506, 'Meredith', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42507, 'Rindge', 3797, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42508, 'Jersey City', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42509, 'Paterson', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42510, 'Edison', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42511, 'Toms River', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42512, 'Brick', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42513, 'Cherry Hill', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42514, 'Passaic', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42515, 'Old Bridge', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42516, 'Gloucester Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42517, 'East Orange', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42518, 'North Bergen', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42519, 'Union', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42520, 'Piscataway', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42521, 'New Brunswick', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42522, 'Irvington', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42523, 'Parsippany-Troy Hills', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42524, 'Howell', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42525, 'Perth Amboy', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42526, 'Hoboken', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42527, 'West New York', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42528, 'Washington Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42529, 'East Brunswick', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42530, 'West Orange', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42531, 'Bridgewater', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42532, 'South Brunswick', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42533, 'Egg Harbor', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42534, 'Hackensack', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42535, 'Sayreville', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42536, 'Mount Laurel', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42537, 'North Brunswick', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42538, 'Kearny', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42539, 'Marlboro', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42540, 'Teaneck', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42541, 'Atlantic City', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42542, 'Manalapan', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42543, 'Galloway', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42544, 'Freehold Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42545, 'Monroe Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42546, 'Pennsauken', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42547, 'Ewing', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42548, 'Fort Lee', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42549, 'Fair Lawn', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42550, 'Willingboro', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42551, 'Long Branch', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42552, 'Deptford', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42553, 'Garfield', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42554, 'City of Orange', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42555, 'Voorhees', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42556, 'Millville', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42557, 'Nutley', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42558, 'Mount Olive', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42559, 'Neptune', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42560, 'Pemberton Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42561, 'Lacey', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42562, 'Rahway', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42563, 'Ocean Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42564, 'East Windsor', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42565, 'West Windsor', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42566, 'Bergenfield', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42567, 'Bernards Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42568, 'Stafford Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42569, 'Hamilton Township', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42570, 'Paramus', 3798, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, 1), -(42571, 'Wall', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42572, 'Mahwah', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42573, 'West Milford', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42574, 'Ridgewood', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42575, 'Rockaway Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42576, 'Cliffside Park', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42577, 'Scotch Plains', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42578, 'South Plainfield', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42579, 'Roxbury', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42580, 'Plainsboro', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42581, 'Lower Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42582, 'Carteret', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42583, 'Cranford', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42584, 'Burlington Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42585, 'Morris Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42586, 'Raritan Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42587, 'North Plainfield', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42588, 'West Deptford', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42589, 'Montville', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42590, 'Summit', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42591, 'Hillside', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42592, 'Barnegat', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42593, 'Moorestown', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42594, 'Lyndhurst', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42595, 'Hazlet', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42596, 'Pleasantville', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42597, 'Millburn', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42598, 'Little Egg Harbor', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42599, 'Sparta', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42600, 'Palisades Park', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42601, 'Maple Shade', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42602, 'Middle Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42603, 'Glassboro', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42604, 'Morristown', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42605, 'Point Pleasant', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42606, 'Rutherford', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42607, 'Tinton Falls', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42608, 'Lindenwold', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42609, 'Dumont', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42610, 'Hopewell Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42611, 'Delran', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42612, 'Franklin Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42613, 'Holmdel', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42614, 'Wyckoff', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42615, 'Denville', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42616, 'Secaucus', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42617, 'South Orange Village', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42618, 'Readington', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42619, 'Asbury Park', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42620, 'Cinnaminson', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42621, 'Pequannock', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42622, 'North Arlington', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42623, 'Mantua', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42624, 'Hopatcong', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42625, 'Phillipsburg', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42626, 'Hammonton', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42627, 'Clark', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42628, 'Haddon Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42629, 'Tenafly', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42630, 'Branchburg', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42631, 'Little Falls', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42632, 'Collingswood', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42633, 'Saddle Brook', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42634, 'Robbinsville', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42635, 'Middlesex', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42636, 'Metuchen', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42637, 'Clinton Township', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42638, 'Pennsville', 3798, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42639, 'Albuquerque', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42640, 'Las Cruces', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42641, 'Rio Rancho', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42642, 'South Valley', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42643, 'Hobbs', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42644, 'Alamogordo', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42645, 'Gallup', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42646, 'Deming', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42647, 'Los Lunas', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42648, 'Sunland Park', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42649, 'Portales', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42650, 'Los Alamos', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42651, 'North Valley', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42652, 'Lovington', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42653, 'Silver City', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42654, 'Anthony', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42655, 'Grants', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42656, 'Bernalillo', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42657, 'Shiprock', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42658, 'Ruidoso', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42659, 'Kirtland', 3800, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42660, 'Airmont', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42661, 'Alden', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42662, 'Amityville', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42663, 'Babylon', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42664, 'Baldwinsville', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42665, 'Ballston', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42666, 'Beacon', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42667, 'Beekman', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42668, 'Binghamton', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42669, 'Blooming Grove', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42670, 'Briarcliff Manor', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42671, 'Brockport', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42672, 'Buffalo', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42673, 'Camillus', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42674, 'Canandaigua', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42675, 'Catskill', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42676, 'Cheektowaga', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42677, 'Chenango', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42678, 'Chestnut Ridge', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42679, 'Chili', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42680, 'Clarence', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42681, 'Clarkstown', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42682, 'Clay', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42683, 'Clifton Park', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42684, 'Cohoes', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42685, 'Colonie', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42686, 'Cortland', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42687, 'Cortlandt', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42688, 'Croton-on-Hudson', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42689, 'Depew', 3801, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, 1), -(42690, 'DeWitt (De Witt)', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42691, 'Dobbs Ferry', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42692, 'Dunkirk', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42693, 'East Fishkill', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42694, 'East Greenbush', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42695, 'East Hampton', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42696, 'East Hills', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42697, 'East Rockaway', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42698, 'Eastchester', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42699, 'Elma', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42700, 'Endicott', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42701, 'Esopus', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42702, 'Fallsburg', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42703, 'Farmingdale', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42704, 'Fishkill', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42705, 'Floral Park', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42706, 'Gates', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42707, 'Geddes', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42708, 'Geneseo', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42709, 'German Flatts', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42710, 'Glen Cove', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42711, 'Glens Falls', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42712, 'Glenville', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42713, 'Gloversville', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42714, 'Great Neck', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42715, 'Greece', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42716, 'Greenburgh', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42717, 'Guilderland', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42718, 'Halfmoon', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42719, 'Hamlin', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42720, 'Hastings-on-Hudson', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42721, 'Haverstraw', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42722, 'Hempstead', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42723, 'Henrietta', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42724, 'Herkimer', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42725, 'Highlands', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42726, 'Hornell', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42727, 'Horseheads', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42728, 'Hudson Falls', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42729, 'Hyde Park', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42730, 'Ilion', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42731, 'Irondequoit', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42732, 'Islip', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42733, 'Ithaca', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42734, 'Jamestown', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42735, 'Johnson City', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42736, 'Johnstown', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42737, 'Kenmore', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42738, 'Kent', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42739, 'Kingsbury', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42740, 'Kirkland', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42741, 'Kiryas Joel', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42742, 'Lackawanna', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42743, 'LaGrange (La Grange)', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42744, 'Lake Grove', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42745, 'Le Ray', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42746, 'Lewisboro', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42747, 'Lloyd', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42748, 'Lynbrook', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42749, 'Lysander', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42750, 'Macedon', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42751, 'Malone', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42752, 'Malta', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42753, 'Malverne', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42754, 'Mamakating', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42755, 'Mamaroneck', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42756, 'Manlius', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42757, 'Massapequa Park', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42758, 'Massena', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42759, 'Mastic Beach', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42760, 'Mechanicville', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42761, 'Mendon', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42762, 'Mineola', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42763, 'Moreau', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42764, 'Mount Kisco', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42765, 'New Hyde Park', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42766, 'New Paltz', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42767, 'New Rochelle', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42768, 'New Square', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42769, 'New Windsor', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42770, 'New York', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42771, 'Newburgh', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42772, 'Newfane', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42773, 'Niagara Falls', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42774, 'Niskayuna', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42775, 'North Castle', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42776, 'North Greenbush', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42777, 'North Hempstead', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42778, 'North Syracuse', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42779, 'North Tonawanda', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42780, 'Nyack', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42781, 'Ogden', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42782, 'Ogdensburg', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42783, 'Olean', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42784, 'Oneida', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42785, 'Oneonta', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42786, 'Onondaga', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42787, 'Orangetown', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42788, 'Orchard Park', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42789, 'Ossining', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42790, 'Oswego', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42791, 'Owego', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42792, 'Patchogue', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42793, 'Peekskill', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42794, 'Penfield', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42795, 'Perinton', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42796, 'Philipstown', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42797, 'Pittsford', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42798, 'Plattekill', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42799, 'Plattsburgh', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42800, 'Pleasant Valley', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42801, 'Port Chester', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42802, 'Port Jefferson', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42803, 'Port Jervis', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42804, 'Poughkeepsie', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42805, 'Putnam Valley', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42806, 'Queensbury', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42807, 'Ramapo', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42808, 'Red Hook', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42809, 'Rensselaer', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42810, 'Riverhead', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42811, 'Rockville Centre', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(42812, 'Rye', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42813, 'Rye Brook', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42814, 'Saratoga Springs', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42815, 'Saugerties', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42816, 'Scarsdale', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42817, 'Schenectady', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42818, 'Schodack', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42819, 'Scotia', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42820, 'Seneca Falls', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42821, 'Shawangunk', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42822, 'Sherrill', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42823, 'Sleepy Hollow', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42824, 'Smithtown', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42825, 'Somers', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42826, 'Southeast', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42827, 'Southold', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42828, 'Stony Point', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42829, 'Suffern', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42830, 'Sullivan', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42831, 'Sweden', 3801, '2024-01-21 12:47:47', '2024-01-21 12:47:47', NULL, 1), -(42832, 'Syracuse', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42833, 'Tarrytown', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42834, 'Tonawanda', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42835, 'Ulster', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42836, 'Valley Stream', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42837, 'Vestal', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42838, 'Victor', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42839, 'Walden', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42840, 'Wallkill', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42841, 'Walworth', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42842, 'Wappinger', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42843, 'Watervliet', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42844, 'Wawarsing', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42845, 'West Haverstraw', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42846, 'West Seneca', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42847, 'Wheatfield', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42848, 'White Plains', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42849, 'Whitestown', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42850, 'Williston Park', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42851, 'Yonkers', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42852, 'Yorktown', 3801, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42853, 'Raleigh', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42854, 'Greensboro', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42855, 'Winston-Salem', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42856, 'High Point', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42857, 'Asheville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42858, 'Gastonia', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42859, 'Chapel Hill', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42860, 'Rocky Mount', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42861, 'Huntersville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42862, 'Wilson', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42863, 'Kannapolis', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42864, 'Apex', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42865, 'Hickory', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42866, 'Wake Forest', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42867, 'Indian Trail', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42868, 'Goldsboro', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42869, 'Mooresville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42870, 'New Bern', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42871, 'Holly Springs', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42872, 'Matthews', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42873, 'Garner', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42874, 'Cornelius', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42875, 'Asheboro', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42876, 'Statesville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42877, 'Mint Hill', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42878, 'Kernersville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42879, 'Morrisville', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42880, 'Fuquay-Varina', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42881, 'Lumberton', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42882, 'Kinston', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42883, 'Carrboro', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42884, 'Clemmons', 3802, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42885, 'Fargo', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42886, 'Bismarck', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42887, 'Grand Forks', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42888, 'Minot', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42889, 'West Fargo', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42890, 'Williston', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42891, 'Dickinson', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42892, 'Mandan', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42893, 'Wahpeton', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42894, 'Devils Lake', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42895, 'Valley City', 3803, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42896, 'Akron', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42897, 'Alledonia', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42898, 'Alliance', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42899, 'Apple Creek', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42900, 'Archbold', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42901, 'Ashtabula', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42902, 'Austintown', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42903, 'Avon Lake', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42904, 'Barberton', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42905, 'Bay Village', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42906, 'Beachwood', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42907, 'Beavercreek', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42908, 'Bedford Heights', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42909, 'Bellaire', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42910, 'Bellefontaine', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42911, 'Bexley', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42912, 'Blacklick', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42913, 'Blacklick Estates', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42914, 'Blanchester', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42915, 'Blue Ash', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42916, 'Boardman', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42917, 'Brecksville', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42918, 'Bridgetown North', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42919, 'Bristolville', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42920, 'Broadview Heights', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42921, 'Brook Park', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42922, 'Brooklyn', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42923, 'Bryan', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42924, 'Bucyrus', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42925, 'Canal Winchester', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42926, 'Celina', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42927, 'Centerville', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42928, 'Chagrin Falls', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42929, 'Chardon', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42930, 'Chippewa Lake', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42931, 'Cincinnati', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42932, 'Circleville', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42933, 'Cleveland Heights', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42934, 'Conneaut', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42935, 'Coshocton', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42936, 'Cuyahoga Falls', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42937, 'Dayton', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42938, 'Defiance', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42939, 'Delaware', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42940, 'East Cleveland', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42941, 'East Liverpool', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42942, 'Eastlake', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42943, 'Elyria', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42944, 'Euclid', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42945, 'Fairborn', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42946, 'Fairview Park', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42947, 'Findlay', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42948, 'Finneytown', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42949, 'Fort MacKinley', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42950, 'Fostoria', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42951, 'Gahanna', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42952, 'Galion', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42953, 'Garfield Heights', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42954, 'Girard', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42955, 'Glenwillow', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42956, 'Green', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42957, 'Grove City', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42958, 'Hilliard', 3804, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, 1), -(42959, 'Hiram', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42960, 'Huber Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42961, 'Ironton', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42962, 'Kidron', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42963, 'Lewis Center', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42964, 'Lima', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42965, 'Lincoln Village', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42966, 'Lorain', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42967, 'Macedonia', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42968, 'Maineville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42969, 'Maple Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42970, 'Mason', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42971, 'Massillon', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42972, 'Maumee', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42973, 'Mayfield Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42974, 'Mentor', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42975, 'Miamisburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42976, 'Middleburg Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42977, 'Millbury', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42978, 'Mineral City', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42979, 'Mount Gilead', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42980, 'Nelsonville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42981, 'New Philadelphia', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42982, 'North Canton', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42983, 'North College Hill', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42984, 'North Lewisburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42985, 'North Olmsted', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42986, 'North Ridgeville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42987, 'North Royalton', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42988, 'Norton', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42989, 'Oberlin', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42990, 'Ohio', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42991, 'Oregon', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42992, 'Overlook-Page Manor', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42993, 'Painesville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42994, 'Parma Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42995, 'Peninsula', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42996, 'Perrysburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42997, 'Pickerington', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42998, 'Piqua', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(42999, 'Portage Lakes', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43000, 'Powell', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43001, 'Reynoldsburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43002, 'Rittman', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43003, 'Rocky River', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43004, 'Rossford', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43005, 'Sandusky', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43006, 'Seven Hills', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43007, 'Seville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43008, 'Shaker Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43009, 'Sharonville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43010, 'Sheffield Lake', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43011, 'South Euclid', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43012, 'Steubenville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43013, 'Stow', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43014, 'Streetsboro', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43015, 'Strongsville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43016, 'Struthers', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43017, 'Sylvania', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43018, 'Tallmadge', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43019, 'Tiffin', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43020, 'Trotwood', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43021, 'Twinsburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43022, 'University Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43023, 'Upper Arlington', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43024, 'Van Wert', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43025, 'Vandalia', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43026, 'Wadsworth', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43027, 'Warrensville Heights', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43028, 'West Carrollton City', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43029, 'West Chester', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43030, 'Westerville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43031, 'Westlake', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43032, 'Whitehall', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43033, 'Wickliffe', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43034, 'Willoughby', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43035, 'Willowick', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43036, 'Winesburg', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43037, 'Wooster', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43038, 'Xenia', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43039, 'Yellow Springs', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43040, 'Youngstown', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43041, 'Zanesville', 3804, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43042, 'Altus', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43043, 'Ardmore', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43044, 'Bartlesville', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43045, 'Bethany', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43046, 'Bixby', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43047, 'Broken Arrow', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43048, 'Catoosa', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43049, 'Chickasha', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43050, 'Choctaw', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43051, 'Claremore', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43052, 'Del City', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43053, 'Duncan', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43054, 'Durant', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43055, 'Edmond', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43056, 'El Reno', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43057, 'Enid', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43058, 'Fort Sill', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43059, 'Grove', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43060, 'Guthrie', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43061, 'Heavener', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43062, 'Hugo', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43063, 'Lawton', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43064, 'MacAlester', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43065, 'Midwest City', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43066, 'Moore', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43067, 'Morrison', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43068, 'Muskogee', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43069, 'Mustang', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43070, 'Norman', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43071, 'Oklahoma City', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43072, 'Okmulgee', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43073, 'Owasso', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43074, 'Pawnee', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43075, 'Ponca City', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43076, 'Rattan', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43077, 'Sand Springs', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43078, 'Sapulpa', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43079, 'Tahlequah', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43080, 'The Village', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43081, 'Tulsa', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43082, 'Weatherford', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43083, 'Welch', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43084, 'Woodward', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43085, 'Yukon', 3805, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43086, 'Point Edward', 431, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, 1), -(43087, 'Aloha', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43088, 'Altamont', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43089, 'Arleta', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43090, 'Astoria', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43091, 'Baker City', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43092, 'Bend', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43093, 'Canby', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43094, 'Cave Junction', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43095, 'Cedar Hills', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43096, 'Cedar Mill', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43097, 'Central Point', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43098, 'City of The Dalles', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43099, 'Coos Bay', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43100, 'Corvallis', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43101, 'Creswell', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43102, 'Donald', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43103, 'Eugene', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43104, 'Forest Grove', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43105, 'Four Corners', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43106, 'Glide', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43107, 'Grants Pass', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43108, 'Gresham', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43109, 'Hayesville', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43110, 'Hermiston', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43111, 'Hillsboro', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43112, 'Hood River', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43113, 'Hubbard', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43114, 'John Day', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43115, 'Jordan Valley', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43116, 'Keizer', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43117, 'Klamath Falls', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43118, 'La Grande', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43119, 'Lake Oswego', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43120, 'MacMinnville', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43121, 'Milwaukie', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43122, 'Newberg', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43123, 'North Bend', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43124, 'OBrien', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43125, 'Oak Grove', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43126, 'Oatfield', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43127, 'Oregon City', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43128, 'Pendleton', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43129, 'Redmond', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43130, 'Riddle', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43131, 'River Road', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43132, 'Roseburg', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43133, 'Sublimity', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43134, 'Sutherlin', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43135, 'Talent', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43136, 'Tigard', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43137, 'Troutdale', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43138, 'Tualatin', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43139, 'Turner', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43140, 'Vaughn', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43141, 'West Linn', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43142, 'Wilsonville', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43143, 'Woodburn', 3806, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43144, 'Aliquippa', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43145, 'Allentown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43146, 'Ambler', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43147, 'Audubon', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43148, 'Back Mountain', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43149, 'Baldwin', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43150, 'Beaver Falls', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43151, 'Belle Vernon', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43152, 'Bensalem', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43153, 'Bethel Park', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43154, 'Bloomsburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43155, 'Boyertown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43156, 'Brockway', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43157, 'Broomall', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43158, 'Bushkill', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43159, 'Butler', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43160, 'Camp Hill', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43161, 'Canonsburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43162, 'Carnegie', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43163, 'Carnot Moon', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43164, 'Chambersburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43165, 'Chester Springs', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43166, 'Clarks Summit', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43167, 'Coatesville', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43168, 'Colonial Park', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43169, 'Conshohocken', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43170, 'Coraopolis', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43171, 'Corry', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43172, 'Cranberry Township', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43173, 'Cresco', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43174, 'Dallastown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43175, 'Darby', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43176, 'Darby Township', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43177, 'Downingtown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43178, 'Drexel Hill', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43179, 'Duncansville', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43180, 'Dunmore', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43181, 'East Norriton', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43182, 'East Stroudsburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43183, 'Economy', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43184, 'Edinboro', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43185, 'Elkins Park', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43186, 'Emmaus', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43187, 'Ephrata', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43188, 'Erdenheim', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43189, 'Erie', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43190, 'Erwinna', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43191, 'Exton', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43192, 'Feasterville', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43193, 'Folcroft', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43194, 'Furlong', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43195, 'Gettysburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43196, 'Gibsonia', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43197, 'Glenside', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43198, 'Gordonville', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43199, 'Hampden Township', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43200, 'Harleysville', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43201, 'Harrisburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43202, 'Harrison Township', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43203, 'Hatboro', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43204, 'Haverford', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43205, 'Havertown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43206, 'Hazleton', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43207, 'Hermitage', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43208, 'Hershey', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43209, 'Hollidaysburg', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43210, 'Huntingdon Valley', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43211, 'Indiana', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43212, 'Ivyland', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43213, 'Jeannette', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43214, 'Jenkintown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43215, 'Kempton', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43216, 'Kennett Square', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43217, 'King of Prussia', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43218, 'Kutztown', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43219, 'Lafayette Hill', 3807, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, 1), -(43220, 'Landenberg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43221, 'Langhorne', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43222, 'Lansdale', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43223, 'Lansdowne', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43224, 'Lansford', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43225, 'Laurys Station', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43226, 'Lehighton', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43227, 'Lincoln University', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43228, 'Linesville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43229, 'Linwood', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43230, 'Lower Burrell', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43231, 'Lower Merion', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43232, 'MacCandless Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43233, 'MacKeesport', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43234, 'Meadville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43235, 'Mechanicsburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43236, 'Media', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43237, 'Merion Station', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43238, 'Middleburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43239, 'Mifflinville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43240, 'Milanville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43241, 'Millersburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43242, 'Monessen', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43243, 'Mount Carmel', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43244, 'Mount Lebanon', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43245, 'Mountville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43246, 'Munhall', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43247, 'Municipality of Monroeville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43248, 'Municipality of Murrysville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43249, 'N. Charleroi', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43250, 'Narberth', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43251, 'Natrona Heights', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43252, 'Nether Providence Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43253, 'New Buffalo', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43254, 'New Carlisle', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43255, 'New Cumberland', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43256, 'New Kensington', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43257, 'Newville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43258, 'Norristown', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43259, 'North East', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43260, 'North Versailles', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43261, 'North Wales', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43262, 'Oaks', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43263, 'Oil City', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43264, 'Olyphant', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43265, 'Orrtanna', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43266, 'Orwigsburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43267, 'Paoli', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43268, 'Parksburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43269, 'Penn Hills', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43270, 'Philadelphia', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43271, 'Phildelphia', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43272, 'Phoenixville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43273, 'Pipersville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43274, 'Pittsburgh', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43275, 'Plum', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43276, 'Pocono Summit', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43277, 'Pottstown', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43278, 'Pottsville', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43279, 'Primos', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43280, 'Prospect', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43281, 'Quakertown', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43282, 'Radnor Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43283, 'Robinson Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43284, 'Roseto', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43285, 'Ross Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43286, 'Royersford', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43287, 'Sarver', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43288, 'Saxonburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43289, 'Scott Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43290, 'Scranton', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43291, 'Seward', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43292, 'Sewickley', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43293, 'Shaler Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43294, 'Shermans Dale', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43295, 'Souderton', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43296, 'South Park Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43297, 'State College', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43298, 'Strasburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43299, 'Susquehanna', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43300, 'Swissvale', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43301, 'Tamaqua', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43302, 'Trevose', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43303, 'Turtle Creek', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43304, 'Tyrone', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43305, 'Uniontown', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43306, 'Upper Darby', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43307, 'Upper Providence Township', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43308, 'Upper Saint Clair', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43309, 'Vanderbilt', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43310, 'Warrendale', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43311, 'Waynesboro', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43312, 'West Mifflin', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43313, 'West Norriton', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43314, 'West Point', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43315, 'Wilcox', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43316, 'Wilkes-Barre', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43317, 'Wilkinsburg', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43318, 'Williamsport', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43319, 'Willow Grove', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43320, 'Womelsdorf', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43321, 'Woodlyn', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43322, 'Woolrich', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43323, 'Wyncote', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43324, 'Wyndmoor', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43325, 'Wynnewood', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43326, 'Yardley', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43327, 'Yeadon', 3807, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43328, 'Ramey', 3808, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43329, 'Cranston', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43330, 'Pawtucket', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43331, 'East Providence', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43332, 'Woonsocket', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43333, 'North Providence', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43334, 'South Kingstown', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43335, 'West Warwick', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43336, 'Johnston', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43337, 'North Kingstown', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43338, 'Westerly', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43339, 'Smithfield', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43340, 'Central Falls', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43341, 'Burrillville', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43342, 'Narragansett', 3809, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, 1), -(43343, 'East Greenwich', 3809, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43344, 'North Smithfield', 3809, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43345, 'Glocester', 3809, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43346, 'Hopkinton', 3809, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43347, 'North Charleston', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43348, 'Rock Hill', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43349, 'Summerville', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43350, 'Sumter', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43351, 'Hilton Head Island', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43352, 'Spartanburg', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43353, 'Goose Creek', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43354, 'Aiken', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43355, 'Myrtle Beach', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43356, 'Greer', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43357, 'Mauldin', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43358, 'North Augusta', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43359, 'Easley', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43360, 'Simpsonville', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43361, 'Hanahan', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43362, 'West Columbia', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43363, 'North Myrtle Beach', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43364, 'Clemson', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43365, 'Orangeburg', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43366, 'Cayce', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43367, 'Bluffton', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43368, 'Gaffney', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43369, 'Irmo', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43370, 'Fort Mill', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43371, 'Port Royal', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43372, 'Forest Acres', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43373, 'Newberry', 3810, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43374, 'Sioux Falls', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43375, 'Rapid City', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43376, 'Brookings', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43377, 'Yankton', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43378, 'Pierre', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43379, 'Huron', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43380, 'Spearfish', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43381, 'Vermillion', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43382, 'Box Elder', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43383, 'Belle Fourche', 3811, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43384, 'Adamsville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43385, 'Alcoa', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43386, 'Bell Buckle', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43387, 'Blountville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43388, 'Burns', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43389, 'Chattanooga', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43390, 'Collierville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43391, 'Cookeville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43392, 'Cornersville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43393, 'Crossville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43394, 'Dickson', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43395, 'Dyersburg', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43396, 'East Brainerd', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43397, 'East Ridge', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43398, 'Elizabethton', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43399, 'Farragut', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43400, 'Gainesboro', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43401, 'Gallatin', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43402, 'Gatlinburg', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43403, 'Goodlettsville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43404, 'Greeneville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43405, 'Hendersonville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43406, 'Hixson', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43407, 'Kingsport', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43408, 'Knoxville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43409, 'Kodak', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43410, 'La Vergne', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43411, 'Lenoir City', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43412, 'Lewisburg', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43413, 'Memphis', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43414, 'Middle Valley', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43415, 'Millington', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43416, 'Murfreesboro', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43417, 'Ooltewah', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43418, 'Pinson', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43419, 'Red Bank', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43420, 'Selmer', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43421, 'Sevierville', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(43422, 'Spring City', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43423, 'Tazewell', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43424, 'Tullahoma', 3813, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43425, 'Abilene', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43426, 'Aldine', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43427, 'Alice', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43428, 'Allen', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43429, 'Alvin', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43430, 'Amarillo', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43431, 'Anderson Mill', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43432, 'Andrews', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43433, 'Angleton', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43434, 'Argyle', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43435, 'Aspermont', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43436, 'Atascocita', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43437, 'Austinn', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43438, 'Azle', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43439, 'Balch Springs', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43440, 'Baytown', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43441, 'Beeville', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43442, 'Benbrook', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43443, 'Big Spring', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43444, 'Bluff Dale', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43445, 'Boerne', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43446, 'Borger', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43447, 'Breckenridge', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43448, 'Brenham', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43449, 'Brownfield', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43450, 'Brownwood', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43451, 'Burkburnett', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43452, 'Burleson', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43453, 'Canyon', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43454, 'Cat Spring', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43455, 'Cedar Hill', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43456, 'Cedar Park', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43457, 'Center', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43458, 'Channelview', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43459, 'City of Dallas', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43460, 'Cleburne', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43461, 'Cloverleaf', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43462, 'Clute', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43463, 'College Station', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43464, 'Colleyville', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43465, 'Comanche', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43466, 'Conroe', 3814, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, 1), -(43467, 'Converse', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43468, 'Coppell', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43469, 'Copperas Cove', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43470, 'Corsicana', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43471, 'Cotulla', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43472, 'Crandall', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43473, 'DeSoto', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43474, 'Denison', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43475, 'Donna', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43476, 'Dumas', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43477, 'Duncanville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43478, 'Eagle Pass', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43479, 'Edinburg', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43480, 'El Campo', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43481, 'Elmendorf', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43482, 'Euless', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43483, 'Farmers Branch', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43484, 'Flower Mound', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43485, 'Forney', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43486, 'Fort Bliss', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43487, 'Fort Hood', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43488, 'Fort Worth', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43489, 'Friendswood', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43490, 'Frisco', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43491, 'Galena Park', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43492, 'Galveston', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43493, 'Garland', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43494, 'Gatesville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43495, 'Grand Prairie', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43496, 'Grapeland', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43497, 'Grapevine', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43498, 'Gregory', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43499, 'Groves', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43500, 'Haltom City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43501, 'Harker Heights', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43502, 'Hewitt', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43503, 'Highland Village', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43504, 'Humble', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43505, 'Hurst', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43506, 'Irving', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43507, 'Jollyville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43508, 'Justin', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43509, 'Katy', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43510, 'Kaufman', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43511, 'Keller', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43512, 'Kemp', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43513, 'Kerrville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43514, 'Kilgore', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43515, 'Killeen', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43516, 'Kingsville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43517, 'Kingwood', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43518, 'La Marque', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43519, 'Lackland Air Force Base', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43520, 'Lago Vista', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43521, 'Lake Jackson', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43522, 'Lamesa', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43523, 'Lampasas', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43524, 'League City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43525, 'Leon Valley', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43526, 'Levelland', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43527, 'Lewisville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43528, 'Liberty Hill', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43529, 'Little Elm', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43530, 'Llano', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43531, 'Longview', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43532, 'Lubbock', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43533, 'Lufkin', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43534, 'MacAllen', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43535, 'MacKinney', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43536, 'McAllen', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43537, 'McKinney', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43538, 'Mineral Wells', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43539, 'Mission', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43540, 'Mission Bend', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43541, 'Missouri City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43542, 'Nacogdoches', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43543, 'New Braunfels', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43544, 'New Caney', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43545, 'North Richland Hills', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43546, 'North Zulch', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43547, 'Ovalo', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43548, 'Palestine', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43549, 'Pampa', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43550, 'Pearland', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43551, 'Pecan Grove', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43552, 'Pecos', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43553, 'Pflugerville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43554, 'Pharr', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43555, 'Pinehurst', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43556, 'Plainview', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43557, 'Plano', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43558, 'Pontotoc', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43559, 'Port Arthur', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43560, 'Port Lavaca', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43561, 'Port Neches', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43562, 'Pottsboro', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43563, 'Richardson', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43564, 'Rio Grande City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43565, 'Robstown', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43566, 'Rockwall', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43567, 'Rosenberg', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43568, 'Round Rock', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43569, 'Rowlett', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43570, 'Royse City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43571, 'Sachse', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43572, 'San Angelo', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43573, 'Schertz', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43574, 'Seagoville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43575, 'Seguin', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43576, 'Sherman', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43577, 'Slaton', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43578, 'Snyder', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43579, 'South Houston', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43580, 'South Padre Island', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43581, 'Southlake', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43582, 'Stephenville', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43583, 'Strawn', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43584, 'Sugar Land', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43585, 'Sulphur Springs', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43586, 'Temple', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43587, 'Terrell', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43588, 'Texas City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43589, 'The Colony', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43590, 'The Woodlands', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43591, 'Tomball', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43592, 'Tyler', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43593, 'Universal City', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43594, 'Uvalde', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43595, 'Vidor', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43596, 'Waco', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43597, 'Watauga', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43598, 'Waxahachie', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43599, 'Weslaco', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43600, 'West Odessa', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43601, 'West University Place', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43602, 'White Settlement', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43603, 'Wichita Falls', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43604, 'Winnsboro', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43605, 'Woodway', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43606, 'Wylie', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43607, 'Yoakum', 3814, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43608, 'Bedford Kentucky', 3815, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, 1), -(43609, 'American Fork', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43610, 'Bluffdale', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43611, 'Bountiful', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43612, 'Brigham City', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43613, 'Canyon Rim', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43614, 'Castle Dale', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43615, 'Cedar City', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43616, 'Clearfield', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43617, 'Cottonwood Heights', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43618, 'Cottonwood West', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43619, 'Draper', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43620, 'East Millcreek', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43621, 'Holladay-Cottonwood', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43622, 'Ivins', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43623, 'Kaysville', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43624, 'Kearns', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43625, 'Layton', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43626, 'Lehi', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43627, 'Logan', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43628, 'Magna', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43629, 'Mapleton', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43630, 'Midvale', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43631, 'Millcreek', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43632, 'Moab', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43633, 'North Logan', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43634, 'North Ogden', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43635, 'Orem', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43636, 'Panguitch', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43637, 'Park City', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43638, 'Pleasant Grove', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43639, 'Provo', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43640, 'Riverton', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43641, 'Roy', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43642, 'Salt Lake City', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43643, 'South Jordan', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43644, 'South Ogden', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43645, 'South Salt Lake', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43646, 'Spanish Fork', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43647, 'Springville', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43648, 'Taylorsville', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43649, 'Tooele', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43650, 'Tremonton', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43651, 'West Jordan', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43652, 'West Valley City', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43653, 'Woods Cross', 3752, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43654, 'Barre', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43655, 'Bennington', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43656, 'Brattleboro', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43657, 'Dummerston', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43658, 'East Corinth', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43659, 'East Fairfield', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43660, 'East Randolph', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43661, 'Essex Junction', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43662, 'Grand Isle', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43663, 'Jericho', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43664, 'Manchester Center', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43665, 'Middlebury', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43666, 'Montpelier', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43667, 'Putney', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43668, 'Rutland', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43669, 'Saint Johnsbury', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43670, 'Saxtons River', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43671, 'South Burlington', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43672, 'South Strafford', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43673, 'Townshend', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43674, 'Tunbridge', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43675, 'Wallingford', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43676, 'Watisfield', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43677, 'West Brookfield', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43678, 'West Charleston', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43679, 'West Newbury', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43680, 'Winooski', 3816, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43681, 'Ashburn', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43682, 'Aylett', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43683, 'Bailey s Crossroads', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43684, 'Blacksburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43685, 'Bland', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43686, 'Bluefield', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43687, 'Bon Air', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43688, 'Burke', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43689, 'Cave Spring', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43690, 'Centreville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43691, 'Charlottesville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43692, 'Chesapeake', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43693, 'Christiansburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43694, 'Churchville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43695, 'Colonial Heights', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43696, 'Dale City', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43697, 'Eagle Rock', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43698, 'East Highland Park', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43699, 'Faber', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43700, 'Falls Church', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43701, 'Fishersville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43702, 'Fort Hunt', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43703, 'Franconia', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43704, 'Fredericksburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43705, 'Front Royal', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43706, 'Glen Allen', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43707, 'Goochland', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43708, 'Groveton', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43709, 'Harrisonburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43710, 'Henrico', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43711, 'Herndon', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43712, 'Highland Springs', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43713, 'Hollins', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43714, 'Hopewell', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43715, 'Hybla Valley', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43716, 'Idylwood', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43717, 'Jamesville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43718, 'Keen Mountain', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43719, 'Lake Ridge', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43720, 'Lincolnia', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43721, 'Lorton', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43722, 'Lynchburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43723, 'MacLean', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43724, 'Manassas', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43725, 'Mclean', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43726, 'Mechanicsville', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43727, 'Melfa', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43728, 'Montross', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43729, 'Newport News', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43730, 'North Springfield', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43731, 'Oakton', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43732, 'Petersburg', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43733, 'Poquoson', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43734, 'Radford', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43735, 'Reston', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43736, 'Staffordshire', 3817, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, 1), -(43737, 'Staunton', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43738, 'Sugarland Run', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43739, 'Tappahannock', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43740, 'Timberlake', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43741, 'Triangle', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43742, 'Tuckahoe', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43743, 'Tysons Corner', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43744, 'Virginia Beach', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43745, 'Warrenton', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43746, 'Williamsburg', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43747, 'Wolf Trap', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43748, 'Wytheville', 3817, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43749, 'Airway Heights', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43750, 'Alderwood Manor', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43751, 'Anacortes', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43752, 'Bainbridge Island', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43753, 'Battle Ground', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43754, 'Bellingham', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43755, 'Bothell', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43756, 'Bremerton', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43757, 'Bryn Mawr-Skyway', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43758, 'Buckley', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43759, 'Burien', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43760, 'Camano Island', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43761, 'Cascade-Fairwood', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43762, 'Chehalis', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43763, 'Cheney', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43764, 'Clear Lake', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43765, 'Colbert', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43766, 'Cottage Lake', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43767, 'Covington-Sawyer-Wilderness', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43768, 'Duvall', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43769, 'East Hill-Meridian', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43770, 'East Renton Highlands', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43771, 'East Wenatchee Bench', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43772, 'Eastsound', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43773, 'Eatonville', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43774, 'Edgewood-North Hill', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43775, 'Edmonds', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43776, 'Elk Plain', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43777, 'Ellensburg', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43778, 'Enumclaw', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43779, 'Fairchild', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43780, 'Federal Way', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43781, 'Fircrest', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43782, 'Ford', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43783, 'Fort Lewis', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43784, 'Friday Harbor', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43785, 'Gig Harbor', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43786, 'Graham', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43787, 'Harbour Pointe', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43788, 'Inglewood-Finn Hill', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43789, 'Issaquah', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43790, 'Kelso', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43791, 'Kennewick', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43792, 'Kingsgate', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43793, 'Lake Serene-North Lynnwood', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43794, 'Lakeland North', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43795, 'Lakeland South', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43796, 'Lynnwood', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43797, 'Martha Lake', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43798, 'Mercer Island', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43799, 'Minnehaha', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43800, 'Moses Lake', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43801, 'Mossyrock', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43802, 'Mountlake Terrace', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43803, 'Mukilteo', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43804, 'Newport Hills', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43805, 'North City-Ridgecrest', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43806, 'North Creek', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43807, 'North Marysville', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43808, 'Oak Harbor', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43809, 'Ocean Shores', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43810, 'Olympia', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43811, 'Opportunity', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43812, 'Orchards South', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43813, 'Orting', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43814, 'Paine Field-Lake Stickney', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43815, 'Pasco', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43816, 'Picnic Point-North Lynnwood', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43817, 'Pine Lake', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43818, 'Port Angeles', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43819, 'Port Hadlock', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43820, 'Port Ludlow', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43821, 'Port Orchard', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43822, 'Poulsbo', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43823, 'Pullman', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43824, 'Puyallup', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43825, 'Renton', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43826, 'Republic', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43827, 'Richland', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43828, 'Riverton-Boulevard Park', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43829, 'Sahalee', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43830, 'Salmon Creek', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43831, 'Sammamish', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43832, 'SeaTac', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43833, 'Seattle', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43834, 'Seattle Hill-Silver Firs', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43835, 'Sedro Woolley', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43836, 'Shoreline', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43837, 'Silverdale', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43838, 'Snohomish', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43839, 'South Hill', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43840, 'South Prairie', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43841, 'South Seattle', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43842, 'Spanaway', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43843, 'Spokane', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43844, 'Sumas', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43845, 'Sumner', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43846, 'Sunnyside', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43847, 'Tacoma', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43848, 'Tukwila', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43849, 'Tumwater', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43850, 'University Place', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43851, 'Vancouver', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43852, 'Vashon', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43853, 'Walla Walla', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43854, 'Washougal', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43855, 'Wenatchee', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43856, 'West Lake Stevens', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43857, 'White Center', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43858, 'White Salmon', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43859, 'White Swan', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43860, 'Woodinville', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43861, 'Yakima', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43862, 'Yelm', 3818, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43863, 'Morgantown', 3819, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43864, 'Parkersburg', 3819, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43865, 'Weirton', 3819, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43866, 'Martinsburg', 3819, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43867, 'Beckley', 3819, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, 1), -(43868, 'South Charleston', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43869, 'Moundsville', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43870, 'Oak Hill', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43871, 'Dunbar', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43872, 'Elkins', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43873, 'Nitro', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43874, 'Hurricane', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43875, 'Charles Town', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43876, 'Buckhannon', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43877, 'Keyser', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43878, 'New Martinsville', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43879, 'Grafton', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43880, 'Ranson', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43881, 'Westover', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43882, 'Ravenswood', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43883, 'Summersville', 3819, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43884, 'Adams', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43885, 'Allouez', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43886, 'Appleton', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43887, 'Ashwaubenon', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43888, 'Baraboo', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43889, 'Beaver Dam', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43890, 'Beloit', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43891, 'Brown Deer', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43892, 'Carter', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43893, 'Cedarburg', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43894, 'Chippewa Falls', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43895, 'De Pere', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43896, 'Delafield', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43897, 'Eau Claire', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43898, 'Elkhorn', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43899, 'Elroy', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43900, 'Fond du Lac', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43901, 'Fort Atkinson', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43902, 'Galesville', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43903, 'Glen Flora', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43904, 'Goodman', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43905, 'Green Bay', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43906, 'Greendale', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43907, 'Hartland', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43908, 'Howard', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43909, 'Janesville', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43910, 'Kaukauna', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43911, 'Kenosha', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43912, 'Kohler', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43913, 'La Crosse', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43914, 'Little Chute', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43915, 'Manitowoc', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43916, 'Marinette', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43917, 'Menasha', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43918, 'Menomonee Falls', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43919, 'Menomonie', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43920, 'Mequon', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43921, 'Merrill', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43922, 'Milwaukee', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43923, 'Mineral Point', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43924, 'Mukwonago', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43925, 'Muskego', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43926, 'Neenah', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43927, 'New Berlin', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43928, 'Oak Creek', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43929, 'Oconomowoc', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43930, 'Onalaska', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43931, 'Orfordville', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43932, 'Oshkosh', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43933, 'Pigeon Falls', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43934, 'Platteville', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43935, 'Pleasant Prairie', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43936, 'Plover', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43937, 'Port Washington', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43938, 'Pound', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43939, 'Racine', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43940, 'Reedsburg', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43941, 'Rhinelander', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43942, 'River Falls', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43943, 'Saint Francis', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43944, 'Sheboygan', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43945, 'Shorewood', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43946, 'South Milwaukee', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43947, 'Stevens Point', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43948, 'Stoughton', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43949, 'Strum', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43950, 'Sturtevant', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43951, 'Sun Prairie', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43952, 'Three Lakes', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43953, 'Tomah', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43954, 'Two Rivers', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43955, 'Washington Island', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43956, 'Waukesha', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43957, 'Waupun', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43958, 'Wausau', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43959, 'Wautoma', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43960, 'Wauwatosa', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43961, 'West Allis', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43962, 'West Bend', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43963, 'Whitefish Bay', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43964, 'Whitewater', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43965, 'Wisconsin Rapids', 3820, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43966, 'Casper', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43967, 'Cheyenne', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43968, 'Cody', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43969, 'Gillette', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43970, 'Green River', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43971, 'Lander', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43972, 'Laramie', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43973, 'Rawlins', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43974, 'Rock Springs', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43975, 'Worland', 3821, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43976, 'Artigas', 3823, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43977, 'Bella Union', 3823, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, 1), -(43978, 'Camino Maldonado', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43979, 'Canelones', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43980, 'Ciudad de la Costa', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43981, 'Juan Antonio Artigas', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43982, 'Las Piedras', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43983, 'Pando', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43984, 'Paso de Carrasco', 3824, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43985, 'Carmelo', 3826, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43986, 'Juan Lacaze', 3826, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43987, 'Nueva Helvecia', 3826, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43988, 'Durazno', 3827, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43989, 'Maldonado', 3830, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43990, 'Montevideo', 3831, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43991, 'Paysandu', 3832, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43992, 'Chuy', 3834, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43993, 'Rocha', 3834, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43994, 'Salto', 3835, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43995, 'Paso de los Toros', 3837, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43996, 'Tacuarembo', 3837, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43997, 'Ahunabayev', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43998, 'Andijon', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(43999, 'Boz', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44000, 'Hakkulobod', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44001, 'Hocaobod', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44002, 'Honobod', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44003, 'Ilyichevsk', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44004, 'Karabagis', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44005, 'Kurgontepa', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44006, 'Marhomat', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44007, 'Pahtaobod', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44008, 'Paytug', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44009, 'Sahrihan', 3839, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44010, 'Buhoro', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44011, 'Cangeldi', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44012, 'Galaosiye', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44013, 'Gazli', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44014, 'Gijduvon', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44015, 'Kizilravbe', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44016, 'Kogon', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44017, 'Korakul', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44018, 'Korovulbazar', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44019, 'Kukca', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44020, 'Oyokkuduk', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44021, 'Romitan', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44022, 'Safirkon', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44023, 'Vobkent', 3840, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, 1), -(44024, 'Cizah', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44025, 'Dustlik', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44026, 'Gallaorol', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44027, 'Marcanbulok', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44028, 'Pahtakor', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44029, 'Ulyanovo', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44030, 'Zomin', 3841, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44031, 'Altyarik', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44032, 'Avval', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1); -INSERT INTO `areas` (`id`, `name`, `city_id`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES -(44033, 'Besarik', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44034, 'Fargona', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44035, 'Hamza', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44036, 'Kirgili', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44037, 'Kukon', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44038, 'Kuva', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44039, 'Kuvasoy', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44040, 'Margilon', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44041, 'Rapkan', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44042, 'Riston', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44043, 'Toslok', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44044, 'Yaypan', 3842, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44045, 'Drujba', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44046, 'Gurlan', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44047, 'Hazorasp', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44048, 'Heva', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44049, 'Honko', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44050, 'Kuskupir', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44051, 'Mesekli', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44052, 'Sovot', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44053, 'Turpokkala', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44054, 'Urgenc', 3843, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44055, 'Beskent', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44056, 'Ceynau', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44057, 'Cirakci', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44058, 'Dehkanobod', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44059, 'Dinau', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44060, 'Guzor', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44061, 'Kallig', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44062, 'Kamasi', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44063, 'Karabag', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44064, 'Karsi', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44065, 'Kasbi', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44066, 'Kitob', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44067, 'Koson', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44068, 'Madaniyat', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44069, 'Maydayap', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44070, 'Maymanak', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44071, 'Muborak', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44072, 'Oktyabrskiy', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44073, 'Sahrisabz', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44074, 'Talimarcon', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44075, 'Urtacim', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44076, 'Yakkabog', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44077, 'Yaninison', 3844, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44078, 'Beruni', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44079, 'Cimboy', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44080, 'Halkobod', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44081, 'Hucayli', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44082, 'Karauzyak', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44083, 'Kegayli', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44084, 'Kizketken', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44085, 'Kozokdaryo', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44086, 'Kungirot', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44087, 'Mangit', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44088, 'Muynok', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44089, 'Nukus', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44090, 'Tahiatos', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44091, 'Tahtakupir', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44092, 'Turtkul', 3845, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44093, 'Aytim', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44094, 'Besbulok', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44095, 'Cartak', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44096, 'Cingeldi', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44097, 'Cust', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44098, 'Gozgon', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44099, 'Iskavat', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44100, 'Kalkuduk', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44101, 'Konimeh', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44102, 'Kosonsoy', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44103, 'Minbulok', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44104, 'Namangan', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44105, 'Nurota', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44106, 'Pop', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44107, 'Tomdibulok', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44108, 'Tosbulok', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44109, 'Turakurgon', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44110, 'Uckurgon', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44111, 'Unhoyat', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44112, 'Uyci', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44113, 'Uzunkuduk', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44114, 'Yanikurgon', 3846, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44115, 'Karmana', 3847, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44116, 'Kiziltepa', 3847, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44117, 'Navoi', 3847, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44118, 'Uckuduk', 3847, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44119, 'Zarafson', 3847, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44120, 'Bulungur', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44121, 'Camboy', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44122, 'Carhin', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44123, 'Celak', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44124, 'Cuma', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44125, 'Dahbed', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44126, 'Istihon', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44127, 'Kattakurgon', 3848, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, 1), -(44128, 'Kusrobod', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44129, 'Nurobod', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44130, 'Oktos', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44131, 'Paysanba', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44132, 'Samarkand', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44133, 'Superfosfatniy', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44134, 'Urgut', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44135, 'Yanirobod', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44136, 'Ziadin', 3848, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44137, 'Baht', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44138, 'Guliston', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44139, 'Hovos', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44140, 'Sirdare', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44141, 'Sirin', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44142, 'Yaniyer', 3849, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44143, 'Akkurgon', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44144, 'Boysun', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44145, 'Carkurgon', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44146, 'Denau', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44147, 'Kumkurgon', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44148, 'Paskurd', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44149, 'Sargun', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44150, 'Sariasiya', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44151, 'Serobod', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44152, 'Surci', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44153, 'Termiz', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44154, 'Zan', 3850, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44155, 'Almazar', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44156, 'Angren', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44157, 'Bekobod', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44158, 'Bektemir', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44159, 'Buka', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44160, 'Cinoz', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44161, 'Circik', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44162, 'Gazalkent', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44163, 'Iskandar', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44164, 'Kibray', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44165, 'Krasnogorskiy', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44166, 'Kuyluk', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44167, 'Ohangaron', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44168, 'Olmalik', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44169, 'Parkent', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44170, 'Pskent', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44171, 'Salar', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44172, 'Soldatski', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44173, 'Tashkent', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44174, 'Toskent', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44175, 'Tuytepa', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44176, 'Urtaaul', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44177, 'Yaniobod', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44178, 'Yaniyul', 3851, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44179, 'Lakatoro', 3852, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44180, 'Norsup', 3852, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44181, 'Longana', 3853, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44182, 'Luganville', 3854, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44183, 'Port Olry', 3854, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44184, 'Vila', 3855, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44185, 'Isangel', 3856, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44186, 'Puerto Ayacucho', 511, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44187, 'Anaco', 3858, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44188, 'Cantaura', 3858, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44189, 'El Tigre', 3858, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44190, 'Puerto la Cruz', 3858, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44191, 'San Jose de Guanipa', 3858, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44192, 'Guasdualito', 3859, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44193, 'Cagua', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44194, 'Las Teyerias', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44195, 'Maracay', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44196, 'Palo Negro', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44197, 'Turmero', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44198, 'Villa de Cura', 3860, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44199, 'Barinas', 3861, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44200, 'Barinitas', 3861, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44201, 'Ciudad Bolivar', 764, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44202, 'Ciudad Guayana', 764, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44203, 'Upata', 764, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, 1), -(44204, 'Goaigoaza', 3862, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44205, 'Guacara', 3862, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44206, 'Guigue', 3862, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44207, 'Mariara', 3862, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44208, 'Puerto Cabello', 3862, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44209, 'Tinaquillo', 3863, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44210, 'Coro', 3865, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44211, 'Punta Cardon', 3865, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44212, 'Punto Fijo', 3865, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44213, 'Altagracia de Orituco', 3866, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44214, 'Calabozo', 3866, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44215, 'San Juan de los Morros', 3866, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44216, 'Valle de la Pascua', 3866, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44217, 'Zaraza', 3866, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44218, 'Barquisimeto', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44219, 'Cabudare', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44220, 'Carora', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44221, 'El Tocuyo', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44222, 'Los Rastrojos', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44223, 'Quibor', 3867, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44224, 'Ejido', 3868, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44225, 'El Vigia', 3868, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44226, 'Baruta', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44227, 'Carrizal', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44228, 'Catia La Mar', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44229, 'Caucaguita', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44230, 'Chacao', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44231, 'Charallave', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44232, 'Cua', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44233, 'El Cafetal', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44234, 'El Hatillo', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44235, 'Filas de Mariche', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44236, 'Guarenas', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44237, 'Guatire', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44238, 'La Dolorita', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44239, 'Los Dos Caminos', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44240, 'Los Teques', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44241, 'Ocumare del Tuy', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44242, 'Petare', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44243, 'San Antonio de los Altos', 3869, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44244, 'Maturin', 3870, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44245, 'Acarigua', 3872, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44246, 'Araure', 3872, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44247, 'Guanare', 3872, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44248, 'Villa Bruzual', 3872, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44249, 'Carupano', 785, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44250, 'Cumana', 785, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44251, 'La Fria', 3873, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44252, 'Rubio', 3873, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44253, 'San Antonio del Tachira', 3873, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44254, 'San Juan de Colon', 3873, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44255, 'Tariba', 3873, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44256, 'Valera', 3874, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44257, 'Caraballeda', 3875, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44258, 'La Guaira', 3875, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44259, 'Maiquetia', 3875, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44260, 'Chivacoa', 3876, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44261, 'Nirgua', 3876, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44262, 'Yaritagua', 3876, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44263, 'Bachaquero', 3877, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, 1), -(44264, 'Cabimas', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44265, 'Ciudad Ojeda', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44266, 'Machiques', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44267, 'Maracaibo', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44268, 'San Carlos del Zulia', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44269, 'Villa del Rosario', 3877, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44270, 'Ha noi', 3887, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44271, 'Hoang Mai', 3887, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44272, 'Lang Ha', 3887, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44273, 'Settlement', 3898, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44274, 'East End-Long Look', 3900, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44275, 'Road Town', 3900, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44276, 'West End', 3900, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44277, 'Kolia', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44278, 'Mala e', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44279, 'Poi', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44280, 'Taoa', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44281, 'Tuatafa', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44282, 'Vele', 3902, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, 1), -(44283, 'Fiua', 3903, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44284, 'Leava', 3903, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44285, 'Nuku', 3903, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44286, 'Toloke', 3903, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44287, 'Vaisei', 3903, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44288, 'Ahoa', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44289, 'Aka Aka', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44290, 'Alele', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44291, 'Falaleu', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44292, 'Gahi', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44293, 'Haafuasia', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44294, 'Haatofo', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44295, 'Halalo', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44296, 'Kolopopo', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44297, 'Lavegahau', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44298, 'Liku', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44299, 'Malaefoou', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44300, 'Mata Utu', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44301, 'Teesi', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44302, 'Tepa', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44303, 'Utuofa', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44304, 'Vailala', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44305, 'Vaimalau', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44306, 'Vaitupu', 3904, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44307, 'ad-Dakhlah', 3906, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44308, 'al- Ayun', 3907, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44309, 'as-Samarah', 3908, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44310, ' Adan', 3909, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44311, 'Aden', 3909, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44312, 'Ahwar', 3910, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44313, 'Ja ar', 3910, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44314, 'Zinjibar', 3910, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44315, 'Dhamar', 3911, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44316, 'Shaqra ', 3912, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44317, 'al-Mukalla', 3912, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44318, 'ash-Shahir', 3912, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44319, 'Hajjah', 3913, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44320, 'Hodaidah', 3914, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44321, 'Dhi Sufal', 3915, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44322, 'Ibb', 3915, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44323, 'Jiblah', 3915, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44324, 'Qa tabah', 3915, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44325, 'Yarim', 3915, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44326, 'Tuban', 3916, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44327, 'Ma rib', 3917, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44328, 'Sa dah', 3919, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, 1), -(44329, ' Amran', 3920, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44330, 'Sahar', 3920, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44331, 'Sanaa', 3920, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44332, 'Sayyan', 3920, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44333, ' Ataq', 3921, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44334, 'Habban', 3921, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44335, 'Taiz', 3921, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44336, 'Ta izz', 3922, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44337, 'al-Mukha', 3922, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44338, 'Raydah', 3923, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44339, 'al-Bayda', 3923, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44340, 'Bajil', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44341, 'Bayt-al-Faqih', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44342, 'Zabid', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44343, 'al-Hudaydah', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44344, 'al-Marawi ah', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44345, 'az-Zaydiyah', 3924, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44346, 'al-Hazm', 3925, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44347, 'al-Ghaydah', 3926, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44348, 'Mahwit', 3927, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44349, 'Kabwe', 1102, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44350, 'Kapiri Mposhi', 1102, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44351, 'Mkushi', 1102, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44352, 'Mumbwa', 1102, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44353, 'Serenje', 1102, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44354, 'Chambishi', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44355, 'Chililabombwe', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44356, 'Chingola', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44357, 'Kalulushi', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44358, 'Kitwe', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44359, 'Luanshya', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44360, 'Mpongwe', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44361, 'Mufulira', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44362, 'Ndola', 3928, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44363, 'Katete', 140, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44364, 'Lundazi', 140, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44365, 'Petauke', 140, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44366, 'Mwansabombwe', 3929, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44367, 'Nchelenge', 3929, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44368, 'Samfya', 3929, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44369, 'Chilanga', 3930, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44370, 'Kafue', 3930, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44371, 'Lusaka', 3930, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44372, 'Kalengwa', 3931, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44373, 'Kansanshi', 3931, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44374, 'Mwinilunga', 3931, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44375, 'Solwezi', 3931, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44376, 'Zambezi', 3931, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44377, 'Chinsali', 1103, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44378, 'Isoka', 1103, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44379, 'Mbala', 1103, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44380, 'Mpika', 1103, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44381, 'Choma', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44382, 'Itezhi-Tezhi', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44383, 'Kalomo', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44384, 'Livingstone', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44385, 'Maamba', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44386, 'Mazabuka', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44387, 'Monze', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44388, 'Nakambala', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44389, 'Siavonga', 1089, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44390, 'Kalabo', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44391, 'Kaoma', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44392, 'Limulunga', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44393, 'Mongu', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44394, 'Senanga', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44395, 'Sesheke', 143, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44396, 'Bulawayo', 3932, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, 1), -(44397, 'Chitungwiza', 3933, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44398, 'Harare', 3933, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44399, 'Chimanimani', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44400, 'Chipinge', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44401, 'Mutare', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44402, 'Nyanga', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44403, 'Rusape', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44404, 'Sakubva', 3934, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44405, 'Chiredzi', 3938, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44406, 'Gaths', 3938, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44407, 'Masvingo', 3938, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44408, 'Chivhu', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44409, 'Gweru', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44410, 'Kwekwe', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44411, 'Mvuma', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44412, 'Redcliffe', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44413, 'Shurugwi', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44414, 'Zvishavane', 3941, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44415, 'Eshkashem', 3942, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44416, 'Fayzabad', 3942, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44417, 'Jurm', 3942, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44418, 'Khandud', 3942, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44419, 'Qal eh-ye Panjeh', 3942, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44420, 'Bala Morghab', 3943, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44421, 'Qal eh-ye Naw', 3943, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44422, 'Andarab', 3944, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44423, 'Baghlan', 3944, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44424, 'Dahaneh-ye Ghawri', 3944, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44425, 'Nahrin', 3944, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44426, 'Pol-e Khumri', 3944, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44427, 'Balkh', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44428, 'Dawlatabad', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44429, 'Mazar-e Sharif', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44430, 'Qarchi Gak', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44431, 'Shulgara', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44432, 'Tash Gozar', 3945, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44433, 'Bamiyan', 3946, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44434, 'Panjab', 3946, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44435, 'Qil Qal eh', 3946, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44436, 'Anar Darreh', 3947, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44437, 'Shindand', 3947, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44438, 'Andkhvoy', 3948, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44439, 'Darzi Ab', 3948, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44440, 'Maymanah', 3948, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44441, 'Chaghcharan', 3949, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44442, 'Shahrak', 3949, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44443, 'Taywarah', 3949, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44444, 'Ghazni', 3950, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44445, 'Awbeh', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44446, 'Eslam Qal eh', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44447, 'Ghurian', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44448, 'Herat', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44449, 'Karukh', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44450, 'Kuhestan', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44451, 'Kushk', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44452, 'Qarabagh', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44453, 'Tawraghudi', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44454, 'Tir Pol', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44455, 'Zendejan', 3951, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, 1), -(44456, 'Baghran', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44457, 'Darwishan', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44458, 'Deh Shu', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44459, 'Gereshk', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44460, 'Lashkar Gah', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44461, 'Sangin', 3952, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44462, 'Aqchah', 3953, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44463, 'Qarqin', 3953, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44464, 'Sang-e Charak', 3953, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44465, 'Shibarghan', 3953, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44466, 'Baghrami', 3954, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44467, 'Mir Bachchekut', 3954, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44468, 'Paghman', 3954, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44469, 'Sarawbi', 3954, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44470, 'Mahmud-e Raqi', 3955, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44471, 'Taghab', 3955, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44472, 'Khawst', 3956, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44473, 'Asmar', 3957, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44474, 'Mehtar Lam', 3958, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44475, 'Azraw', 3959, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44476, 'Baraki Barak', 3959, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44477, 'Pol-e Alam', 3959, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44478, 'Achin', 3960, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44479, 'Batsawul', 3960, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44480, 'Hugyani', 3960, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44481, 'Nader Shah Kawt', 3960, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44482, 'Chahar Burjak', 3961, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44483, 'Chakhansur', 3961, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44484, 'Khash', 3961, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44485, 'Mirabad', 3961, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44486, 'Zaranj', 3961, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44487, 'Nuristan', 3962, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44488, 'Orgun', 3963, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44489, 'Zareh Sharan', 3963, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44490, 'Zarghun Shahr', 3963, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44491, ' Ali Khayl', 3964, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44492, 'Ghardez', 3964, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44493, 'Charikar', 3965, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44494, 'Jabal-os-Saraj', 3965, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44495, 'Qandahar', 3966, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44496, 'Dasht-e Archa', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44497, 'Emam Saheb', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44498, 'Hazart Imam', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44499, 'Khanabad', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44500, 'Qal eh-ye Zal', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44501, 'Qunduz', 3967, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44502, 'Aybak', 3968, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44503, 'Kholm', 3968, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44504, 'Chah Ab', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44505, 'Eshkamesh', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44506, 'Farkhar', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44507, 'Khwajeh Ghar', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44508, 'Rostaq', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44509, 'Taloqan', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44510, 'Yangi Qal eh', 3970, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, 1), -(44511, 'Deh Rawud', 3971, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44512, 'Gaz Ab', 3971, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44513, 'Tarin Kawt', 3971, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44514, 'Uruzgan', 3971, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44515, 'Gardan Diwal', 3972, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44516, 'Maydanshahr', 3972, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1), -(44517, 'Qalat-e Ghilzay', 3973, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, 1); - - - - diff --git a/database/data/cities.json b/database/data/cities.json new file mode 100644 index 0000000..5776db6 --- /dev/null +++ b/database/data/cities.json @@ -0,0 +1,3976 @@ +[ +{"id":"1","name":"القاهرة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-08-23 09:24:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2","name":"الجيزة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3","name":"الأسكندرية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"4","name":"الدقهلية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"5","name":"البحر الأحمر","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"6","name":"البحيرة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"7","name":"الفيوم","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"8","name":"الغربية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"9","name":"الإسماعلية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"10","name":"المنوفية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"11","name":"المنيا","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"12","name":"القليوبية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"13","name":"الوادي الجديد","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"14","name":"السويس","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"15","name":"اسوان","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"16","name":"اسيوط","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"17","name":"بني سويف","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"18","name":"بورسعيد","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"19","name":"دمياط","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"20","name":"الشرقية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"21","name":"جنوب سيناء","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"22","name":"كفر الشيخ","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"23","name":"مطروح","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"24","name":"الأقصر","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"25","name":"قنا","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"26","name":"شمال سيناء","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"27","name":"سوهاج","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"28","name":"جنوب الوادي","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"29","name":"القاهرة الجديدة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"30","name":"حلوان","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"31","name":"الزقازيق","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"32","name":"المنصورة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"33","name":"الاسماعيلية","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"34","name":"الغردقة","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"35","name":"بنها","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"36","name":"بور سعيد","country_id":"65","created_at":"2020-06-17 12:54:28","updated_at":"2020-07-27 08:18:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"37","name":"الرياض","country_id":"194","created_at":"2020-12-06 03:52:40","updated_at":"2020-12-06 03:52:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"38","name":"مكة المكرمة","country_id":"194","created_at":"2020-12-06 03:53:03","updated_at":"2020-12-06 03:53:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"39","name":"المدينة المنورة","country_id":"194","created_at":"2020-12-06 03:53:21","updated_at":"2020-12-06 03:53:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"40","name":"القصيم","country_id":"194","created_at":"2020-12-06 03:53:38","updated_at":"2020-12-06 03:53:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"41","name":"الشرقية","country_id":"194","created_at":"2020-12-06 03:53:55","updated_at":"2020-12-06 03:53:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"42","name":"نجران","country_id":"194","created_at":"2020-12-06 03:54:11","updated_at":"2020-12-06 03:54:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"43","name":"الحدود الشمالية","country_id":"194","created_at":"2020-12-06 03:54:29","updated_at":"2020-12-06 03:54:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"44","name":"الجوف","country_id":"194","created_at":"2020-12-06 03:54:43","updated_at":"2020-12-06 03:54:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"45","name":"حائل","country_id":"194","created_at":"2020-12-06 03:54:59","updated_at":"2020-12-06 03:54:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"46","name":"الباحة","country_id":"194","created_at":"2020-12-06 03:55:13","updated_at":"2020-12-06 03:55:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"47","name":"عسير","country_id":"194","created_at":"2020-12-06 03:55:26","updated_at":"2020-12-06 03:55:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"48","name":"جازان","country_id":"194","created_at":"2020-12-06 03:55:48","updated_at":"2020-12-06 03:55:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"49","name":"تبوك","country_id":"194","created_at":"2020-12-06 03:56:01","updated_at":"2020-12-06 03:56:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"50","name":"Berat","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"51","name":"Bulqize","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"52","name":"Delvine","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"53","name":"Devoll","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"54","name":"Dibre","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"55","name":"Durres","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"56","name":"Elbasan","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"57","name":"Fier","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"58","name":"Gjirokaster","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"59","name":"Gramsh","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"60","name":"Has","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"61","name":"Kavaje","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"62","name":"Kolonje","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"63","name":"Korce","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"64","name":"Kruje","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"65","name":"Kucove","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"66","name":"Kukes","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"67","name":"Kurbin","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"68","name":"Lezhe","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"69","name":"Librazhd","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"70","name":"Lushnje","country_id":"2","created_at":"2024-01-21 11:48:33","updated_at":"2024-01-21 11:48:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"71","name":"Mallakaster","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"72","name":"Malsi e Madhe","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"73","name":"Mat","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"74","name":"Mirdite","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"75","name":"Peqin","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"76","name":"Permet","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"77","name":"Pogradec","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"78","name":"Puke","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"79","name":"Sarande","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"80","name":"Shkoder","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"81","name":"Skrapar","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"82","name":"Tepelene","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"83","name":"Tirane","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"84","name":"Tropoje","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"85","name":"Vlore","country_id":"2","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"86","name":" Ayn Daflah","country_id":"3","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"87","name":" Ayn Tamushanat","country_id":"3","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"88","name":"Adrar","country_id":"3","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"89","name":"Algiers","country_id":"3","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"90","name":"Annabah","country_id":"3","created_at":"2024-01-21 11:48:34","updated_at":"2024-01-21 11:48:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"91","name":"Bashshar","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"92","name":"Batnah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"93","name":"Bijayah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"94","name":"Biskrah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"95","name":"Blidah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"96","name":"Buirah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"97","name":"Bumardas","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"98","name":"Burj Bu Arririj","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"99","name":"Ghalizan","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"100","name":"Ghardayah","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"101","name":"Ilizi","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"102","name":"Jijili","country_id":"3","created_at":"2024-01-21 11:48:35","updated_at":"2024-01-21 11:48:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"103","name":"Jilfah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"104","name":"Khanshalah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"105","name":"Masilah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"106","name":"Midyah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"107","name":"Milah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"108","name":"Muaskar","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"109","name":"Mustaghanam","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"110","name":"Naama","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"111","name":"Oran","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"112","name":"Ouargla","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"113","name":"Qalmah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"114","name":"Qustantinah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"115","name":"Sakikdah","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"116","name":"Satif","country_id":"3","created_at":"2024-01-21 11:48:36","updated_at":"2024-01-21 11:48:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"117","name":"Sayda ","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"118","name":"Sidi ban-al- Abbas","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"119","name":"Suq Ahras","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"120","name":"Tamanghasat","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"121","name":"Tibazah","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"122","name":"Tibissah","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"123","name":"Tilimsan","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"124","name":"Tinduf","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"125","name":"Tisamsilt","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"126","name":"Tiyarat","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"127","name":"Tizi Wazu","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"128","name":"Umm-al-Bawaghi","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"129","name":"Wahran","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"130","name":"Warqla","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"131","name":"Wilaya d Alger","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"132","name":"Wilaya de Bejaia","country_id":"3","created_at":"2024-01-21 11:48:37","updated_at":"2024-01-21 11:48:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"133","name":"Wilaya de Constantine","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"134","name":"al-Aghwat","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"135","name":"al-Bayadh","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"136","name":"al-Jaza ir","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"137","name":"al-Wad","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"138","name":"ash-Shalif","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"139","name":"at-Tarif","country_id":"3","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"140","name":"Eastern","country_id":"4","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"141","name":"Manu a","country_id":"4","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"142","name":"Swains Island","country_id":"4","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"143","name":"Western","country_id":"4","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"144","name":"Andorra la Vella","country_id":"5","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"145","name":"Canillo","country_id":"5","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"146","name":"Encamp","country_id":"5","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"147","name":"La Massana","country_id":"5","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"148","name":"Les Escaldes","country_id":"5","created_at":"2024-01-21 11:48:38","updated_at":"2024-01-21 11:48:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"149","name":"Ordino","country_id":"5","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"150","name":"Sant Julia de Loria","country_id":"5","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"151","name":"Bengo","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"152","name":"Benguela","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"153","name":"Bie","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"154","name":"Cabinda","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"155","name":"Cunene","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"156","name":"Huambo","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"157","name":"Huila","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"158","name":"Kuando-Kubango","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"159","name":"Kwanza Norte","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"160","name":"Kwanza Sul","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"161","name":"Luanda","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"162","name":"Lunda Norte","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"163","name":"Lunda Sul","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"164","name":"Malanje","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"165","name":"Moxico","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"166","name":"Namibe","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"167","name":"Uige","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"168","name":"Zaire","country_id":"6","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"169","name":"Other Provinces","country_id":"7","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"170","name":"Sector claimed by Argentina\/Ch","country_id":"8","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"171","name":"Sector claimed by Argentina\/UK","country_id":"8","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"172","name":"Sector claimed by Australia","country_id":"8","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"173","name":"Sector claimed by France","country_id":"8","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"174","name":"Sector claimed by New Zealand","country_id":"8","created_at":"2024-01-21 11:48:39","updated_at":"2024-01-21 11:48:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"175","name":"Sector claimed by Norway","country_id":"8","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"176","name":"Unclaimed Sector","country_id":"8","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"177","name":"Barbuda","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"178","name":"Saint George","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"179","name":"Saint John","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"180","name":"Saint Mary","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"181","name":"Saint Paul","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"182","name":"Saint Peter","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"183","name":"Saint Philip","country_id":"9","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"184","name":"Buenos Aires","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"185","name":"Catamarca","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"186","name":"Chaco","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"187","name":"Chubut","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"188","name":"Cordoba","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"189","name":"Corrientes","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"190","name":"Distrito Federal","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"191","name":"Entre Rios","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"192","name":"Formosa","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"193","name":"Jujuy","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"194","name":"La Pampa","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"195","name":"La Rioja","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"196","name":"Mendoza","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"197","name":"Misiones","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"198","name":"Neuquen","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"199","name":"Rio Negro","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"200","name":"Salta","country_id":"10","created_at":"2024-01-21 11:48:40","updated_at":"2024-01-21 11:48:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"201","name":"San Juan","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"202","name":"San Luis","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"203","name":"Santa Cruz","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"204","name":"Santa Fe","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"205","name":"Santiago del Estero","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"206","name":"Tierra del Fuego","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"207","name":"Tucuman","country_id":"10","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"208","name":"Aragatsotn","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"209","name":"Ararat","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"210","name":"Armavir","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"211","name":"Gegharkunik","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"212","name":"Kotaik","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"213","name":"Lori","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"214","name":"Shirak","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"215","name":"Stepanakert","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"216","name":"Syunik","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"217","name":"Tavush","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"218","name":"Vayots Dzor","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"219","name":"Yerevan","country_id":"11","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"220","name":"Aruba","country_id":"12","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"221","name":"Auckland","country_id":"13","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"222","name":"Australian Capital Territory","country_id":"13","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"223","name":"Balgowlah","country_id":"13","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"224","name":"Balmain","country_id":"13","created_at":"2024-01-21 11:48:41","updated_at":"2024-01-21 11:48:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"225","name":"Bankstown","country_id":"13","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"226","name":"Baulkham Hills","country_id":"13","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"227","name":"Bonnet Bay","country_id":"13","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"228","name":"Camberwell","country_id":"13","created_at":"2024-01-21 11:48:42","updated_at":"2024-01-21 11:48:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"229","name":"Berat","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"230","name":"Bulqize","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"231","name":"Delvine","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"232","name":"Devoll","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"233","name":"Dibre","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"234","name":"Durres","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"235","name":"Elbasan","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"236","name":"Fier","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"237","name":"Gjirokaster","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"238","name":"Gramsh","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"239","name":"Has","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"240","name":"Kavaje","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"241","name":"Kolonje","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"242","name":"Korce","country_id":"2","created_at":"2024-01-21 11:50:05","updated_at":"2024-01-21 11:50:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"243","name":"Kruje","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"244","name":"Kucove","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"245","name":"Kukes","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"246","name":"Kurbin","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"247","name":"Lezhe","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"248","name":"Librazhd","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"249","name":"Lushnje","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"250","name":"Mallakaster","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"251","name":"Malsi e Madhe","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"252","name":"Mat","country_id":"2","created_at":"2024-01-21 11:50:06","updated_at":"2024-01-21 11:50:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"253","name":"Berat","country_id":"2","created_at":"2024-01-21 11:50:16","updated_at":"2024-01-21 11:50:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"254","name":"Berat","country_id":"2","created_at":"2024-01-21 11:50:18","updated_at":"2024-01-21 11:50:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"255","name":"Carole Park","country_id":"13","created_at":"2024-01-21 11:51:29","updated_at":"2024-01-21 11:51:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"256","name":"Castle Hill","country_id":"13","created_at":"2024-01-21 11:51:29","updated_at":"2024-01-21 11:51:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"257","name":"Caulfield","country_id":"13","created_at":"2024-01-21 11:51:29","updated_at":"2024-01-21 11:51:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"258","name":"Chatswood","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"259","name":"Cheltenham","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"260","name":"Cherrybrook","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"261","name":"Clayton","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"262","name":"Collingwood","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"263","name":"Frenchs Forest","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"264","name":"Hawthorn","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"265","name":"Jannnali","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"266","name":"Knoxfield","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"267","name":"Melbourne","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"268","name":"New South Wales","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"269","name":"Northern Territory","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"270","name":"Perth","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"271","name":"Queensland","country_id":"13","created_at":"2024-01-21 12:03:33","updated_at":"2024-01-21 12:03:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"272","name":"South Australia","country_id":"13","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"273","name":"Tasmania","country_id":"13","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"274","name":"Templestowe","country_id":"13","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"275","name":"Victoria","country_id":"13","created_at":"2024-01-21 12:03:34","updated_at":"2024-01-21 12:03:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"276","name":"Werribee south","country_id":"13","created_at":"2024-01-21 12:03:35","updated_at":"2024-01-21 12:03:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"277","name":"Western Australia","country_id":"13","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"278","name":"Wheeler","country_id":"13","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"279","name":"Bundesland Salzburg","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"280","name":"Bundesland Steiermark","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"281","name":"Bundesland Tirol","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"282","name":"Burgenland","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"283","name":"Carinthia","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"284","name":"Karnten","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"285","name":"Liezen","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"286","name":"Lower Austria","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"287","name":"Niederosterreich","country_id":"14","created_at":"2024-01-21 12:03:36","updated_at":"2024-01-21 12:03:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"288","name":"Oberosterreich","country_id":"14","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"289","name":"Salzburg","country_id":"14","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"290","name":"Schleswig-Holstein","country_id":"14","created_at":"2024-01-21 12:03:37","updated_at":"2024-01-21 12:03:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"291","name":"Steiermark","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"292","name":"Styria","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"293","name":"Tirol","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"294","name":"Upper Austria","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"295","name":"Vorarlberg","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"296","name":"Wien","country_id":"14","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"297","name":"Abseron","country_id":"15","created_at":"2024-01-21 12:03:38","updated_at":"2024-01-21 12:03:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"298","name":"Baki Sahari","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"299","name":"Ganca","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"300","name":"Ganja","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"301","name":"Kalbacar","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"302","name":"Lankaran","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"303","name":"Mil-Qarabax","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"304","name":"Mugan-Salyan","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"305","name":"Nagorni-Qarabax","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"306","name":"Naxcivan","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"307","name":"Priaraks","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"308","name":"Qazax","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"309","name":"Saki","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"310","name":"Sirvan","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"311","name":"Xacmaz","country_id":"15","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"312","name":"Abaco","country_id":"16","created_at":"2024-01-21 12:03:39","updated_at":"2024-01-21 12:03:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"313","name":"Acklins Island","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"314","name":"Andros","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"315","name":"Berry Islands","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"316","name":"Biminis","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"317","name":"Cat Island","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"318","name":"Crooked Island","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"319","name":"Eleuthera","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"320","name":"Exuma and Cays","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"321","name":"Grand Bahama","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"322","name":"Inagua Islands","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"323","name":"Long Island","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"324","name":"Mayaguana","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"325","name":"New Providence","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"326","name":"Ragged Island","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"327","name":"Rum Cay","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"328","name":"San Salvador","country_id":"16","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"329","name":" Isa","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"330","name":"Badiyah","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"331","name":"Hidd","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"332","name":"Jidd Hafs","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"333","name":"Mahama","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"334","name":"Manama","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"335","name":"Sitrah","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"336","name":"al-Manamah","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"337","name":"al-Muharraq","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"338","name":"ar-Rifa a","country_id":"17","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"339","name":"Bagar Hat","country_id":"18","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"340","name":"Bandarban","country_id":"18","created_at":"2024-01-21 12:03:40","updated_at":"2024-01-21 12:03:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"341","name":"Barguna","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"342","name":"Barisal","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"343","name":"Bhola","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"344","name":"Bogora","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"345","name":"Brahman Bariya","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"346","name":"Chandpur","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"347","name":"Chattagam","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"348","name":"Chittagong Division","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"349","name":"Chuadanga","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"350","name":"Dhaka","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"351","name":"Dinajpur","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"352","name":"Faridpur","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"353","name":"Feni","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"354","name":"Gaybanda","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"355","name":"Gazipur","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"356","name":"Gopalganj","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"357","name":"Habiganj","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"358","name":"Jaipur Hat","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"359","name":"Jamalpur","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"360","name":"Jessor","country_id":"18","created_at":"2024-01-21 12:03:41","updated_at":"2024-01-21 12:03:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"361","name":"Jhalakati","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"362","name":"Jhanaydah","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"363","name":"Khagrachhari","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"364","name":"Khulna","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"365","name":"Kishorganj","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"366","name":"Koks Bazar","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"367","name":"Komilla","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"368","name":"Kurigram","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"369","name":"Kushtiya","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"370","name":"Lakshmipur","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"371","name":"Lalmanir Hat","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"372","name":"Madaripur","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"373","name":"Magura","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"374","name":"Maimansingh","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"375","name":"Manikganj","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"376","name":"Maulvi Bazar","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"377","name":"Meherpur","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"378","name":"Munshiganj","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"379","name":"Naral","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"380","name":"Narayanganj","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"381","name":"Narsingdi","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"382","name":"Nator","country_id":"18","created_at":"2024-01-21 12:03:42","updated_at":"2024-01-21 12:03:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"383","name":"Naugaon","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"384","name":"Nawabganj","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"385","name":"Netrakona","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"386","name":"Nilphamari","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"387","name":"Noakhali","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"388","name":"Pabna","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"389","name":"Panchagarh","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"390","name":"Patuakhali","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"391","name":"Pirojpur","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"392","name":"Rajbari","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"393","name":"Rajshahi","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"394","name":"Rangamati","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"395","name":"Rangpur","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"396","name":"Satkhira","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"397","name":"Shariatpur","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"398","name":"Sherpur","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"399","name":"Silhat","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"400","name":"Sirajganj","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"401","name":"Sunamganj","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"402","name":"Tangayal","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"403","name":"Thakurgaon","country_id":"18","created_at":"2024-01-21 12:03:43","updated_at":"2024-01-21 12:03:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"404","name":"Christ Church","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"405","name":"Saint Andrew","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"406","name":"Saint James","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"407","name":"Saint Joseph","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"408","name":"Saint Lucy","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"409","name":"Saint Michael","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"410","name":"Saint Thomas","country_id":"19","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"411","name":"Brest","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"412","name":"Homjel ","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"413","name":"Hrodna","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"414","name":"Mahiljow","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"415","name":"Mahilyowskaya Voblasts","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"416","name":"Minsk","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"417","name":"Minskaja Voblasts ","country_id":"20","created_at":"2024-01-21 12:03:44","updated_at":"2024-01-21 12:03:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"418","name":"Petrik","country_id":"20","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"419","name":"Vicebsk","country_id":"20","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"420","name":"Antwerpen","country_id":"21","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"421","name":"Berchem","country_id":"21","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"422","name":"Brabant","country_id":"21","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"423","name":"Brabant Wallon","country_id":"21","created_at":"2024-01-21 12:03:45","updated_at":"2024-01-21 12:03:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"424","name":"Brussel","country_id":"21","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"425","name":"East Flanders","country_id":"21","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"426","name":"Hainaut","country_id":"21","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"427","name":"Liege","country_id":"21","created_at":"2024-01-21 12:03:46","updated_at":"2024-01-21 12:03:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"428","name":"Limburg","country_id":"21","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"429","name":"Luxembourg","country_id":"21","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"430","name":"Namur","country_id":"21","created_at":"2024-01-21 12:03:47","updated_at":"2024-01-21 12:03:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"431","name":"Ontario","country_id":"21","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"432","name":"Oost-Vlaanderen","country_id":"21","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"433","name":"Provincie Brabant","country_id":"21","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"434","name":"Vlaams-Brabant","country_id":"21","created_at":"2024-01-21 12:03:48","updated_at":"2024-01-21 12:03:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"435","name":"Wallonne","country_id":"21","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"436","name":"West-Vlaanderen","country_id":"21","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"437","name":"Belize","country_id":"22","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"438","name":"Cayo","country_id":"22","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"439","name":"Corozal","country_id":"22","created_at":"2024-01-21 12:03:49","updated_at":"2024-01-21 12:03:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"440","name":"Orange Walk","country_id":"22","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"441","name":"Stann Creek","country_id":"22","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"442","name":"Toledo","country_id":"22","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"443","name":"Alibori","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"444","name":"Atacora","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"445","name":"Atlantique","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"446","name":"Borgou","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"447","name":"Collines","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"448","name":"Couffo","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"449","name":"Donga","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"450","name":"Littoral","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"451","name":"Mono","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"452","name":"Oueme","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"453","name":"Plateau","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"454","name":"Zou","country_id":"23","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"455","name":"Hamilton","country_id":"24","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"456","name":"Bumthang","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"457","name":"Chhukha","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"458","name":"Chirang","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"459","name":"Daga","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"460","name":"Geylegphug","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"461","name":"Ha","country_id":"25","created_at":"2024-01-21 12:03:50","updated_at":"2024-01-21 12:03:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"462","name":"Lhuntshi","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"463","name":"Mongar","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"464","name":"Pemagatsel","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"465","name":"Punakha","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"466","name":"Rinpung","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"467","name":"Samchi","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"468","name":"Samdrup Jongkhar","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"469","name":"Shemgang","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"470","name":"Tashigang","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"471","name":"Timphu","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"472","name":"Tongsa","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"473","name":"Wangdiphodrang","country_id":"25","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"474","name":"Beni","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"475","name":"Chuquisaca","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"476","name":"Cochabamba","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"477","name":"La Paz","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"478","name":"Oruro","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"479","name":"Pando","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"480","name":"Potosi","country_id":"26","created_at":"2024-01-21 12:03:51","updated_at":"2024-01-21 12:03:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"481","name":"Tarija","country_id":"26","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"482","name":"Federacija Bosna i Hercegovina","country_id":"28","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"483","name":"Republika Srpska","country_id":"28","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"484","name":"Central Bobonong","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"485","name":"Central Boteti","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"486","name":"Central Mahalapye","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"487","name":"Central Serowe-Palapye","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"488","name":"Central Tutume","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"489","name":"Chobe","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"490","name":"Francistown","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"491","name":"Gaborone","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"492","name":"Ghanzi","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"493","name":"Jwaneng","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"494","name":"Kgalagadi North","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"495","name":"Kgalagadi South","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"496","name":"Kgatleng","country_id":"29","created_at":"2024-01-21 12:03:52","updated_at":"2024-01-21 12:03:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"497","name":"Kweneng","country_id":"29","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"498","name":"Lobatse","country_id":"29","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"499","name":"Ngamiland","country_id":"29","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"500","name":"Ngwaketse","country_id":"29","created_at":"2024-01-21 12:03:53","updated_at":"2024-01-21 12:03:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"501","name":"North East","country_id":"29","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"502","name":"Okavango","country_id":"29","created_at":"2024-01-21 12:03:54","updated_at":"2024-01-21 12:03:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"503","name":"Orapa","country_id":"29","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"504","name":"Selibe Phikwe","country_id":"29","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"505","name":"South East","country_id":"29","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"506","name":"Sowa","country_id":"29","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"507","name":"Bouvet Island","country_id":"30","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"508","name":"Acre","country_id":"31","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"509","name":"Alagoas","country_id":"31","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"510","name":"Amapa","country_id":"31","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"511","name":"Amazonas","country_id":"31","created_at":"2024-01-21 12:03:55","updated_at":"2024-01-21 12:03:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"512","name":"Bahia","country_id":"31","created_at":"2024-01-21 12:03:56","updated_at":"2024-01-21 12:03:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"513","name":"Ceara","country_id":"31","created_at":"2024-01-21 12:03:57","updated_at":"2024-01-21 12:03:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"514","name":"Espirito Santo","country_id":"31","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"515","name":"Estado de Sao Paulo","country_id":"31","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"516","name":"Goias","country_id":"31","created_at":"2024-01-21 12:03:58","updated_at":"2024-01-21 12:03:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"517","name":"Maranhao","country_id":"31","created_at":"2024-01-21 12:03:59","updated_at":"2024-01-21 12:03:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"518","name":"Mato Grosso","country_id":"31","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"519","name":"Mato Grosso do Sul","country_id":"31","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"520","name":"Minas Gerais","country_id":"31","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"521","name":"Para","country_id":"31","created_at":"2024-01-21 12:04:00","updated_at":"2024-01-21 12:04:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"522","name":"Paraiba","country_id":"31","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"523","name":"Parana","country_id":"31","created_at":"2024-01-21 12:04:01","updated_at":"2024-01-21 12:04:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"524","name":"Pernambuco","country_id":"31","created_at":"2024-01-21 12:04:02","updated_at":"2024-01-21 12:04:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"525","name":"Piaui","country_id":"31","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"526","name":"Rio Grande do Norte","country_id":"31","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"527","name":"Rio Grande do Sul","country_id":"31","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"528","name":"Rio de Janeiro","country_id":"31","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"529","name":"Rondonia","country_id":"31","created_at":"2024-01-21 12:04:03","updated_at":"2024-01-21 12:04:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"530","name":"Roraima","country_id":"31","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"531","name":"Santa Catarina","country_id":"31","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"532","name":"Sao Paulo","country_id":"31","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"533","name":"Sergipe","country_id":"31","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"534","name":"Tocantins","country_id":"31","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"535","name":"British Indian Ocean Territory","country_id":"32","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"536","name":"Belait","country_id":"33","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"537","name":"Brunei-Muara","country_id":"33","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"538","name":"Temburong","country_id":"33","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"539","name":"Tutong","country_id":"33","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"540","name":"Blagoevgrad","country_id":"34","created_at":"2024-01-21 12:04:04","updated_at":"2024-01-21 12:04:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"541","name":"Burgas","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"542","name":"Dobrich","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"543","name":"Gabrovo","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"544","name":"Haskovo","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"545","name":"Jambol","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"546","name":"Kardzhali","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"547","name":"Kjustendil","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"548","name":"Lovech","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"549","name":"Montana","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"550","name":"Oblast Sofiya-Grad","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"551","name":"Pazardzhik","country_id":"34","created_at":"2024-01-21 12:04:05","updated_at":"2024-01-21 12:04:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"552","name":"Pernik","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"553","name":"Pleven","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"554","name":"Plovdiv","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"555","name":"Razgrad","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"556","name":"Ruse","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"557","name":"Shumen","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"558","name":"Silistra","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"559","name":"Sliven","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"560","name":"Smoljan","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"561","name":"Sofija grad","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"562","name":"Sofijska oblast","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"563","name":"Stara Zagora","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"564","name":"Targovishte","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"565","name":"Varna","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"566","name":"Veliko Tarnovo","country_id":"34","created_at":"2024-01-21 12:04:06","updated_at":"2024-01-21 12:04:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"567","name":"Vidin","country_id":"34","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"568","name":"Vraca","country_id":"34","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"569","name":"Yablaniza","country_id":"34","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"570","name":"Bale","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"571","name":"Bam","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"572","name":"Bazega","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"573","name":"Bougouriba","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"574","name":"Boulgou","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"575","name":"Boulkiemde","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"576","name":"Comoe","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"577","name":"Ganzourgou","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"578","name":"Gnagna","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"579","name":"Gourma","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"580","name":"Houet","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"581","name":"Ioba","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"582","name":"Kadiogo","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"583","name":"Kenedougou","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"584","name":"Komandjari","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"585","name":"Kompienga","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"586","name":"Kossi","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"587","name":"Kouritenga","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"588","name":"Kourweogo","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"589","name":"Leraba","country_id":"35","created_at":"2024-01-21 12:04:07","updated_at":"2024-01-21 12:04:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"590","name":"Mouhoun","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"591","name":"Nahouri","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"592","name":"Namentenga","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"593","name":"Noumbiel","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"594","name":"Oubritenga","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"595","name":"Oudalan","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"596","name":"Passore","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"597","name":"Poni","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"598","name":"Sanguie","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"599","name":"Sanmatenga","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"600","name":"Seno","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"601","name":"Sissili","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"602","name":"Soum","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"603","name":"Sourou","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"604","name":"Tapoa","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"605","name":"Tuy","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"606","name":"Yatenga","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"607","name":"Zondoma","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"608","name":"Zoundweogo","country_id":"35","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"609","name":"Bubanza","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"610","name":"Bujumbura","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"611","name":"Bururi","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"612","name":"Cankuzo","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"613","name":"Cibitoke","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"614","name":"Gitega","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"615","name":"Karuzi","country_id":"36","created_at":"2024-01-21 12:04:08","updated_at":"2024-01-21 12:04:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"616","name":"Kayanza","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"617","name":"Kirundo","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"618","name":"Makamba","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"619","name":"Muramvya","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"620","name":"Muyinga","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"621","name":"Ngozi","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"622","name":"Rutana","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"623","name":"Ruyigi","country_id":"36","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"624","name":"Banteay Mean Chey","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"625","name":"Bat Dambang","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"626","name":"Kampong Cham","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"627","name":"Kampong Chhnang","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"628","name":"Kampong Spoeu","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"629","name":"Kampong Thum","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"630","name":"Kampot","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"631","name":"Kandal","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"632","name":"Kaoh Kong","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"633","name":"Kracheh","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"634","name":"Krong Kaeb","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"635","name":"Krong Pailin","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"636","name":"Krong Preah Sihanouk","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"637","name":"Mondol Kiri","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"638","name":"Otdar Mean Chey","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"639","name":"Phnum Penh","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"640","name":"Pousat","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"641","name":"Preah Vihear","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"642","name":"Prey Veaeng","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"643","name":"Rotanak Kiri","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"644","name":"Siem Reab","country_id":"37","created_at":"2024-01-21 12:04:09","updated_at":"2024-01-21 12:04:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"645","name":"Stueng Traeng","country_id":"37","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"646","name":"Svay Rieng","country_id":"37","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"647","name":"Takaev","country_id":"37","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"648","name":"Adamaoua","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"649","name":"Centre","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"650","name":"Est","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"651","name":"Nord","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"652","name":"Nord Extreme","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"653","name":"Nordouest","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"654","name":"Ouest","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"655","name":"Sud","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"656","name":"Sudouest","country_id":"38","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"657","name":"Alberta","country_id":"39","created_at":"2024-01-21 12:04:10","updated_at":"2024-01-21 12:04:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"658","name":"British Columbia","country_id":"39","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"659","name":"Manitoba","country_id":"39","created_at":"2024-01-21 12:04:11","updated_at":"2024-01-21 12:04:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"660","name":"New Brunswick","country_id":"39","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"661","name":"Newfoundland and Labrador","country_id":"39","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"662","name":"Northwest Territories","country_id":"39","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"663","name":"Nova Scotia","country_id":"39","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"664","name":"Nunavut","country_id":"39","created_at":"2024-01-21 12:04:12","updated_at":"2024-01-21 12:04:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"665","name":"Prince Edward Island","country_id":"39","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"666","name":"Quebec","country_id":"39","created_at":"2024-01-21 12:04:14","updated_at":"2024-01-21 12:04:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"667","name":"Saskatchewan","country_id":"39","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"668","name":"Yukon","country_id":"39","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"669","name":"Boavista","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"670","name":"Brava","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"671","name":"Fogo","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"672","name":"Maio","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"673","name":"Sal","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"674","name":"Santo Antao","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"675","name":"Sao Nicolau","country_id":"40","created_at":"2024-01-21 12:04:16","updated_at":"2024-01-21 12:04:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"676","name":"Sao Tiago","country_id":"40","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"677","name":"Sao Vicente","country_id":"40","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"678","name":"Grand Cayman","country_id":"41","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"679","name":"Bamingui-Bangoran","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"680","name":"Bangui","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"681","name":"Basse-Kotto","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"682","name":"Haut-Mbomou","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"683","name":"Haute-Kotto","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"684","name":"Kemo","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"685","name":"Lobaye","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"686","name":"Mambere-Kadei","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"687","name":"Mbomou","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"688","name":"Nana-Gribizi","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"689","name":"Nana-Mambere","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"690","name":"Ombella Mpoko","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"691","name":"Ouaka","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"692","name":"Ouham","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"693","name":"Ouham-Pende","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"694","name":"Sangha-Mbaere","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"695","name":"Vakaga","country_id":"42","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"696","name":"Batha","country_id":"43","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"697","name":"Biltine","country_id":"43","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"698","name":"Bourkou-Ennedi-Tibesti","country_id":"43","created_at":"2024-01-21 12:04:17","updated_at":"2024-01-21 12:04:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"699","name":"Chari-Baguirmi","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"700","name":"Guera","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"701","name":"Kanem","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"702","name":"Lac","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"703","name":"Logone Occidental","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"704","name":"Logone Oriental","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"705","name":"Mayo-Kebbi","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"706","name":"Moyen-Chari","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"707","name":"Ouaddai","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"708","name":"Salamat","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"709","name":"Tandjile","country_id":"43","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"710","name":"Aisen","country_id":"44","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"711","name":"Antofagasta","country_id":"44","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"712","name":"Araucania","country_id":"44","created_at":"2024-01-21 12:04:18","updated_at":"2024-01-21 12:04:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"713","name":"Atacama","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"714","name":"Bio Bio","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"715","name":"Coquimbo","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"716","name":"Libertador General Bernardo O ","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"717","name":"Los Lagos","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"718","name":"Magellanes","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"719","name":"Maule","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"720","name":"Metropolitana","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"721","name":"Metropolitana de Santiago","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"722","name":"Tarapaca","country_id":"44","created_at":"2024-01-21 12:04:19","updated_at":"2024-01-21 12:04:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"723","name":"Valparaiso","country_id":"44","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"724","name":"Anhui","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"725","name":"Aomen","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"726","name":"Beijing","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"727","name":"Beijing Shi","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"728","name":"Chongqing","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"729","name":"Fujian","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"730","name":"Gansu","country_id":"45","created_at":"2024-01-21 12:04:20","updated_at":"2024-01-21 12:04:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"731","name":"Guangdong","country_id":"45","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"732","name":"Guangxi","country_id":"45","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"733","name":"Guizhou","country_id":"45","created_at":"2024-01-21 12:04:21","updated_at":"2024-01-21 12:04:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"734","name":"Hainan","country_id":"45","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"735","name":"Hebei","country_id":"45","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"736","name":"Heilongjiang","country_id":"45","created_at":"2024-01-21 12:04:22","updated_at":"2024-01-21 12:04:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"737","name":"Henan","country_id":"45","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"738","name":"Hubei","country_id":"45","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"739","name":"Hunan","country_id":"45","created_at":"2024-01-21 12:04:23","updated_at":"2024-01-21 12:04:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"740","name":"Jiangsu","country_id":"45","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"741","name":"Jiangxi","country_id":"45","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"742","name":"Jilin","country_id":"45","created_at":"2024-01-21 12:04:24","updated_at":"2024-01-21 12:04:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"743","name":"Liaoning","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"744","name":"Nei Monggol","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"745","name":"Ningxia Hui","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"746","name":"Qinghai","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"747","name":"Shaanxi","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"748","name":"Shandong","country_id":"45","created_at":"2024-01-21 12:04:25","updated_at":"2024-01-21 12:04:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"749","name":"Shanghai","country_id":"45","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"750","name":"Shanxi","country_id":"45","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"751","name":"Sichuan","country_id":"45","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"752","name":"Tianjin","country_id":"45","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"753","name":"Xianggang","country_id":"45","created_at":"2024-01-21 12:04:26","updated_at":"2024-01-21 12:04:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"754","name":"Xinjiang","country_id":"45","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"755","name":"Xizang","country_id":"45","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"756","name":"Yunnan","country_id":"45","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"757","name":"Zhejiang","country_id":"45","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"758","name":"Christmas Island","country_id":"46","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"759","name":"Cocos (Keeling) Islands","country_id":"47","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"760","name":"Antioquia","country_id":"48","created_at":"2024-01-21 12:04:27","updated_at":"2024-01-21 12:04:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"761","name":"Arauca","country_id":"48","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"762","name":"Atlantico","country_id":"48","created_at":"2024-01-21 12:04:28","updated_at":"2024-01-21 12:04:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"763","name":"Bogota","country_id":"48","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"764","name":"Bolivar","country_id":"48","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"765","name":"Boyaca","country_id":"48","created_at":"2024-01-21 12:04:29","updated_at":"2024-01-21 12:04:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"766","name":"Caldas","country_id":"48","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"767","name":"Caqueta","country_id":"48","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"768","name":"Casanare","country_id":"48","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"769","name":"Cauca","country_id":"48","created_at":"2024-01-21 12:04:30","updated_at":"2024-01-21 12:04:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"770","name":"Cesar","country_id":"48","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"771","name":"Choco","country_id":"48","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"772","name":"Cundinamarca","country_id":"48","created_at":"2024-01-21 12:04:31","updated_at":"2024-01-21 12:04:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"773","name":"Guainia","country_id":"48","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"774","name":"Guaviare","country_id":"48","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"775","name":"La Guajira","country_id":"48","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"776","name":"Magdalena","country_id":"48","created_at":"2024-01-21 12:04:32","updated_at":"2024-01-21 12:04:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"777","name":"Meta","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"778","name":"Narino","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"779","name":"Norte de Santander","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"780","name":"Putumayo","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"781","name":"Quindio","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"782","name":"Risaralda","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"783","name":"San Andres y Providencia","country_id":"48","created_at":"2024-01-21 12:04:33","updated_at":"2024-01-21 12:04:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"784","name":"Santander","country_id":"48","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"785","name":"Sucre","country_id":"48","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"786","name":"Tolima","country_id":"48","created_at":"2024-01-21 12:04:34","updated_at":"2024-01-21 12:04:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"787","name":"Valle del Cauca","country_id":"48","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"788","name":"Vaupes","country_id":"48","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"789","name":"Vichada","country_id":"48","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"790","name":"Mwali","country_id":"49","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"791","name":"Njazidja","country_id":"49","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"792","name":"Nzwani","country_id":"49","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"793","name":"Bouenza","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"794","name":"Brazzaville","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"795","name":"Cuvette","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"796","name":"Kouilou","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"797","name":"Lekoumou","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"798","name":"Likouala","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"799","name":"Niari","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"800","name":"Plateaux","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"801","name":"Pool","country_id":"50","created_at":"2024-01-21 12:04:35","updated_at":"2024-01-21 12:04:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"802","name":"Sangha","country_id":"50","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"803","name":"Bandundu","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"804","name":"Bas-Congo","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"805","name":"Equateur","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"806","name":"Haut-Congo","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"807","name":"Kasai-Occidental","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"808","name":"Kasai-Oriental","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"809","name":"Katanga","country_id":"51","created_at":"2024-01-21 12:04:36","updated_at":"2024-01-21 12:04:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"810","name":"Kinshasa","country_id":"51","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"811","name":"Maniema","country_id":"51","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"812","name":"Nord-Kivu","country_id":"51","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"813","name":"Sud-Kivu","country_id":"51","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"814","name":"Aitutaki","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"815","name":"Atiu","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"816","name":"Mangaia","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"817","name":"Manihiki","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"818","name":"Mauke","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"819","name":"Mitiaro","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"820","name":"Nassau","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"821","name":"Pukapuka","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"822","name":"Rakahanga","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"823","name":"Rarotonga","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"824","name":"Tongareva","country_id":"52","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"825","name":"Alajuela","country_id":"53","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"826","name":"Cartago","country_id":"53","created_at":"2024-01-21 12:04:37","updated_at":"2024-01-21 12:04:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"827","name":"Guanacaste","country_id":"53","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"828","name":"Heredia","country_id":"53","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"829","name":"Limon","country_id":"53","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"830","name":"Puntarenas","country_id":"53","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"831","name":"San Jose","country_id":"53","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"832","name":"Abidjan","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"833","name":"Agneby","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"834","name":"Bafing","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"835","name":"Denguele","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"836","name":"Dix-huit Montagnes","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"837","name":"Fromager","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"838","name":"Haut-Sassandra","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"839","name":"Lacs","country_id":"54","created_at":"2024-01-21 12:04:38","updated_at":"2024-01-21 12:04:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"840","name":"Lagunes","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"841","name":"Marahoue","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"842","name":"Moyen-Cavally","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"843","name":"Moyen-Comoe","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"844","name":"N zi-Comoe","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"845","name":"Sassandra","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"846","name":"Savanes","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"847","name":"Sud-Bandama","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"848","name":"Sud-Comoe","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"849","name":"Vallee du Bandama","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"850","name":"Worodougou","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"851","name":"Zanzan","country_id":"54","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"852","name":"Bjelovar-Bilogora","country_id":"55","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"853","name":"Dubrovnik-Neretva","country_id":"55","created_at":"2024-01-21 12:04:39","updated_at":"2024-01-21 12:04:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"854","name":"Grad Zagreb","country_id":"55","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"855","name":"Istra","country_id":"55","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"856","name":"Karlovac","country_id":"55","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"857","name":"Koprivnica-Krizhevci","country_id":"55","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"858","name":"Krapina-Zagorje","country_id":"55","created_at":"2024-01-21 12:04:40","updated_at":"2024-01-21 12:04:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"859","name":"Lika-Senj","country_id":"55","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"860","name":"Medhimurje","country_id":"55","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"861","name":"Medimurska Zupanija","country_id":"55","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"862","name":"Osijek-Baranja","country_id":"55","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"863","name":"Osjecko-Baranjska Zupanija","country_id":"55","created_at":"2024-01-21 12:04:41","updated_at":"2024-01-21 12:04:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"864","name":"Pozhega-Slavonija","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"865","name":"Primorje-Gorski Kotar","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"866","name":"Shibenik-Knin","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"867","name":"Sisak-Moslavina","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"868","name":"Slavonski Brod-Posavina","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"869","name":"Split-Dalmacija","country_id":"55","created_at":"2024-01-21 12:04:42","updated_at":"2024-01-21 12:04:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"870","name":"Varazhdin","country_id":"55","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"871","name":"Virovitica-Podravina","country_id":"55","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"872","name":"Vukovar-Srijem","country_id":"55","created_at":"2024-01-21 12:04:43","updated_at":"2024-01-21 12:04:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"873","name":"Zadar","country_id":"55","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"874","name":"Zagreb","country_id":"55","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"875","name":"Camaguey","country_id":"56","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"876","name":"Ciego de Avila","country_id":"56","created_at":"2024-01-21 12:04:44","updated_at":"2024-01-21 12:04:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"877","name":"Cienfuegos","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"878","name":"Ciudad de la Habana","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"879","name":"Granma","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"880","name":"Guantanamo","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"881","name":"Habana","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"882","name":"Holguin","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"883","name":"Isla de la Juventud","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"884","name":"La Habana","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"885","name":"Las Tunas","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"886","name":"Matanzas","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"887","name":"Pinar del Rio","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"888","name":"Sancti Spiritus","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"889","name":"Santiago de Cuba","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"890","name":"Villa Clara","country_id":"56","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"891","name":"Government controlled area","country_id":"58","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"892","name":"Limassol","country_id":"58","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"893","name":"Nicosia District","country_id":"58","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"894","name":"Paphos","country_id":"58","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"895","name":"Turkish controlled area","country_id":"58","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"896","name":"Central Bohemian","country_id":"59","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"897","name":"Frycovice","country_id":"59","created_at":"2024-01-21 12:04:45","updated_at":"2024-01-21 12:04:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"898","name":"Jihocesky Kraj","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"899","name":"Jihochesky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"900","name":"Jihomoravsky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"901","name":"Karlovarsky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"902","name":"Klecany","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"903","name":"Kralovehradecky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"904","name":"Liberecky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"905","name":"Lipov","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"906","name":"Moravskoslezsky","country_id":"59","created_at":"2024-01-21 12:04:46","updated_at":"2024-01-21 12:04:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"907","name":"Olomoucky","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"908","name":"Olomoucky Kraj","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"909","name":"Pardubicky","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"910","name":"Plzensky","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"911","name":"Praha","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"912","name":"Rajhrad","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"913","name":"Smirice","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"914","name":"South Moravian","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"915","name":"Straz nad Nisou","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"916","name":"Stredochesky","country_id":"59","created_at":"2024-01-21 12:04:47","updated_at":"2024-01-21 12:04:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"917","name":"Unicov","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"918","name":"Ustecky","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"919","name":"Valletta","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"920","name":"Velesin","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"921","name":"Vysochina","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"922","name":"Zlinsky","country_id":"59","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"923","name":"Arhus","country_id":"60","created_at":"2024-01-21 12:04:48","updated_at":"2024-01-21 12:04:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"924","name":"Bornholm","country_id":"60","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"925","name":"Frederiksborg","country_id":"60","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"926","name":"Fyn","country_id":"60","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"927","name":"Hovedstaden","country_id":"60","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"928","name":"Kobenhavn","country_id":"60","created_at":"2024-01-21 12:04:49","updated_at":"2024-01-21 12:04:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"929","name":"Kobenhavns Amt","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"930","name":"Kobenhavns Kommune","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"931","name":"Nordjylland","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"932","name":"Ribe","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"933","name":"Ringkobing","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"934","name":"Roervig","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"935","name":"Roskilde","country_id":"60","created_at":"2024-01-21 12:04:50","updated_at":"2024-01-21 12:04:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"936","name":"Roslev","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"937","name":"Sjaelland","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"938","name":"Soeborg","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"939","name":"Sonderjylland","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"940","name":"Storstrom","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"941","name":"Syddanmark","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"942","name":"Toelloese","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"943","name":"Vejle","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"944","name":"Vestsjalland","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"945","name":"Viborg","country_id":"60","created_at":"2024-01-21 12:04:51","updated_at":"2024-01-21 12:04:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"946","name":" Ali Sabih","country_id":"61","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"947","name":"Dikhil","country_id":"61","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"948","name":"Jibuti","country_id":"61","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"949","name":"Tajurah","country_id":"61","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"950","name":"Ubuk","country_id":"61","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"951","name":"Saint David","country_id":"62","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"952","name":"Saint Luke","country_id":"62","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"953","name":"Saint Mark","country_id":"62","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"954","name":"Saint Patrick","country_id":"62","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"955","name":"Azua","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"956","name":"Bahoruco","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"957","name":"Barahona","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"958","name":"Dajabon","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"959","name":"Distrito Nacional","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"960","name":"Duarte","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"961","name":"El Seybo","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"962","name":"Elias Pina","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"963","name":"Espaillat","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"964","name":"Hato Mayor","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"965","name":"Independencia","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"966","name":"La Altagracia","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"967","name":"La Romana","country_id":"63","created_at":"2024-01-21 12:04:52","updated_at":"2024-01-21 12:04:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"968","name":"La Vega","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"969","name":"Maria Trinidad Sanchez","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"970","name":"Monsenor Nouel","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"971","name":"Monte Cristi","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"972","name":"Monte Plata","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"973","name":"Pedernales","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"974","name":"Peravia","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"975","name":"Puerto Plata","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"976","name":"Salcedo","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"977","name":"Samana","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"978","name":"San Cristobal","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"979","name":"San Pedro de Macoris","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"980","name":"Sanchez Ramirez","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"981","name":"Santiago","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"982","name":"Santiago Rodriguez","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"983","name":"Valverde","country_id":"63","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"984","name":"Azuay","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"985","name":"Canar","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"986","name":"Carchi","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"987","name":"Chimborazo","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"988","name":"Cotopaxi","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"989","name":"El Oro","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"990","name":"Esmeraldas","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"991","name":"Galapagos","country_id":"64","created_at":"2024-01-21 12:04:53","updated_at":"2024-01-21 12:04:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"992","name":"Guayas","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"993","name":"Imbabura","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"994","name":"Loja","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"995","name":"Los Rios","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"996","name":"Manabi","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"997","name":"Morona Santiago","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"998","name":"Napo","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"999","name":"Orellana","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1000","name":"Pastaza","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1001","name":"Pichincha","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1002","name":"Sucumbios","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1003","name":"Tungurahua","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1004","name":"Zamora Chinchipe","country_id":"64","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1005","name":"Aswan","country_id":"65","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1006","name":"Asyut","country_id":"65","created_at":"2024-01-21 12:04:54","updated_at":"2024-01-21 12:04:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1007","name":"Bani Suwayf","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1008","name":"Bur Sa id","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1009","name":"Cairo","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1010","name":"Dumyat","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1011","name":"Kafr-ash-Shaykh","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1012","name":"Matruh","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1013","name":"Muhafazat ad Daqahliyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1014","name":"Muhafazat al Fayyum","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1015","name":"Muhafazat al Gharbiyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1016","name":"Muhafazat al Iskandariyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1017","name":"Muhafazat al Qahirah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1018","name":"Qina","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1019","name":"Sawhaj","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1020","name":"Sina al-Janubiyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1021","name":"Sina ash-Shamaliyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1022","name":"ad-Daqahliyah","country_id":"65","created_at":"2024-01-21 12:04:55","updated_at":"2024-01-21 12:04:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1023","name":"al-Bahr-al-Ahmar","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1024","name":"al-Buhayrah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1025","name":"al-Fayyum","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1026","name":"al-Gharbiyah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1027","name":"al-Iskandariyah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1028","name":"al-Ismailiyah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1029","name":"al-Jizah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1030","name":"al-Minufiyah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1031","name":"al-Minya","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1032","name":"al-Qahira","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1033","name":"al-Qalyubiyah","country_id":"65","created_at":"2024-01-21 12:04:56","updated_at":"2024-01-21 12:04:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1034","name":"al-Uqsur","country_id":"65","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1035","name":"al-Wadi al-Jadid","country_id":"65","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1036","name":"as-Suways","country_id":"65","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1037","name":"ash-Sharqiyah","country_id":"65","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1038","name":"Ahuachapan","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1039","name":"Cabanas","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1040","name":"Chalatenango","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1041","name":"Cuscatlan","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1042","name":"La Libertad","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1043","name":"La Union","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1044","name":"Morazan","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1045","name":"San Miguel","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1046","name":"San Vicente","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1047","name":"Santa Ana","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1048","name":"Sonsonate","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1049","name":"Usulutan","country_id":"66","created_at":"2024-01-21 12:04:57","updated_at":"2024-01-21 12:04:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1050","name":"Annobon","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1051","name":"Bioko Norte","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1052","name":"Bioko Sur","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1053","name":"Centro Sur","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1054","name":"Kie-Ntem","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1055","name":"Litoral","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1056","name":"Wele-Nzas","country_id":"67","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1057","name":"Anseba","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1058","name":"Debub","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1059","name":"Debub-Keih-Bahri","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1060","name":"Gash-Barka","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1061","name":"Maekel","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1062","name":"Semien-Keih-Bahri","country_id":"68","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1063","name":"Harju","country_id":"69","created_at":"2024-01-21 12:04:58","updated_at":"2024-01-21 12:04:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1064","name":"Hiiu","country_id":"69","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1065","name":"Ida-Viru","country_id":"69","created_at":"2024-01-21 12:04:59","updated_at":"2024-01-21 12:04:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1066","name":"Jarva","country_id":"69","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1067","name":"Jogeva","country_id":"69","created_at":"2024-01-21 12:05:00","updated_at":"2024-01-21 12:05:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1068","name":"Laane","country_id":"69","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1069","name":"Laane-Viru","country_id":"69","created_at":"2024-01-21 12:05:01","updated_at":"2024-01-21 12:05:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1070","name":"Parnu","country_id":"69","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1071","name":"Polva","country_id":"69","created_at":"2024-01-21 12:05:02","updated_at":"2024-01-21 12:05:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1072","name":"Rapla","country_id":"69","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1073","name":"Saare","country_id":"69","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1074","name":"Tartu","country_id":"69","created_at":"2024-01-21 12:05:03","updated_at":"2024-01-21 12:05:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1075","name":"Valga","country_id":"69","created_at":"2024-01-21 12:05:04","updated_at":"2024-01-21 12:05:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1076","name":"Viljandi","country_id":"69","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1077","name":"Voru","country_id":"69","created_at":"2024-01-21 12:05:05","updated_at":"2024-01-21 12:05:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1078","name":"Addis Abeba","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1079","name":"Afar","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1080","name":"Amhara","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1081","name":"Benishangul","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1082","name":"Diredawa","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1083","name":"Gambella","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1084","name":"Harar","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1085","name":"Jigjiga","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1086","name":"Mekele","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1087","name":"Oromia","country_id":"70","created_at":"2024-01-21 12:05:06","updated_at":"2024-01-21 12:05:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1088","name":"Somali","country_id":"70","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1089","name":"Southern","country_id":"70","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1090","name":"Tigray","country_id":"70","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1091","name":"Falkland Islands","country_id":"71","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1092","name":"South Georgia","country_id":"71","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1093","name":"Klaksvik","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1094","name":"Nor ara Eysturoy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1095","name":"Nor oy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1096","name":"Sandoy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1097","name":"Streymoy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1098","name":"Su uroy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1099","name":"Sy ra Eysturoy","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1100","name":"Torshavn","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1101","name":"Vaga","country_id":"72","created_at":"2024-01-21 12:05:07","updated_at":"2024-01-21 12:05:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1102","name":"Central","country_id":"73","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1103","name":"Northern","country_id":"73","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1104","name":"South Pacific","country_id":"73","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1105","name":"Ahvenanmaa","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1106","name":"Etela-Karjala","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1107","name":"Etela-Pohjanmaa","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1108","name":"Etela-Savo","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1109","name":"Etela-Suomen Laani","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1110","name":"Ita-Suomen Laani","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1111","name":"Ita-Uusimaa","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1112","name":"Kainuu","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1113","name":"Kanta-Hame","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1114","name":"Keski-Pohjanmaa","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1115","name":"Keski-Suomi","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1116","name":"Kymenlaakso","country_id":"74","created_at":"2024-01-21 12:05:08","updated_at":"2024-01-21 12:05:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1117","name":"Lansi-Suomen Laani","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1118","name":"Lappi","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1119","name":"Northern Savonia","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1120","name":"Ostrobothnia","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1121","name":"Oulun Laani","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1122","name":"Paijat-Hame","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1123","name":"Pirkanmaa","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1124","name":"Pohjanmaa","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1125","name":"Pohjois-Karjala","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1126","name":"Pohjois-Pohjanmaa","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1127","name":"Pohjois-Savo","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1128","name":"Saarijarvi","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1129","name":"Satakunta","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1130","name":"Southern Savonia","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1131","name":"Tavastia Proper","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1132","name":"Uleaborgs Lan","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1133","name":"Uusimaa","country_id":"74","created_at":"2024-01-21 12:05:09","updated_at":"2024-01-21 12:05:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1134","name":"Varsinais-Suomi","country_id":"74","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1135","name":"Ain","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1136","name":"Aisne","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1137","name":"Albi Le Sequestre","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1138","name":"Allier","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1139","name":"Alpes-Cote dAzur","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1140","name":"Alpes-Maritimes","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1141","name":"Alpes-de-Haute-Provence","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1142","name":"Alsace","country_id":"75","created_at":"2024-01-21 12:05:10","updated_at":"2024-01-21 12:05:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1143","name":"Aquitaine","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1144","name":"Ardeche","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1145","name":"Ardennes","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1146","name":"Ariege","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1147","name":"Aube","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1148","name":"Aude","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1149","name":"Auvergne","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1150","name":"Aveyron","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1151","name":"Bas-Rhin","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1152","name":"Basse-Normandie","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1153","name":"Bouches-du-Rhone","country_id":"75","created_at":"2024-01-21 12:05:11","updated_at":"2024-01-21 12:05:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1154","name":"Bourgogne","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1155","name":"Bretagne","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1156","name":"Brittany","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1157","name":"Burgundy","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1158","name":"Calvados","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1159","name":"Cantal","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1160","name":"Cedex","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1161","name":"Charente","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1162","name":"Charente-Maritime","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1163","name":"Cher","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1164","name":"Correze","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1165","name":"Corse-du-Sud","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1166","name":"Cote-d Or","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1167","name":"Cotes-d Armor","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1168","name":"Creuse","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1169","name":"Crolles","country_id":"75","created_at":"2024-01-21 12:05:12","updated_at":"2024-01-21 12:05:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1170","name":"Deux-Sevres","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1171","name":"Dordogne","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1172","name":"Doubs","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1173","name":"Drome","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1174","name":"Essonne","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1175","name":"Eure","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1176","name":"Eure-et-Loir","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1177","name":"Feucherolles","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1178","name":"Finistere","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1179","name":"Franche-Comte","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1180","name":"Gard","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1181","name":"Gers","country_id":"75","created_at":"2024-01-21 12:05:13","updated_at":"2024-01-21 12:05:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1182","name":"Gironde","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1183","name":"Haut-Rhin","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1184","name":"Haute-Corse","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1185","name":"Haute-Garonne","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1186","name":"Haute-Loire","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1187","name":"Haute-Marne","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1188","name":"Haute-Saone","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1189","name":"Haute-Savoie","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1190","name":"Haute-Vienne","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1191","name":"Hautes-Alpes","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1192","name":"Hautes-Pyrenees","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1193","name":"Hauts-de-Seine","country_id":"75","created_at":"2024-01-21 12:05:14","updated_at":"2024-01-21 12:05:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1194","name":"Herault","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1195","name":"Ile-de-France","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1196","name":"Ille-et-Vilaine","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1197","name":"Indre","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1198","name":"Indre-et-Loire","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1199","name":"Isere","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1200","name":"Jura","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1201","name":"Klagenfurt","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1202","name":"Landes","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1203","name":"Languedoc-Roussillon","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1204","name":"Larcay","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1205","name":"Le Castellet","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1206","name":"Le Creusot","country_id":"75","created_at":"2024-01-21 12:05:15","updated_at":"2024-01-21 12:05:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1207","name":"Limousin","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1208","name":"Loir-et-Cher","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1209","name":"Loire","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1210","name":"Loire-Atlantique","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1211","name":"Loiret","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1212","name":"Lorraine","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1213","name":"Lot","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1214","name":"Lot-et-Garonne","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1215","name":"Lower Normandy","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1216","name":"Lozere","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1217","name":"Maine-et-Loire","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1218","name":"Manche","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1219","name":"Marne","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1220","name":"Mayenne","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1221","name":"Meurthe-et-Moselle","country_id":"75","created_at":"2024-01-21 12:05:16","updated_at":"2024-01-21 12:05:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1222","name":"Meuse","country_id":"75","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1223","name":"Midi-Pyrenees","country_id":"75","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1224","name":"Morbihan","country_id":"75","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1225","name":"Moselle","country_id":"75","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1226","name":"Nievre","country_id":"75","created_at":"2024-01-21 12:05:17","updated_at":"2024-01-21 12:05:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1227","name":"Nord-Pas-de-Calais","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1228","name":"Oise","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1229","name":"Orne","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1230","name":"Paris","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1231","name":"Pas-de-Calais","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1232","name":"Pays de la Loire","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1233","name":"Pays-de-la-Loire","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1234","name":"Picardy","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1235","name":"Puy-de-Dome","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1236","name":"Pyrenees-Atlantiques","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1237","name":"Pyrenees-Orientales","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1238","name":"Quelmes","country_id":"75","created_at":"2024-01-21 12:05:18","updated_at":"2024-01-21 12:05:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1239","name":"Rhone","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1240","name":"Rhone-Alpes","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1241","name":"Saint Ouen","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1242","name":"Saint Viatre","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1243","name":"Saone-et-Loire","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1244","name":"Sarthe","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1245","name":"Savoie","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1246","name":"Seine-Maritime","country_id":"75","created_at":"2024-01-21 12:05:19","updated_at":"2024-01-21 12:05:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1247","name":"Seine-Saint-Denis","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1248","name":"Seine-et-Marne","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1249","name":"Somme","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1250","name":"Sophia Antipolis","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1251","name":"Souvans","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1252","name":"Tarn","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1253","name":"Tarn-et-Garonne","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1254","name":"Territoire de Belfort","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1255","name":"Treignac","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1256","name":"Upper Normandy","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1257","name":"Val-d Oise","country_id":"75","created_at":"2024-01-21 12:05:20","updated_at":"2024-01-21 12:05:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1258","name":"Val-de-Marne","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1259","name":"Var","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1260","name":"Vaucluse","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1261","name":"Vellise","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1262","name":"Vendee","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1263","name":"Vienne","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1264","name":"Vosges","country_id":"75","created_at":"2024-01-21 12:05:21","updated_at":"2024-01-21 12:05:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1265","name":"Yonne","country_id":"75","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1266","name":"Yvelines","country_id":"75","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1267","name":"Cayenne","country_id":"76","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1268","name":"Saint-Laurent-du-Maroni","country_id":"76","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1269","name":"Iles du Vent","country_id":"77","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1270","name":"Iles sous le Vent","country_id":"77","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1271","name":"Marquesas","country_id":"77","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1272","name":"Tuamotu","country_id":"77","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1273","name":"Tubuai","country_id":"77","created_at":"2024-01-21 12:05:22","updated_at":"2024-01-21 12:05:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1274","name":"Amsterdam","country_id":"78","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1275","name":"Crozet Islands","country_id":"78","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1276","name":"Kerguelen","country_id":"78","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1277","name":"Estuaire","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1278","name":"Haut-Ogooue","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1279","name":"Moyen-Ogooue","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1280","name":"Ngounie","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1281","name":"Nyanga","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1282","name":"Ogooue-Ivindo","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1283","name":"Ogooue-Lolo","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1284","name":"Ogooue-Maritime","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1285","name":"Woleu-Ntem","country_id":"79","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1286","name":"Banjul","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1287","name":"Basse","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1288","name":"Brikama","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1289","name":"Janjanbureh","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1290","name":"Kanifing","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1291","name":"Kerewan","country_id":"80","created_at":"2024-01-21 12:05:23","updated_at":"2024-01-21 12:05:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1292","name":"Kuntaur","country_id":"80","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1293","name":"Mansakonko","country_id":"80","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1294","name":"Abhasia","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1295","name":"Ajaria","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1296","name":"Guria","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1297","name":"Imereti","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1298","name":"Kaheti","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1299","name":"Kvemo Kartli","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1300","name":"Mcheta-Mtianeti","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1301","name":"Racha","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1302","name":"Samagrelo-Zemo Svaneti","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1303","name":"Samche-Zhavaheti","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1304","name":"Shida Kartli","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1305","name":"Tbilisi","country_id":"81","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1306","name":"Baden-Wurttemberg","country_id":"82","created_at":"2024-01-21 12:05:24","updated_at":"2024-01-21 12:05:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1307","name":"Bavaria","country_id":"82","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1308","name":"Bayern","country_id":"82","created_at":"2024-01-21 12:05:27","updated_at":"2024-01-21 12:05:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1309","name":"Beilstein Wurtt","country_id":"82","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1310","name":"Berlin","country_id":"82","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1311","name":"Brandenburg","country_id":"82","created_at":"2024-01-21 12:05:29","updated_at":"2024-01-21 12:05:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1312","name":"Bremen","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1313","name":"Dreisbach","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1314","name":"Freistaat Bayern","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1315","name":"Hamburg","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1316","name":"Hannover","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1317","name":"Heroldstatt","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1318","name":"Hessen","country_id":"82","created_at":"2024-01-21 12:05:30","updated_at":"2024-01-21 12:05:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1319","name":"Kortenberg","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1320","name":"Laasdorf","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1321","name":"Land Baden-Wurttemberg","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1322","name":"Land Bayern","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1323","name":"Land Brandenburg","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1324","name":"Land Hessen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1325","name":"Land Mecklenburg-Vorpommern","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1326","name":"Land Nordrhein-Westfalen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1327","name":"Land Rheinland-Pfalz","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1328","name":"Land Sachsen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1329","name":"Land Sachsen-Anhalt","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1330","name":"Land Thuringen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1331","name":"Lower Saxony","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1332","name":"Mecklenburg-Vorpommern","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1333","name":"Mulfingen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1334","name":"Munich","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1335","name":"Neubeuern","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1336","name":"Niedersachsen","country_id":"82","created_at":"2024-01-21 12:05:32","updated_at":"2024-01-21 12:05:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1337","name":"Noord-Holland","country_id":"82","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1338","name":"Nordrhein-Westfalen","country_id":"82","created_at":"2024-01-21 12:05:34","updated_at":"2024-01-21 12:05:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1339","name":"North Rhine-Westphalia","country_id":"82","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1340","name":"Osterode","country_id":"82","created_at":"2024-01-21 12:05:36","updated_at":"2024-01-21 12:05:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1341","name":"Rheinland-Pfalz","country_id":"82","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1342","name":"Rhineland-Palatinate","country_id":"82","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1343","name":"Saarland","country_id":"82","created_at":"2024-01-21 12:05:37","updated_at":"2024-01-21 12:05:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1344","name":"Sachsen","country_id":"82","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1345","name":"Sachsen-Anhalt","country_id":"82","created_at":"2024-01-21 12:05:38","updated_at":"2024-01-21 12:05:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1346","name":"Saxony","country_id":"82","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1347","name":"Thuringia","country_id":"82","created_at":"2024-01-21 12:05:39","updated_at":"2024-01-21 12:05:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1348","name":"Webling","country_id":"82","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1349","name":"Weinstrabe","country_id":"82","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1350","name":"schlobborn","country_id":"82","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1351","name":"Ashanti","country_id":"83","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1352","name":"Brong-Ahafo","country_id":"83","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1353","name":"Greater Accra","country_id":"83","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1354","name":"Upper East","country_id":"83","created_at":"2024-01-21 12:05:40","updated_at":"2024-01-21 12:05:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1355","name":"Upper West","country_id":"83","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1356","name":"Volta","country_id":"83","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1357","name":"Gibraltar","country_id":"84","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1358","name":"Acharnes","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1359","name":"Ahaia","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1360","name":"Aitolia kai Akarnania","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1361","name":"Argolis","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1362","name":"Arkadia","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1363","name":"Arta","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1364","name":"Attica","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1365","name":"Attiki","country_id":"85","created_at":"2024-01-21 12:05:41","updated_at":"2024-01-21 12:05:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1366","name":"Ayion Oros","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1367","name":"Crete","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1368","name":"Dodekanisos","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1369","name":"Drama","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1370","name":"Evia","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1371","name":"Evritania","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1372","name":"Evros","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1373","name":"Evvoia","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1374","name":"Florina","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1375","name":"Fokis","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1376","name":"Fthiotis","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1377","name":"Grevena","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1378","name":"Halandri","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1379","name":"Halkidiki","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1380","name":"Hania","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1381","name":"Heraklion","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1382","name":"Hios","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1383","name":"Ilia","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1384","name":"Imathia","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1385","name":"Ioannina","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1386","name":"Iraklion","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1387","name":"Karditsa","country_id":"85","created_at":"2024-01-21 12:05:42","updated_at":"2024-01-21 12:05:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1388","name":"Kastoria","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1389","name":"Kavala","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1390","name":"Kefallinia","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1391","name":"Kerkira","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1392","name":"Kiklades","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1393","name":"Kilkis","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1394","name":"Korinthia","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1395","name":"Kozani","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1396","name":"Lakonia","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1397","name":"Larisa","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1398","name":"Lasithi","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1399","name":"Lesvos","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1400","name":"Levkas","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1401","name":"Magnisia","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1402","name":"Messinia","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1403","name":"Nomos Attikis","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1404","name":"Nomos Zakynthou","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1405","name":"Pella","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1406","name":"Pieria","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1407","name":"Piraios","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1408","name":"Preveza","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1409","name":"Rethimni","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1410","name":"Rodopi","country_id":"85","created_at":"2024-01-21 12:05:43","updated_at":"2024-01-21 12:05:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1411","name":"Samos","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1412","name":"Serrai","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1413","name":"Thesprotia","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1414","name":"Thessaloniki","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1415","name":"Trikala","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1416","name":"Voiotia","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1417","name":"West Greece","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1418","name":"Xanthi","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1419","name":"Zakinthos","country_id":"85","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1420","name":"Aasiaat","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1421","name":"Ammassalik","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1422","name":"Illoqqortoormiut","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1423","name":"Ilulissat","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1424","name":"Ivittuut","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1425","name":"Kangaatsiaq","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1426","name":"Maniitsoq","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1427","name":"Nanortalik","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1428","name":"Narsaq","country_id":"86","created_at":"2024-01-21 12:05:44","updated_at":"2024-01-21 12:05:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1429","name":"Nuuk","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1430","name":"Paamiut","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1431","name":"Qaanaaq","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1432","name":"Qaqortoq","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1433","name":"Qasigiannguit","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1434","name":"Qeqertarsuaq","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1435","name":"Sisimiut","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1436","name":"Udenfor kommunal inddeling","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1437","name":"Upernavik","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1438","name":"Uummannaq","country_id":"86","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1439","name":"Carriacou-Petite Martinique","country_id":"87","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1440","name":"Saint Davids","country_id":"87","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1441","name":"Saint George s","country_id":"87","created_at":"2024-01-21 12:05:45","updated_at":"2024-01-21 12:05:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1442","name":"Basse-Terre","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1443","name":"Grande-Terre","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1444","name":"Iles des Saintes","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1445","name":"La Desirade","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1446","name":"Marie-Galante","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1447","name":"Saint Barthelemy","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1448","name":"Saint Martin","country_id":"88","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1449","name":"Agana Heights","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1450","name":"Agat","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1451","name":"Barrigada","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1452","name":"Chalan-Pago-Ordot","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1453","name":"Dededo","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1454","name":"Hagatna","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1455","name":"Inarajan","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1456","name":"Mangilao","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1457","name":"Merizo","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1458","name":"Mongmong-Toto-Maite","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1459","name":"Santa Rita","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1460","name":"Sinajana","country_id":"89","created_at":"2024-01-21 12:05:46","updated_at":"2024-01-21 12:05:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1461","name":"Talofofo","country_id":"89","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1462","name":"Tamuning","country_id":"89","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1463","name":"Yigo","country_id":"89","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1464","name":"Yona","country_id":"89","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1465","name":"Alta Verapaz","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1466","name":"Baja Verapaz","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1467","name":"Chimaltenango","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1468","name":"Chiquimula","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1469","name":"El Progreso","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1470","name":"Escuintla","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1471","name":"Guatemala","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1472","name":"Huehuetenango","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1473","name":"Izabal","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1474","name":"Jalapa","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1475","name":"Jutiapa","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1476","name":"Peten","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1477","name":"Quezaltenango","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1478","name":"Quiche","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1479","name":"Retalhuleu","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1480","name":"Sacatepequez","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1481","name":"San Marcos","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1482","name":"Santa Rosa","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1483","name":"Solola","country_id":"90","created_at":"2024-01-21 12:05:47","updated_at":"2024-01-21 12:05:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1484","name":"Suchitepequez","country_id":"90","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1485","name":"Totonicapan","country_id":"90","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1486","name":"Zacapa","country_id":"90","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1487","name":"Beyla","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1488","name":"Boffa","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1489","name":"Boke","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1490","name":"Conakry","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1491","name":"Coyah","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1492","name":"Dabola","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1493","name":"Dalaba","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1494","name":"Dinguiraye","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1495","name":"Faranah","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1496","name":"Forecariah","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1497","name":"Fria","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1498","name":"Gaoual","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1499","name":"Gueckedou","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1500","name":"Kankan","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1501","name":"Kerouane","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1502","name":"Kindia","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1503","name":"Kissidougou","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1504","name":"Koubia","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1505","name":"Koundara","country_id":"92","created_at":"2024-01-21 12:05:48","updated_at":"2024-01-21 12:05:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1506","name":"Kouroussa","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1507","name":"Labe","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1508","name":"Lola","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1509","name":"Macenta","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1510","name":"Mali","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1511","name":"Mamou","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1512","name":"Mandiana","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1513","name":"Nzerekore","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1514","name":"Pita","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1515","name":"Siguiri","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1516","name":"Telimele","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1517","name":"Tougue","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1518","name":"Yomou","country_id":"92","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1519","name":"Bafata","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1520","name":"Bissau","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1521","name":"Bolama","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1522","name":"Cacheu","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1523","name":"Gabu","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1524","name":"Oio","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1525","name":"Quinara","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1526","name":"Tombali","country_id":"93","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1527","name":"Barima-Waini","country_id":"94","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1528","name":"Cuyuni-Mazaruni","country_id":"94","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1529","name":"Demerara-Mahaica","country_id":"94","created_at":"2024-01-21 12:05:49","updated_at":"2024-01-21 12:05:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1530","name":"East Berbice-Corentyne","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1531","name":"Essequibo Islands-West Demerar","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1532","name":"Mahaica-Berbice","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1533","name":"Pomeroon-Supenaam","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1534","name":"Potaro-Siparuni","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1535","name":"Upper Demerara-Berbice","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1536","name":"Upper Takutu-Upper Essequibo","country_id":"94","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1537","name":"Artibonite","country_id":"95","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1538","name":"Grand Anse","country_id":"95","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1539","name":"Nord-Est","country_id":"95","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1540","name":"Nord-Ouest","country_id":"95","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1541","name":"Sud-Est","country_id":"95","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1542","name":"Heard and McDonald Islands","country_id":"96","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1543","name":"Vatican City State (Holy See)","country_id":"97","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1544","name":"Atlantida","country_id":"98","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1545","name":"Choluteca","country_id":"98","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1546","name":"Colon","country_id":"98","created_at":"2024-01-21 12:05:50","updated_at":"2024-01-21 12:05:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1547","name":"Comayagua","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1548","name":"Copan","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1549","name":"Cortes","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1550","name":"Distrito Central","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1551","name":"El Paraiso","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1552","name":"Francisco Morazan","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1553","name":"Gracias a Dios","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1554","name":"Intibuca","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1555","name":"Islas de la Bahia","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1556","name":"Lempira","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1557","name":"Ocotepeque","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1558","name":"Olancho","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1559","name":"Santa Barbara","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1560","name":"Valle","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1561","name":"Yoro","country_id":"98","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1562","name":"Hong Kong","country_id":"99","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1563","name":"Bacs-Kiskun","country_id":"100","created_at":"2024-01-21 12:05:51","updated_at":"2024-01-21 12:05:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1564","name":"Baranya","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1565","name":"Bekes","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1566","name":"Borsod-Abauj-Zemplen","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1567","name":"Budapest","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1568","name":"Csongrad","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1569","name":"Fejer","country_id":"100","created_at":"2024-01-21 12:05:52","updated_at":"2024-01-21 12:05:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1570","name":"Gyor-Moson-Sopron","country_id":"100","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1571","name":"Hajdu-Bihar","country_id":"100","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1572","name":"Heves","country_id":"100","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1573","name":"Jasz-Nagykun-Szolnok","country_id":"100","created_at":"2024-01-21 12:05:53","updated_at":"2024-01-21 12:05:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1574","name":"Komarom-Esztergom","country_id":"100","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1575","name":"Nograd","country_id":"100","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1576","name":"Pest","country_id":"100","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1577","name":"Somogy","country_id":"100","created_at":"2024-01-21 12:05:54","updated_at":"2024-01-21 12:05:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1578","name":"Szabolcs-Szatmar-Bereg","country_id":"100","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1579","name":"Tolna","country_id":"100","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1580","name":"Vas","country_id":"100","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1581","name":"Veszprem","country_id":"100","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1582","name":"Zala","country_id":"100","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1583","name":"Austurland","country_id":"101","created_at":"2024-01-21 12:05:55","updated_at":"2024-01-21 12:05:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1584","name":"Gullbringusysla","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1585","name":"Hofu borgarsva i","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1586","name":"Nor urland eystra","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1587","name":"Nor urland vestra","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1588","name":"Su urland","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1589","name":"Su urnes","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1590","name":"Vestfir ir","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1591","name":"Vesturland","country_id":"101","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1592","name":"Andaman and Nicobar Islands","country_id":"102","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1593","name":"Andhra Pradesh","country_id":"102","created_at":"2024-01-21 12:05:56","updated_at":"2024-01-21 12:05:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1594","name":"Arunachal Pradesh","country_id":"102","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1595","name":"Assam","country_id":"102","created_at":"2024-01-21 12:05:58","updated_at":"2024-01-21 12:05:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1596","name":"Bihar","country_id":"102","created_at":"2024-01-21 12:05:59","updated_at":"2024-01-21 12:05:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1597","name":"Chandigarh","country_id":"102","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1598","name":"Chhattisgarh","country_id":"102","created_at":"2024-01-21 12:06:00","updated_at":"2024-01-21 12:06:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1599","name":"Dadra and Nagar Haveli","country_id":"102","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1600","name":"Daman and Diu","country_id":"102","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1601","name":"Delhi","country_id":"102","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1602","name":"Goa","country_id":"102","created_at":"2024-01-21 12:06:01","updated_at":"2024-01-21 12:06:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1603","name":"Gujarat","country_id":"102","created_at":"2024-01-21 12:06:02","updated_at":"2024-01-21 12:06:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1604","name":"Haryana","country_id":"102","created_at":"2024-01-21 12:06:04","updated_at":"2024-01-21 12:06:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1605","name":"Himachal Pradesh","country_id":"102","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1606","name":"Jammu and Kashmir","country_id":"102","created_at":"2024-01-21 12:06:05","updated_at":"2024-01-21 12:06:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1607","name":"Jharkhand","country_id":"102","created_at":"2024-01-21 12:06:06","updated_at":"2024-01-21 12:06:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1608","name":"Karnataka","country_id":"102","created_at":"2024-01-21 12:06:07","updated_at":"2024-01-21 12:06:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1609","name":"Kenmore","country_id":"102","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1610","name":"Kerala","country_id":"102","created_at":"2024-01-21 12:06:09","updated_at":"2024-01-21 12:06:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1611","name":"Lakshadweep","country_id":"102","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1612","name":"Madhya Pradesh","country_id":"102","created_at":"2024-01-21 12:06:11","updated_at":"2024-01-21 12:06:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1613","name":"Maharashtra","country_id":"102","created_at":"2024-01-21 12:06:13","updated_at":"2024-01-21 12:06:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1614","name":"Manipur","country_id":"102","created_at":"2024-01-21 12:06:16","updated_at":"2024-01-21 12:06:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1615","name":"Meghalaya","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1616","name":"Mizoram","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1617","name":"Nagaland","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1618","name":"Narora","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1619","name":"Natwar","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1620","name":"Odisha","country_id":"102","created_at":"2024-01-21 12:06:17","updated_at":"2024-01-21 12:06:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1621","name":"Paschim Medinipur","country_id":"102","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1622","name":"Pondicherry","country_id":"102","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1623","name":"Punjab","country_id":"102","created_at":"2024-01-21 12:06:18","updated_at":"2024-01-21 12:06:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1624","name":"Rajasthan","country_id":"102","created_at":"2024-01-21 12:06:20","updated_at":"2024-01-21 12:06:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1625","name":"Sikkim","country_id":"102","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1626","name":"Tamil Nadu","country_id":"102","created_at":"2024-01-21 12:06:21","updated_at":"2024-01-21 12:06:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1627","name":"Telangana","country_id":"102","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1628","name":"Tripura","country_id":"102","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1629","name":"Uttar Pradesh","country_id":"102","created_at":"2024-01-21 12:06:28","updated_at":"2024-01-21 12:06:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1630","name":"Uttarakhand","country_id":"102","created_at":"2024-01-21 12:06:33","updated_at":"2024-01-21 12:06:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1631","name":"Vaishali","country_id":"102","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1632","name":"West Bengal","country_id":"102","created_at":"2024-01-21 12:06:34","updated_at":"2024-01-21 12:06:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1633","name":"Aceh","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1634","name":"Bali","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1635","name":"Bangka-Belitung","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1636","name":"Banten","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1637","name":"Bengkulu","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1638","name":"Gandaria","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1639","name":"Gorontalo","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1640","name":"Jakarta","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1641","name":"Jambi","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1642","name":"Jawa Barat","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1643","name":"Jawa Tengah","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1644","name":"Jawa Timur","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1645","name":"Kalimantan Barat","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1646","name":"Kalimantan Selatan","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1647","name":"Kalimantan Tengah","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1648","name":"Kalimantan Timur","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1649","name":"Kendal","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1650","name":"Lampung","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1651","name":"Maluku","country_id":"103","created_at":"2024-01-21 12:06:37","updated_at":"2024-01-21 12:06:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1652","name":"Maluku Utara","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1653","name":"Nusa Tenggara Barat","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1654","name":"Nusa Tenggara Timur","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1655","name":"Papua","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1656","name":"Riau","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1657","name":"Riau Kepulauan","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1658","name":"Solo","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1659","name":"Sulawesi Selatan","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1660","name":"Sulawesi Tengah","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1661","name":"Sulawesi Tenggara","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1662","name":"Sulawesi Utara","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1663","name":"Sumatera Barat","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1664","name":"Sumatera Selatan","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1665","name":"Sumatera Utara","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1666","name":"Yogyakarta","country_id":"103","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1667","name":"Ardabil","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1668","name":"Azarbayjan-e Bakhtari","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1669","name":"Azarbayjan-e Khavari","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1670","name":"Bushehr","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1671","name":"Chahar Mahal-e Bakhtiari","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1672","name":"Esfahan","country_id":"104","created_at":"2024-01-21 12:06:38","updated_at":"2024-01-21 12:06:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1673","name":"Fars","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1674","name":"Gilan","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1675","name":"Golestan","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1676","name":"Hamadan","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1677","name":"Hormozgan","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1678","name":"Ilam","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1679","name":"Kerman","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1680","name":"Kermanshah","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1681","name":"Khorasan","country_id":"104","created_at":"2024-01-21 12:06:39","updated_at":"2024-01-21 12:06:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1682","name":"Khuzestan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1683","name":"Kohgiluyeh-e Boyerahmad","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1684","name":"Kordestan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1685","name":"Lorestan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1686","name":"Markazi","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1687","name":"Mazandaran","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1688","name":"Ostan-e Esfahan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1689","name":"Qazvin","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1690","name":"Qom","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1691","name":"Semnan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1692","name":"Sistan-e Baluchestan","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1693","name":"Tehran","country_id":"104","created_at":"2024-01-21 12:06:40","updated_at":"2024-01-21 12:06:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1694","name":"Yazd","country_id":"104","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1695","name":"Zanjan","country_id":"104","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1696","name":"Babil","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1697","name":"Baghdad","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1698","name":"Dahuk","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1699","name":"Dhi Qar","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1700","name":"Diyala","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1701","name":"Erbil","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1702","name":"Irbil","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1703","name":"Karbala","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1704","name":"Kurdistan","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1705","name":"Maysan","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1706","name":"Ninawa","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1707","name":"Salah-ad-Din","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1708","name":"Wasit","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1709","name":"al-Anbar","country_id":"105","created_at":"2024-01-21 12:06:41","updated_at":"2024-01-21 12:06:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1710","name":"al-Basrah","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1711","name":"al-Muthanna","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1712","name":"al-Qadisiyah","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1713","name":"an-Najaf","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1714","name":"as-Sulaymaniyah","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1715","name":"at-Ta mim","country_id":"105","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1716","name":"Armagh","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1717","name":"Carlow","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1718","name":"Cavan","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1719","name":"Clare","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1720","name":"Cork","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1721","name":"Donegal","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1722","name":"Dublin","country_id":"106","created_at":"2024-01-21 12:06:42","updated_at":"2024-01-21 12:06:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1723","name":"Galway","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1724","name":"Kerry","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1725","name":"Kildare","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1726","name":"Kilkenny","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1727","name":"Laois","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1728","name":"Leinster","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1729","name":"Leitrim","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1730","name":"Limerick","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1731","name":"Loch Garman","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1732","name":"Longford","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1733","name":"Louth","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1734","name":"Mayo","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1735","name":"Meath","country_id":"106","created_at":"2024-01-21 12:06:43","updated_at":"2024-01-21 12:06:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1736","name":"Monaghan","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1737","name":"Offaly","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1738","name":"Roscommon","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1739","name":"Sligo","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1740","name":"Tipperary North Riding","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1741","name":"Tipperary South Riding","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1742","name":"Ulster","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1743","name":"Waterford","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1744","name":"Westmeath","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1745","name":"Wexford","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1746","name":"Wicklow","country_id":"106","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1747","name":"Beit Hanania","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1748","name":"Ben Gurion Airport","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1749","name":"Bethlehem","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1750","name":"Caesarea","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1751","name":"Gaza","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1752","name":"Hadaron","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1753","name":"Haifa District","country_id":"108","created_at":"2024-01-21 12:06:44","updated_at":"2024-01-21 12:06:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1754","name":"Hamerkaz","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1755","name":"Hazafon","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1756","name":"Hebron","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1757","name":"Jaffa","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1758","name":"Jerusalem","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1759","name":"Khefa","country_id":"108","created_at":"2024-01-21 12:06:45","updated_at":"2024-01-21 12:06:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1760","name":"Kiryat Yam","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1761","name":"Lower Galilee","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1762","name":"Qalqilya","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1763","name":"Talme Elazar","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1764","name":"Tel Aviv","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1765","name":"Tsafon","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1766","name":"Umm El Fahem","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1767","name":"Yerushalayim","country_id":"108","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1768","name":"Abruzzi","country_id":"109","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1769","name":"Abruzzo","country_id":"109","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1770","name":"Agrigento","country_id":"109","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1771","name":"Alessandria","country_id":"109","created_at":"2024-01-21 12:06:46","updated_at":"2024-01-21 12:06:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1772","name":"Ancona","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1773","name":"Arezzo","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1774","name":"Ascoli Piceno","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1775","name":"Asti","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1776","name":"Avellino","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1777","name":"Bari","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1778","name":"Basilicata","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1779","name":"Belluno","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1780","name":"Benevento","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1781","name":"Bergamo","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1782","name":"Biella","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1783","name":"Bologna","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1784","name":"Bolzano","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1785","name":"Brescia","country_id":"109","created_at":"2024-01-21 12:06:47","updated_at":"2024-01-21 12:06:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1786","name":"Brindisi","country_id":"109","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1787","name":"Calabria","country_id":"109","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1788","name":"Campania","country_id":"109","created_at":"2024-01-21 12:06:48","updated_at":"2024-01-21 12:06:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1789","name":"Cartoceto","country_id":"109","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1790","name":"Caserta","country_id":"109","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1791","name":"Catania","country_id":"109","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1792","name":"Chieti","country_id":"109","created_at":"2024-01-21 12:06:49","updated_at":"2024-01-21 12:06:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1793","name":"Como","country_id":"109","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1794","name":"Cosenza","country_id":"109","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1795","name":"Cremona","country_id":"109","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1796","name":"Cuneo","country_id":"109","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1797","name":"Emilia-Romagna","country_id":"109","created_at":"2024-01-21 12:06:50","updated_at":"2024-01-21 12:06:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1798","name":"Ferrara","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1799","name":"Firenze","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1800","name":"Florence","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1801","name":"Forli-Cesena ","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1802","name":"Friuli-Venezia Giulia","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1803","name":"Frosinone","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1804","name":"Genoa","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1805","name":"Gorizia","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1806","name":"L Aquila","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1807","name":"Lazio","country_id":"109","created_at":"2024-01-21 12:06:51","updated_at":"2024-01-21 12:06:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1808","name":"Lecce","country_id":"109","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1809","name":"Lecco","country_id":"109","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1810","name":"Liguria","country_id":"109","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1811","name":"Lodi","country_id":"109","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1812","name":"Lombardia","country_id":"109","created_at":"2024-01-21 12:06:52","updated_at":"2024-01-21 12:06:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1813","name":"Lombardy","country_id":"109","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1814","name":"Macerata","country_id":"109","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1815","name":"Mantova","country_id":"109","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1816","name":"Marche","country_id":"109","created_at":"2024-01-21 12:06:54","updated_at":"2024-01-21 12:06:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1817","name":"Messina","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1818","name":"Milan","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1819","name":"Modena","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1820","name":"Molise","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1821","name":"Molteno","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1822","name":"Montenegro","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1823","name":"Monza and Brianza","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1824","name":"Naples","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1825","name":"Novara","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1826","name":"Padova","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1827","name":"Parma","country_id":"109","created_at":"2024-01-21 12:06:55","updated_at":"2024-01-21 12:06:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1828","name":"Pavia","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1829","name":"Perugia","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1830","name":"Pesaro-Urbino","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1831","name":"Piacenza","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1832","name":"Piedmont","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1833","name":"Piemonte","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1834","name":"Pisa","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1835","name":"Pordenone","country_id":"109","created_at":"2024-01-21 12:06:56","updated_at":"2024-01-21 12:06:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1836","name":"Potenza","country_id":"109","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1837","name":"Puglia","country_id":"109","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1838","name":"Reggio Emilia","country_id":"109","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1839","name":"Rimini","country_id":"109","created_at":"2024-01-21 12:06:57","updated_at":"2024-01-21 12:06:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1840","name":"Roma","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1841","name":"Salerno","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1842","name":"Sardegna","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1843","name":"Sassari","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1844","name":"Savona","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1845","name":"Sicilia","country_id":"109","created_at":"2024-01-21 12:06:58","updated_at":"2024-01-21 12:06:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1846","name":"Siena","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1847","name":"Sondrio","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1848","name":"South Tyrol","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1849","name":"Taranto","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1850","name":"Teramo","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1851","name":"Torino","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1852","name":"Toscana","country_id":"109","created_at":"2024-01-21 12:06:59","updated_at":"2024-01-21 12:06:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1853","name":"Trapani","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1854","name":"Trentino-Alto Adige","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1855","name":"Trento","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1856","name":"Treviso","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1857","name":"Udine","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1858","name":"Umbria","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1859","name":"Valle d Aosta","country_id":"109","created_at":"2024-01-21 12:07:00","updated_at":"2024-01-21 12:07:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1860","name":"Varese","country_id":"109","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1861","name":"Veneto","country_id":"109","created_at":"2024-01-21 12:07:01","updated_at":"2024-01-21 12:07:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1862","name":"Venezia","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1863","name":"Verbano-Cusio-Ossola","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1864","name":"Vercelli","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1865","name":"Verona","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1866","name":"Vicenza","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1867","name":"Viterbo","country_id":"109","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1868","name":"Buxoro Viloyati","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1869","name":"Clarendon","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1870","name":"Hanover","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1871","name":"Kingston","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1872","name":"Manchester","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1873","name":"Portland","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1874","name":"Saint Andrews","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1875","name":"Saint Ann","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1876","name":"Saint Catherine","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1877","name":"Saint Elizabeth","country_id":"110","created_at":"2024-01-21 12:07:02","updated_at":"2024-01-21 12:07:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1878","name":"Trelawney","country_id":"110","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1879","name":"Westmoreland","country_id":"110","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1880","name":"Aichi","country_id":"111","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1881","name":"Akita","country_id":"111","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1882","name":"Aomori","country_id":"111","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1883","name":"Chiba","country_id":"111","created_at":"2024-01-21 12:07:03","updated_at":"2024-01-21 12:07:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1884","name":"Ehime","country_id":"111","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1885","name":"Fukui","country_id":"111","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1886","name":"Fukuoka","country_id":"111","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1887","name":"Fukushima","country_id":"111","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1888","name":"Gifu","country_id":"111","created_at":"2024-01-21 12:07:04","updated_at":"2024-01-21 12:07:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1889","name":"Gumma","country_id":"111","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1890","name":"Hiroshima","country_id":"111","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1891","name":"Hokkaido","country_id":"111","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1892","name":"Hyogo","country_id":"111","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1893","name":"Ibaraki","country_id":"111","created_at":"2024-01-21 12:07:05","updated_at":"2024-01-21 12:07:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1894","name":"Ishikawa","country_id":"111","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1895","name":"Iwate","country_id":"111","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1896","name":"Kagawa","country_id":"111","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1897","name":"Kagoshima","country_id":"111","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1898","name":"Kanagawa","country_id":"111","created_at":"2024-01-21 12:07:06","updated_at":"2024-01-21 12:07:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1899","name":"Kanto","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1900","name":"Kochi","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1901","name":"Kumamoto","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1902","name":"Kyoto","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1903","name":"Mie","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1904","name":"Miyagi","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1905","name":"Miyazaki","country_id":"111","created_at":"2024-01-21 12:07:07","updated_at":"2024-01-21 12:07:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1906","name":"Nagano","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1907","name":"Nagasaki","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1908","name":"Nara","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1909","name":"Niigata","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1910","name":"Oita","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1911","name":"Okayama","country_id":"111","created_at":"2024-01-21 12:07:08","updated_at":"2024-01-21 12:07:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1912","name":"Okinawa","country_id":"111","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1913","name":"Osaka","country_id":"111","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1914","name":"Saga","country_id":"111","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1915","name":"Saitama","country_id":"111","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1916","name":"Shiga","country_id":"111","created_at":"2024-01-21 12:07:09","updated_at":"2024-01-21 12:07:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1917","name":"Shimane","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1918","name":"Shizuoka","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1919","name":"Tochigi","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1920","name":"Tokushima","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1921","name":"Tokyo","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1922","name":"Tottori","country_id":"111","created_at":"2024-01-21 12:07:10","updated_at":"2024-01-21 12:07:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1923","name":"Toyama","country_id":"111","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1924","name":"Wakayama","country_id":"111","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1925","name":"Yamagata","country_id":"111","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1926","name":"Yamaguchi","country_id":"111","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1927","name":"Yamanashi","country_id":"111","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1928","name":" Ajlun","country_id":"113","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1929","name":"Amman","country_id":"113","created_at":"2024-01-21 12:07:11","updated_at":"2024-01-21 12:07:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1930","name":"Irbid","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1931","name":"Jarash","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1932","name":"Ma an","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1933","name":"Madaba","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1934","name":"al- Aqabah","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1935","name":"al-Balqa ","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1936","name":"al-Karak","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1937","name":"al-Mafraq","country_id":"113","created_at":"2024-01-21 12:07:12","updated_at":"2024-01-21 12:07:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1938","name":"at-Tafilah","country_id":"113","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1939","name":"az-Zarqa ","country_id":"113","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1940","name":"Akmecet","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1941","name":"Akmola","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1942","name":"Aktobe","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1943","name":"Almati","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1944","name":"Atirau","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1945","name":"Batis Kazakstan","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1946","name":"Burlinsky Region","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1947","name":"Karagandi","country_id":"114","created_at":"2024-01-21 12:07:13","updated_at":"2024-01-21 12:07:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1948","name":"Kostanay","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1949","name":"Mankistau","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1950","name":"Ontustik Kazakstan","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1951","name":"Pavlodar","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1952","name":"Sigis Kazakstan","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1953","name":"Soltustik Kazakstan","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1954","name":"Taraz","country_id":"114","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1955","name":"Coast","country_id":"115","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1956","name":"Nairobi","country_id":"115","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1957","name":"North Eastern","country_id":"115","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1958","name":"Nyanza","country_id":"115","created_at":"2024-01-21 12:07:14","updated_at":"2024-01-21 12:07:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1959","name":"Rift Valley","country_id":"115","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1960","name":"Abaiang","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1961","name":"Abemana","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1962","name":"Aranuka","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1963","name":"Arorae","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1964","name":"Banaba","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1965","name":"Beru","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1966","name":"Butaritari","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1967","name":"Kiritimati","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1968","name":"Kuria","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1969","name":"Maiana","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1970","name":"Makin","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1971","name":"Marakei","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1972","name":"Nikunau","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1973","name":"Nonouti","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1974","name":"Onotoa","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1975","name":"Phoenix Islands","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1976","name":"Tabiteuea North","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1977","name":"Tabiteuea South","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1978","name":"Tabuaeran","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1979","name":"Tamana","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1980","name":"Tarawa North","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1981","name":"Tarawa South","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1982","name":"Teraina","country_id":"116","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1983","name":"Chagangdo","country_id":"117","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1984","name":"Hamgyeongbukto","country_id":"117","created_at":"2024-01-21 12:07:15","updated_at":"2024-01-21 12:07:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1985","name":"Hamgyeongnamdo","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1986","name":"Hwanghaebukto","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1987","name":"Hwanghaenamdo","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1988","name":"Kaeseong","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1989","name":"Kangweon","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1990","name":"Nampo","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1991","name":"Pyeonganbukto","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1992","name":"Pyeongannamdo","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1993","name":"Pyeongyang","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1994","name":"Yanggang","country_id":"117","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1995","name":"Busan","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1996","name":"Cheju","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1997","name":"Chollabuk","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1998","name":"Chollanam","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"1999","name":"Chungbuk","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2000","name":"Chungcheongbuk","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2001","name":"Chungcheongnam","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2002","name":"Chungnam","country_id":"118","created_at":"2024-01-21 12:07:16","updated_at":"2024-01-21 12:07:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2003","name":"Daegu","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2004","name":"Gangwon-do","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2005","name":"Goyang-si","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2006","name":"Gyeonggi-do","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2007","name":"Gyeongsang ","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2008","name":"Gyeongsangnam-do","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2009","name":"Incheon","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2010","name":"Jeju-Si","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2011","name":"Jeonbuk","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2012","name":"Kwangju","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2013","name":"Kyeonggi","country_id":"118","created_at":"2024-01-21 12:07:17","updated_at":"2024-01-21 12:07:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2014","name":"Kyeongsangbuk","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2015","name":"Kyeongsangnam","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2016","name":"Kyonggi-do","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2017","name":"Kyungbuk-Do","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2018","name":"Kyunggi-Do","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2019","name":"Pusan","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2020","name":"Seoul","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2021","name":"Sudogwon","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2022","name":"Taegu","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2023","name":"Taejeon","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2024","name":"Taejon-gwangyoksi","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2025","name":"Ulsan","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2026","name":"Wonju","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2027","name":"gwangyoksi","country_id":"118","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2028","name":"Al Asimah","country_id":"119","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2029","name":"Hawalli","country_id":"119","created_at":"2024-01-21 12:07:18","updated_at":"2024-01-21 12:07:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2030","name":"Mishref","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2031","name":"Qadesiya","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2032","name":"Safat","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2033","name":"Salmiya","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2034","name":"al-Ahmadi","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2035","name":"al-Farwaniyah","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2036","name":"al-Jahra","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2037","name":"al-Kuwayt","country_id":"119","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2038","name":"Batken","country_id":"120","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2039","name":"Bishkek","country_id":"120","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2040","name":"Chui","country_id":"120","created_at":"2024-01-21 12:07:19","updated_at":"2024-01-21 12:07:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2041","name":"Issyk-Kul","country_id":"120","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2042","name":"Jalal-Abad","country_id":"120","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2043","name":"Naryn","country_id":"120","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2044","name":"Osh","country_id":"120","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2045","name":"Talas","country_id":"120","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2046","name":"Attopu","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2047","name":"Bokeo","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2048","name":"Bolikhamsay","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2049","name":"Champasak","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2050","name":"Houaphanh","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2051","name":"Khammouane","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2052","name":"Luang Nam Tha","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2053","name":"Luang Prabang","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2054","name":"Oudomxay","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2055","name":"Phongsaly","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2056","name":"Saravan","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2057","name":"Savannakhet","country_id":"121","created_at":"2024-01-21 12:07:20","updated_at":"2024-01-21 12:07:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2058","name":"Sekong","country_id":"121","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2059","name":"Viangchan Prefecture","country_id":"121","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2060","name":"Viangchan Province","country_id":"121","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2061","name":"Xaignabury","country_id":"121","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2062","name":"Xiang Khuang","country_id":"121","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2063","name":"Aizkraukles","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2064","name":"Aluksnes","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2065","name":"Balvu","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2066","name":"Bauskas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2067","name":"Cesu","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2068","name":"Daugavpils","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2069","name":"Daugavpils City","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2070","name":"Dobeles","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2071","name":"Gulbenes","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2072","name":"Jekabspils","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2073","name":"Jelgava","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2074","name":"Jelgavas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2075","name":"Jurmala City","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2076","name":"Kraslavas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2077","name":"Kuldigas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2078","name":"Liepaja","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2079","name":"Liepajas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2080","name":"Limbazhu","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2081","name":"Ludzas","country_id":"122","created_at":"2024-01-21 12:07:21","updated_at":"2024-01-21 12:07:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2082","name":"Madonas","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2083","name":"Ogres","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2084","name":"Preilu","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2085","name":"Rezekne","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2086","name":"Rezeknes","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2087","name":"Riga","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2088","name":"Rigas","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2089","name":"Saldus","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2090","name":"Talsu","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2091","name":"Tukuma","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2092","name":"Valkas","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2093","name":"Valmieras","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2094","name":"Ventspils","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2095","name":"Ventspils City","country_id":"122","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2096","name":"Beirut","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2097","name":"Jabal Lubnan","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2098","name":"Mohafazat Liban-Nord","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2099","name":"Mohafazat Mont-Liban","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2100","name":"Sidon","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2101","name":"al-Biqa","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2102","name":"al-Janub","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2103","name":"an-Nabatiyah","country_id":"123","created_at":"2024-01-21 12:07:22","updated_at":"2024-01-21 12:07:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2104","name":"ash-Shamal","country_id":"123","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2105","name":"Berea","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2106","name":"Butha-Buthe","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2107","name":"Leribe","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2108","name":"Mafeteng","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2109","name":"Maseru","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2110","name":"Mohale s Hoek","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2111","name":"Mokhotlong","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2112","name":"Qacha s Nek","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2113","name":"Quthing","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2114","name":"Thaba-Tseka","country_id":"124","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2115","name":"Bomi","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2116","name":"Bong","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2117","name":"Grand Bassa","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2118","name":"Grand Cape Mount","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2119","name":"Grand Gedeh","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2120","name":"Loffa","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2121","name":"Margibi","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2122","name":"Maryland and Grand Kru","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2123","name":"Montserrado","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2124","name":"Nimba","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2125","name":"Rivercess","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2126","name":"Sinoe","country_id":"125","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2127","name":"Ajdabiya","country_id":"126","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2128","name":"Fezzan","country_id":"126","created_at":"2024-01-21 12:07:23","updated_at":"2024-01-21 12:07:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2129","name":"Banghazi","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2130","name":"Darnah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2131","name":"Ghadamis","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2132","name":"Gharyan","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2133","name":"Misratah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2134","name":"Murzuq","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2135","name":"Sabha","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2136","name":"Sawfajjin","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2137","name":"Surt","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2138","name":"Tarabulus","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2139","name":"Tarhunah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2140","name":"Tripolitania","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2141","name":"Tubruq","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2142","name":"Yafran","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2143","name":"Zlitan","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2144","name":"al- Aziziyah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2145","name":"al-Fatih","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2146","name":"al-Jabal al Akhdar","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2147","name":"al-Jufrah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2148","name":"al-Khums","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2149","name":"al-Kufrah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2150","name":"an-Nuqat al-Khams","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2151","name":"ash-Shati ","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2152","name":"az-Zawiyah","country_id":"126","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2153","name":"Balzers","country_id":"127","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2154","name":"Eschen","country_id":"127","created_at":"2024-01-21 12:07:24","updated_at":"2024-01-21 12:07:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2155","name":"Gamprin","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2156","name":"Mauren","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2157","name":"Planken","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2158","name":"Ruggell","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2159","name":"Schaan","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2160","name":"Schellenberg","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2161","name":"Triesen","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2162","name":"Triesenberg","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2163","name":"Vaduz","country_id":"127","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2164","name":"Alytaus","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2165","name":"Anyksciai","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2166","name":"Kauno","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2167","name":"Klaipedos","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2168","name":"Marijampoles","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2169","name":"Panevezhio","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2170","name":"Panevezys","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2171","name":"Shiauliu","country_id":"128","created_at":"2024-01-21 12:07:25","updated_at":"2024-01-21 12:07:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2172","name":"Taurages","country_id":"128","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2173","name":"Telshiu","country_id":"128","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2174","name":"Telsiai","country_id":"128","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2175","name":"Utenos","country_id":"128","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2176","name":"Vilniaus","country_id":"128","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2177","name":"Capellen","country_id":"129","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2178","name":"Clervaux","country_id":"129","created_at":"2024-01-21 12:07:26","updated_at":"2024-01-21 12:07:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2179","name":"Diekirch","country_id":"129","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2180","name":"Echternach","country_id":"129","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2181","name":"Esch-sur-Alzette","country_id":"129","created_at":"2024-01-21 12:07:27","updated_at":"2024-01-21 12:07:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2182","name":"Grevenmacher","country_id":"129","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2183","name":"Mersch","country_id":"129","created_at":"2024-01-21 12:07:28","updated_at":"2024-01-21 12:07:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2184","name":"Redange","country_id":"129","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2185","name":"Remich","country_id":"129","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2186","name":"Vianden","country_id":"129","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2187","name":"Wiltz","country_id":"129","created_at":"2024-01-21 12:07:29","updated_at":"2024-01-21 12:07:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2188","name":"Macau","country_id":"130","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2189","name":"Berovo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2190","name":"Bitola","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2191","name":"Brod","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2192","name":"Debar","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2193","name":"Delchevo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2194","name":"Demir Hisar","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2195","name":"Gevgelija","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2196","name":"Gostivar","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2197","name":"Kavadarci","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2198","name":"Kichevo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2199","name":"Kochani","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2200","name":"Kratovo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2201","name":"Kriva Palanka","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2202","name":"Krushevo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2203","name":"Kumanovo","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2204","name":"Negotino","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2205","name":"Ohrid","country_id":"131","created_at":"2024-01-21 12:07:30","updated_at":"2024-01-21 12:07:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2206","name":"Prilep","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2207","name":"Probishtip","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2208","name":"Radovish","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2209","name":"Resen","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2210","name":"Shtip","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2211","name":"Skopje","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2212","name":"Struga","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2213","name":"Strumica","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2214","name":"Sveti Nikole","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2215","name":"Tetovo","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2216","name":"Valandovo","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2217","name":"Veles","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2218","name":"Vinica","country_id":"131","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2219","name":"Antananarivo","country_id":"132","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2220","name":"Antsiranana","country_id":"132","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2221","name":"Fianarantsoa","country_id":"132","created_at":"2024-01-21 12:07:31","updated_at":"2024-01-21 12:07:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2222","name":"Mahajanga","country_id":"132","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2223","name":"Toamasina","country_id":"132","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2224","name":"Toliary","country_id":"132","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2225","name":"Balaka","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2226","name":"Blantyre City","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2227","name":"Chikwawa","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2228","name":"Chiradzulu","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2229","name":"Chitipa","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2230","name":"Dedza","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2231","name":"Dowa","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2232","name":"Karonga","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2233","name":"Kasungu","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2234","name":"Lilongwe City","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2235","name":"Machinga","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2236","name":"Mangochi","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2237","name":"Mchinji","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2238","name":"Mulanje","country_id":"133","created_at":"2024-01-21 12:07:32","updated_at":"2024-01-21 12:07:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2239","name":"Mwanza","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2240","name":"Mzimba","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2241","name":"Mzuzu City","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2242","name":"Nkhata Bay","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2243","name":"Nkhotakota","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2244","name":"Nsanje","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2245","name":"Ntcheu","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2246","name":"Ntchisi","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2247","name":"Phalombe","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2248","name":"Rumphi","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2249","name":"Salima","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2250","name":"Thyolo","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2251","name":"Zomba Municipality","country_id":"133","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2252","name":"Johor","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2253","name":"Kedah","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2254","name":"Kelantan","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2255","name":"Kuala Lumpur","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2256","name":"Labuan","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2257","name":"Melaka","country_id":"134","created_at":"2024-01-21 12:07:33","updated_at":"2024-01-21 12:07:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2258","name":"Negeri Johor","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2259","name":"Negeri Sembilan","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2260","name":"Pahang","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2261","name":"Penang","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2262","name":"Perak","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2263","name":"Perlis","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2264","name":"Pulau Pinang","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2265","name":"Sabah","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2266","name":"Sarawak","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2267","name":"Selangor","country_id":"134","created_at":"2024-01-21 12:07:34","updated_at":"2024-01-21 12:07:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2268","name":"Sembilan","country_id":"134","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2269","name":"Terengganu","country_id":"134","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2270","name":"Alif Alif","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2271","name":"Alif Dhaal","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2272","name":"Baa","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2273","name":"Dhaal","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2274","name":"Faaf","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2275","name":"Gaaf Alif","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2276","name":"Gaaf Dhaal","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2277","name":"Ghaviyani","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2278","name":"Haa Alif","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2279","name":"Haa Dhaal","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2280","name":"Kaaf","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2281","name":"Laam","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2282","name":"Lhaviyani","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2283","name":"Male","country_id":"135","created_at":"2024-01-21 12:07:35","updated_at":"2024-01-21 12:07:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2284","name":"Miim","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2285","name":"Nuun","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2286","name":"Raa","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2287","name":"Shaviyani","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2288","name":"Siin","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2289","name":"Thaa","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2290","name":"Vaav","country_id":"135","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2291","name":"Bamako","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2292","name":"Gao","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2293","name":"Kayes","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2294","name":"Kidal","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2295","name":"Koulikoro","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2296","name":"Mopti","country_id":"136","created_at":"2024-01-21 12:07:36","updated_at":"2024-01-21 12:07:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2297","name":"Segou","country_id":"136","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2298","name":"Sikasso","country_id":"136","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2299","name":"Tombouctou","country_id":"136","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2300","name":"Gozo and Comino","country_id":"137","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2301","name":"Inner Harbour","country_id":"137","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2302","name":"Outer Harbour","country_id":"137","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2303","name":"South Eastern","country_id":"137","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2304","name":"Ailinlaplap","country_id":"138","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2305","name":"Ailuk","country_id":"138","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2306","name":"Arno","country_id":"138","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2307","name":"Aur","country_id":"138","created_at":"2024-01-21 12:07:37","updated_at":"2024-01-21 12:07:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2308","name":"Bikini","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2309","name":"Ebon","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2310","name":"Enewetak","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2311","name":"Jabat","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2312","name":"Jaluit","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2313","name":"Kili","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2314","name":"Kwajalein","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2315","name":"Lae","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2316","name":"Lib","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2317","name":"Likiep","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2318","name":"Majuro","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2319","name":"Maloelap","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2320","name":"Mejit","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2321","name":"Mili","country_id":"138","created_at":"2024-01-21 12:07:38","updated_at":"2024-01-21 12:07:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2322","name":"Namorik","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2323","name":"Namu","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2324","name":"Rongelap","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2325","name":"Ujae","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2326","name":"Utrik","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2327","name":"Wotho","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2328","name":"Wotje","country_id":"138","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2329","name":"Fort-de-France","country_id":"139","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2330","name":"La Trinite","country_id":"139","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2331","name":"Le Marin","country_id":"139","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2332","name":"Saint-Pierre","country_id":"139","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2333","name":"Assaba","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2334","name":"Brakna","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2335","name":"Dhakhlat Nawadibu","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2336","name":"Hudh-al-Gharbi","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2337","name":"Hudh-ash-Sharqi","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2338","name":"Inshiri","country_id":"140","created_at":"2024-01-21 12:07:39","updated_at":"2024-01-21 12:07:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2339","name":"Nawakshut","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2340","name":"Qidimagha","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2341","name":"Qurqul","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2342","name":"Taqant","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2343","name":"Tiris Zammur","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2344","name":"Trarza","country_id":"140","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2345","name":"Black River","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2346","name":"Eau Coulee","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2347","name":"Flacq","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2348","name":"Floreal","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2349","name":"Grand Port","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2350","name":"Moka","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2351","name":"Pamplempousses","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2352","name":"Plaines Wilhelm","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2353","name":"Port Louis","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2354","name":"Riviere du Rempart","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2355","name":"Rodrigues","country_id":"141","created_at":"2024-01-21 12:07:40","updated_at":"2024-01-21 12:07:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2356","name":"Rose Hill","country_id":"141","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2357","name":"Savanne","country_id":"141","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2358","name":"Mayotte","country_id":"142","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2359","name":"Pamanzi","country_id":"142","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2360","name":"Aguascalientes","country_id":"143","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2361","name":"Baja California","country_id":"143","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2362","name":"Baja California Sur","country_id":"143","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2363","name":"Campeche","country_id":"143","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2364","name":"Chiapas","country_id":"143","created_at":"2024-01-21 12:07:41","updated_at":"2024-01-21 12:07:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2365","name":"Chihuahua","country_id":"143","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2366","name":"Coahuila","country_id":"143","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2367","name":"Colima","country_id":"143","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2368","name":"Durango","country_id":"143","created_at":"2024-01-21 12:07:42","updated_at":"2024-01-21 12:07:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2369","name":"Estado de Mexico","country_id":"143","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2370","name":"Guanajuato","country_id":"143","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2371","name":"Guerrero","country_id":"143","created_at":"2024-01-21 12:07:43","updated_at":"2024-01-21 12:07:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2372","name":"Hidalgo","country_id":"143","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2373","name":"Jalisco","country_id":"143","created_at":"2024-01-21 12:07:44","updated_at":"2024-01-21 12:07:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2374","name":"Mexico","country_id":"143","created_at":"2024-01-21 12:07:45","updated_at":"2024-01-21 12:07:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2375","name":"Michoacan","country_id":"143","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2376","name":"Morelos","country_id":"143","created_at":"2024-01-21 12:07:47","updated_at":"2024-01-21 12:07:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2377","name":"Nayarit","country_id":"143","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2378","name":"Nuevo Leon","country_id":"143","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2379","name":"Oaxaca","country_id":"143","created_at":"2024-01-21 12:07:48","updated_at":"2024-01-21 12:07:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2380","name":"Puebla","country_id":"143","created_at":"2024-01-21 12:07:49","updated_at":"2024-01-21 12:07:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2381","name":"Queretaro","country_id":"143","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2382","name":"Quintana Roo","country_id":"143","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2383","name":"San Luis Potosi","country_id":"143","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2384","name":"Sinaloa","country_id":"143","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2385","name":"Sonora","country_id":"143","created_at":"2024-01-21 12:07:50","updated_at":"2024-01-21 12:07:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2386","name":"Tabasco","country_id":"143","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2387","name":"Tamaulipas","country_id":"143","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2388","name":"Tlaxcala","country_id":"143","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2389","name":"Veracruz","country_id":"143","created_at":"2024-01-21 12:07:51","updated_at":"2024-01-21 12:07:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2390","name":"Yucatan","country_id":"143","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2391","name":"Zacatecas","country_id":"143","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2392","name":"Chuuk","country_id":"144","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2393","name":"Kusaie","country_id":"144","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2394","name":"Pohnpei","country_id":"144","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2395","name":"Yap","country_id":"144","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2396","name":"Balti","country_id":"145","created_at":"2024-01-21 12:07:53","updated_at":"2024-01-21 12:07:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2397","name":"Cahul","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2398","name":"Chisinau","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2399","name":"Chisinau Oras","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2400","name":"Edinet","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2401","name":"Gagauzia","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2402","name":"Lapusna","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2403","name":"Orhei","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2404","name":"Soroca","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2405","name":"Taraclia","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2406","name":"Tighina","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2407","name":"Transnistria","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2408","name":"Ungheni","country_id":"145","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2409","name":"Fontvieille","country_id":"146","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2410","name":"La Condamine","country_id":"146","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2411","name":"Monaco-Ville","country_id":"146","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2412","name":"Monte Carlo","country_id":"146","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2413","name":"Arhangaj","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2414","name":"Bajan-Olgij","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2415","name":"Bajanhongor","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2416","name":"Bulgan","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2417","name":"Darhan-Uul","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2418","name":"Dornod","country_id":"147","created_at":"2024-01-21 12:07:54","updated_at":"2024-01-21 12:07:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2419","name":"Dornogovi","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2420","name":"Dundgovi","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2421","name":"Govi-Altaj","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2422","name":"Govisumber","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2423","name":"Hentij","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2424","name":"Hovd","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2425","name":"Hovsgol","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2426","name":"Omnogovi","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2427","name":"Orhon","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2428","name":"Ovorhangaj","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2429","name":"Selenge","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2430","name":"Suhbaatar","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2431","name":"Tov","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2432","name":"Ulaanbaatar","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2433","name":"Uvs","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2434","name":"Zavhan","country_id":"147","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2435","name":"Montserrat","country_id":"149","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2436","name":"Agadir","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2437","name":"Casablanca","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2438","name":"Chaouia-Ouardigha","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2439","name":"Doukkala-Abda","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2440","name":"Fes-Boulemane","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2441","name":"Gharb-Chrarda-Beni Hssen","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2442","name":"Guelmim","country_id":"150","created_at":"2024-01-21 12:07:55","updated_at":"2024-01-21 12:07:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2443","name":"Kenitra","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2444","name":"Marrakech-Tensift-Al Haouz","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2445","name":"Meknes-Tafilalet","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2446","name":"Oriental","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2447","name":"Oujda","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2448","name":"Province de Tanger","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2449","name":"Rabat-Sale-Zammour-Zaer","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2450","name":"Sala Al Jadida","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2451","name":"Settat","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2452","name":"Souss Massa-Draa","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2453","name":"Tadla-Azilal","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2454","name":"Tangier-Tetouan","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2455","name":"Taza-Al Hoceima-Taounate","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2456","name":"Wilaya de Casablanca","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2457","name":"Wilaya de Rabat-Sale","country_id":"150","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2458","name":"Cabo Delgado","country_id":"151","created_at":"2024-01-21 12:07:56","updated_at":"2024-01-21 12:07:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2459","name":"Inhambane","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2460","name":"Manica","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2461","name":"Maputo","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2462","name":"Maputo Provincia","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2463","name":"Nampula","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2464","name":"Niassa","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2465","name":"Sofala","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2466","name":"Tete","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2467","name":"Zambezia","country_id":"151","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2468","name":"Ayeyarwady","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2469","name":"Bago","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2470","name":"Chin","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2471","name":"Kachin","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2472","name":"Kayah","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2473","name":"Kayin","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2474","name":"Magway","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2475","name":"Mandalay","country_id":"152","created_at":"2024-01-21 12:07:57","updated_at":"2024-01-21 12:07:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2476","name":"Mon","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2477","name":"Nay Pyi Taw","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2478","name":"Rakhine","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2479","name":"Sagaing","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2480","name":"Shan","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2481","name":"Tanintharyi","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2482","name":"Yangon","country_id":"152","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2483","name":"Caprivi","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2484","name":"Erongo","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2485","name":"Hardap","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2486","name":"Karas","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2487","name":"Kavango","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2488","name":"Khomas","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2489","name":"Kunene","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2490","name":"Ohangwena","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2491","name":"Omaheke","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2492","name":"Omusati","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2493","name":"Oshana","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2494","name":"Oshikoto","country_id":"153","created_at":"2024-01-21 12:07:58","updated_at":"2024-01-21 12:07:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2495","name":"Otjozondjupa","country_id":"153","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2496","name":"Yaren","country_id":"154","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2497","name":"Bagmati","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2498","name":"Bheri","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2499","name":"Dhawalagiri","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2500","name":"Gandaki","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2501","name":"Janakpur","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2502","name":"Karnali","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2503","name":"Koshi","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2504","name":"Lumbini","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2505","name":"Mahakali","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2506","name":"Mechi","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2507","name":"Narayani","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2508","name":"Rapti","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2509","name":"Sagarmatha","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2510","name":"Seti","country_id":"155","created_at":"2024-01-21 12:07:59","updated_at":"2024-01-21 12:07:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2511","name":"Benelux","country_id":"156","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2512","name":"Drenthe","country_id":"156","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2513","name":"Flevoland","country_id":"156","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2514","name":"Friesland","country_id":"156","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2515","name":"Gelderland","country_id":"156","created_at":"2024-01-21 12:08:00","updated_at":"2024-01-21 12:08:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2516","name":"Groningen","country_id":"156","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2517","name":"Noord-Brabant","country_id":"156","created_at":"2024-01-21 12:08:01","updated_at":"2024-01-21 12:08:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2518","name":"Overijssel","country_id":"156","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2519","name":"South Holland","country_id":"156","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2520","name":"Utrecht","country_id":"156","created_at":"2024-01-21 12:08:03","updated_at":"2024-01-21 12:08:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2521","name":"Zeeland","country_id":"156","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2522","name":"Zuid-Holland","country_id":"156","created_at":"2024-01-21 12:45:26","updated_at":"2024-01-21 12:45:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2523","name":"Iles","country_id":"157","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2524","name":"Area Outside Region","country_id":"158","created_at":"2024-01-21 12:45:27","updated_at":"2024-01-21 12:45:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2525","name":"Bay of Plenty","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2526","name":"Canterbury","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2527","name":"Christchurch","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2528","name":"Gisborne","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2529","name":"Hawke s Bay","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2530","name":"Manawatu-Wanganui","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2531","name":"Marlborough","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2532","name":"Nelson","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2533","name":"Northland","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2534","name":"Otago","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2535","name":"Rodney","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2536","name":"Southland","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2537","name":"Taranaki","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2538","name":"Tasman","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2539","name":"Waikato","country_id":"158","created_at":"2024-01-21 12:45:28","updated_at":"2024-01-21 12:45:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2540","name":"Wellington","country_id":"158","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2541","name":"West Coast","country_id":"158","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2542","name":"Atlantico Norte","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2543","name":"Atlantico Sur","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2544","name":"Boaco","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2545","name":"Carazo","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2546","name":"Chinandega","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2547","name":"Chontales","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2548","name":"Esteli","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2549","name":"Granada","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2550","name":"Jinotega","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2551","name":"Leon","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2552","name":"Madriz","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2553","name":"Managua","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2554","name":"Masaya","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2555","name":"Matagalpa","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2556","name":"Nueva Segovia","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2557","name":"Rio San Juan","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2558","name":"Rivas","country_id":"159","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2559","name":"Agadez","country_id":"160","created_at":"2024-01-21 12:45:29","updated_at":"2024-01-21 12:45:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2560","name":"Diffa","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2561","name":"Dosso","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2562","name":"Maradi","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2563","name":"Niamey","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2564","name":"Tahoua","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2565","name":"Tillabery","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2566","name":"Zinder","country_id":"160","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2567","name":"Abia","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2568","name":"Abuja Federal Capital Territory","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2569","name":"Adamawa","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2570","name":"Akwa Ibom","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2571","name":"Anambra","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2572","name":"Bauchi","country_id":"161","created_at":"2024-01-21 12:45:30","updated_at":"2024-01-21 12:45:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2573","name":"Bayelsa","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2574","name":"Benue","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2575","name":"Borno","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2576","name":"Cross River","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2577","name":"Delta","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2578","name":"Ebonyi","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2579","name":"Edo","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2580","name":"Ekiti","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2581","name":"Enugu","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2582","name":"Gombe","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2583","name":"Imo","country_id":"161","created_at":"2024-01-21 12:45:31","updated_at":"2024-01-21 12:45:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2584","name":"Jigawa","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2585","name":"Kaduna","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2586","name":"Kano","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2587","name":"Katsina","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2588","name":"Kebbi","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2589","name":"Kogi","country_id":"161","created_at":"2024-01-21 12:45:32","updated_at":"2024-01-21 12:45:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2590","name":"Kwara","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2591","name":"Lagos","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2592","name":"Nassarawa","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2593","name":"Niger","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2594","name":"Ogun","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2595","name":"Ondo","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2596","name":"Osun","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2597","name":"Oyo","country_id":"161","created_at":"2024-01-21 12:45:33","updated_at":"2024-01-21 12:45:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2598","name":"Rivers","country_id":"161","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2599","name":"Sokoto","country_id":"161","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2600","name":"Taraba","country_id":"161","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2601","name":"Yobe","country_id":"161","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2602","name":"Zamfara","country_id":"161","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2603","name":"Niue","country_id":"162","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2604","name":"Norfolk Island","country_id":"163","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2605","name":"Northern Islands","country_id":"164","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2606","name":"Rota","country_id":"164","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2607","name":"Saipan","country_id":"164","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2608","name":"Tinian","country_id":"164","created_at":"2024-01-21 12:45:34","updated_at":"2024-01-21 12:45:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2609","name":"Akershus","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2610","name":"Aust Agder","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2611","name":"Bergen","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2612","name":"Buskerud","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2613","name":"Finnmark","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2614","name":"Hedmark","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2615","name":"Hordaland","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2616","name":"Moere og Romsdal","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2617","name":"Nord Trondelag","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2618","name":"Nordland","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2619","name":"Oestfold","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2620","name":"Oppland","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2621","name":"Oslo","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2622","name":"Rogaland","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2623","name":"Soer Troendelag","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2624","name":"Sogn og Fjordane","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2625","name":"Stavern","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2626","name":"Sykkylven","country_id":"165","created_at":"2024-01-21 12:45:35","updated_at":"2024-01-21 12:45:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2627","name":"Telemark","country_id":"165","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2628","name":"Troms","country_id":"165","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2629","name":"Vest Agder","country_id":"165","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2630","name":"Vestfold","country_id":"165","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2631","name":"Østfold","country_id":"165","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2632","name":"Al Buraimi","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2633","name":"Dhufar","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2634","name":"Masqat","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2635","name":"Musandam","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2636","name":"Rusayl","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2637","name":"Wadi Kabir","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2638","name":"ad-Dakhiliyah","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2639","name":"adh-Dhahirah","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2640","name":"al-Batinah","country_id":"166","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2641","name":"Baluchistan","country_id":"167","created_at":"2024-01-21 12:45:36","updated_at":"2024-01-21 12:45:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2642","name":"Federal Capital Area","country_id":"167","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2643","name":"Federally administered Tribal ","country_id":"167","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2644","name":"North-West Frontier","country_id":"167","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2645","name":"Northern Areas","country_id":"167","created_at":"2024-01-21 12:45:37","updated_at":"2024-01-21 12:45:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2646","name":"Sind","country_id":"167","created_at":"2024-01-21 12:45:38","updated_at":"2024-01-21 12:45:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2647","name":"Aimeliik","country_id":"168","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2648","name":"Airai","country_id":"168","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2649","name":"Angaur","country_id":"168","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2650","name":"Hatobohei","country_id":"168","created_at":"2024-01-21 12:45:39","updated_at":"2024-01-21 12:45:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2651","name":"Kayangel","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2652","name":"Koror","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2653","name":"Melekeok","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2654","name":"Ngaraard","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2655","name":"Ngardmau","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2656","name":"Ngaremlengui","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2657","name":"Ngatpang","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2658","name":"Ngchesar","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2659","name":"Ngerchelong","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2660","name":"Ngiwal","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2661","name":"Peleliu","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2662","name":"Sonsorol","country_id":"168","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2663","name":"Ariha","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2664","name":"Bayt Lahm","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2665","name":"Dayr-al-Balah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2666","name":"Ghazzah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2667","name":"Ghazzah ash-Shamaliyah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2668","name":"Janin","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2669","name":"Khan Yunis","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2670","name":"Nabulus","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2671","name":"Qalqilyah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2672","name":"Rafah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2673","name":"Ram Allah wal-Birah","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2674","name":"Salfit","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2675","name":"Tubas","country_id":"169","created_at":"2024-01-21 12:45:40","updated_at":"2024-01-21 12:45:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2676","name":"Tulkarm","country_id":"169","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2677","name":"al-Khalil","country_id":"169","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2678","name":"al-Quds","country_id":"169","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2679","name":"Bocas del Toro","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2680","name":"Chiriqui","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2681","name":"Cocle","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2682","name":"Darien","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2683","name":"Embera","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2684","name":"Herrera","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2685","name":"Kuna Yala","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2686","name":"Los Santos","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2687","name":"Ngobe Bugle","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2688","name":"Panama","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2689","name":"Veraguas","country_id":"170","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2690","name":"East New Britain","country_id":"171","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2691","name":"East Sepik","country_id":"171","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2692","name":"Eastern Highlands","country_id":"171","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2693","name":"Enga","country_id":"171","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2694","name":"Fly River","country_id":"171","created_at":"2024-01-21 12:45:41","updated_at":"2024-01-21 12:45:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2695","name":"Gulf","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2696","name":"Madang","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2697","name":"Manus","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2698","name":"Milne Bay","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2699","name":"Morobe","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2700","name":"National Capital District","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2701","name":"New Ireland","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2702","name":"North Solomons","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2703","name":"Oro","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2704","name":"Sandaun","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2705","name":"Simbu","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2706","name":"Southern Highlands","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2707","name":"West New Britain","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2708","name":"Western Highlands","country_id":"171","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2709","name":"Alto Paraguay","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2710","name":"Alto Parana","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2711","name":"Amambay","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2712","name":"Asuncion","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2713","name":"Boqueron","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2714","name":"Caaguazu","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2715","name":"Caazapa","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2716","name":"Canendiyu","country_id":"172","created_at":"2024-01-21 12:45:42","updated_at":"2024-01-21 12:45:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2717","name":"Concepcion","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2718","name":"Cordillera","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2719","name":"Guaira","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2720","name":"Itapua","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2721","name":"Neembucu","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2722","name":"Paraguari","country_id":"172","created_at":"2024-01-21 12:45:43","updated_at":"2024-01-21 12:45:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2723","name":"Presidente Hayes","country_id":"172","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2724","name":"San Pedro","country_id":"172","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2725","name":"Ancash","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2726","name":"Apurimac","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2727","name":"Arequipa","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2728","name":"Ayacucho","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2729","name":"Cajamarca","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2730","name":"Cusco","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2731","name":"Huancavelica","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2732","name":"Huanuco","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2733","name":"Ica","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2734","name":"Junin","country_id":"173","created_at":"2024-01-21 12:45:44","updated_at":"2024-01-21 12:45:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2735","name":"Lambayeque","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2736","name":"Lima y Callao","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2737","name":"Loreto","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2738","name":"Madre de Dios","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2739","name":"Moquegua","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2740","name":"Pasco","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2741","name":"Piura","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2742","name":"Puno","country_id":"173","created_at":"2024-01-21 12:45:45","updated_at":"2024-01-21 12:45:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2743","name":"San Martin","country_id":"173","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2744","name":"Tacna","country_id":"173","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2745","name":"Tumbes","country_id":"173","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2746","name":"Ucayali","country_id":"173","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2747","name":"Batangas","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2748","name":"Bicol","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2749","name":"Bulacan","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2750","name":"Cagayan","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2751","name":"Caraga","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2752","name":"Central Luzon","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2753","name":"Central Mindanao","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2754","name":"Central Visayas","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2755","name":"Davao","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2756","name":"Eastern Visayas","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2757","name":"Greater Metropolitan Area","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2758","name":"Ilocos","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2759","name":"Laguna","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2760","name":"Luzon","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2761","name":"Mactan","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2762","name":"Metropolitan Manila Area","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2763","name":"Muslim Mindanao","country_id":"174","created_at":"2024-01-21 12:45:46","updated_at":"2024-01-21 12:45:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2764","name":"Northern Mindanao","country_id":"174","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2765","name":"Southern Mindanao","country_id":"174","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2766","name":"Southern Tagalog","country_id":"174","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2767","name":"Western Mindanao","country_id":"174","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2768","name":"Western Visayas","country_id":"174","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2769","name":"Pitcairn Island","country_id":"175","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2770","name":"Biale Blota","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2771","name":"Dobroszyce","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2772","name":"Dolnoslaskie","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2773","name":"Dziekanow Lesny","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2774","name":"Hopowo","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2775","name":"Kartuzy","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2776","name":"Koscian","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2777","name":"Krakow","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2778","name":"Kujawsko-Pomorskie","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2779","name":"Lodzkie","country_id":"176","created_at":"2024-01-21 12:45:47","updated_at":"2024-01-21 12:45:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2780","name":"Lubelskie","country_id":"176","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2781","name":"Lubuskie","country_id":"176","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2782","name":"Malomice","country_id":"176","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2783","name":"Malopolskie","country_id":"176","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2784","name":"Mazowieckie","country_id":"176","created_at":"2024-01-21 12:45:48","updated_at":"2024-01-21 12:45:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2785","name":"Mirkow","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2786","name":"Opolskie","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2787","name":"Ostrowiec","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2788","name":"Podkarpackie","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2789","name":"Podlaskie","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2790","name":"Polska","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2791","name":"Pomorskie","country_id":"176","created_at":"2024-01-21 12:45:49","updated_at":"2024-01-21 12:45:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2792","name":"Poznan","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2793","name":"Pruszkow","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2794","name":"Rymanowska","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2795","name":"Rzeszow","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2796","name":"Slaskie","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2797","name":"Stare Pole","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2798","name":"Swietokrzyskie","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2799","name":"Warminsko-Mazurskie","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2800","name":"Warsaw","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2801","name":"Wejherowo","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2802","name":"Wielkopolskie","country_id":"176","created_at":"2024-01-21 12:45:50","updated_at":"2024-01-21 12:45:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2803","name":"Wroclaw","country_id":"176","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2804","name":"Zachodnio-Pomorskie","country_id":"176","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2805","name":"Zukowo","country_id":"176","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2806","name":"Abrantes","country_id":"177","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2807","name":"Acores","country_id":"177","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2808","name":"Alentejo","country_id":"177","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2809","name":"Algarve","country_id":"177","created_at":"2024-01-21 12:45:51","updated_at":"2024-01-21 12:45:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2810","name":"Braga","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2811","name":"Centro","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2812","name":"Distrito de Leiria","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2813","name":"Distrito de Viana do Castelo","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2814","name":"Distrito de Vila Real","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2815","name":"Distrito do Porto","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2816","name":"Lisboa e Vale do Tejo","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2817","name":"Madeira","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2818","name":"Norte","country_id":"177","created_at":"2024-01-21 12:45:52","updated_at":"2024-01-21 12:45:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2819","name":"Paivas","country_id":"177","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2820","name":"Arecibo","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2821","name":"Bayamon","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2822","name":"Carolina","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2823","name":"Florida","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2824","name":"Guayama","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2825","name":"Humacao","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2826","name":"Mayaguez-Aguadilla","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2827","name":"Ponce","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2828","name":"Salinas","country_id":"178","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2829","name":"Doha","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2830","name":"Jarian-al-Batnah","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2831","name":"Umm Salal","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2832","name":"ad-Dawhah","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2833","name":"al-Ghuwayriyah","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2834","name":"al-Jumayliyah","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2835","name":"al-Khawr","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2836","name":"al-Wakrah","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2837","name":"ar-Rayyan","country_id":"179","created_at":"2024-01-21 12:45:54","updated_at":"2024-01-21 12:45:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2838","name":"Saint-Benoit","country_id":"180","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2839","name":"Saint-Denis","country_id":"180","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2840","name":"Saint-Paul","country_id":"180","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2841","name":"Alba","country_id":"181","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2842","name":"Arad","country_id":"181","created_at":"2024-01-21 12:45:55","updated_at":"2024-01-21 12:45:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2843","name":"Arges","country_id":"181","created_at":"2024-01-21 12:45:56","updated_at":"2024-01-21 12:45:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2844","name":"Bacau","country_id":"181","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2845","name":"Bihor","country_id":"181","created_at":"2024-01-21 12:45:57","updated_at":"2024-01-21 12:45:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2846","name":"Bistrita-Nasaud","country_id":"181","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2847","name":"Botosani","country_id":"181","created_at":"2024-01-21 12:45:58","updated_at":"2024-01-21 12:45:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2848","name":"Braila","country_id":"181","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2849","name":"Brasov","country_id":"181","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2850","name":"Bucuresti","country_id":"181","created_at":"2024-01-21 12:45:59","updated_at":"2024-01-21 12:45:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2851","name":"Buzau","country_id":"181","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2852","name":"Calarasi","country_id":"181","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2853","name":"Caras-Severin","country_id":"181","created_at":"2024-01-21 12:46:00","updated_at":"2024-01-21 12:46:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2854","name":"Cluj","country_id":"181","created_at":"2024-01-21 12:46:01","updated_at":"2024-01-21 12:46:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2855","name":"Constanta","country_id":"181","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2856","name":"Covasna","country_id":"181","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2857","name":"Dambovita","country_id":"181","created_at":"2024-01-21 12:46:02","updated_at":"2024-01-21 12:46:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2858","name":"Dolj","country_id":"181","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2859","name":"Galati","country_id":"181","created_at":"2024-01-21 12:46:03","updated_at":"2024-01-21 12:46:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2860","name":"Giurgiu","country_id":"181","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2861","name":"Gorj","country_id":"181","created_at":"2024-01-21 12:46:04","updated_at":"2024-01-21 12:46:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2862","name":"Harghita","country_id":"181","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2863","name":"Hunedoara","country_id":"181","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2864","name":"Ialomita","country_id":"181","created_at":"2024-01-21 12:46:05","updated_at":"2024-01-21 12:46:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2865","name":"Iasi","country_id":"181","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2866","name":"Ilfov","country_id":"181","created_at":"2024-01-21 12:46:06","updated_at":"2024-01-21 12:46:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2867","name":"Maramures","country_id":"181","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2868","name":"Mehedinti","country_id":"181","created_at":"2024-01-21 12:46:07","updated_at":"2024-01-21 12:46:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2869","name":"Mures","country_id":"181","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2870","name":"Neamt","country_id":"181","created_at":"2024-01-21 12:46:08","updated_at":"2024-01-21 12:46:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2871","name":"Olt","country_id":"181","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2872","name":"Prahova","country_id":"181","created_at":"2024-01-21 12:46:09","updated_at":"2024-01-21 12:46:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2873","name":"Salaj","country_id":"181","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2874","name":"Satu Mare","country_id":"181","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2875","name":"Sibiu","country_id":"181","created_at":"2024-01-21 12:46:10","updated_at":"2024-01-21 12:46:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2876","name":"Sondelor","country_id":"181","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2877","name":"Suceava","country_id":"181","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2878","name":"Teleorman","country_id":"181","created_at":"2024-01-21 12:46:11","updated_at":"2024-01-21 12:46:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2879","name":"Timis","country_id":"181","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2880","name":"Tulcea","country_id":"181","created_at":"2024-01-21 12:46:12","updated_at":"2024-01-21 12:46:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2881","name":"Valcea","country_id":"181","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2882","name":"Vaslui","country_id":"181","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2883","name":"Vrancea","country_id":"181","created_at":"2024-01-21 12:46:13","updated_at":"2024-01-21 12:46:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2884","name":"Adygeja","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2885","name":"Aga","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2886","name":"Alanija","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2887","name":"Altaj","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2888","name":"Amur","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2889","name":"Arhangelsk","country_id":"182","created_at":"2024-01-21 12:46:14","updated_at":"2024-01-21 12:46:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2890","name":"Astrahan","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2891","name":"Bashkortostan","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2892","name":"Belgorod","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2893","name":"Brjansk","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2894","name":"Burjatija","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2895","name":"Chechenija","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2896","name":"Cheljabinsk","country_id":"182","created_at":"2024-01-21 12:46:15","updated_at":"2024-01-21 12:46:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2897","name":"Chita","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2898","name":"Chukotka","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2899","name":"Chuvashija","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2900","name":"Dagestan","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2901","name":"Evenkija","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2902","name":"Gorno-Altaj","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2903","name":"Habarovsk","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2904","name":"Hakasija","country_id":"182","created_at":"2024-01-21 12:46:16","updated_at":"2024-01-21 12:46:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2905","name":"Hanty-Mansija","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2906","name":"Ingusetija","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2907","name":"Irkutsk","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2908","name":"Ivanovo","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2909","name":"Jamalo-Nenets","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2910","name":"Jaroslavl","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2911","name":"Jevrej","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2912","name":"Kabardino-Balkarija","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2913","name":"Kaliningrad","country_id":"182","created_at":"2024-01-21 12:46:17","updated_at":"2024-01-21 12:46:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2914","name":"Kalmykija","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2915","name":"Kaluga","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2916","name":"Kamchatka","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2917","name":"Karachaj-Cherkessija","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2918","name":"Karelija","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2919","name":"Kemerovo","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2920","name":"Khabarovskiy Kray","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2921","name":"Kirov","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2922","name":"Komi","country_id":"182","created_at":"2024-01-21 12:46:18","updated_at":"2024-01-21 12:46:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2923","name":"Komi-Permjakija","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2924","name":"Korjakija","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2925","name":"Kostroma","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2926","name":"Krasnodar","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2927","name":"Krasnojarsk","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2928","name":"Krasnoyarskiy Kray","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2929","name":"Kurgan","country_id":"182","created_at":"2024-01-21 12:46:19","updated_at":"2024-01-21 12:46:19","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2930","name":"Kursk","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2931","name":"Leningrad","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2932","name":"Lipeck","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2933","name":"Magadan","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2934","name":"Marij El","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2935","name":"Mordovija","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2936","name":"Moscow","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2937","name":"Moskovskaja Oblast","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2938","name":"Moskovskaya Oblast","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2939","name":"Moskva","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2940","name":"Murmansk","country_id":"182","created_at":"2024-01-21 12:46:20","updated_at":"2024-01-21 12:46:20","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2941","name":"Nenets","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2942","name":"Nizhnij Novgorod","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2943","name":"Novgorod","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2944","name":"Novokusnezk","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2945","name":"Novosibirsk","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2946","name":"Omsk","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2947","name":"Orenburg","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2948","name":"Orjol","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2949","name":"Penza","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2950","name":"Perm","country_id":"182","created_at":"2024-01-21 12:46:21","updated_at":"2024-01-21 12:46:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2951","name":"Primorje","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2952","name":"Pskov","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2953","name":"Pskovskaya Oblast","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2954","name":"Rjazan","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2955","name":"Rostov","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2956","name":"Saha","country_id":"182","created_at":"2024-01-21 12:46:22","updated_at":"2024-01-21 12:46:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2957","name":"Sahalin","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2958","name":"Samara","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2959","name":"Samarskaya","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2960","name":"Sankt-Peterburg","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2961","name":"Saratov","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2962","name":"Smolensk","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2963","name":"Stavropol","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2964","name":"Sverdlovsk","country_id":"182","created_at":"2024-01-21 12:46:23","updated_at":"2024-01-21 12:46:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2965","name":"Tajmyrija","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2966","name":"Tambov","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2967","name":"Tatarstan","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2968","name":"Tjumen","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2969","name":"Tomsk","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2970","name":"Tula","country_id":"182","created_at":"2024-01-21 12:46:24","updated_at":"2024-01-21 12:46:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2971","name":"Tver","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2972","name":"Tyva","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2973","name":"Udmurtija","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2974","name":"Uljanovsk","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2975","name":"Ulyanovskaya Oblast","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2976","name":"Ust-Orda","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2977","name":"Vladimir","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2978","name":"Volgograd","country_id":"182","created_at":"2024-01-21 12:46:25","updated_at":"2024-01-21 12:46:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2979","name":"Vologda","country_id":"182","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2980","name":"Voronezh","country_id":"182","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2981","name":"Butare","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2982","name":"Byumba","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2983","name":"Cyangugu","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2984","name":"Gikongoro","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2985","name":"Gisenyi","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2986","name":"Gitarama","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2987","name":"Kibungo","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2988","name":"Kibuye","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2989","name":"Kigali-ngali","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2990","name":"Ruhengeri","country_id":"183","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2991","name":"Ascension","country_id":"185","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2992","name":"Gough Island","country_id":"185","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2993","name":"Saint Helena","country_id":"185","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2994","name":"Tristan da Cunha","country_id":"185","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2995","name":"Christ Church Nichola Town","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2996","name":"Saint Anne Sandy Point","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2997","name":"Saint George Basseterre","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2998","name":"Saint George Gingerland","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"2999","name":"Saint James Windward","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3000","name":"Saint John Capesterre","country_id":"186","created_at":"2024-01-21 12:46:26","updated_at":"2024-01-21 12:46:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3001","name":"Saint John Figtree","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3002","name":"Saint Mary Cayon","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3003","name":"Saint Paul Capesterre","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3004","name":"Saint Paul Charlestown","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3005","name":"Saint Peter Basseterre","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3006","name":"Saint Thomas Lowland","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3007","name":"Saint Thomas Middle Island","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3008","name":"Trinity Palmetto Point","country_id":"186","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3009","name":"Anse-la-Raye","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3010","name":"Canaries","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3011","name":"Castries","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3012","name":"Choiseul","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3013","name":"Dennery","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3014","name":"Gros Inlet","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3015","name":"Laborie","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3016","name":"Micoud","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3017","name":"Soufriere","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3018","name":"Vieux Fort","country_id":"187","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3019","name":"Miquelon-Langlade","country_id":"189","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3020","name":"Charlotte","country_id":"190","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3021","name":"Grenadines","country_id":"190","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3022","name":"A ana","country_id":"191","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3023","name":"Aiga-i-le-Tai","country_id":"191","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3024","name":"Atua","country_id":"191","created_at":"2024-01-21 12:46:27","updated_at":"2024-01-21 12:46:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3025","name":"Fa asaleleaga","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3026","name":"Gaga emauga","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3027","name":"Gagaifomauga","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3028","name":"Palauli","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3029","name":"Satupa itea","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3030","name":"Tuamasaga","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3031","name":"Va a-o-Fonoti","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3032","name":"Vaisigano","country_id":"191","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3033","name":"Acquaviva","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3034","name":"Borgo Maggiore","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3035","name":"Chiesanuova","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3036","name":"Domagnano","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3037","name":"Faetano","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3038","name":"Fiorentino","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3039","name":"Montegiardino","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3040","name":"San Marino","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3041","name":"Serravalle","country_id":"192","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3042","name":"Agua Grande","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3043","name":"Cantagalo","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3044","name":"Lemba","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3045","name":"Lobata","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3046","name":"Me-Zochi","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3047","name":"Pague","country_id":"193","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3048","name":"Al Khobar","country_id":"194","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3049","name":"Aseer","country_id":"194","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3050","name":"Ash Sharqiyah","country_id":"194","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3051","name":"Asir","country_id":"194","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3052","name":"Central Province","country_id":"194","created_at":"2024-01-21 12:46:28","updated_at":"2024-01-21 12:46:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3053","name":"Eastern Province","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3054","name":"Ha il","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3055","name":"Jawf","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3056","name":"Jizan","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3057","name":"Makkah","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3058","name":"Najran","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3059","name":"Qasim","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3060","name":"Tabuk","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3061","name":"Western Province","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3062","name":"al-Bahah","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3063","name":"al-Hudud-ash-Shamaliyah","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3064","name":"al-Madinah","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3065","name":"ar-Riyad","country_id":"194","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3066","name":"Dakar","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3067","name":"Diourbel","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3068","name":"Fatick","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3069","name":"Kaolack","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3070","name":"Kolda","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3071","name":"Louga","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3072","name":"Saint-Louis","country_id":"195","created_at":"2024-01-21 12:46:29","updated_at":"2024-01-21 12:46:29","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3073","name":"Tambacounda","country_id":"195","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3074","name":"Thies","country_id":"195","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3075","name":"Ziguinchor","country_id":"195","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3076","name":"Central Serbia","country_id":"196","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3077","name":"Kosovo and Metohija","country_id":"196","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3078","name":"Vojvodina","country_id":"196","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3079","name":"Anse Boileau","country_id":"197","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3080","name":"Anse Royale","country_id":"197","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3081","name":"Cascade","country_id":"197","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3082","name":"Takamaka","country_id":"197","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3083","name":"Singapore","country_id":"199","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3084","name":"Banskobystricky","country_id":"201","created_at":"2024-01-21 12:46:30","updated_at":"2024-01-21 12:46:30","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3085","name":"Bratislavsky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3086","name":"Kosicky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3087","name":"Nitriansky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3088","name":"Presovsky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3089","name":"Trenciansky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3090","name":"Trnavsky","country_id":"201","created_at":"2024-01-21 12:46:31","updated_at":"2024-01-21 12:46:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3091","name":"Zilinsky","country_id":"201","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3092","name":"Benedikt","country_id":"202","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3093","name":"Gorenjska","country_id":"202","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3094","name":"Gorishka","country_id":"202","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3095","name":"Jugovzhodna Slovenija","country_id":"202","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3096","name":"Koroshka","country_id":"202","created_at":"2024-01-21 12:46:32","updated_at":"2024-01-21 12:46:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3097","name":"Notranjsko-krashka","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3098","name":"Obalno-krashka","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3099","name":"Obcina Domzale","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3100","name":"Obcina Vitanje","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3101","name":"Osrednjeslovenska","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3102","name":"Podravska","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3103","name":"Pomurska","country_id":"202","created_at":"2024-01-21 12:46:33","updated_at":"2024-01-21 12:46:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3104","name":"Savinjska","country_id":"202","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3105","name":"Slovenian Littoral","country_id":"202","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3106","name":"Spodnjeposavska","country_id":"202","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3107","name":"Zasavska","country_id":"202","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3108","name":"Guadalcanal","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3109","name":"Isabel","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3110","name":"Makira and Ulawa","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3111","name":"Malaita","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3112","name":"Rennell and Bellona","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3113","name":"Temotu","country_id":"203","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3114","name":"Awdal","country_id":"204","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3115","name":"Bakol","country_id":"204","created_at":"2024-01-21 12:46:34","updated_at":"2024-01-21 12:46:34","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3116","name":"Banadir","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3117","name":"Bay","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3118","name":"Galgudug","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3119","name":"Gedo","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3120","name":"Hiran","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3121","name":"Jubbada Hose","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3122","name":"Jubbadha Dexe","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3123","name":"Mudug","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3124","name":"Nugal","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3125","name":"Sanag","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3126","name":"Shabellaha Dhexe","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3127","name":"Shabellaha Hose","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3128","name":"Togdher","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3129","name":"Woqoyi Galbed","country_id":"204","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3130","name":"Eastern Cape","country_id":"205","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3131","name":"Free State","country_id":"205","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3132","name":"Gauteng","country_id":"205","created_at":"2024-01-21 12:46:35","updated_at":"2024-01-21 12:46:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3133","name":"Kempton Park","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3134","name":"Kramerville","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3135","name":"KwaZulu Natal","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3136","name":"Limpopo","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3137","name":"Mpumalanga","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3138","name":"North West","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3139","name":"Northern Cape","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3140","name":"Parow","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3141","name":"Table View","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3142","name":"Umtentweni","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3143","name":"Western Cape","country_id":"205","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3144","name":"Central Equatoria","country_id":"207","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3145","name":"A Coruna","country_id":"208","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3146","name":"Alacant","country_id":"208","created_at":"2024-01-21 12:46:36","updated_at":"2024-01-21 12:46:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3147","name":"Alava","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3148","name":"Albacete","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3149","name":"Almeria","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3150","name":"Asturias","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3151","name":"Avila","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3152","name":"Badajoz","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3153","name":"Balears","country_id":"208","created_at":"2024-01-21 12:46:37","updated_at":"2024-01-21 12:46:37","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3154","name":"Barcelona","country_id":"208","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3155","name":"Burgos","country_id":"208","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3156","name":"Caceres","country_id":"208","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3157","name":"Cadiz","country_id":"208","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3158","name":"Cantabria","country_id":"208","created_at":"2024-01-21 12:46:38","updated_at":"2024-01-21 12:46:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3159","name":"Castello","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3160","name":"Ceuta","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3161","name":"Ciudad Real","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3162","name":"Cuenca","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3163","name":"Girona","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3164","name":"Guadalajara","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3165","name":"Guipuzcoa","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3166","name":"Huelva","country_id":"208","created_at":"2024-01-21 12:46:39","updated_at":"2024-01-21 12:46:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3167","name":"Huesca","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3168","name":"Jaen","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3169","name":"Las Palmas","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3170","name":"Lleida","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3171","name":"Lugo","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3172","name":"Madrid","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3173","name":"Malaga","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3174","name":"Melilla","country_id":"208","created_at":"2024-01-21 12:46:40","updated_at":"2024-01-21 12:46:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3175","name":"Murcia","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3176","name":"Navarra","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3177","name":"Ourense","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3178","name":"Pais Vasco","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3179","name":"Palencia","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3180","name":"Pontevedra","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3181","name":"Salamanca","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3182","name":"Segovia","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3183","name":"Sevilla","country_id":"208","created_at":"2024-01-21 12:46:41","updated_at":"2024-01-21 12:46:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3184","name":"Soria","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3185","name":"Tarragona","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3186","name":"Santa Cruz de Tenerife","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3187","name":"Teruel","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3188","name":"Valencia","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3189","name":"Valladolid","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3190","name":"Vizcaya","country_id":"208","created_at":"2024-01-21 12:46:42","updated_at":"2024-01-21 12:46:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3191","name":"Zamora","country_id":"208","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3192","name":"Zaragoza","country_id":"208","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3193","name":"Amparai","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3194","name":"Anuradhapuraya","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3195","name":"Badulla","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3196","name":"Boralesgamuwa","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3197","name":"Colombo","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3198","name":"Galla","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3199","name":"Gampaha","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3200","name":"Hambantota","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3201","name":"Kalatura","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3202","name":"Kegalla","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3203","name":"Kilinochchi","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3204","name":"Kurunegala","country_id":"209","created_at":"2024-01-21 12:46:43","updated_at":"2024-01-21 12:46:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3205","name":"Madakalpuwa","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3206","name":"Maha Nuwara","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3207","name":"Malwana","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3208","name":"Mannarama","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3209","name":"Matale","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3210","name":"Matara","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3211","name":"Monaragala","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3212","name":"Mullaitivu","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3213","name":"North Eastern Province","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3214","name":"North Western Province","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3215","name":"Nuwara Eliya","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3216","name":"Polonnaruwa","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3217","name":"Puttalama","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3218","name":"Ratnapuraya","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3219","name":"Southern Province","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3220","name":"Tirikunamalaya","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3221","name":"Tuscany","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3222","name":"Vavuniyawa","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3223","name":"Yapanaya","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3224","name":"kadawatha","country_id":"209","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3225","name":"A ali-an-Nil","country_id":"210","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3226","name":"Bahr-al-Jabal","country_id":"210","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3227","name":"Gharb Bahr-al-Ghazal","country_id":"210","created_at":"2024-01-21 12:46:44","updated_at":"2024-01-21 12:46:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3228","name":"Gharb Darfur","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3229","name":"Gharb Kurdufan","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3230","name":"Gharb-al-Istiwa iyah","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3231","name":"Janub Darfur","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3232","name":"Janub Kurdufan","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3233","name":"Junqali","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3234","name":"Kassala","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3235","name":"Nahr-an-Nil","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3236","name":"Shamal Bahr-al-Ghazal","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3237","name":"Shamal Darfur","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3238","name":"Shamal Kurdufan","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3239","name":"Sharq-al-Istiwa iyah","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3240","name":"Sinnar","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3241","name":"Warab","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3242","name":"Wilayat al Khartum","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3243","name":"al-Buhayrat","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3244","name":"al-Jazirah","country_id":"210","created_at":"2024-01-21 12:46:45","updated_at":"2024-01-21 12:46:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3245","name":"al-Khartum","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3246","name":"al-Qadarif","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3247","name":"al-Wahdah","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3248","name":"an-Nil-al-Abyad","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3249","name":"an-Nil-al-Azraq","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3250","name":"ash-Shamaliyah","country_id":"210","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3251","name":"Brokopondo","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3252","name":"Commewijne","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3253","name":"Coronie","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3254","name":"Marowijne","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3255","name":"Nickerie","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3256","name":"Paramaribo","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3257","name":"Saramacca","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3258","name":"Wanica","country_id":"211","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3259","name":"Svalbard","country_id":"212","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3260","name":"Hhohho","country_id":"213","created_at":"2024-01-21 12:46:46","updated_at":"2024-01-21 12:46:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3261","name":"Lubombo","country_id":"213","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3262","name":"Manzini","country_id":"213","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3263","name":"Shiselweni","country_id":"213","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3264","name":"Alvsborgs Lan","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3265","name":"Angermanland","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3266","name":"Blekinge","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3267","name":"Bohuslan","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3268","name":"Dalarna","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3269","name":"Gavleborg","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3270","name":"Gotland","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3271","name":"Halland","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3272","name":"Jamtland","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3273","name":"Jonkoping","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3274","name":"Kalmar","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3275","name":"Kristianstads","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3276","name":"Kronoberg","country_id":"214","created_at":"2024-01-21 12:46:47","updated_at":"2024-01-21 12:46:47","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3277","name":"Norrbotten","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3278","name":"Orebro","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3279","name":"Ostergotland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3280","name":"Saltsjo-Boo","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3281","name":"Skane","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3282","name":"Smaland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3283","name":"Sodermanland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3284","name":"Stockholm","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3285","name":"Uppsala","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3286","name":"Varmland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3287","name":"Vasterbotten","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3288","name":"Vastergotland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3289","name":"Vasternorrland","country_id":"214","created_at":"2024-01-21 12:46:48","updated_at":"2024-01-21 12:46:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3290","name":"Vastmanland","country_id":"214","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3291","name":"Vastra Gotaland","country_id":"214","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3292","name":"Aargau","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3293","name":"Appenzell Inner-Rhoden","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3294","name":"Appenzell-Ausser Rhoden","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3295","name":"Basel-Landschaft","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3296","name":"Basel-Stadt","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3297","name":"Bern","country_id":"215","created_at":"2024-01-21 12:46:49","updated_at":"2024-01-21 12:46:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3298","name":"Canton Ticino","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3299","name":"Fribourg","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3300","name":"Geneve","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3301","name":"Glarus","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3302","name":"Graubunden","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3303","name":"Heerbrugg","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3304","name":"Kanton Aargau","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3305","name":"Luzern","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3306","name":"Morbio Inferiore","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3307","name":"Muhen","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3308","name":"Neuchatel","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3309","name":"Nidwalden","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3310","name":"Obwalden","country_id":"215","created_at":"2024-01-21 12:46:50","updated_at":"2024-01-21 12:46:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3311","name":"Sankt Gallen","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3312","name":"Schaffhausen","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3313","name":"Schwyz","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3314","name":"Solothurn","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3315","name":"Thurgau","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3316","name":"Ticino","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3317","name":"Uri","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3318","name":"Valais","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3319","name":"Vaud","country_id":"215","created_at":"2024-01-21 12:46:51","updated_at":"2024-01-21 12:46:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3320","name":"Vauffelin","country_id":"215","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3321","name":"Zug","country_id":"215","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3322","name":"Zurich","country_id":"215","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3323","name":"Aleppo","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3324","name":"Dar a","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3325","name":"Dayr-az-Zawr","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3326","name":"Dimashq","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3327","name":"Halab","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3328","name":"Hamah","country_id":"216","created_at":"2024-01-21 12:46:52","updated_at":"2024-01-21 12:46:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3329","name":"Hims","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3330","name":"Idlib","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3331","name":"Madinat Dimashq","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3332","name":"Tartus","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3333","name":"al-Hasakah","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3334","name":"al-Ladhiqiyah","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3335","name":"al-Qunaytirah","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3336","name":"ar-Raqqah","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3337","name":"as-Suwayda","country_id":"216","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3338","name":"Changhua County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3339","name":"Chiayi County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3340","name":"Chiayi City","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3341","name":"Taipei City","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3342","name":"Hsinchu County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3343","name":"Hsinchu City","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3344","name":"Hualien County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3345","name":"Kaohsiung City","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3346","name":"Keelung City","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3347","name":"Kinmen County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3348","name":"Miaoli County","country_id":"217","created_at":"2024-01-21 12:46:53","updated_at":"2024-01-21 12:46:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3349","name":"Nantou County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3350","name":"Penghu County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3351","name":"Pingtung County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3352","name":"Taichung City","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3353","name":"Tainan City","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3354","name":"New Taipei City","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3355","name":"Taitung County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3356","name":"Taoyuan City","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3357","name":"Yilan County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3358","name":"YunLin County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3359","name":"Lienchiang County","country_id":"217","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3360","name":"Dushanbe","country_id":"218","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3361","name":"Gorno-Badakhshan","country_id":"218","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3362","name":"Karotegin","country_id":"218","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3363","name":"Khatlon","country_id":"218","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3364","name":"Sughd","country_id":"218","created_at":"2024-01-21 12:46:54","updated_at":"2024-01-21 12:46:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3365","name":"Arusha","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3366","name":"Dar es Salaam","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3367","name":"Dodoma","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3368","name":"Iringa","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3369","name":"Kagera","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3370","name":"Kigoma","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3371","name":"Kilimanjaro","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3372","name":"Lindi","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3373","name":"Mara","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3374","name":"Mbeya","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3375","name":"Morogoro","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3376","name":"Mtwara","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3377","name":"Pwani","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3378","name":"Rukwa","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3379","name":"Ruvuma","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3380","name":"Shinyanga","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3381","name":"Singida","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3382","name":"Tabora","country_id":"219","created_at":"2024-01-21 12:46:55","updated_at":"2024-01-21 12:46:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3383","name":"Tanga","country_id":"219","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3384","name":"Zanzibar and Pemba","country_id":"219","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3385","name":"Amnat Charoen","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3386","name":"Ang Thong","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3387","name":"Bangkok","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3388","name":"Buri Ram","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3389","name":"Chachoengsao","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3390","name":"Chai Nat","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3391","name":"Chaiyaphum","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3392","name":"Changwat Chaiyaphum","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3393","name":"Chanthaburi","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3394","name":"Chiang Mai","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3395","name":"Chiang Rai","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3396","name":"Chon Buri","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3397","name":"Chumphon","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3398","name":"Kalasin","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3399","name":"Kamphaeng Phet","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3400","name":"Kanchanaburi","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3401","name":"Khon Kaen","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3402","name":"Krabi","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3403","name":"Krung Thep","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3404","name":"Lampang","country_id":"220","created_at":"2024-01-21 12:46:56","updated_at":"2024-01-21 12:46:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3405","name":"Lamphun","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3406","name":"Loei","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3407","name":"Lop Buri","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3408","name":"Mae Hong Son","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3409","name":"Maha Sarakham","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3410","name":"Mukdahan","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3411","name":"Nakhon Nayok","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3412","name":"Nakhon Pathom","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3413","name":"Nakhon Phanom","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3414","name":"Nakhon Ratchasima","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3415","name":"Nakhon Sawan","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3416","name":"Nakhon Si Thammarat","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3417","name":"Nan","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3418","name":"Narathiwat","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3419","name":"Nong Bua Lam Phu","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3420","name":"Nong Khai","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3421","name":"Nonthaburi","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3422","name":"Pathum Thani","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3423","name":"Pattani","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3424","name":"Phangnga","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3425","name":"Phatthalung","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3426","name":"Phayao","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3427","name":"Phetchabun","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3428","name":"Phetchaburi","country_id":"220","created_at":"2024-01-21 12:46:57","updated_at":"2024-01-21 12:46:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3429","name":"Phichit","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3430","name":"Phitsanulok","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3431","name":"Phra Nakhon Si Ayutthaya","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3432","name":"Phrae","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3433","name":"Phuket","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3434","name":"Prachin Buri","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3435","name":"Prachuap Khiri Khan","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3436","name":"Ranong","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3437","name":"Ratchaburi","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3438","name":"Rayong","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3439","name":"Roi Et","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3440","name":"Sa Kaeo","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3441","name":"Sakon Nakhon","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3442","name":"Samut Prakan","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3443","name":"Samut Sakhon","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3444","name":"Samut Songkhran","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3445","name":"Saraburi","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3446","name":"Satun","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3447","name":"Si Sa Ket","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3448","name":"Sing Buri","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3449","name":"Songkhla","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3450","name":"Sukhothai","country_id":"220","created_at":"2024-01-21 12:46:58","updated_at":"2024-01-21 12:46:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3451","name":"Suphan Buri","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3452","name":"Surat Thani","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3453","name":"Surin","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3454","name":"Tak","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3455","name":"Trang","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3456","name":"Trat","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3457","name":"Ubon Ratchathani","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3458","name":"Udon Thani","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3459","name":"Uthai Thani","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3460","name":"Uttaradit","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3461","name":"Yala","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3462","name":"Yasothon","country_id":"220","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3463","name":"Kara","country_id":"222","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3464","name":"Maritime","country_id":"222","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3465","name":"Atafu","country_id":"223","created_at":"2024-01-21 12:46:59","updated_at":"2024-01-21 12:46:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3466","name":"Fakaofo","country_id":"223","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3467","name":"Nukunonu","country_id":"223","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3468","name":"Eua","country_id":"224","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3469","name":"Ha apai","country_id":"224","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3470","name":"Niuas","country_id":"224","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3471","name":"Tongatapu","country_id":"224","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3472","name":"Vava u","country_id":"224","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3473","name":"Arima-Tunapuna-Piarco","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3474","name":"Caroni","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3475","name":"Chaguanas","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3476","name":"Couva-Tabaquite-Talparo","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3477","name":"Diego Martin","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3478","name":"Glencoe","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3479","name":"Penal Debe","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3480","name":"Point Fortin","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3481","name":"Port of Spain","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3482","name":"Princes Town","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3483","name":"San Fernando","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3484","name":"Sangre Grande","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3485","name":"Siparia","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3486","name":"Tobago","country_id":"225","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3487","name":"Aryanah","country_id":"226","created_at":"2024-01-21 12:47:00","updated_at":"2024-01-21 12:47:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3488","name":"Bajah","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3489","name":"Bin Arus","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3490","name":"Binzart","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3491","name":"Gouvernorat de Ariana","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3492","name":"Gouvernorat de Nabeul","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3493","name":"Gouvernorat de Sousse","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3494","name":"Hammamet Yasmine","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3495","name":"Jundubah","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3496","name":"Madaniyin","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3497","name":"Manubah","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3498","name":"Monastir","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3499","name":"Nabul","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3500","name":"Qabis","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3501","name":"Qafsah","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3502","name":"Qibili","country_id":"226","created_at":"2024-01-21 12:47:01","updated_at":"2024-01-21 12:47:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3503","name":"Safaqis","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3504","name":"Sfax","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3505","name":"Sidi Bu Zayd","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3506","name":"Silyanah","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3507","name":"Susah","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3508","name":"Tatawin","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3509","name":"Tawzar","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3510","name":"Tunis","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3511","name":"Zaghwan","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3512","name":"al-Kaf","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3513","name":"al-Mahdiyah","country_id":"226","created_at":"2024-01-21 12:47:02","updated_at":"2024-01-21 12:47:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3514","name":"al-Munastir","country_id":"226","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3515","name":"al-Qasrayn","country_id":"226","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3516","name":"al-Qayrawan","country_id":"226","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3517","name":"Adana","country_id":"227","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3518","name":"Adiyaman","country_id":"227","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3519","name":"Afyon","country_id":"227","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3520","name":"Agri","country_id":"227","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3521","name":"Aksaray","country_id":"227","created_at":"2024-01-21 12:47:03","updated_at":"2024-01-21 12:47:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3522","name":"Amasya","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3523","name":"Ankara","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3524","name":"Antalya","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3525","name":"Ardahan","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3526","name":"Artvin","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3527","name":"Aydin","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3528","name":"Balikesir","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3529","name":"Bartin","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3530","name":"Batman","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3531","name":"Bayburt","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3532","name":"Bilecik","country_id":"227","created_at":"2024-01-21 12:47:04","updated_at":"2024-01-21 12:47:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3533","name":"Bingol","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3534","name":"Bitlis","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3535","name":"Bolu","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3536","name":"Burdur","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3537","name":"Bursa","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3538","name":"Canakkale","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3539","name":"Cankiri","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3540","name":"Corum","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3541","name":"Denizli","country_id":"227","created_at":"2024-01-21 12:47:05","updated_at":"2024-01-21 12:47:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3542","name":"Diyarbakir","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3543","name":"Duzce","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3544","name":"Edirne","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3545","name":"Elazig","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3546","name":"Erzincan","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3547","name":"Erzurum","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3548","name":"Eskisehir","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3549","name":"Gaziantep","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3550","name":"Giresun","country_id":"227","created_at":"2024-01-21 12:47:06","updated_at":"2024-01-21 12:47:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3551","name":"Gumushane","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3552","name":"Hakkari","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3553","name":"Hatay","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3554","name":"Icel","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3555","name":"Igdir","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3556","name":"Isparta","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3557","name":"Istanbul","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3558","name":"Izmir","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3559","name":"Kahramanmaras","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3560","name":"Karabuk","country_id":"227","created_at":"2024-01-21 12:47:07","updated_at":"2024-01-21 12:47:07","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3561","name":"Karaman","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3562","name":"Kars","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3563","name":"Karsiyaka","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3564","name":"Kastamonu","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3565","name":"Kayseri","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3566","name":"Kilis","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3567","name":"Kirikkale","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3568","name":"Kirklareli","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3569","name":"Kirsehir","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3570","name":"Kocaeli","country_id":"227","created_at":"2024-01-21 12:47:08","updated_at":"2024-01-21 12:47:08","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3571","name":"Konya","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3572","name":"Kutahya","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3573","name":"Lefkosa","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3574","name":"Malatya","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3575","name":"Manisa","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3576","name":"Mardin","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3577","name":"Mugla","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3578","name":"Mus","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3579","name":"Nevsehir","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3580","name":"Nigde","country_id":"227","created_at":"2024-01-21 12:47:09","updated_at":"2024-01-21 12:47:09","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3581","name":"Ordu","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3582","name":"Osmaniye","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3583","name":"Rize","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3584","name":"Sakarya","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3585","name":"Samsun","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3586","name":"Sanliurfa","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3587","name":"Siirt","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3588","name":"Sinop","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3589","name":"Sirnak","country_id":"227","created_at":"2024-01-21 12:47:10","updated_at":"2024-01-21 12:47:10","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3590","name":"Sivas","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3591","name":"Tekirdag","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3592","name":"Tokat","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3593","name":"Trabzon","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3594","name":"Tunceli","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3595","name":"Usak","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3596","name":"Van","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3597","name":"Yalova","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3598","name":"Yozgat","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3599","name":"Zonguldak","country_id":"227","created_at":"2024-01-21 12:47:11","updated_at":"2024-01-21 12:47:11","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3600","name":"Ahal","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3601","name":"Asgabat","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3602","name":"Balkan","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3603","name":"Dasoguz","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3604","name":"Lebap","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3605","name":"Mari","country_id":"228","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3606","name":"Grand Turk","country_id":"229","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3607","name":"South Caicos and East Caicos","country_id":"229","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3608","name":"Funafuti","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3609","name":"Nanumanga","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3610","name":"Nanumea","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3611","name":"Niutao","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3612","name":"Nui","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3613","name":"Nukufetau","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3614","name":"Nukulaelae","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3615","name":"Vaitupu","country_id":"230","created_at":"2024-01-21 12:47:12","updated_at":"2024-01-21 12:47:12","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3616","name":"Cherkas ka","country_id":"232","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3617","name":"Chernihivs ka","country_id":"232","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3618","name":"Chernivets ka","country_id":"232","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3619","name":"Crimea","country_id":"232","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3620","name":"Dnipropetrovska","country_id":"232","created_at":"2024-01-21 12:47:13","updated_at":"2024-01-21 12:47:13","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3621","name":"Donets ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3622","name":"Ivano-Frankivs ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3623","name":"Kharkiv","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3624","name":"Kharkov","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3625","name":"Khersonska","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3626","name":"Khmel nyts ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3627","name":"Kirovohrad","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3628","name":"Krym","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3629","name":"Kyyiv","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3630","name":"Kyyivs ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3631","name":"L vivs ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3632","name":"Luhans ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3633","name":"Mykolayivs ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3634","name":"Odes ka","country_id":"232","created_at":"2024-01-21 12:47:14","updated_at":"2024-01-21 12:47:14","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3635","name":"Odessa","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3636","name":"Poltavs ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3637","name":"Rivnens ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3638","name":"Sevastopol ","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3639","name":"Sums ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3640","name":"Ternopil s ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3641","name":"Volyns ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3642","name":"Vynnyts ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3643","name":"Zakarpats ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3644","name":"Zaporizhia","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3645","name":"Zhytomyrs ka","country_id":"232","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3646","name":"Abu Zabi","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3647","name":"Ajman","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3648","name":"Dubai","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3649","name":"Ras al-Khaymah","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3650","name":"Sharjah","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3651","name":"Sharjha","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3652","name":"Umm al Qaywayn","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3653","name":"al-Fujayrah","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3654","name":"ash-Shariqah","country_id":"233","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3655","name":"Aberdeen","country_id":"234","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3656","name":"Aberdeenshire","country_id":"234","created_at":"2024-01-21 12:47:15","updated_at":"2024-01-21 12:47:15","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3657","name":"Argyll","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3658","name":"Bedfordshire","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3659","name":"Belfast","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3660","name":"Berkshire","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3661","name":"Birmingham","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3662","name":"Brechin","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3663","name":"Bridgnorth","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3664","name":"Bristol","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3665","name":"Buckinghamshire","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3666","name":"Cambridge","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3667","name":"Cambridgeshire","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3668","name":"Channel Islands","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3669","name":"Cheshire","country_id":"234","created_at":"2024-01-21 12:47:16","updated_at":"2024-01-21 12:47:16","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3670","name":"Cleveland","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3671","name":"Co Fermanagh","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3672","name":"Conwy","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3673","name":"Cornwall","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3674","name":"Coventry","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3675","name":"Craven Arms","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3676","name":"Cumbria","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3677","name":"Denbighshire","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3678","name":"Derby","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3679","name":"Derbyshire","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3680","name":"Devon","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3681","name":"Dial Code Dungannon","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3682","name":"Didcot","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3683","name":"Dorset","country_id":"234","created_at":"2024-01-21 12:47:17","updated_at":"2024-01-21 12:47:17","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3684","name":"Dunbartonshire","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3685","name":"Durham","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3686","name":"East Dunbartonshire","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3687","name":"East Lothian","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3688","name":"East Midlands","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3689","name":"East Sussex","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3690","name":"East Yorkshire","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3691","name":"England","country_id":"234","created_at":"2024-01-21 12:47:18","updated_at":"2024-01-21 12:47:18","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3692","name":"Essex","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3693","name":"Fermanagh","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3694","name":"Fife","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3695","name":"Flintshire","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3696","name":"Fulham","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3697","name":"Gainsborough","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3698","name":"Glocestershire","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3699","name":"Gwent","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3700","name":"Hampshire","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3701","name":"Hants","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3702","name":"Herefordshire","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3703","name":"Hertfordshire","country_id":"234","created_at":"2024-01-21 12:47:21","updated_at":"2024-01-21 12:47:21","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3704","name":"Ireland","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3705","name":"Isle Of Man","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3706","name":"Isle of Wight","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3707","name":"Kenford","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3708","name":"Kent","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3709","name":"Kilmarnock","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3710","name":"Lanarkshire","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3711","name":"Lancashire","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3712","name":"Leicestershire","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3713","name":"Lincolnshire","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3714","name":"Llanymynech","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3715","name":"London","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3716","name":"Ludlow","country_id":"234","created_at":"2024-01-21 12:47:22","updated_at":"2024-01-21 12:47:22","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3717","name":"Mayfair","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3718","name":"Merseyside","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3719","name":"Mid Glamorgan","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3720","name":"Middlesex","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3721","name":"Mildenhall","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3722","name":"Monmouthshire","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3723","name":"Newton Stewart","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3724","name":"Norfolk","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3725","name":"North Humberside","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3726","name":"North Yorkshire","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3727","name":"Northamptonshire","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3728","name":"Northants","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3729","name":"Northern Ireland","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3730","name":"Northumberland","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3731","name":"Nottinghamshire","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3732","name":"Oxford","country_id":"234","created_at":"2024-01-21 12:47:23","updated_at":"2024-01-21 12:47:23","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3733","name":"Powys","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3734","name":"Roos-shire","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3735","name":"SUSSEX","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3736","name":"Sark","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3737","name":"Scotland","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3738","name":"Scottish Borders","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3739","name":"Shropshire","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3740","name":"Somerset","country_id":"234","created_at":"2024-01-21 12:47:24","updated_at":"2024-01-21 12:47:24","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3741","name":"South Glamorgan","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3742","name":"South Wales","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3743","name":"South Yorkshire","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3744","name":"Southwell","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3745","name":"Staffordshire","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3746","name":"Strabane","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3747","name":"Suffolk","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3748","name":"Surrey","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3749","name":"Twickenham","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3750","name":"Tyne and Wear","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3751","name":"Tyrone","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3752","name":"Utah","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3753","name":"Wales","country_id":"234","created_at":"2024-01-21 12:47:25","updated_at":"2024-01-21 12:47:25","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3754","name":"Warwickshire","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3755","name":"West Lothian","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3756","name":"West Midlands","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3757","name":"West Sussex","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3758","name":"West Yorkshire","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3759","name":"Whissendine","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3760","name":"Wiltshire","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3761","name":"Wokingham","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3762","name":"Worcestershire","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3763","name":"Wrexham","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3764","name":"Wurttemberg","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3765","name":"Yorkshire","country_id":"234","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3766","name":"Alabama","country_id":"235","created_at":"2024-01-21 12:47:26","updated_at":"2024-01-21 12:47:26","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3767","name":"Alaska","country_id":"235","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3768","name":"Arizona","country_id":"235","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3769","name":"Arkansas","country_id":"235","created_at":"2024-01-21 12:47:27","updated_at":"2024-01-21 12:47:27","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3770","name":"Byram","country_id":"235","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3771","name":"California","country_id":"235","created_at":"2024-01-21 12:47:28","updated_at":"2024-01-21 12:47:28","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3772","name":"Cokato","country_id":"235","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3773","name":"Colorado","country_id":"235","created_at":"2024-01-21 12:47:31","updated_at":"2024-01-21 12:47:31","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3774","name":"Connecticut","country_id":"235","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3775","name":"Delaware","country_id":"235","created_at":"2024-01-21 12:47:32","updated_at":"2024-01-21 12:47:32","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3776","name":"District of Columbia","country_id":"235","created_at":"2024-01-21 12:47:33","updated_at":"2024-01-21 12:47:33","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3777","name":"Georgia","country_id":"235","created_at":"2024-01-21 12:47:35","updated_at":"2024-01-21 12:47:35","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3778","name":"Hawaii","country_id":"235","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3779","name":"Idaho","country_id":"235","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3780","name":"Illinois","country_id":"235","created_at":"2024-01-21 12:47:36","updated_at":"2024-01-21 12:47:36","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3781","name":"Indiana","country_id":"235","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3782","name":"Iowa","country_id":"235","created_at":"2024-01-21 12:47:38","updated_at":"2024-01-21 12:47:38","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3783","name":"Kansas","country_id":"235","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3784","name":"Kentucky","country_id":"235","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3785","name":"Louisiana","country_id":"235","created_at":"2024-01-21 12:47:39","updated_at":"2024-01-21 12:47:39","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3786","name":"Lowa","country_id":"235","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3787","name":"Maine","country_id":"235","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3788","name":"Maryland","country_id":"235","created_at":"2024-01-21 12:47:40","updated_at":"2024-01-21 12:47:40","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3789","name":"Massachusetts","country_id":"235","created_at":"2024-01-21 12:47:41","updated_at":"2024-01-21 12:47:41","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3790","name":"Medfield","country_id":"235","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3791","name":"Michigan","country_id":"235","created_at":"2024-01-21 12:47:42","updated_at":"2024-01-21 12:47:42","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3792","name":"Minnesota","country_id":"235","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3793","name":"Mississippi","country_id":"235","created_at":"2024-01-21 12:47:43","updated_at":"2024-01-21 12:47:43","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3794","name":"Missouri","country_id":"235","created_at":"2024-01-21 12:47:44","updated_at":"2024-01-21 12:47:44","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3795","name":"Nebraska","country_id":"235","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3796","name":"Nevada","country_id":"235","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3797","name":"New Hampshire","country_id":"235","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3798","name":"New Jersey","country_id":"235","created_at":"2024-01-21 12:47:45","updated_at":"2024-01-21 12:47:45","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3799","name":"New Jersy","country_id":"235","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3800","name":"New Mexico","country_id":"235","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3801","name":"New York","country_id":"235","created_at":"2024-01-21 12:47:46","updated_at":"2024-01-21 12:47:46","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3802","name":"North Carolina","country_id":"235","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3803","name":"North Dakota","country_id":"235","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3804","name":"Ohio","country_id":"235","created_at":"2024-01-21 12:47:48","updated_at":"2024-01-21 12:47:48","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3805","name":"Oklahoma","country_id":"235","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3806","name":"Oregon","country_id":"235","created_at":"2024-01-21 12:47:49","updated_at":"2024-01-21 12:47:49","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3807","name":"Pennsylvania","country_id":"235","created_at":"2024-01-21 12:47:50","updated_at":"2024-01-21 12:47:50","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3808","name":"Ramey","country_id":"235","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3809","name":"Rhode Island","country_id":"235","created_at":"2024-01-21 12:47:51","updated_at":"2024-01-21 12:47:51","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3810","name":"South Carolina","country_id":"235","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3811","name":"South Dakota","country_id":"235","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3812","name":"Sublimity","country_id":"235","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3813","name":"Tennessee","country_id":"235","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3814","name":"Texas","country_id":"235","created_at":"2024-01-21 12:47:52","updated_at":"2024-01-21 12:47:52","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3815","name":"Trimble","country_id":"235","created_at":"2024-01-21 12:47:53","updated_at":"2024-01-21 12:47:53","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3816","name":"Vermont","country_id":"235","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3817","name":"Virginia","country_id":"235","created_at":"2024-01-21 12:47:54","updated_at":"2024-01-21 12:47:54","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3818","name":"Washington","country_id":"235","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3819","name":"West Virginia","country_id":"235","created_at":"2024-01-21 12:47:55","updated_at":"2024-01-21 12:47:55","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3820","name":"Wisconsin","country_id":"235","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3821","name":"Wyoming","country_id":"235","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3822","name":"United States Minor Outlying I","country_id":"236","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3823","name":"Artigas","country_id":"237","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3824","name":"Canelones","country_id":"237","created_at":"2024-01-21 12:47:56","updated_at":"2024-01-21 12:47:56","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3825","name":"Cerro Largo","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3826","name":"Colonia","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3827","name":"Durazno","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3828","name":"Flores","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3829","name":"Lavalleja","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3830","name":"Maldonado","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3831","name":"Montevideo","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3832","name":"Paysandu","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3833","name":"Rivera","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3834","name":"Rocha","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3835","name":"Salto","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3836","name":"Soriano","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3837","name":"Tacuarembo","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3838","name":"Treinta y Tres","country_id":"237","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3839","name":"Andijon","country_id":"238","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3840","name":"Buhoro","country_id":"238","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3841","name":"Cizah","country_id":"238","created_at":"2024-01-21 12:47:57","updated_at":"2024-01-21 12:47:57","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3842","name":"Fargona","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3843","name":"Horazm","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3844","name":"Kaskadar","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3845","name":"Korakalpogiston","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3846","name":"Namangan","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3847","name":"Navoi","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3848","name":"Samarkand","country_id":"238","created_at":"2024-01-21 12:47:58","updated_at":"2024-01-21 12:47:58","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3849","name":"Sirdare","country_id":"238","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3850","name":"Surhondar","country_id":"238","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3851","name":"Toskent","country_id":"238","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3852","name":"Malampa","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3853","name":"Penama","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3854","name":"Sanma","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3855","name":"Shefa","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3856","name":"Tafea","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3857","name":"Torba","country_id":"239","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3858","name":"Anzoategui","country_id":"240","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3859","name":"Apure","country_id":"240","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3860","name":"Aragua","country_id":"240","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3861","name":"Barinas","country_id":"240","created_at":"2024-01-21 12:47:59","updated_at":"2024-01-21 12:47:59","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3862","name":"Carabobo","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3863","name":"Cojedes","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3864","name":"Delta Amacuro","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3865","name":"Falcon","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3866","name":"Guarico","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3867","name":"Lara","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3868","name":"Merida","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3869","name":"Miranda","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3870","name":"Monagas","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3871","name":"Nueva Esparta","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3872","name":"Portuguesa","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3873","name":"Tachira","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3874","name":"Trujillo","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3875","name":"Vargas","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3876","name":"Yaracuy","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3877","name":"Zulia","country_id":"240","created_at":"2024-01-21 12:48:00","updated_at":"2024-01-21 12:48:00","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3878","name":"Bac Giang","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3879","name":"Binh Dinh","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3880","name":"Binh Duong","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3881","name":"Da Nang","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3882","name":"Dong Bang Song Cuu Long","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3883","name":"Dong Bang Song Hong","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3884","name":"Dong Nai","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3885","name":"Dong Nam Bo","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3886","name":"Duyen Hai Mien Trung","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3887","name":"Hanoi","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3888","name":"Hung Yen","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3889","name":"Khu Bon Cu","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3890","name":"Long An","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3891","name":"Mien Nui Va Trung Du","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3892","name":"Thai Nguyen","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3893","name":"Thanh Pho Ho Chi Minh","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3894","name":"Thu Do Ha Noi","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3895","name":"Tinh Can Tho","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3896","name":"Tinh Da Nang","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3897","name":"Tinh Gia Lai","country_id":"241","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3898","name":"Anegada","country_id":"242","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3899","name":"Jost van Dyke","country_id":"242","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3900","name":"Tortola","country_id":"242","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3901","name":"Saint Croix","country_id":"243","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3902","name":"Alo","country_id":"244","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3903","name":"Singave","country_id":"244","created_at":"2024-01-21 12:48:01","updated_at":"2024-01-21 12:48:01","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3904","name":"Wallis","country_id":"244","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3905","name":"Bu Jaydur","country_id":"150","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3906","name":"Wad-adh-Dhahab","country_id":"150","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3907","name":"al- Ayun","country_id":"150","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3908","name":"as-Samarah","country_id":"150","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3909","name":" Adan","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3910","name":"Abyan","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3911","name":"Dhamar","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3912","name":"Hadramaut","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3913","name":"Hajjah","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3914","name":"Hudaydah","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3915","name":"Ibb","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3916","name":"Lahij","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3917","name":"Ma rib","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3918","name":"Madinat San a","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3919","name":"Sa dah","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3920","name":"Sana","country_id":"246","created_at":"2024-01-21 12:48:02","updated_at":"2024-01-21 12:48:02","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3921","name":"Shabwah","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3922","name":"Ta izz","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3923","name":"al-Bayda","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3924","name":"al-Hudaydah","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3925","name":"al-Jawf","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3926","name":"al-Mahrah","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3927","name":"al-Mahwit","country_id":"246","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3928","name":"Copperbelt","country_id":"247","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3929","name":"Luapala","country_id":"247","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3930","name":"Lusaka","country_id":"247","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3931","name":"North-Western","country_id":"247","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3932","name":"Bulawayo","country_id":"248","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3933","name":"Harare","country_id":"248","created_at":"2024-01-21 12:48:03","updated_at":"2024-01-21 12:48:03","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3934","name":"Manicaland","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3935","name":"Mashonaland Central","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3936","name":"Mashonaland East","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3937","name":"Mashonaland West","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3938","name":"Masvingo","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3939","name":"Matabeleland North","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3940","name":"Matabeleland South","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3941","name":"Midlands","country_id":"248","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3942","name":"Badakhshan","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3943","name":"Badgis","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3944","name":"Baglan","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3945","name":"Balkh","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3946","name":"Bamiyan","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3947","name":"Farah","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3948","name":"Faryab","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3949","name":"Gawr","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3950","name":"Gazni","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3951","name":"Herat","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3952","name":"Hilmand","country_id":"250","created_at":"2024-01-21 12:48:04","updated_at":"2024-01-21 12:48:04","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3953","name":"Jawzjan","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3954","name":"Kabul","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3955","name":"Kapisa","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3956","name":"Khawst","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3957","name":"Kunar","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3958","name":"Lagman","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3959","name":"Lawghar","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3960","name":"Nangarhar","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3961","name":"Nimruz","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3962","name":"Nuristan","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3963","name":"Paktika","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3964","name":"Paktiya","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3965","name":"Parwan","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3966","name":"Qandahar","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3967","name":"Qunduz","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3968","name":"Samangan","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3969","name":"Sar-e Pul","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3970","name":"Takhar","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3971","name":"Uruzgan","country_id":"250","created_at":"2024-01-21 12:48:05","updated_at":"2024-01-21 12:48:05","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3972","name":"Wardag","country_id":"250","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"}, +{"id":"3973","name":"Zabul","country_id":"250","created_at":"2024-01-21 12:48:06","updated_at":"2024-01-21 12:48:06","translations":null,"timezone":null,"lat":null,"lng":null,"is_activated":"1"} +] + diff --git a/database/data/cities.sql b/database/data/cities.sql deleted file mode 100644 index 7d2ea3f..0000000 --- a/database/data/cities.sql +++ /dev/null @@ -1,3981 +0,0 @@ -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES - (1, 'القاهرة', 65, '2020-06-17 12:54:28', '2020-08-23 09:24:11', NULL, NULL, NULL, NULL, 1), - (2, 'الجيزة', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (3, 'الأسكندرية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (4, 'الدقهلية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (5, 'البحر الأحمر', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (6, 'البحيرة', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (7, 'الفيوم', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (8, 'الغربية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (9, 'الإسماعلية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (10, 'المنوفية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (11, 'المنيا', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (12, 'القليوبية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (13, 'الوادي الجديد', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (14, 'السويس', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (15, 'اسوان', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (16, 'اسيوط', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (17, 'بني سويف', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (18, 'بورسعيد', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (19, 'دمياط', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (20, 'الشرقية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (21, 'جنوب سيناء', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (22, 'كفر الشيخ', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (23, 'مطروح', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (24, 'الأقصر', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (25, 'قنا', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (26, 'شمال سيناء', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (27, 'سوهاج', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (28, 'جنوب الوادي', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (29, 'القاهرة الجديدة', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (30, 'حلوان', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (31, 'الزقازيق', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (32, 'المنصورة', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (33, 'الاسماعيلية', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (34, 'الغردقة', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (35, 'بنها', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (36, 'بور سعيد', 65, '2020-06-17 12:54:28', '2020-07-27 08:18:58', NULL, NULL, NULL, NULL, 1), - (37, 'الرياض', 194, '2020-12-06 03:52:40', '2020-12-06 03:52:40', NULL, NULL, NULL, NULL, 1), - (38, 'مكة المكرمة', 194, '2020-12-06 03:53:03', '2020-12-06 03:53:03', NULL, NULL, NULL, NULL, 1), - (39, 'المدينة المنورة', 194, '2020-12-06 03:53:21', '2020-12-06 03:53:21', NULL, NULL, NULL, NULL, 1), - (40, 'القصيم', 194, '2020-12-06 03:53:38', '2020-12-06 03:53:38', NULL, NULL, NULL, NULL, 1), - (41, 'الشرقية', 194, '2020-12-06 03:53:55', '2020-12-06 03:53:55', NULL, NULL, NULL, NULL, 1), - (42, 'نجران', 194, '2020-12-06 03:54:11', '2020-12-06 03:54:11', NULL, NULL, NULL, NULL, 1), - (43, 'الحدود الشمالية', 194, '2020-12-06 03:54:29', '2020-12-06 03:54:29', NULL, NULL, NULL, NULL, 1), - (44, 'الجوف', 194, '2020-12-06 03:54:43', '2020-12-06 03:54:43', NULL, NULL, NULL, NULL, 1), - (45, 'حائل', 194, '2020-12-06 03:54:59', '2020-12-06 03:54:59', NULL, NULL, NULL, NULL, 1), - (46, 'الباحة', 194, '2020-12-06 03:55:13', '2020-12-06 03:55:13', NULL, NULL, NULL, NULL, 1), - (47, 'عسير', 194, '2020-12-06 03:55:26', '2020-12-06 03:55:26', NULL, NULL, NULL, NULL, 1), - (48, 'جازان', 194, '2020-12-06 03:55:48', '2020-12-06 03:55:48', NULL, NULL, NULL, NULL, 1), - (49, 'تبوك', 194, '2020-12-06 03:56:01', '2020-12-06 03:56:01', NULL, NULL, NULL, NULL, 1), - (50, 'Berat', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (51, 'Bulqize', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (52, 'Delvine', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (53, 'Devoll', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (54, 'Dibre', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (55, 'Durres', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (56, 'Elbasan', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (57, 'Fier', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (58, 'Gjirokaster', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (59, 'Gramsh', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (60, 'Has', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (61, 'Kavaje', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (62, 'Kolonje', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (63, 'Korce', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (64, 'Kruje', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (65, 'Kucove', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (66, 'Kukes', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (67, 'Kurbin', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (68, 'Lezhe', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (69, 'Librazhd', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (70, 'Lushnje', 2, '2024-01-21 11:48:33', '2024-01-21 11:48:33', NULL, NULL, NULL, NULL, 1), - (71, 'Mallakaster', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (72, 'Malsi e Madhe', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (73, 'Mat', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (74, 'Mirdite', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (75, 'Peqin', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (76, 'Permet', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (77, 'Pogradec', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (78, 'Puke', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (79, 'Sarande', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (80, 'Shkoder', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (81, 'Skrapar', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (82, 'Tepelene', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (83, 'Tirane', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (84, 'Tropoje', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (85, 'Vlore', 2, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (86, ' Ayn Daflah', 3, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), -(87, ' Ayn Tamushanat', 3, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (88, 'Adrar', 3, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (89, 'Algiers', 3, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (90, 'Annabah', 3, '2024-01-21 11:48:34', '2024-01-21 11:48:34', NULL, NULL, NULL, NULL, 1), - (91, 'Bashshar', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (92, 'Batnah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (93, 'Bijayah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (94, 'Biskrah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (95, 'Blidah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (96, 'Buirah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (97, 'Bumardas', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (98, 'Burj Bu Arririj', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (99, 'Ghalizan', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (100, 'Ghardayah', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (101, 'Ilizi', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (102, 'Jijili', 3, '2024-01-21 11:48:35', '2024-01-21 11:48:35', NULL, NULL, NULL, NULL, 1), - (103, 'Jilfah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (104, 'Khanshalah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (105, 'Masilah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (106, 'Midyah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (107, 'Milah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (108, 'Muaskar', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (109, 'Mustaghanam', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (110, 'Naama', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (111, 'Oran', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (112, 'Ouargla', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (113, 'Qalmah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (114, 'Qustantinah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (115, 'Sakikdah', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (116, 'Satif', 3, '2024-01-21 11:48:36', '2024-01-21 11:48:36', NULL, NULL, NULL, NULL, 1), - (117, 'Sayda ', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), -(118, 'Sidi ban-al- Abbas', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (119, 'Suq Ahras', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (120, 'Tamanghasat', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (121, 'Tibazah', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (122, 'Tibissah', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (123, 'Tilimsan', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (124, 'Tinduf', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (125, 'Tisamsilt', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (126, 'Tiyarat', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (127, 'Tizi Wazu', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (128, 'Umm-al-Bawaghi', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (129, 'Wahran', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (130, 'Warqla', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (131, 'Wilaya d Alger', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (132, 'Wilaya de Bejaia', 3, '2024-01-21 11:48:37', '2024-01-21 11:48:37', NULL, NULL, NULL, NULL, 1), - (133, 'Wilaya de Constantine', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (134, 'al-Aghwat', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (135, 'al-Bayadh', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (136, 'al-Jaza ir', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), -(137, 'al-Wad', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), -(138, 'ash-Shalif', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), -(139, 'at-Tarif', 3, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), -(140, 'Eastern', 4, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), -(141, 'Manu a', 4, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (142, 'Swains Island', 4, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (143, 'Western', 4, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (144, 'Andorra la Vella', 5, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (145, 'Canillo', 5, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (146, 'Encamp', 5, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (147, 'La Massana', 5, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (148, 'Les Escaldes', 5, '2024-01-21 11:48:38', '2024-01-21 11:48:38', NULL, NULL, NULL, NULL, 1), - (149, 'Ordino', 5, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (150, 'Sant Julia de Loria', 5, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (151, 'Bengo', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (152, 'Benguela', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (153, 'Bie', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (154, 'Cabinda', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (155, 'Cunene', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (156, 'Huambo', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (157, 'Huila', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (158, 'Kuando-Kubango', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (159, 'Kwanza Norte', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (160, 'Kwanza Sul', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (161, 'Luanda', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (162, 'Lunda Norte', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (163, 'Lunda Sul', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (164, 'Malanje', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (165, 'Moxico', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (166, 'Namibe', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (167, 'Uige', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (168, 'Zaire', 6, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (169, 'Other Provinces', 7, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (170, 'Sector claimed by Argentina/Ch', 8, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (171, 'Sector claimed by Argentina/UK', 8, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (172, 'Sector claimed by Australia', 8, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (173, 'Sector claimed by France', 8, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (174, 'Sector claimed by New Zealand', 8, '2024-01-21 11:48:39', '2024-01-21 11:48:39', NULL, NULL, NULL, NULL, 1), - (175, 'Sector claimed by Norway', 8, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (176, 'Unclaimed Sector', 8, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (177, 'Barbuda', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (178, 'Saint George', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (179, 'Saint John', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (180, 'Saint Mary', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (181, 'Saint Paul', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (182, 'Saint Peter', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (183, 'Saint Philip', 9, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (184, 'Buenos Aires', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (185, 'Catamarca', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (186, 'Chaco', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (187, 'Chubut', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (188, 'Cordoba', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (189, 'Corrientes', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (190, 'Distrito Federal', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (191, 'Entre Rios', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (192, 'Formosa', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (193, 'Jujuy', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (194, 'La Pampa', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (195, 'La Rioja', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (196, 'Mendoza', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (197, 'Misiones', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (198, 'Neuquen', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (199, 'Rio Negro', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (200, 'Salta', 10, '2024-01-21 11:48:40', '2024-01-21 11:48:40', NULL, NULL, NULL, NULL, 1), - (201, 'San Juan', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (202, 'San Luis', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (203, 'Santa Cruz', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (204, 'Santa Fe', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (205, 'Santiago del Estero', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (206, 'Tierra del Fuego', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (207, 'Tucuman', 10, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (208, 'Aragatsotn', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (209, 'Ararat', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (210, 'Armavir', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (211, 'Gegharkunik', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (212, 'Kotaik', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (213, 'Lori', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (214, 'Shirak', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (215, 'Stepanakert', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (216, 'Syunik', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (217, 'Tavush', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (218, 'Vayots Dzor', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (219, 'Yerevan', 11, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (220, 'Aruba', 12, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (221, 'Auckland', 13, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (222, 'Australian Capital Territory', 13, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (223, 'Balgowlah', 13, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (224, 'Balmain', 13, '2024-01-21 11:48:41', '2024-01-21 11:48:41', NULL, NULL, NULL, NULL, 1), - (225, 'Bankstown', 13, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, NULL, NULL, NULL, 1), - (226, 'Baulkham Hills', 13, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, NULL, NULL, NULL, 1), - (227, 'Bonnet Bay', 13, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, NULL, NULL, NULL, 1), - (228, 'Camberwell', 13, '2024-01-21 11:48:42', '2024-01-21 11:48:42', NULL, NULL, NULL, NULL, 1), - (229, 'Berat', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (230, 'Bulqize', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (231, 'Delvine', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (232, 'Devoll', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (233, 'Dibre', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (234, 'Durres', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (235, 'Elbasan', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (236, 'Fier', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (237, 'Gjirokaster', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (238, 'Gramsh', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (239, 'Has', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (240, 'Kavaje', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (241, 'Kolonje', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (242, 'Korce', 2, '2024-01-21 11:50:05', '2024-01-21 11:50:05', NULL, NULL, NULL, NULL, 1), - (243, 'Kruje', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (244, 'Kucove', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (245, 'Kukes', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (246, 'Kurbin', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (247, 'Lezhe', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (248, 'Librazhd', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (249, 'Lushnje', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (250, 'Mallakaster', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (251, 'Malsi e Madhe', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (252, 'Mat', 2, '2024-01-21 11:50:06', '2024-01-21 11:50:06', NULL, NULL, NULL, NULL, 1), - (253, 'Berat', 2, '2024-01-21 11:50:16', '2024-01-21 11:50:16', NULL, NULL, NULL, NULL, 1), - (254, 'Berat', 2, '2024-01-21 11:50:18', '2024-01-21 11:50:18', NULL, NULL, NULL, NULL, 1), - (255, 'Carole Park', 13, '2024-01-21 11:51:29', '2024-01-21 11:51:29', NULL, NULL, NULL, NULL, 1), - (256, 'Castle Hill', 13, '2024-01-21 11:51:29', '2024-01-21 11:51:29', NULL, NULL, NULL, NULL, 1), - (257, 'Caulfield', 13, '2024-01-21 11:51:29', '2024-01-21 11:51:29', NULL, NULL, NULL, NULL, 1), - (258, 'Chatswood', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (259, 'Cheltenham', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (260, 'Cherrybrook', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (261, 'Clayton', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (262, 'Collingwood', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (263, 'Frenchs Forest', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (264, 'Hawthorn', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (265, 'Jannnali', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (266, 'Knoxfield', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (267, 'Melbourne', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (268, 'New South Wales', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (269, 'Northern Territory', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (270, 'Perth', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (271, 'Queensland', 13, '2024-01-21 12:03:33', '2024-01-21 12:03:33', NULL, NULL, NULL, NULL, 1), - (272, 'South Australia', 13, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, NULL, NULL, NULL, 1), - (273, 'Tasmania', 13, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, NULL, NULL, NULL, 1), - (274, 'Templestowe', 13, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, NULL, NULL, NULL, 1), - (275, 'Victoria', 13, '2024-01-21 12:03:34', '2024-01-21 12:03:34', NULL, NULL, NULL, NULL, 1), - (276, 'Werribee south', 13, '2024-01-21 12:03:35', '2024-01-21 12:03:35', NULL, NULL, NULL, NULL, 1), - (277, 'Western Australia', 13, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (278, 'Wheeler', 13, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (279, 'Bundesland Salzburg', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (280, 'Bundesland Steiermark', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (281, 'Bundesland Tirol', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (282, 'Burgenland', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (283, 'Carinthia', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (284, 'Karnten', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (285, 'Liezen', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (286, 'Lower Austria', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (287, 'Niederosterreich', 14, '2024-01-21 12:03:36', '2024-01-21 12:03:36', NULL, NULL, NULL, NULL, 1), - (288, 'Oberosterreich', 14, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, NULL, NULL, NULL, 1), - (289, 'Salzburg', 14, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, NULL, NULL, NULL, 1), - (290, 'Schleswig-Holstein', 14, '2024-01-21 12:03:37', '2024-01-21 12:03:37', NULL, NULL, NULL, NULL, 1), - (291, 'Steiermark', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (292, 'Styria', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (293, 'Tirol', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (294, 'Upper Austria', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (295, 'Vorarlberg', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (296, 'Wien', 14, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (297, 'Abseron', 15, '2024-01-21 12:03:38', '2024-01-21 12:03:38', NULL, NULL, NULL, NULL, 1), - (298, 'Baki Sahari', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (299, 'Ganca', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (300, 'Ganja', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (301, 'Kalbacar', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (302, 'Lankaran', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (303, 'Mil-Qarabax', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (304, 'Mugan-Salyan', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (305, 'Nagorni-Qarabax', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (306, 'Naxcivan', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (307, 'Priaraks', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (308, 'Qazax', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (309, 'Saki', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (310, 'Sirvan', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (311, 'Xacmaz', 15, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (312, 'Abaco', 16, '2024-01-21 12:03:39', '2024-01-21 12:03:39', NULL, NULL, NULL, NULL, 1), - (313, 'Acklins Island', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (314, 'Andros', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (315, 'Berry Islands', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (316, 'Biminis', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (317, 'Cat Island', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (318, 'Crooked Island', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (319, 'Eleuthera', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (320, 'Exuma and Cays', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (321, 'Grand Bahama', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (322, 'Inagua Islands', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (323, 'Long Island', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (324, 'Mayaguana', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (325, 'New Providence', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (326, 'Ragged Island', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (327, 'Rum Cay', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (328, 'San Salvador', 16, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (329, ' Isa', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(330, 'Badiyah', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(331, 'Hidd', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(332, 'Jidd Hafs', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(333, 'Mahama', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(334, 'Manama', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(335, 'Sitrah', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(336, 'al-Manamah', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(337, 'al-Muharraq', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), -(338, 'ar-Rifa a', 17, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (339, 'Bagar Hat', 18, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (340, 'Bandarban', 18, '2024-01-21 12:03:40', '2024-01-21 12:03:40', NULL, NULL, NULL, NULL, 1), - (341, 'Barguna', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (342, 'Barisal', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (343, 'Bhola', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (344, 'Bogora', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (345, 'Brahman Bariya', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (346, 'Chandpur', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (347, 'Chattagam', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (348, 'Chittagong Division', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (349, 'Chuadanga', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (350, 'Dhaka', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (351, 'Dinajpur', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (352, 'Faridpur', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (353, 'Feni', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (354, 'Gaybanda', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (355, 'Gazipur', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (356, 'Gopalganj', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (357, 'Habiganj', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (358, 'Jaipur Hat', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (359, 'Jamalpur', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (360, 'Jessor', 18, '2024-01-21 12:03:41', '2024-01-21 12:03:41', NULL, NULL, NULL, NULL, 1), - (361, 'Jhalakati', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (362, 'Jhanaydah', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (363, 'Khagrachhari', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (364, 'Khulna', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (365, 'Kishorganj', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (366, 'Koks Bazar', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (367, 'Komilla', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (368, 'Kurigram', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (369, 'Kushtiya', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (370, 'Lakshmipur', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (371, 'Lalmanir Hat', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (372, 'Madaripur', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (373, 'Magura', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (374, 'Maimansingh', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (375, 'Manikganj', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (376, 'Maulvi Bazar', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (377, 'Meherpur', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (378, 'Munshiganj', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (379, 'Naral', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (380, 'Narayanganj', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (381, 'Narsingdi', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (382, 'Nator', 18, '2024-01-21 12:03:42', '2024-01-21 12:03:42', NULL, NULL, NULL, NULL, 1), - (383, 'Naugaon', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (384, 'Nawabganj', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (385, 'Netrakona', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (386, 'Nilphamari', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (387, 'Noakhali', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (388, 'Pabna', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (389, 'Panchagarh', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (390, 'Patuakhali', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (391, 'Pirojpur', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (392, 'Rajbari', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (393, 'Rajshahi', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (394, 'Rangamati', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (395, 'Rangpur', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (396, 'Satkhira', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (397, 'Shariatpur', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (398, 'Sherpur', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (399, 'Silhat', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (400, 'Sirajganj', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (401, 'Sunamganj', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (402, 'Tangayal', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (403, 'Thakurgaon', 18, '2024-01-21 12:03:43', '2024-01-21 12:03:43', NULL, NULL, NULL, NULL, 1), - (404, 'Christ Church', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (405, 'Saint Andrew', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (406, 'Saint James', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (407, 'Saint Joseph', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (408, 'Saint Lucy', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (409, 'Saint Michael', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (410, 'Saint Thomas', 19, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (411, 'Brest', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (412, 'Homjel ', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), -(413, 'Hrodna', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), -(414, 'Mahiljow', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), -(415, 'Mahilyowskaya Voblasts', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), -(416, 'Minsk', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), -(417, 'Minskaja Voblasts ', 20, '2024-01-21 12:03:44', '2024-01-21 12:03:44', NULL, NULL, NULL, NULL, 1), - (418, 'Petrik', 20, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (419, 'Vicebsk', 20, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (420, 'Antwerpen', 21, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (421, 'Berchem', 21, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (422, 'Brabant', 21, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (423, 'Brabant Wallon', 21, '2024-01-21 12:03:45', '2024-01-21 12:03:45', NULL, NULL, NULL, NULL, 1), - (424, 'Brussel', 21, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, NULL, NULL, NULL, 1), - (425, 'East Flanders', 21, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, NULL, NULL, NULL, 1), - (426, 'Hainaut', 21, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, NULL, NULL, NULL, 1), - (427, 'Liege', 21, '2024-01-21 12:03:46', '2024-01-21 12:03:46', NULL, NULL, NULL, NULL, 1), - (428, 'Limburg', 21, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, NULL, NULL, NULL, 1), - (429, 'Luxembourg', 21, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, NULL, NULL, NULL, 1), - (430, 'Namur', 21, '2024-01-21 12:03:47', '2024-01-21 12:03:47', NULL, NULL, NULL, NULL, 1), - (431, 'Ontario', 21, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, NULL, NULL, NULL, 1), - (432, 'Oost-Vlaanderen', 21, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, NULL, NULL, NULL, 1), - (433, 'Provincie Brabant', 21, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, NULL, NULL, NULL, 1), - (434, 'Vlaams-Brabant', 21, '2024-01-21 12:03:48', '2024-01-21 12:03:48', NULL, NULL, NULL, NULL, 1), - (435, 'Wallonne', 21, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, NULL, NULL, NULL, 1), - (436, 'West-Vlaanderen', 21, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, NULL, NULL, NULL, 1), - (437, 'Belize', 22, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, NULL, NULL, NULL, 1), - (438, 'Cayo', 22, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, NULL, NULL, NULL, 1), - (439, 'Corozal', 22, '2024-01-21 12:03:49', '2024-01-21 12:03:49', NULL, NULL, NULL, NULL, 1), - (440, 'Orange Walk', 22, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (441, 'Stann Creek', 22, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (442, 'Toledo', 22, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (443, 'Alibori', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (444, 'Atacora', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (445, 'Atlantique', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (446, 'Borgou', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (447, 'Collines', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (448, 'Couffo', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (449, 'Donga', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (450, 'Littoral', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (451, 'Mono', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (452, 'Oueme', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (453, 'Plateau', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (454, 'Zou', 23, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (455, 'Hamilton', 24, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (456, 'Bumthang', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (457, 'Chhukha', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (458, 'Chirang', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (459, 'Daga', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (460, 'Geylegphug', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (461, 'Ha', 25, '2024-01-21 12:03:50', '2024-01-21 12:03:50', NULL, NULL, NULL, NULL, 1), - (462, 'Lhuntshi', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (463, 'Mongar', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (464, 'Pemagatsel', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (465, 'Punakha', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (466, 'Rinpung', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (467, 'Samchi', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (468, 'Samdrup Jongkhar', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (469, 'Shemgang', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (470, 'Tashigang', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (471, 'Timphu', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (472, 'Tongsa', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (473, 'Wangdiphodrang', 25, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (474, 'Beni', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (475, 'Chuquisaca', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (476, 'Cochabamba', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (477, 'La Paz', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (478, 'Oruro', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (479, 'Pando', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (480, 'Potosi', 26, '2024-01-21 12:03:51', '2024-01-21 12:03:51', NULL, NULL, NULL, NULL, 1), - (481, 'Tarija', 26, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (482, 'Federacija Bosna i Hercegovina', 28, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (483, 'Republika Srpska', 28, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (484, 'Central Bobonong', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (485, 'Central Boteti', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (486, 'Central Mahalapye', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (487, 'Central Serowe-Palapye', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (488, 'Central Tutume', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (489, 'Chobe', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (490, 'Francistown', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (491, 'Gaborone', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (492, 'Ghanzi', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (493, 'Jwaneng', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (494, 'Kgalagadi North', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (495, 'Kgalagadi South', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (496, 'Kgatleng', 29, '2024-01-21 12:03:52', '2024-01-21 12:03:52', NULL, NULL, NULL, NULL, 1), - (497, 'Kweneng', 29, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, NULL, NULL, NULL, 1), - (498, 'Lobatse', 29, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, NULL, NULL, NULL, 1), - (499, 'Ngamiland', 29, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, NULL, NULL, NULL, 1), - (500, 'Ngwaketse', 29, '2024-01-21 12:03:53', '2024-01-21 12:03:53', NULL, NULL, NULL, NULL, 1), - (501, 'North East', 29, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, NULL, NULL, NULL, 1), - (502, 'Okavango', 29, '2024-01-21 12:03:54', '2024-01-21 12:03:54', NULL, NULL, NULL, NULL, 1), - (503, 'Orapa', 29, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (504, 'Selibe Phikwe', 29, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (505, 'South East', 29, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (506, 'Sowa', 29, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (507, 'Bouvet Island', 30, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (508, 'Acre', 31, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (509, 'Alagoas', 31, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (510, 'Amapa', 31, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (511, 'Amazonas', 31, '2024-01-21 12:03:55', '2024-01-21 12:03:55', NULL, NULL, NULL, NULL, 1), - (512, 'Bahia', 31, '2024-01-21 12:03:56', '2024-01-21 12:03:56', NULL, NULL, NULL, NULL, 1), - (513, 'Ceara', 31, '2024-01-21 12:03:57', '2024-01-21 12:03:57', NULL, NULL, NULL, NULL, 1), - (514, 'Espirito Santo', 31, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, NULL, NULL, NULL, 1), - (515, 'Estado de Sao Paulo', 31, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, NULL, NULL, NULL, 1), - (516, 'Goias', 31, '2024-01-21 12:03:58', '2024-01-21 12:03:58', NULL, NULL, NULL, NULL, 1), - (517, 'Maranhao', 31, '2024-01-21 12:03:59', '2024-01-21 12:03:59', NULL, NULL, NULL, NULL, 1), - (518, 'Mato Grosso', 31, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, NULL, NULL, NULL, 1), - (519, 'Mato Grosso do Sul', 31, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, NULL, NULL, NULL, 1), - (520, 'Minas Gerais', 31, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, NULL, NULL, NULL, 1), - (521, 'Para', 31, '2024-01-21 12:04:00', '2024-01-21 12:04:00', NULL, NULL, NULL, NULL, 1), - (522, 'Paraiba', 31, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, NULL, NULL, NULL, 1), - (523, 'Parana', 31, '2024-01-21 12:04:01', '2024-01-21 12:04:01', NULL, NULL, NULL, NULL, 1), - (524, 'Pernambuco', 31, '2024-01-21 12:04:02', '2024-01-21 12:04:02', NULL, NULL, NULL, NULL, 1), - (525, 'Piaui', 31, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, NULL, NULL, NULL, 1), - (526, 'Rio Grande do Norte', 31, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, NULL, NULL, NULL, 1), - (527, 'Rio Grande do Sul', 31, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, NULL, NULL, NULL, 1), - (528, 'Rio de Janeiro', 31, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES - (529, 'Rondonia', 31, '2024-01-21 12:04:03', '2024-01-21 12:04:03', NULL, NULL, NULL, NULL, 1), - (530, 'Roraima', 31, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (531, 'Santa Catarina', 31, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (532, 'Sao Paulo', 31, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (533, 'Sergipe', 31, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (534, 'Tocantins', 31, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (535, 'British Indian Ocean Territory', 32, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (536, 'Belait', 33, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (537, 'Brunei-Muara', 33, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (538, 'Temburong', 33, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (539, 'Tutong', 33, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (540, 'Blagoevgrad', 34, '2024-01-21 12:04:04', '2024-01-21 12:04:04', NULL, NULL, NULL, NULL, 1), - (541, 'Burgas', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (542, 'Dobrich', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (543, 'Gabrovo', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (544, 'Haskovo', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (545, 'Jambol', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (546, 'Kardzhali', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (547, 'Kjustendil', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (548, 'Lovech', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (549, 'Montana', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (550, 'Oblast Sofiya-Grad', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (551, 'Pazardzhik', 34, '2024-01-21 12:04:05', '2024-01-21 12:04:05', NULL, NULL, NULL, NULL, 1), - (552, 'Pernik', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (553, 'Pleven', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (554, 'Plovdiv', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (555, 'Razgrad', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (556, 'Ruse', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (557, 'Shumen', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (558, 'Silistra', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (559, 'Sliven', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (560, 'Smoljan', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (561, 'Sofija grad', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (562, 'Sofijska oblast', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (563, 'Stara Zagora', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (564, 'Targovishte', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (565, 'Varna', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (566, 'Veliko Tarnovo', 34, '2024-01-21 12:04:06', '2024-01-21 12:04:06', NULL, NULL, NULL, NULL, 1), - (567, 'Vidin', 34, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (568, 'Vraca', 34, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (569, 'Yablaniza', 34, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (570, 'Bale', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (571, 'Bam', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (572, 'Bazega', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (573, 'Bougouriba', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (574, 'Boulgou', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (575, 'Boulkiemde', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (576, 'Comoe', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (577, 'Ganzourgou', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (578, 'Gnagna', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (579, 'Gourma', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (580, 'Houet', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (581, 'Ioba', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (582, 'Kadiogo', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (583, 'Kenedougou', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (584, 'Komandjari', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (585, 'Kompienga', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (586, 'Kossi', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (587, 'Kouritenga', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (588, 'Kourweogo', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (589, 'Leraba', 35, '2024-01-21 12:04:07', '2024-01-21 12:04:07', NULL, NULL, NULL, NULL, 1), - (590, 'Mouhoun', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (591, 'Nahouri', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (592, 'Namentenga', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (593, 'Noumbiel', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (594, 'Oubritenga', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (595, 'Oudalan', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (596, 'Passore', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (597, 'Poni', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (598, 'Sanguie', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (599, 'Sanmatenga', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (600, 'Seno', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (601, 'Sissili', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (602, 'Soum', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (603, 'Sourou', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (604, 'Tapoa', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (605, 'Tuy', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (606, 'Yatenga', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (607, 'Zondoma', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (608, 'Zoundweogo', 35, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (609, 'Bubanza', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (610, 'Bujumbura', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (611, 'Bururi', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (612, 'Cankuzo', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (613, 'Cibitoke', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (614, 'Gitega', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (615, 'Karuzi', 36, '2024-01-21 12:04:08', '2024-01-21 12:04:08', NULL, NULL, NULL, NULL, 1), - (616, 'Kayanza', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (617, 'Kirundo', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (618, 'Makamba', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (619, 'Muramvya', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (620, 'Muyinga', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (621, 'Ngozi', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (622, 'Rutana', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (623, 'Ruyigi', 36, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (624, 'Banteay Mean Chey', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (625, 'Bat Dambang', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (626, 'Kampong Cham', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (627, 'Kampong Chhnang', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (628, 'Kampong Spoeu', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (629, 'Kampong Thum', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (630, 'Kampot', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (631, 'Kandal', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (632, 'Kaoh Kong', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (633, 'Kracheh', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (634, 'Krong Kaeb', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (635, 'Krong Pailin', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (636, 'Krong Preah Sihanouk', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (637, 'Mondol Kiri', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (638, 'Otdar Mean Chey', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (639, 'Phnum Penh', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (640, 'Pousat', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (641, 'Preah Vihear', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (642, 'Prey Veaeng', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (643, 'Rotanak Kiri', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (644, 'Siem Reab', 37, '2024-01-21 12:04:09', '2024-01-21 12:04:09', NULL, NULL, NULL, NULL, 1), - (645, 'Stueng Traeng', 37, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (646, 'Svay Rieng', 37, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (647, 'Takaev', 37, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (648, 'Adamaoua', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (649, 'Centre', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (650, 'Est', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (651, 'Nord', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (652, 'Nord Extreme', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (653, 'Nordouest', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (654, 'Ouest', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (655, 'Sud', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (656, 'Sudouest', 38, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (657, 'Alberta', 39, '2024-01-21 12:04:10', '2024-01-21 12:04:10', NULL, NULL, NULL, NULL, 1), - (658, 'British Columbia', 39, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, NULL, NULL, NULL, 1), - (659, 'Manitoba', 39, '2024-01-21 12:04:11', '2024-01-21 12:04:11', NULL, NULL, NULL, NULL, 1), - (660, 'New Brunswick', 39, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, NULL, NULL, NULL, 1), - (661, 'Newfoundland and Labrador', 39, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, NULL, NULL, NULL, 1), - (662, 'Northwest Territories', 39, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, NULL, NULL, NULL, 1), - (663, 'Nova Scotia', 39, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, NULL, NULL, NULL, 1), - (664, 'Nunavut', 39, '2024-01-21 12:04:12', '2024-01-21 12:04:12', NULL, NULL, NULL, NULL, 1), - (665, 'Prince Edward Island', 39, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, NULL, NULL, NULL, 1), - (666, 'Quebec', 39, '2024-01-21 12:04:14', '2024-01-21 12:04:14', NULL, NULL, NULL, NULL, 1), - (667, 'Saskatchewan', 39, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (668, 'Yukon', 39, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (669, 'Boavista', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (670, 'Brava', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (671, 'Fogo', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (672, 'Maio', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (673, 'Sal', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (674, 'Santo Antao', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (675, 'Sao Nicolau', 40, '2024-01-21 12:04:16', '2024-01-21 12:04:16', NULL, NULL, NULL, NULL, 1), - (676, 'Sao Tiago', 40, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (677, 'Sao Vicente', 40, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (678, 'Grand Cayman', 41, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (679, 'Bamingui-Bangoran', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (680, 'Bangui', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (681, 'Basse-Kotto', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (682, 'Haut-Mbomou', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (683, 'Haute-Kotto', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (684, 'Kemo', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (685, 'Lobaye', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (686, 'Mambere-Kadei', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (687, 'Mbomou', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (688, 'Nana-Gribizi', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (689, 'Nana-Mambere', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (690, 'Ombella Mpoko', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (691, 'Ouaka', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (692, 'Ouham', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (693, 'Ouham-Pende', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (694, 'Sangha-Mbaere', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (695, 'Vakaga', 42, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (696, 'Batha', 43, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (697, 'Biltine', 43, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (698, 'Bourkou-Ennedi-Tibesti', 43, '2024-01-21 12:04:17', '2024-01-21 12:04:17', NULL, NULL, NULL, NULL, 1), - (699, 'Chari-Baguirmi', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (700, 'Guera', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (701, 'Kanem', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (702, 'Lac', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (703, 'Logone Occidental', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (704, 'Logone Oriental', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (705, 'Mayo-Kebbi', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (706, 'Moyen-Chari', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (707, 'Ouaddai', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (708, 'Salamat', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (709, 'Tandjile', 43, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (710, 'Aisen', 44, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (711, 'Antofagasta', 44, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (712, 'Araucania', 44, '2024-01-21 12:04:18', '2024-01-21 12:04:18', NULL, NULL, NULL, NULL, 1), - (713, 'Atacama', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), - (714, 'Bio Bio', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), - (715, 'Coquimbo', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), - (716, 'Libertador General Bernardo O ', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(717, 'Los Lagos', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(718, 'Magellanes', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(719, 'Maule', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(720, 'Metropolitana', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(721, 'Metropolitana de Santiago', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(722, 'Tarapaca', 44, '2024-01-21 12:04:19', '2024-01-21 12:04:19', NULL, NULL, NULL, NULL, 1), -(723, 'Valparaiso', 44, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(724, 'Anhui', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(725, 'Aomen', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(726, 'Beijing', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(727, 'Beijing Shi', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(728, 'Chongqing', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(729, 'Fujian', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(730, 'Gansu', 45, '2024-01-21 12:04:20', '2024-01-21 12:04:20', NULL, NULL, NULL, NULL, 1), -(731, 'Guangdong', 45, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, NULL, NULL, NULL, 1), -(732, 'Guangxi', 45, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, NULL, NULL, NULL, 1), -(733, 'Guizhou', 45, '2024-01-21 12:04:21', '2024-01-21 12:04:21', NULL, NULL, NULL, NULL, 1), -(734, 'Hainan', 45, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, NULL, NULL, NULL, 1), -(735, 'Hebei', 45, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, NULL, NULL, NULL, 1), -(736, 'Heilongjiang', 45, '2024-01-21 12:04:22', '2024-01-21 12:04:22', NULL, NULL, NULL, NULL, 1), -(737, 'Henan', 45, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, NULL, NULL, NULL, 1), -(738, 'Hubei', 45, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, NULL, NULL, NULL, 1), -(739, 'Hunan', 45, '2024-01-21 12:04:23', '2024-01-21 12:04:23', NULL, NULL, NULL, NULL, 1), -(740, 'Jiangsu', 45, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, NULL, NULL, NULL, 1), -(741, 'Jiangxi', 45, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, NULL, NULL, NULL, 1), -(742, 'Jilin', 45, '2024-01-21 12:04:24', '2024-01-21 12:04:24', NULL, NULL, NULL, NULL, 1), -(743, 'Liaoning', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(744, 'Nei Monggol', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(745, 'Ningxia Hui', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(746, 'Qinghai', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(747, 'Shaanxi', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(748, 'Shandong', 45, '2024-01-21 12:04:25', '2024-01-21 12:04:25', NULL, NULL, NULL, NULL, 1), -(749, 'Shanghai', 45, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, NULL, NULL, NULL, 1), -(750, 'Shanxi', 45, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, NULL, NULL, NULL, 1), -(751, 'Sichuan', 45, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, NULL, NULL, NULL, 1), -(752, 'Tianjin', 45, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, NULL, NULL, NULL, 1), -(753, 'Xianggang', 45, '2024-01-21 12:04:26', '2024-01-21 12:04:26', NULL, NULL, NULL, NULL, 1), -(754, 'Xinjiang', 45, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(755, 'Xizang', 45, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(756, 'Yunnan', 45, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(757, 'Zhejiang', 45, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(758, 'Christmas Island', 46, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(759, 'Cocos (Keeling) Islands', 47, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(760, 'Antioquia', 48, '2024-01-21 12:04:27', '2024-01-21 12:04:27', NULL, NULL, NULL, NULL, 1), -(761, 'Arauca', 48, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, NULL, NULL, NULL, 1), -(762, 'Atlantico', 48, '2024-01-21 12:04:28', '2024-01-21 12:04:28', NULL, NULL, NULL, NULL, 1), -(763, 'Bogota', 48, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, NULL, NULL, NULL, 1), -(764, 'Bolivar', 48, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, NULL, NULL, NULL, 1), -(765, 'Boyaca', 48, '2024-01-21 12:04:29', '2024-01-21 12:04:29', NULL, NULL, NULL, NULL, 1), -(766, 'Caldas', 48, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, NULL, NULL, NULL, 1), -(767, 'Caqueta', 48, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, NULL, NULL, NULL, 1), -(768, 'Casanare', 48, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, NULL, NULL, NULL, 1), -(769, 'Cauca', 48, '2024-01-21 12:04:30', '2024-01-21 12:04:30', NULL, NULL, NULL, NULL, 1), -(770, 'Cesar', 48, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, NULL, NULL, NULL, 1), -(771, 'Choco', 48, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, NULL, NULL, NULL, 1), -(772, 'Cundinamarca', 48, '2024-01-21 12:04:31', '2024-01-21 12:04:31', NULL, NULL, NULL, NULL, 1), -(773, 'Guainia', 48, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, NULL, NULL, NULL, 1), -(774, 'Guaviare', 48, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, NULL, NULL, NULL, 1), -(775, 'La Guajira', 48, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, NULL, NULL, NULL, 1), -(776, 'Magdalena', 48, '2024-01-21 12:04:32', '2024-01-21 12:04:32', NULL, NULL, NULL, NULL, 1), -(777, 'Meta', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(778, 'Narino', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(779, 'Norte de Santander', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(780, 'Putumayo', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(781, 'Quindio', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(782, 'Risaralda', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(783, 'San Andres y Providencia', 48, '2024-01-21 12:04:33', '2024-01-21 12:04:33', NULL, NULL, NULL, NULL, 1), -(784, 'Santander', 48, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, NULL, NULL, NULL, 1), -(785, 'Sucre', 48, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, NULL, NULL, NULL, 1), -(786, 'Tolima', 48, '2024-01-21 12:04:34', '2024-01-21 12:04:34', NULL, NULL, NULL, NULL, 1), -(787, 'Valle del Cauca', 48, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(788, 'Vaupes', 48, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(789, 'Vichada', 48, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(790, 'Mwali', 49, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(791, 'Njazidja', 49, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(792, 'Nzwani', 49, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(793, 'Bouenza', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(794, 'Brazzaville', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(795, 'Cuvette', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(796, 'Kouilou', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(797, 'Lekoumou', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(798, 'Likouala', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(799, 'Niari', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(800, 'Plateaux', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(801, 'Pool', 50, '2024-01-21 12:04:35', '2024-01-21 12:04:35', NULL, NULL, NULL, NULL, 1), -(802, 'Sangha', 50, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(803, 'Bandundu', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(804, 'Bas-Congo', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(805, 'Equateur', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(806, 'Haut-Congo', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(807, 'Kasai-Occidental', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(808, 'Kasai-Oriental', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(809, 'Katanga', 51, '2024-01-21 12:04:36', '2024-01-21 12:04:36', NULL, NULL, NULL, NULL, 1), -(810, 'Kinshasa', 51, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(811, 'Maniema', 51, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(812, 'Nord-Kivu', 51, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(813, 'Sud-Kivu', 51, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(814, 'Aitutaki', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(815, 'Atiu', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(816, 'Mangaia', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(817, 'Manihiki', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(818, 'Mauke', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(819, 'Mitiaro', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(820, 'Nassau', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(821, 'Pukapuka', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(822, 'Rakahanga', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(823, 'Rarotonga', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(824, 'Tongareva', 52, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(825, 'Alajuela', 53, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(826, 'Cartago', 53, '2024-01-21 12:04:37', '2024-01-21 12:04:37', NULL, NULL, NULL, NULL, 1), -(827, 'Guanacaste', 53, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(828, 'Heredia', 53, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(829, 'Limon', 53, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(830, 'Puntarenas', 53, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(831, 'San Jose', 53, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(832, 'Abidjan', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(833, 'Agneby', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(834, 'Bafing', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(835, 'Denguele', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(836, 'Dix-huit Montagnes', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(837, 'Fromager', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(838, 'Haut-Sassandra', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(839, 'Lacs', 54, '2024-01-21 12:04:38', '2024-01-21 12:04:38', NULL, NULL, NULL, NULL, 1), -(840, 'Lagunes', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), -(841, 'Marahoue', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), -(842, 'Moyen-Cavally', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), -(843, 'Moyen-Comoe', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), -(844, 'N zi-Comoe', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (845, 'Sassandra', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (846, 'Savanes', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (847, 'Sud-Bandama', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (848, 'Sud-Comoe', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (849, 'Vallee du Bandama', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (850, 'Worodougou', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (851, 'Zanzan', 54, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (852, 'Bjelovar-Bilogora', 55, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (853, 'Dubrovnik-Neretva', 55, '2024-01-21 12:04:39', '2024-01-21 12:04:39', NULL, NULL, NULL, NULL, 1), - (854, 'Grad Zagreb', 55, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, NULL, NULL, NULL, 1), - (855, 'Istra', 55, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, NULL, NULL, NULL, 1), - (856, 'Karlovac', 55, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, NULL, NULL, NULL, 1), - (857, 'Koprivnica-Krizhevci', 55, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, NULL, NULL, NULL, 1), - (858, 'Krapina-Zagorje', 55, '2024-01-21 12:04:40', '2024-01-21 12:04:40', NULL, NULL, NULL, NULL, 1), - (859, 'Lika-Senj', 55, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, NULL, NULL, NULL, 1), - (860, 'Medhimurje', 55, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, NULL, NULL, NULL, 1), - (861, 'Medimurska Zupanija', 55, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, NULL, NULL, NULL, 1), - (862, 'Osijek-Baranja', 55, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, NULL, NULL, NULL, 1), - (863, 'Osjecko-Baranjska Zupanija', 55, '2024-01-21 12:04:41', '2024-01-21 12:04:41', NULL, NULL, NULL, NULL, 1), - (864, 'Pozhega-Slavonija', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (865, 'Primorje-Gorski Kotar', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (866, 'Shibenik-Knin', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (867, 'Sisak-Moslavina', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (868, 'Slavonski Brod-Posavina', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (869, 'Split-Dalmacija', 55, '2024-01-21 12:04:42', '2024-01-21 12:04:42', NULL, NULL, NULL, NULL, 1), - (870, 'Varazhdin', 55, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, NULL, NULL, NULL, 1), - (871, 'Virovitica-Podravina', 55, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, NULL, NULL, NULL, 1), - (872, 'Vukovar-Srijem', 55, '2024-01-21 12:04:43', '2024-01-21 12:04:43', NULL, NULL, NULL, NULL, 1), - (873, 'Zadar', 55, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, NULL, NULL, NULL, 1), - (874, 'Zagreb', 55, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, NULL, NULL, NULL, 1), - (875, 'Camaguey', 56, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, NULL, NULL, NULL, 1), - (876, 'Ciego de Avila', 56, '2024-01-21 12:04:44', '2024-01-21 12:04:44', NULL, NULL, NULL, NULL, 1), - (877, 'Cienfuegos', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (878, 'Ciudad de la Habana', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (879, 'Granma', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (880, 'Guantanamo', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (881, 'Habana', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (882, 'Holguin', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (883, 'Isla de la Juventud', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (884, 'La Habana', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (885, 'Las Tunas', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (886, 'Matanzas', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (887, 'Pinar del Rio', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (888, 'Sancti Spiritus', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (889, 'Santiago de Cuba', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (890, 'Villa Clara', 56, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (891, 'Government controlled area', 58, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (892, 'Limassol', 58, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (893, 'Nicosia District', 58, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (894, 'Paphos', 58, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (895, 'Turkish controlled area', 58, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (896, 'Central Bohemian', 59, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (897, 'Frycovice', 59, '2024-01-21 12:04:45', '2024-01-21 12:04:45', NULL, NULL, NULL, NULL, 1), - (898, 'Jihocesky Kraj', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (899, 'Jihochesky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (900, 'Jihomoravsky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (901, 'Karlovarsky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (902, 'Klecany', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (903, 'Kralovehradecky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (904, 'Liberecky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (905, 'Lipov', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (906, 'Moravskoslezsky', 59, '2024-01-21 12:04:46', '2024-01-21 12:04:46', NULL, NULL, NULL, NULL, 1), - (907, 'Olomoucky', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (908, 'Olomoucky Kraj', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (909, 'Pardubicky', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (910, 'Plzensky', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (911, 'Praha', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (912, 'Rajhrad', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (913, 'Smirice', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (914, 'South Moravian', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (915, 'Straz nad Nisou', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (916, 'Stredochesky', 59, '2024-01-21 12:04:47', '2024-01-21 12:04:47', NULL, NULL, NULL, NULL, 1), - (917, 'Unicov', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (918, 'Ustecky', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (919, 'Valletta', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (920, 'Velesin', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (921, 'Vysochina', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (922, 'Zlinsky', 59, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (923, 'Arhus', 60, '2024-01-21 12:04:48', '2024-01-21 12:04:48', NULL, NULL, NULL, NULL, 1), - (924, 'Bornholm', 60, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, NULL, NULL, NULL, 1), - (925, 'Frederiksborg', 60, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, NULL, NULL, NULL, 1), - (926, 'Fyn', 60, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, NULL, NULL, NULL, 1), - (927, 'Hovedstaden', 60, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, NULL, NULL, NULL, 1), - (928, 'Kobenhavn', 60, '2024-01-21 12:04:49', '2024-01-21 12:04:49', NULL, NULL, NULL, NULL, 1), - (929, 'Kobenhavns Amt', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (930, 'Kobenhavns Kommune', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (931, 'Nordjylland', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (932, 'Ribe', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (933, 'Ringkobing', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (934, 'Roervig', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (935, 'Roskilde', 60, '2024-01-21 12:04:50', '2024-01-21 12:04:50', NULL, NULL, NULL, NULL, 1), - (936, 'Roslev', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (937, 'Sjaelland', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (938, 'Soeborg', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (939, 'Sonderjylland', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (940, 'Storstrom', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (941, 'Syddanmark', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (942, 'Toelloese', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (943, 'Vejle', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (944, 'Vestsjalland', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (945, 'Viborg', 60, '2024-01-21 12:04:51', '2024-01-21 12:04:51', NULL, NULL, NULL, NULL, 1), - (946, ' Ali Sabih', 61, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(947, 'Dikhil', 61, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(948, 'Jibuti', 61, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(949, 'Tajurah', 61, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(950, 'Ubuk', 61, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(951, 'Saint David', 62, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(952, 'Saint Luke', 62, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(953, 'Saint Mark', 62, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(954, 'Saint Patrick', 62, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(955, 'Azua', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(956, 'Bahoruco', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(957, 'Barahona', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(958, 'Dajabon', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(959, 'Distrito Nacional', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(960, 'Duarte', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(961, 'El Seybo', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(962, 'Elias Pina', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(963, 'Espaillat', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(964, 'Hato Mayor', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(965, 'Independencia', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(966, 'La Altagracia', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(967, 'La Romana', 63, '2024-01-21 12:04:52', '2024-01-21 12:04:52', NULL, NULL, NULL, NULL, 1), -(968, 'La Vega', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(969, 'Maria Trinidad Sanchez', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(970, 'Monsenor Nouel', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(971, 'Monte Cristi', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(972, 'Monte Plata', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(973, 'Pedernales', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(974, 'Peravia', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(975, 'Puerto Plata', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(976, 'Salcedo', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(977, 'Samana', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(978, 'San Cristobal', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(979, 'San Pedro de Macoris', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(980, 'Sanchez Ramirez', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(981, 'Santiago', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(982, 'Santiago Rodriguez', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(983, 'Valverde', 63, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(984, 'Azuay', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(985, 'Canar', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(986, 'Carchi', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(987, 'Chimborazo', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(988, 'Cotopaxi', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(989, 'El Oro', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(990, 'Esmeraldas', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(991, 'Galapagos', 64, '2024-01-21 12:04:53', '2024-01-21 12:04:53', NULL, NULL, NULL, NULL, 1), -(992, 'Guayas', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(993, 'Imbabura', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(994, 'Loja', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(995, 'Los Rios', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(996, 'Manabi', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(997, 'Morona Santiago', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(998, 'Napo', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(999, 'Orellana', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1000, 'Pastaza', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1001, 'Pichincha', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1002, 'Sucumbios', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1003, 'Tungurahua', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1004, 'Zamora Chinchipe', 64, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1005, 'Aswan', 65, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1006, 'Asyut', 65, '2024-01-21 12:04:54', '2024-01-21 12:04:54', NULL, NULL, NULL, NULL, 1), -(1007, 'Bani Suwayf', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), -(1008, 'Bur Sa id', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1009, 'Cairo', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1010, 'Dumyat', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1011, 'Kafr-ash-Shaykh', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1012, 'Matruh', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1013, 'Muhafazat ad Daqahliyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1014, 'Muhafazat al Fayyum', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1015, 'Muhafazat al Gharbiyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1016, 'Muhafazat al Iskandariyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1017, 'Muhafazat al Qahirah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1018, 'Qina', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1019, 'Sawhaj', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1020, 'Sina al-Janubiyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1021, 'Sina ash-Shamaliyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1022, 'ad-Daqahliyah', 65, '2024-01-21 12:04:55', '2024-01-21 12:04:55', NULL, NULL, NULL, NULL, 1), - (1023, 'al-Bahr-al-Ahmar', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1024, 'al-Buhayrah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1025, 'al-Fayyum', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1026, 'al-Gharbiyah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1027, 'al-Iskandariyah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1028, 'al-Ismailiyah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1029, 'al-Jizah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1030, 'al-Minufiyah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1031, 'al-Minya', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1032, 'al-Qahira', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1033, 'al-Qalyubiyah', 65, '2024-01-21 12:04:56', '2024-01-21 12:04:56', NULL, NULL, NULL, NULL, 1), - (1034, 'al-Uqsur', 65, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1035, 'al-Wadi al-Jadid', 65, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1036, 'as-Suways', 65, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1037, 'ash-Sharqiyah', 65, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1038, 'Ahuachapan', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1039, 'Cabanas', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1040, 'Chalatenango', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1041, 'Cuscatlan', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1042, 'La Libertad', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1043, 'La Union', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1044, 'Morazan', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1045, 'San Miguel', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1046, 'San Vicente', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1047, 'Santa Ana', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1048, 'Sonsonate', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1), - (1049, 'Usulutan', 66, '2024-01-21 12:04:57', '2024-01-21 12:04:57', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES - (1050, 'Annobon', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1051, 'Bioko Norte', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1052, 'Bioko Sur', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1053, 'Centro Sur', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1054, 'Kie-Ntem', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1055, 'Litoral', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1056, 'Wele-Nzas', 67, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1057, 'Anseba', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1058, 'Debub', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1059, 'Debub-Keih-Bahri', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1060, 'Gash-Barka', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1061, 'Maekel', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1062, 'Semien-Keih-Bahri', 68, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1063, 'Harju', 69, '2024-01-21 12:04:58', '2024-01-21 12:04:58', NULL, NULL, NULL, NULL, 1), - (1064, 'Hiiu', 69, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, NULL, NULL, NULL, 1), - (1065, 'Ida-Viru', 69, '2024-01-21 12:04:59', '2024-01-21 12:04:59', NULL, NULL, NULL, NULL, 1), - (1066, 'Jarva', 69, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, NULL, NULL, NULL, 1), - (1067, 'Jogeva', 69, '2024-01-21 12:05:00', '2024-01-21 12:05:00', NULL, NULL, NULL, NULL, 1), - (1068, 'Laane', 69, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, NULL, NULL, NULL, 1), - (1069, 'Laane-Viru', 69, '2024-01-21 12:05:01', '2024-01-21 12:05:01', NULL, NULL, NULL, NULL, 1), - (1070, 'Parnu', 69, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, NULL, NULL, NULL, 1), - (1071, 'Polva', 69, '2024-01-21 12:05:02', '2024-01-21 12:05:02', NULL, NULL, NULL, NULL, 1), - (1072, 'Rapla', 69, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, NULL, NULL, NULL, 1), - (1073, 'Saare', 69, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, NULL, NULL, NULL, 1), - (1074, 'Tartu', 69, '2024-01-21 12:05:03', '2024-01-21 12:05:03', NULL, NULL, NULL, NULL, 1), - (1075, 'Valga', 69, '2024-01-21 12:05:04', '2024-01-21 12:05:04', NULL, NULL, NULL, NULL, 1), - (1076, 'Viljandi', 69, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, NULL, NULL, NULL, 1), - (1077, 'Voru', 69, '2024-01-21 12:05:05', '2024-01-21 12:05:05', NULL, NULL, NULL, NULL, 1), - (1078, 'Addis Abeba', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1079, 'Afar', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1080, 'Amhara', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1081, 'Benishangul', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1082, 'Diredawa', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1083, 'Gambella', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1084, 'Harar', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1085, 'Jigjiga', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1086, 'Mekele', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1087, 'Oromia', 70, '2024-01-21 12:05:06', '2024-01-21 12:05:06', NULL, NULL, NULL, NULL, 1), - (1088, 'Somali', 70, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1089, 'Southern', 70, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1090, 'Tigray', 70, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1091, 'Falkland Islands', 71, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1092, 'South Georgia', 71, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1093, 'Klaksvik', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1094, 'Nor ara Eysturoy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1095, 'Nor oy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1096, 'Sandoy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1097, 'Streymoy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1098, 'Su uroy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1099, 'Sy ra Eysturoy', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1100, 'Torshavn', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1101, 'Vaga', 72, '2024-01-21 12:05:07', '2024-01-21 12:05:07', NULL, NULL, NULL, NULL, 1), - (1102, 'Central', 73, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1103, 'Northern', 73, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1104, 'South Pacific', 73, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1105, 'Ahvenanmaa', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1106, 'Etela-Karjala', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1107, 'Etela-Pohjanmaa', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1108, 'Etela-Savo', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1109, 'Etela-Suomen Laani', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1110, 'Ita-Suomen Laani', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1111, 'Ita-Uusimaa', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1112, 'Kainuu', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1113, 'Kanta-Hame', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1114, 'Keski-Pohjanmaa', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1115, 'Keski-Suomi', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1116, 'Kymenlaakso', 74, '2024-01-21 12:05:08', '2024-01-21 12:05:08', NULL, NULL, NULL, NULL, 1), - (1117, 'Lansi-Suomen Laani', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1118, 'Lappi', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1119, 'Northern Savonia', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1120, 'Ostrobothnia', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1121, 'Oulun Laani', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1122, 'Paijat-Hame', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1123, 'Pirkanmaa', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1124, 'Pohjanmaa', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1125, 'Pohjois-Karjala', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1126, 'Pohjois-Pohjanmaa', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1127, 'Pohjois-Savo', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1128, 'Saarijarvi', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1129, 'Satakunta', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1130, 'Southern Savonia', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1131, 'Tavastia Proper', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1132, 'Uleaborgs Lan', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1133, 'Uusimaa', 74, '2024-01-21 12:05:09', '2024-01-21 12:05:09', NULL, NULL, NULL, NULL, 1), - (1134, 'Varsinais-Suomi', 74, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1135, 'Ain', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1136, 'Aisne', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1137, 'Albi Le Sequestre', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1138, 'Allier', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1139, 'Alpes-Cote dAzur', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1140, 'Alpes-Maritimes', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1141, 'Alpes-de-Haute-Provence', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1142, 'Alsace', 75, '2024-01-21 12:05:10', '2024-01-21 12:05:10', NULL, NULL, NULL, NULL, 1), - (1143, 'Aquitaine', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1144, 'Ardeche', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1145, 'Ardennes', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1146, 'Ariege', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1147, 'Aube', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1148, 'Aude', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1149, 'Auvergne', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1150, 'Aveyron', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1151, 'Bas-Rhin', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1152, 'Basse-Normandie', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1153, 'Bouches-du-Rhone', 75, '2024-01-21 12:05:11', '2024-01-21 12:05:11', NULL, NULL, NULL, NULL, 1), - (1154, 'Bourgogne', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1155, 'Bretagne', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1156, 'Brittany', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1157, 'Burgundy', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1158, 'Calvados', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1159, 'Cantal', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1160, 'Cedex', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1161, 'Charente', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1162, 'Charente-Maritime', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1163, 'Cher', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1164, 'Correze', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1165, 'Corse-du-Sud', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1166, 'Cote-d Or', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), -(1167, 'Cotes-d Armor', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1168, 'Creuse', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1169, 'Crolles', 75, '2024-01-21 12:05:12', '2024-01-21 12:05:12', NULL, NULL, NULL, NULL, 1), - (1170, 'Deux-Sevres', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1171, 'Dordogne', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1172, 'Doubs', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1173, 'Drome', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1174, 'Essonne', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1175, 'Eure', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1176, 'Eure-et-Loir', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1177, 'Feucherolles', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1178, 'Finistere', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1179, 'Franche-Comte', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1180, 'Gard', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1181, 'Gers', 75, '2024-01-21 12:05:13', '2024-01-21 12:05:13', NULL, NULL, NULL, NULL, 1), - (1182, 'Gironde', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1183, 'Haut-Rhin', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1184, 'Haute-Corse', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1185, 'Haute-Garonne', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1186, 'Haute-Loire', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1187, 'Haute-Marne', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1188, 'Haute-Saone', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1189, 'Haute-Savoie', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1190, 'Haute-Vienne', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1191, 'Hautes-Alpes', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1192, 'Hautes-Pyrenees', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1193, 'Hauts-de-Seine', 75, '2024-01-21 12:05:14', '2024-01-21 12:05:14', NULL, NULL, NULL, NULL, 1), - (1194, 'Herault', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1195, 'Ile-de-France', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1196, 'Ille-et-Vilaine', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1197, 'Indre', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1198, 'Indre-et-Loire', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1199, 'Isere', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1200, 'Jura', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1201, 'Klagenfurt', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1202, 'Landes', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1203, 'Languedoc-Roussillon', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1204, 'Larcay', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1205, 'Le Castellet', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1206, 'Le Creusot', 75, '2024-01-21 12:05:15', '2024-01-21 12:05:15', NULL, NULL, NULL, NULL, 1), - (1207, 'Limousin', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1208, 'Loir-et-Cher', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1209, 'Loire', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1210, 'Loire-Atlantique', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1211, 'Loiret', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1212, 'Lorraine', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1213, 'Lot', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1214, 'Lot-et-Garonne', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1215, 'Lower Normandy', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1216, 'Lozere', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1217, 'Maine-et-Loire', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1218, 'Manche', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1219, 'Marne', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1220, 'Mayenne', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1221, 'Meurthe-et-Moselle', 75, '2024-01-21 12:05:16', '2024-01-21 12:05:16', NULL, NULL, NULL, NULL, 1), - (1222, 'Meuse', 75, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, NULL, NULL, NULL, 1), - (1223, 'Midi-Pyrenees', 75, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, NULL, NULL, NULL, 1), - (1224, 'Morbihan', 75, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, NULL, NULL, NULL, 1), - (1225, 'Moselle', 75, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, NULL, NULL, NULL, 1), - (1226, 'Nievre', 75, '2024-01-21 12:05:17', '2024-01-21 12:05:17', NULL, NULL, NULL, NULL, 1), - (1227, 'Nord-Pas-de-Calais', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1228, 'Oise', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1229, 'Orne', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1230, 'Paris', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1231, 'Pas-de-Calais', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1232, 'Pays de la Loire', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1233, 'Pays-de-la-Loire', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1234, 'Picardy', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1235, 'Puy-de-Dome', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1236, 'Pyrenees-Atlantiques', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1237, 'Pyrenees-Orientales', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1238, 'Quelmes', 75, '2024-01-21 12:05:18', '2024-01-21 12:05:18', NULL, NULL, NULL, NULL, 1), - (1239, 'Rhone', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1240, 'Rhone-Alpes', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1241, 'Saint Ouen', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1242, 'Saint Viatre', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1243, 'Saone-et-Loire', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1244, 'Sarthe', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1245, 'Savoie', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1246, 'Seine-Maritime', 75, '2024-01-21 12:05:19', '2024-01-21 12:05:19', NULL, NULL, NULL, NULL, 1), - (1247, 'Seine-Saint-Denis', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1248, 'Seine-et-Marne', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1249, 'Somme', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1250, 'Sophia Antipolis', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1251, 'Souvans', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1252, 'Tarn', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1253, 'Tarn-et-Garonne', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1254, 'Territoire de Belfort', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1255, 'Treignac', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1256, 'Upper Normandy', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), - (1257, 'Val-d Oise', 75, '2024-01-21 12:05:20', '2024-01-21 12:05:20', NULL, NULL, NULL, NULL, 1), -(1258, 'Val-de-Marne', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1259, 'Var', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1260, 'Vaucluse', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1261, 'Vellise', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1262, 'Vendee', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1263, 'Vienne', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1264, 'Vosges', 75, '2024-01-21 12:05:21', '2024-01-21 12:05:21', NULL, NULL, NULL, NULL, 1), -(1265, 'Yonne', 75, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1266, 'Yvelines', 75, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1267, 'Cayenne', 76, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1268, 'Saint-Laurent-du-Maroni', 76, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1269, 'Iles du Vent', 77, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1270, 'Iles sous le Vent', 77, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1271, 'Marquesas', 77, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1272, 'Tuamotu', 77, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1273, 'Tubuai', 77, '2024-01-21 12:05:22', '2024-01-21 12:05:22', NULL, NULL, NULL, NULL, 1), -(1274, 'Amsterdam', 78, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1275, 'Crozet Islands', 78, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1276, 'Kerguelen', 78, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1277, 'Estuaire', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1278, 'Haut-Ogooue', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1279, 'Moyen-Ogooue', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1280, 'Ngounie', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1281, 'Nyanga', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1282, 'Ogooue-Ivindo', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1283, 'Ogooue-Lolo', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1284, 'Ogooue-Maritime', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1285, 'Woleu-Ntem', 79, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1286, 'Banjul', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1287, 'Basse', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1288, 'Brikama', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1289, 'Janjanbureh', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1290, 'Kanifing', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1291, 'Kerewan', 80, '2024-01-21 12:05:23', '2024-01-21 12:05:23', NULL, NULL, NULL, NULL, 1), -(1292, 'Kuntaur', 80, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1293, 'Mansakonko', 80, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1294, 'Abhasia', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1295, 'Ajaria', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1296, 'Guria', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1297, 'Imereti', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1298, 'Kaheti', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1299, 'Kvemo Kartli', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1300, 'Mcheta-Mtianeti', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1301, 'Racha', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1302, 'Samagrelo-Zemo Svaneti', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1303, 'Samche-Zhavaheti', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1304, 'Shida Kartli', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1305, 'Tbilisi', 81, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1306, 'Baden-Wurttemberg', 82, '2024-01-21 12:05:24', '2024-01-21 12:05:24', NULL, NULL, NULL, NULL, 1), -(1307, 'Bavaria', 82, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, NULL, NULL, NULL, 1), -(1308, 'Bayern', 82, '2024-01-21 12:05:27', '2024-01-21 12:05:27', NULL, NULL, NULL, NULL, 1), -(1309, 'Beilstein Wurtt', 82, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, NULL, NULL, NULL, 1), -(1310, 'Berlin', 82, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, NULL, NULL, NULL, 1), -(1311, 'Brandenburg', 82, '2024-01-21 12:05:29', '2024-01-21 12:05:29', NULL, NULL, NULL, NULL, 1), -(1312, 'Bremen', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1313, 'Dreisbach', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1314, 'Freistaat Bayern', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1315, 'Hamburg', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1316, 'Hannover', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1317, 'Heroldstatt', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1318, 'Hessen', 82, '2024-01-21 12:05:30', '2024-01-21 12:05:30', NULL, NULL, NULL, NULL, 1), -(1319, 'Kortenberg', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1320, 'Laasdorf', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1321, 'Land Baden-Wurttemberg', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1322, 'Land Bayern', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1323, 'Land Brandenburg', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1324, 'Land Hessen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1325, 'Land Mecklenburg-Vorpommern', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1326, 'Land Nordrhein-Westfalen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1327, 'Land Rheinland-Pfalz', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1328, 'Land Sachsen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1329, 'Land Sachsen-Anhalt', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1330, 'Land Thuringen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1331, 'Lower Saxony', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1332, 'Mecklenburg-Vorpommern', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1333, 'Mulfingen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1334, 'Munich', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1335, 'Neubeuern', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1336, 'Niedersachsen', 82, '2024-01-21 12:05:32', '2024-01-21 12:05:32', NULL, NULL, NULL, NULL, 1), -(1337, 'Noord-Holland', 82, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, NULL, NULL, NULL, 1), -(1338, 'Nordrhein-Westfalen', 82, '2024-01-21 12:05:34', '2024-01-21 12:05:34', NULL, NULL, NULL, NULL, 1), -(1339, 'North Rhine-Westphalia', 82, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, NULL, NULL, NULL, 1), -(1340, 'Osterode', 82, '2024-01-21 12:05:36', '2024-01-21 12:05:36', NULL, NULL, NULL, NULL, 1), -(1341, 'Rheinland-Pfalz', 82, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, NULL, NULL, NULL, 1), -(1342, 'Rhineland-Palatinate', 82, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, NULL, NULL, NULL, 1), -(1343, 'Saarland', 82, '2024-01-21 12:05:37', '2024-01-21 12:05:37', NULL, NULL, NULL, NULL, 1), -(1344, 'Sachsen', 82, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, NULL, NULL, NULL, 1), -(1345, 'Sachsen-Anhalt', 82, '2024-01-21 12:05:38', '2024-01-21 12:05:38', NULL, NULL, NULL, NULL, 1), -(1346, 'Saxony', 82, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, NULL, NULL, NULL, 1), -(1347, 'Thuringia', 82, '2024-01-21 12:05:39', '2024-01-21 12:05:39', NULL, NULL, NULL, NULL, 1), -(1348, 'Webling', 82, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1349, 'Weinstrabe', 82, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1350, 'schlobborn', 82, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1351, 'Ashanti', 83, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1352, 'Brong-Ahafo', 83, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1353, 'Greater Accra', 83, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1354, 'Upper East', 83, '2024-01-21 12:05:40', '2024-01-21 12:05:40', NULL, NULL, NULL, NULL, 1), -(1355, 'Upper West', 83, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1356, 'Volta', 83, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1357, 'Gibraltar', 84, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1358, 'Acharnes', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1359, 'Ahaia', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1360, 'Aitolia kai Akarnania', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1361, 'Argolis', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1362, 'Arkadia', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1363, 'Arta', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1364, 'Attica', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1365, 'Attiki', 85, '2024-01-21 12:05:41', '2024-01-21 12:05:41', NULL, NULL, NULL, NULL, 1), -(1366, 'Ayion Oros', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1367, 'Crete', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1368, 'Dodekanisos', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1369, 'Drama', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1370, 'Evia', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1371, 'Evritania', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1372, 'Evros', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1373, 'Evvoia', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1374, 'Florina', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1375, 'Fokis', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1376, 'Fthiotis', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1377, 'Grevena', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1378, 'Halandri', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1379, 'Halkidiki', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1380, 'Hania', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1381, 'Heraklion', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1382, 'Hios', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1383, 'Ilia', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1384, 'Imathia', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1385, 'Ioannina', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1386, 'Iraklion', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1387, 'Karditsa', 85, '2024-01-21 12:05:42', '2024-01-21 12:05:42', NULL, NULL, NULL, NULL, 1), -(1388, 'Kastoria', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1389, 'Kavala', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1390, 'Kefallinia', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1391, 'Kerkira', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1392, 'Kiklades', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1393, 'Kilkis', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1394, 'Korinthia', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1395, 'Kozani', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1396, 'Lakonia', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1397, 'Larisa', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1398, 'Lasithi', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1399, 'Lesvos', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1400, 'Levkas', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1401, 'Magnisia', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1402, 'Messinia', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1403, 'Nomos Attikis', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1404, 'Nomos Zakynthou', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1405, 'Pella', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1406, 'Pieria', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1407, 'Piraios', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1408, 'Preveza', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1409, 'Rethimni', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1410, 'Rodopi', 85, '2024-01-21 12:05:43', '2024-01-21 12:05:43', NULL, NULL, NULL, NULL, 1), -(1411, 'Samos', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1412, 'Serrai', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1413, 'Thesprotia', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1414, 'Thessaloniki', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1415, 'Trikala', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1416, 'Voiotia', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1417, 'West Greece', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1418, 'Xanthi', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1419, 'Zakinthos', 85, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1420, 'Aasiaat', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1421, 'Ammassalik', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1422, 'Illoqqortoormiut', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1423, 'Ilulissat', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1424, 'Ivittuut', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1425, 'Kangaatsiaq', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1426, 'Maniitsoq', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1427, 'Nanortalik', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1428, 'Narsaq', 86, '2024-01-21 12:05:44', '2024-01-21 12:05:44', NULL, NULL, NULL, NULL, 1), -(1429, 'Nuuk', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1430, 'Paamiut', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1431, 'Qaanaaq', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1432, 'Qaqortoq', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1433, 'Qasigiannguit', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1434, 'Qeqertarsuaq', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1435, 'Sisimiut', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1436, 'Udenfor kommunal inddeling', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1437, 'Upernavik', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1438, 'Uummannaq', 86, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1439, 'Carriacou-Petite Martinique', 87, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1440, 'Saint Davids', 87, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), -(1441, 'Saint George s', 87, '2024-01-21 12:05:45', '2024-01-21 12:05:45', NULL, NULL, NULL, NULL, 1), - (1442, 'Basse-Terre', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1443, 'Grande-Terre', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1444, 'Iles des Saintes', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1445, 'La Desirade', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1446, 'Marie-Galante', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1447, 'Saint Barthelemy', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1448, 'Saint Martin', 88, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1449, 'Agana Heights', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1450, 'Agat', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1451, 'Barrigada', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1452, 'Chalan-Pago-Ordot', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1453, 'Dededo', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1454, 'Hagatna', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1455, 'Inarajan', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1456, 'Mangilao', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1457, 'Merizo', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1458, 'Mongmong-Toto-Maite', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1459, 'Santa Rita', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1460, 'Sinajana', 89, '2024-01-21 12:05:46', '2024-01-21 12:05:46', NULL, NULL, NULL, NULL, 1), - (1461, 'Talofofo', 89, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1462, 'Tamuning', 89, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1463, 'Yigo', 89, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1464, 'Yona', 89, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1465, 'Alta Verapaz', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1466, 'Baja Verapaz', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1467, 'Chimaltenango', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1468, 'Chiquimula', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1469, 'El Progreso', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1470, 'Escuintla', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1471, 'Guatemala', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1472, 'Huehuetenango', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1473, 'Izabal', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1474, 'Jalapa', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1475, 'Jutiapa', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1476, 'Peten', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1477, 'Quezaltenango', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1478, 'Quiche', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1479, 'Retalhuleu', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1480, 'Sacatepequez', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1481, 'San Marcos', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1482, 'Santa Rosa', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1483, 'Solola', 90, '2024-01-21 12:05:47', '2024-01-21 12:05:47', NULL, NULL, NULL, NULL, 1), - (1484, 'Suchitepequez', 90, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1485, 'Totonicapan', 90, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1486, 'Zacapa', 90, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1487, 'Beyla', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1488, 'Boffa', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1489, 'Boke', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1490, 'Conakry', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1491, 'Coyah', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1492, 'Dabola', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1493, 'Dalaba', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1494, 'Dinguiraye', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1495, 'Faranah', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1496, 'Forecariah', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1497, 'Fria', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1498, 'Gaoual', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1499, 'Gueckedou', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1500, 'Kankan', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1501, 'Kerouane', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1502, 'Kindia', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1503, 'Kissidougou', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1504, 'Koubia', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1505, 'Koundara', 92, '2024-01-21 12:05:48', '2024-01-21 12:05:48', NULL, NULL, NULL, NULL, 1), - (1506, 'Kouroussa', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1507, 'Labe', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1508, 'Lola', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1509, 'Macenta', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1510, 'Mali', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1511, 'Mamou', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1512, 'Mandiana', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1513, 'Nzerekore', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1514, 'Pita', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1515, 'Siguiri', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1516, 'Telimele', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1517, 'Tougue', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1518, 'Yomou', 92, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1519, 'Bafata', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1520, 'Bissau', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1521, 'Bolama', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1522, 'Cacheu', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1523, 'Gabu', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1524, 'Oio', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1525, 'Quinara', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1526, 'Tombali', 93, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1527, 'Barima-Waini', 94, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1528, 'Cuyuni-Mazaruni', 94, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1529, 'Demerara-Mahaica', 94, '2024-01-21 12:05:49', '2024-01-21 12:05:49', NULL, NULL, NULL, NULL, 1), - (1530, 'East Berbice-Corentyne', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1531, 'Essequibo Islands-West Demerar', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1532, 'Mahaica-Berbice', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1533, 'Pomeroon-Supenaam', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1534, 'Potaro-Siparuni', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1535, 'Upper Demerara-Berbice', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1536, 'Upper Takutu-Upper Essequibo', 94, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1537, 'Artibonite', 95, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), - (1538, 'Grand Anse', 95, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1539, 'Nord-Est', 95, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1540, 'Nord-Ouest', 95, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1541, 'Sud-Est', 95, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1542, 'Heard and McDonald Islands', 96, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1543, 'Vatican City State (Holy See)', 97, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1544, 'Atlantida', 98, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1545, 'Choluteca', 98, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1546, 'Colon', 98, '2024-01-21 12:05:50', '2024-01-21 12:05:50', NULL, NULL, NULL, NULL, 1), -(1547, 'Comayagua', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1548, 'Copan', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1549, 'Cortes', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1550, 'Distrito Central', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1551, 'El Paraiso', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1552, 'Francisco Morazan', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1553, 'Gracias a Dios', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1554, 'Intibuca', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1555, 'Islas de la Bahia', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1556, 'Lempira', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1557, 'Ocotepeque', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1558, 'Olancho', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1559, 'Santa Barbara', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1560, 'Valle', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1561, 'Yoro', 98, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1562, 'Hong Kong', 99, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1563, 'Bacs-Kiskun', 100, '2024-01-21 12:05:51', '2024-01-21 12:05:51', NULL, NULL, NULL, NULL, 1), -(1564, 'Baranya', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES -(1565, 'Bekes', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1), -(1566, 'Borsod-Abauj-Zemplen', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1), -(1567, 'Budapest', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1), -(1568, 'Csongrad', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1), -(1569, 'Fejer', 100, '2024-01-21 12:05:52', '2024-01-21 12:05:52', NULL, NULL, NULL, NULL, 1), -(1570, 'Gyor-Moson-Sopron', 100, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, NULL, NULL, NULL, 1), -(1571, 'Hajdu-Bihar', 100, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, NULL, NULL, NULL, 1), -(1572, 'Heves', 100, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, NULL, NULL, NULL, 1), -(1573, 'Jasz-Nagykun-Szolnok', 100, '2024-01-21 12:05:53', '2024-01-21 12:05:53', NULL, NULL, NULL, NULL, 1), -(1574, 'Komarom-Esztergom', 100, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, NULL, NULL, NULL, 1), -(1575, 'Nograd', 100, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, NULL, NULL, NULL, 1), -(1576, 'Pest', 100, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, NULL, NULL, NULL, 1), -(1577, 'Somogy', 100, '2024-01-21 12:05:54', '2024-01-21 12:05:54', NULL, NULL, NULL, NULL, 1), -(1578, 'Szabolcs-Szatmar-Bereg', 100, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1579, 'Tolna', 100, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1580, 'Vas', 100, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1581, 'Veszprem', 100, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1582, 'Zala', 100, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1583, 'Austurland', 101, '2024-01-21 12:05:55', '2024-01-21 12:05:55', NULL, NULL, NULL, NULL, 1), -(1584, 'Gullbringusysla', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1585, 'Hofu borgarsva i', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1586, 'Nor urland eystra', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1587, 'Nor urland vestra', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1588, 'Su urland', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1589, 'Su urnes', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1590, 'Vestfir ir', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1591, 'Vesturland', 101, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1592, 'Andaman and Nicobar Islands', 102, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1593, 'Andhra Pradesh', 102, '2024-01-21 12:05:56', '2024-01-21 12:05:56', NULL, NULL, NULL, NULL, 1), -(1594, 'Arunachal Pradesh', 102, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, NULL, NULL, NULL, 1), -(1595, 'Assam', 102, '2024-01-21 12:05:58', '2024-01-21 12:05:58', NULL, NULL, NULL, NULL, 1), -(1596, 'Bihar', 102, '2024-01-21 12:05:59', '2024-01-21 12:05:59', NULL, NULL, NULL, NULL, 1), -(1597, 'Chandigarh', 102, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, NULL, NULL, NULL, 1), -(1598, 'Chhattisgarh', 102, '2024-01-21 12:06:00', '2024-01-21 12:06:00', NULL, NULL, NULL, NULL, 1), -(1599, 'Dadra and Nagar Haveli', 102, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, NULL, NULL, NULL, 1), -(1600, 'Daman and Diu', 102, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, NULL, NULL, NULL, 1), -(1601, 'Delhi', 102, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, NULL, NULL, NULL, 1), -(1602, 'Goa', 102, '2024-01-21 12:06:01', '2024-01-21 12:06:01', NULL, NULL, NULL, NULL, 1), -(1603, 'Gujarat', 102, '2024-01-21 12:06:02', '2024-01-21 12:06:02', NULL, NULL, NULL, NULL, 1), -(1604, 'Haryana', 102, '2024-01-21 12:06:04', '2024-01-21 12:06:04', NULL, NULL, NULL, NULL, 1), -(1605, 'Himachal Pradesh', 102, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, NULL, NULL, NULL, 1), -(1606, 'Jammu and Kashmir', 102, '2024-01-21 12:06:05', '2024-01-21 12:06:05', NULL, NULL, NULL, NULL, 1), -(1607, 'Jharkhand', 102, '2024-01-21 12:06:06', '2024-01-21 12:06:06', NULL, NULL, NULL, NULL, 1), -(1608, 'Karnataka', 102, '2024-01-21 12:06:07', '2024-01-21 12:06:07', NULL, NULL, NULL, NULL, 1), -(1609, 'Kenmore', 102, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, NULL, NULL, NULL, 1), -(1610, 'Kerala', 102, '2024-01-21 12:06:09', '2024-01-21 12:06:09', NULL, NULL, NULL, NULL, 1), -(1611, 'Lakshadweep', 102, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, NULL, NULL, NULL, 1), -(1612, 'Madhya Pradesh', 102, '2024-01-21 12:06:11', '2024-01-21 12:06:11', NULL, NULL, NULL, NULL, 1), -(1613, 'Maharashtra', 102, '2024-01-21 12:06:13', '2024-01-21 12:06:13', NULL, NULL, NULL, NULL, 1), -(1614, 'Manipur', 102, '2024-01-21 12:06:16', '2024-01-21 12:06:16', NULL, NULL, NULL, NULL, 1), -(1615, 'Meghalaya', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1616, 'Mizoram', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1617, 'Nagaland', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1618, 'Narora', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1619, 'Natwar', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1620, 'Odisha', 102, '2024-01-21 12:06:17', '2024-01-21 12:06:17', NULL, NULL, NULL, NULL, 1), -(1621, 'Paschim Medinipur', 102, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, NULL, NULL, NULL, 1), -(1622, 'Pondicherry', 102, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, NULL, NULL, NULL, 1), -(1623, 'Punjab', 102, '2024-01-21 12:06:18', '2024-01-21 12:06:18', NULL, NULL, NULL, NULL, 1), -(1624, 'Rajasthan', 102, '2024-01-21 12:06:20', '2024-01-21 12:06:20', NULL, NULL, NULL, NULL, 1), -(1625, 'Sikkim', 102, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, NULL, NULL, NULL, 1), -(1626, 'Tamil Nadu', 102, '2024-01-21 12:06:21', '2024-01-21 12:06:21', NULL, NULL, NULL, NULL, 1), -(1627, 'Telangana', 102, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, NULL, NULL, NULL, 1), -(1628, 'Tripura', 102, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, NULL, NULL, NULL, 1), -(1629, 'Uttar Pradesh', 102, '2024-01-21 12:06:28', '2024-01-21 12:06:28', NULL, NULL, NULL, NULL, 1), -(1630, 'Uttarakhand', 102, '2024-01-21 12:06:33', '2024-01-21 12:06:33', NULL, NULL, NULL, NULL, 1), -(1631, 'Vaishali', 102, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, NULL, NULL, NULL, 1), -(1632, 'West Bengal', 102, '2024-01-21 12:06:34', '2024-01-21 12:06:34', NULL, NULL, NULL, NULL, 1), -(1633, 'Aceh', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1634, 'Bali', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1635, 'Bangka-Belitung', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1636, 'Banten', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1637, 'Bengkulu', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1638, 'Gandaria', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1639, 'Gorontalo', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1640, 'Jakarta', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1641, 'Jambi', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1642, 'Jawa Barat', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1643, 'Jawa Tengah', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1644, 'Jawa Timur', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1645, 'Kalimantan Barat', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1646, 'Kalimantan Selatan', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1647, 'Kalimantan Tengah', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1648, 'Kalimantan Timur', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1649, 'Kendal', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1650, 'Lampung', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1651, 'Maluku', 103, '2024-01-21 12:06:37', '2024-01-21 12:06:37', NULL, NULL, NULL, NULL, 1), -(1652, 'Maluku Utara', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1653, 'Nusa Tenggara Barat', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1654, 'Nusa Tenggara Timur', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1655, 'Papua', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1656, 'Riau', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1657, 'Riau Kepulauan', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1658, 'Solo', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1659, 'Sulawesi Selatan', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1660, 'Sulawesi Tengah', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1661, 'Sulawesi Tenggara', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1662, 'Sulawesi Utara', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1663, 'Sumatera Barat', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1664, 'Sumatera Selatan', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1665, 'Sumatera Utara', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1666, 'Yogyakarta', 103, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1667, 'Ardabil', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1668, 'Azarbayjan-e Bakhtari', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1669, 'Azarbayjan-e Khavari', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1670, 'Bushehr', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1671, 'Chahar Mahal-e Bakhtiari', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1672, 'Esfahan', 104, '2024-01-21 12:06:38', '2024-01-21 12:06:38', NULL, NULL, NULL, NULL, 1), -(1673, 'Fars', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1674, 'Gilan', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1675, 'Golestan', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1676, 'Hamadan', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1677, 'Hormozgan', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1678, 'Ilam', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1679, 'Kerman', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1680, 'Kermanshah', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1681, 'Khorasan', 104, '2024-01-21 12:06:39', '2024-01-21 12:06:39', NULL, NULL, NULL, NULL, 1), -(1682, 'Khuzestan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1683, 'Kohgiluyeh-e Boyerahmad', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1684, 'Kordestan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1685, 'Lorestan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1686, 'Markazi', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1687, 'Mazandaran', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1688, 'Ostan-e Esfahan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1689, 'Qazvin', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1690, 'Qom', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1691, 'Semnan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1692, 'Sistan-e Baluchestan', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1693, 'Tehran', 104, '2024-01-21 12:06:40', '2024-01-21 12:06:40', NULL, NULL, NULL, NULL, 1), -(1694, 'Yazd', 104, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1695, 'Zanjan', 104, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1696, 'Babil', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1697, 'Baghdad', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1698, 'Dahuk', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1699, 'Dhi Qar', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1700, 'Diyala', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1701, 'Erbil', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1702, 'Irbil', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1703, 'Karbala', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1704, 'Kurdistan', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1705, 'Maysan', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1706, 'Ninawa', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1707, 'Salah-ad-Din', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1708, 'Wasit', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1709, 'al-Anbar', 105, '2024-01-21 12:06:41', '2024-01-21 12:06:41', NULL, NULL, NULL, NULL, 1), -(1710, 'al-Basrah', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), -(1711, 'al-Muthanna', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), -(1712, 'al-Qadisiyah', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), -(1713, 'an-Najaf', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), -(1714, 'as-Sulaymaniyah', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), -(1715, 'at-Ta mim', 105, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1716, 'Armagh', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1717, 'Carlow', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1718, 'Cavan', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1719, 'Clare', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1720, 'Cork', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1721, 'Donegal', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1722, 'Dublin', 106, '2024-01-21 12:06:42', '2024-01-21 12:06:42', NULL, NULL, NULL, NULL, 1), - (1723, 'Galway', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1724, 'Kerry', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1725, 'Kildare', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1726, 'Kilkenny', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1727, 'Laois', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1728, 'Leinster', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1729, 'Leitrim', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1730, 'Limerick', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1731, 'Loch Garman', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1732, 'Longford', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1733, 'Louth', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1734, 'Mayo', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1735, 'Meath', 106, '2024-01-21 12:06:43', '2024-01-21 12:06:43', NULL, NULL, NULL, NULL, 1), - (1736, 'Monaghan', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1737, 'Offaly', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1738, 'Roscommon', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1739, 'Sligo', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1740, 'Tipperary North Riding', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1741, 'Tipperary South Riding', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1742, 'Ulster', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1743, 'Waterford', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1744, 'Westmeath', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1745, 'Wexford', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1746, 'Wicklow', 106, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1747, 'Beit Hanania', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1748, 'Ben Gurion Airport', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1749, 'Bethlehem', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1750, 'Caesarea', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1751, 'Gaza', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1752, 'Hadaron', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1753, 'Haifa District', 108, '2024-01-21 12:06:44', '2024-01-21 12:06:44', NULL, NULL, NULL, NULL, 1), - (1754, 'Hamerkaz', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1755, 'Hazafon', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1756, 'Hebron', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1757, 'Jaffa', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1758, 'Jerusalem', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1759, 'Khefa', 108, '2024-01-21 12:06:45', '2024-01-21 12:06:45', NULL, NULL, NULL, NULL, 1), - (1760, 'Kiryat Yam', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1761, 'Lower Galilee', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1762, 'Qalqilya', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1763, 'Talme Elazar', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1764, 'Tel Aviv', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1765, 'Tsafon', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1766, 'Umm El Fahem', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1767, 'Yerushalayim', 108, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1768, 'Abruzzi', 109, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1769, 'Abruzzo', 109, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1770, 'Agrigento', 109, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1771, 'Alessandria', 109, '2024-01-21 12:06:46', '2024-01-21 12:06:46', NULL, NULL, NULL, NULL, 1), - (1772, 'Ancona', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1773, 'Arezzo', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1774, 'Ascoli Piceno', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1775, 'Asti', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1776, 'Avellino', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1777, 'Bari', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1778, 'Basilicata', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1779, 'Belluno', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1780, 'Benevento', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1781, 'Bergamo', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1782, 'Biella', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1783, 'Bologna', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1784, 'Bolzano', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1785, 'Brescia', 109, '2024-01-21 12:06:47', '2024-01-21 12:06:47', NULL, NULL, NULL, NULL, 1), - (1786, 'Brindisi', 109, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, NULL, NULL, NULL, 1), - (1787, 'Calabria', 109, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, NULL, NULL, NULL, 1), - (1788, 'Campania', 109, '2024-01-21 12:06:48', '2024-01-21 12:06:48', NULL, NULL, NULL, NULL, 1), - (1789, 'Cartoceto', 109, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, NULL, NULL, NULL, 1), - (1790, 'Caserta', 109, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, NULL, NULL, NULL, 1), - (1791, 'Catania', 109, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, NULL, NULL, NULL, 1), - (1792, 'Chieti', 109, '2024-01-21 12:06:49', '2024-01-21 12:06:49', NULL, NULL, NULL, NULL, 1), - (1793, 'Como', 109, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, NULL, NULL, NULL, 1), - (1794, 'Cosenza', 109, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, NULL, NULL, NULL, 1), - (1795, 'Cremona', 109, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, NULL, NULL, NULL, 1), - (1796, 'Cuneo', 109, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, NULL, NULL, NULL, 1), - (1797, 'Emilia-Romagna', 109, '2024-01-21 12:06:50', '2024-01-21 12:06:50', NULL, NULL, NULL, NULL, 1), - (1798, 'Ferrara', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1799, 'Firenze', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1800, 'Florence', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1801, 'Forli-Cesena ', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1802, 'Friuli-Venezia Giulia', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1803, 'Frosinone', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1804, 'Genoa', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1805, 'Gorizia', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), - (1806, 'L Aquila', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), -(1807, 'Lazio', 109, '2024-01-21 12:06:51', '2024-01-21 12:06:51', NULL, NULL, NULL, NULL, 1), -(1808, 'Lecce', 109, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, NULL, NULL, NULL, 1), -(1809, 'Lecco', 109, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, NULL, NULL, NULL, 1), -(1810, 'Liguria', 109, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, NULL, NULL, NULL, 1), -(1811, 'Lodi', 109, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, NULL, NULL, NULL, 1), -(1812, 'Lombardia', 109, '2024-01-21 12:06:52', '2024-01-21 12:06:52', NULL, NULL, NULL, NULL, 1), -(1813, 'Lombardy', 109, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, NULL, NULL, NULL, 1), -(1814, 'Macerata', 109, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, NULL, NULL, NULL, 1), -(1815, 'Mantova', 109, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, NULL, NULL, NULL, 1), -(1816, 'Marche', 109, '2024-01-21 12:06:54', '2024-01-21 12:06:54', NULL, NULL, NULL, NULL, 1), -(1817, 'Messina', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1818, 'Milan', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1819, 'Modena', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1820, 'Molise', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1821, 'Molteno', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1822, 'Montenegro', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1823, 'Monza and Brianza', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1824, 'Naples', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1825, 'Novara', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1826, 'Padova', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1827, 'Parma', 109, '2024-01-21 12:06:55', '2024-01-21 12:06:55', NULL, NULL, NULL, NULL, 1), -(1828, 'Pavia', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1829, 'Perugia', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1830, 'Pesaro-Urbino', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1831, 'Piacenza', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1832, 'Piedmont', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1833, 'Piemonte', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1834, 'Pisa', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1835, 'Pordenone', 109, '2024-01-21 12:06:56', '2024-01-21 12:06:56', NULL, NULL, NULL, NULL, 1), -(1836, 'Potenza', 109, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, NULL, NULL, NULL, 1), -(1837, 'Puglia', 109, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, NULL, NULL, NULL, 1), -(1838, 'Reggio Emilia', 109, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, NULL, NULL, NULL, 1), -(1839, 'Rimini', 109, '2024-01-21 12:06:57', '2024-01-21 12:06:57', NULL, NULL, NULL, NULL, 1), -(1840, 'Roma', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1841, 'Salerno', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1842, 'Sardegna', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1843, 'Sassari', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1844, 'Savona', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1845, 'Sicilia', 109, '2024-01-21 12:06:58', '2024-01-21 12:06:58', NULL, NULL, NULL, NULL, 1), -(1846, 'Siena', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1847, 'Sondrio', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1848, 'South Tyrol', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1849, 'Taranto', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1850, 'Teramo', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1851, 'Torino', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1852, 'Toscana', 109, '2024-01-21 12:06:59', '2024-01-21 12:06:59', NULL, NULL, NULL, NULL, 1), -(1853, 'Trapani', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1854, 'Trentino-Alto Adige', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1855, 'Trento', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1856, 'Treviso', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1857, 'Udine', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1858, 'Umbria', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), -(1859, 'Valle d Aosta', 109, '2024-01-21 12:07:00', '2024-01-21 12:07:00', NULL, NULL, NULL, NULL, 1), - (1860, 'Varese', 109, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, NULL, NULL, NULL, 1), - (1861, 'Veneto', 109, '2024-01-21 12:07:01', '2024-01-21 12:07:01', NULL, NULL, NULL, NULL, 1), - (1862, 'Venezia', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1863, 'Verbano-Cusio-Ossola', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1864, 'Vercelli', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1865, 'Verona', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1866, 'Vicenza', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1867, 'Viterbo', 109, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1868, 'Buxoro Viloyati', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1869, 'Clarendon', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1870, 'Hanover', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1871, 'Kingston', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1872, 'Manchester', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1873, 'Portland', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1874, 'Saint Andrews', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1875, 'Saint Ann', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1876, 'Saint Catherine', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1877, 'Saint Elizabeth', 110, '2024-01-21 12:07:02', '2024-01-21 12:07:02', NULL, NULL, NULL, NULL, 1), - (1878, 'Trelawney', 110, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1879, 'Westmoreland', 110, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1880, 'Aichi', 111, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1881, 'Akita', 111, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1882, 'Aomori', 111, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1883, 'Chiba', 111, '2024-01-21 12:07:03', '2024-01-21 12:07:03', NULL, NULL, NULL, NULL, 1), - (1884, 'Ehime', 111, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, NULL, NULL, NULL, 1), - (1885, 'Fukui', 111, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, NULL, NULL, NULL, 1), - (1886, 'Fukuoka', 111, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, NULL, NULL, NULL, 1), - (1887, 'Fukushima', 111, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, NULL, NULL, NULL, 1), - (1888, 'Gifu', 111, '2024-01-21 12:07:04', '2024-01-21 12:07:04', NULL, NULL, NULL, NULL, 1), - (1889, 'Gumma', 111, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, NULL, NULL, NULL, 1), - (1890, 'Hiroshima', 111, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, NULL, NULL, NULL, 1), - (1891, 'Hokkaido', 111, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, NULL, NULL, NULL, 1), - (1892, 'Hyogo', 111, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, NULL, NULL, NULL, 1), - (1893, 'Ibaraki', 111, '2024-01-21 12:07:05', '2024-01-21 12:07:05', NULL, NULL, NULL, NULL, 1), - (1894, 'Ishikawa', 111, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, NULL, NULL, NULL, 1), - (1895, 'Iwate', 111, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, NULL, NULL, NULL, 1), - (1896, 'Kagawa', 111, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, NULL, NULL, NULL, 1), - (1897, 'Kagoshima', 111, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, NULL, NULL, NULL, 1), - (1898, 'Kanagawa', 111, '2024-01-21 12:07:06', '2024-01-21 12:07:06', NULL, NULL, NULL, NULL, 1), - (1899, 'Kanto', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1900, 'Kochi', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1901, 'Kumamoto', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1902, 'Kyoto', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1903, 'Mie', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1904, 'Miyagi', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1905, 'Miyazaki', 111, '2024-01-21 12:07:07', '2024-01-21 12:07:07', NULL, NULL, NULL, NULL, 1), - (1906, 'Nagano', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1907, 'Nagasaki', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1908, 'Nara', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1909, 'Niigata', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1910, 'Oita', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1911, 'Okayama', 111, '2024-01-21 12:07:08', '2024-01-21 12:07:08', NULL, NULL, NULL, NULL, 1), - (1912, 'Okinawa', 111, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, NULL, NULL, NULL, 1), - (1913, 'Osaka', 111, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, NULL, NULL, NULL, 1), - (1914, 'Saga', 111, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, NULL, NULL, NULL, 1), - (1915, 'Saitama', 111, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, NULL, NULL, NULL, 1), - (1916, 'Shiga', 111, '2024-01-21 12:07:09', '2024-01-21 12:07:09', NULL, NULL, NULL, NULL, 1), - (1917, 'Shimane', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1918, 'Shizuoka', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1919, 'Tochigi', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1920, 'Tokushima', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1921, 'Tokyo', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1922, 'Tottori', 111, '2024-01-21 12:07:10', '2024-01-21 12:07:10', NULL, NULL, NULL, NULL, 1), - (1923, 'Toyama', 111, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), - (1924, 'Wakayama', 111, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), - (1925, 'Yamagata', 111, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), - (1926, 'Yamaguchi', 111, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), - (1927, 'Yamanashi', 111, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), - (1928, ' Ajlun', 113, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), -(1929, 'Amman', 113, '2024-01-21 12:07:11', '2024-01-21 12:07:11', NULL, NULL, NULL, NULL, 1), -(1930, 'Irbid', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), -(1931, 'Jarash', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), -(1932, 'Ma an', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), - (1933, 'Madaba', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), - (1934, 'al- Aqabah', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), -(1935, 'al-Balqa ', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), - (1936, 'al-Karak', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), - (1937, 'al-Mafraq', 113, '2024-01-21 12:07:12', '2024-01-21 12:07:12', NULL, NULL, NULL, NULL, 1), - (1938, 'at-Tafilah', 113, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), - (1939, 'az-Zarqa ', 113, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1940, 'Akmecet', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1941, 'Akmola', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1942, 'Aktobe', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1943, 'Almati', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1944, 'Atirau', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1945, 'Batis Kazakstan', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1946, 'Burlinsky Region', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1947, 'Karagandi', 114, '2024-01-21 12:07:13', '2024-01-21 12:07:13', NULL, NULL, NULL, NULL, 1), -(1948, 'Kostanay', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1949, 'Mankistau', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1950, 'Ontustik Kazakstan', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1951, 'Pavlodar', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1952, 'Sigis Kazakstan', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1953, 'Soltustik Kazakstan', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1954, 'Taraz', 114, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1955, 'Coast', 115, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1956, 'Nairobi', 115, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1957, 'North Eastern', 115, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1958, 'Nyanza', 115, '2024-01-21 12:07:14', '2024-01-21 12:07:14', NULL, NULL, NULL, NULL, 1), -(1959, 'Rift Valley', 115, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1960, 'Abaiang', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1961, 'Abemana', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1962, 'Aranuka', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1963, 'Arorae', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1964, 'Banaba', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1965, 'Beru', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1966, 'Butaritari', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1967, 'Kiritimati', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1968, 'Kuria', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1969, 'Maiana', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1970, 'Makin', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1971, 'Marakei', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1972, 'Nikunau', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1973, 'Nonouti', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1974, 'Onotoa', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1975, 'Phoenix Islands', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1976, 'Tabiteuea North', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1977, 'Tabiteuea South', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1978, 'Tabuaeran', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1979, 'Tamana', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1980, 'Tarawa North', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1981, 'Tarawa South', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1982, 'Teraina', 116, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1983, 'Chagangdo', 117, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1984, 'Hamgyeongbukto', 117, '2024-01-21 12:07:15', '2024-01-21 12:07:15', NULL, NULL, NULL, NULL, 1), -(1985, 'Hamgyeongnamdo', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1986, 'Hwanghaebukto', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1987, 'Hwanghaenamdo', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1988, 'Kaeseong', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1989, 'Kangweon', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1990, 'Nampo', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1991, 'Pyeonganbukto', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1992, 'Pyeongannamdo', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1993, 'Pyeongyang', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1994, 'Yanggang', 117, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1995, 'Busan', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1996, 'Cheju', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1997, 'Chollabuk', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1998, 'Chollanam', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(1999, 'Chungbuk', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(2000, 'Chungcheongbuk', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(2001, 'Chungcheongnam', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(2002, 'Chungnam', 118, '2024-01-21 12:07:16', '2024-01-21 12:07:16', NULL, NULL, NULL, NULL, 1), -(2003, 'Daegu', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2004, 'Gangwon-do', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2005, 'Goyang-si', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2006, 'Gyeonggi-do', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2007, 'Gyeongsang ', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2008, 'Gyeongsangnam-do', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2009, 'Incheon', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2010, 'Jeju-Si', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2011, 'Jeonbuk', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2012, 'Kwangju', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2013, 'Kyeonggi', 118, '2024-01-21 12:07:17', '2024-01-21 12:07:17', NULL, NULL, NULL, NULL, 1), -(2014, 'Kyeongsangbuk', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2015, 'Kyeongsangnam', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2016, 'Kyonggi-do', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2017, 'Kyungbuk-Do', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2018, 'Kyunggi-Do', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2019, 'Pusan', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2020, 'Seoul', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2021, 'Sudogwon', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2022, 'Taegu', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2023, 'Taejeon', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2024, 'Taejon-gwangyoksi', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2025, 'Ulsan', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2026, 'Wonju', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2027, 'gwangyoksi', 118, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2028, 'Al Asimah', 119, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2029, 'Hawalli', 119, '2024-01-21 12:07:18', '2024-01-21 12:07:18', NULL, NULL, NULL, NULL, 1), -(2030, 'Mishref', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2031, 'Qadesiya', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2032, 'Safat', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2033, 'Salmiya', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2034, 'al-Ahmadi', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2035, 'al-Farwaniyah', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2036, 'al-Jahra', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2037, 'al-Kuwayt', 119, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2038, 'Batken', 120, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2039, 'Bishkek', 120, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2040, 'Chui', 120, '2024-01-21 12:07:19', '2024-01-21 12:07:19', NULL, NULL, NULL, NULL, 1), -(2041, 'Issyk-Kul', 120, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2042, 'Jalal-Abad', 120, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2043, 'Naryn', 120, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2044, 'Osh', 120, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2045, 'Talas', 120, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2046, 'Attopu', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2047, 'Bokeo', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2048, 'Bolikhamsay', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2049, 'Champasak', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2050, 'Houaphanh', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2051, 'Khammouane', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2052, 'Luang Nam Tha', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2053, 'Luang Prabang', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2054, 'Oudomxay', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2055, 'Phongsaly', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2056, 'Saravan', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2057, 'Savannakhet', 121, '2024-01-21 12:07:20', '2024-01-21 12:07:20', NULL, NULL, NULL, NULL, 1), -(2058, 'Sekong', 121, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2059, 'Viangchan Prefecture', 121, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2060, 'Viangchan Province', 121, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2061, 'Xaignabury', 121, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2062, 'Xiang Khuang', 121, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2063, 'Aizkraukles', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2064, 'Aluksnes', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2065, 'Balvu', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2066, 'Bauskas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2067, 'Cesu', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2068, 'Daugavpils', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2069, 'Daugavpils City', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2070, 'Dobeles', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2071, 'Gulbenes', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2072, 'Jekabspils', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2073, 'Jelgava', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2074, 'Jelgavas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2075, 'Jurmala City', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2076, 'Kraslavas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2077, 'Kuldigas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2078, 'Liepaja', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2079, 'Liepajas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES -(2080, 'Limbazhu', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2081, 'Ludzas', 122, '2024-01-21 12:07:21', '2024-01-21 12:07:21', NULL, NULL, NULL, NULL, 1), -(2082, 'Madonas', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2083, 'Ogres', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2084, 'Preilu', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2085, 'Rezekne', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2086, 'Rezeknes', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2087, 'Riga', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2088, 'Rigas', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2089, 'Saldus', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2090, 'Talsu', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2091, 'Tukuma', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2092, 'Valkas', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2093, 'Valmieras', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2094, 'Ventspils', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2095, 'Ventspils City', 122, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2096, 'Beirut', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2097, 'Jabal Lubnan', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2098, 'Mohafazat Liban-Nord', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2099, 'Mohafazat Mont-Liban', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2100, 'Sidon', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2101, 'al-Biqa', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2102, 'al-Janub', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2103, 'an-Nabatiyah', 123, '2024-01-21 12:07:22', '2024-01-21 12:07:22', NULL, NULL, NULL, NULL, 1), -(2104, 'ash-Shamal', 123, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2105, 'Berea', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2106, 'Butha-Buthe', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2107, 'Leribe', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2108, 'Mafeteng', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2109, 'Maseru', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2110, 'Mohale s Hoek', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), - (2111, 'Mokhotlong', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), - (2112, 'Qacha s Nek', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2113, 'Quthing', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2114, 'Thaba-Tseka', 124, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2115, 'Bomi', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2116, 'Bong', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2117, 'Grand Bassa', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2118, 'Grand Cape Mount', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2119, 'Grand Gedeh', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2120, 'Loffa', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2121, 'Margibi', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2122, 'Maryland and Grand Kru', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2123, 'Montserrado', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2124, 'Nimba', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2125, 'Rivercess', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2126, 'Sinoe', 125, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2127, 'Ajdabiya', 126, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2128, 'Fezzan', 126, '2024-01-21 12:07:23', '2024-01-21 12:07:23', NULL, NULL, NULL, NULL, 1), -(2129, 'Banghazi', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2130, 'Darnah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2131, 'Ghadamis', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2132, 'Gharyan', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2133, 'Misratah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2134, 'Murzuq', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2135, 'Sabha', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2136, 'Sawfajjin', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2137, 'Surt', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2138, 'Tarabulus', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2139, 'Tarhunah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2140, 'Tripolitania', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2141, 'Tubruq', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2142, 'Yafran', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2143, 'Zlitan', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2144, 'al- Aziziyah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2145, 'al-Fatih', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2146, 'al-Jabal al Akhdar', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2147, 'al-Jufrah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2148, 'al-Khums', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2149, 'al-Kufrah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2150, 'an-Nuqat al-Khams', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), - (2151, 'ash-Shati ', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2152, 'az-Zawiyah', 126, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2153, 'Balzers', 127, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2154, 'Eschen', 127, '2024-01-21 12:07:24', '2024-01-21 12:07:24', NULL, NULL, NULL, NULL, 1), -(2155, 'Gamprin', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2156, 'Mauren', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2157, 'Planken', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2158, 'Ruggell', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2159, 'Schaan', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2160, 'Schellenberg', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2161, 'Triesen', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2162, 'Triesenberg', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2163, 'Vaduz', 127, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2164, 'Alytaus', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2165, 'Anyksciai', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2166, 'Kauno', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2167, 'Klaipedos', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2168, 'Marijampoles', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2169, 'Panevezhio', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2170, 'Panevezys', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2171, 'Shiauliu', 128, '2024-01-21 12:07:25', '2024-01-21 12:07:25', NULL, NULL, NULL, NULL, 1), -(2172, 'Taurages', 128, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2173, 'Telshiu', 128, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2174, 'Telsiai', 128, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2175, 'Utenos', 128, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2176, 'Vilniaus', 128, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2177, 'Capellen', 129, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2178, 'Clervaux', 129, '2024-01-21 12:07:26', '2024-01-21 12:07:26', NULL, NULL, NULL, NULL, 1), -(2179, 'Diekirch', 129, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, NULL, NULL, NULL, 1), -(2180, 'Echternach', 129, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, NULL, NULL, NULL, 1), -(2181, 'Esch-sur-Alzette', 129, '2024-01-21 12:07:27', '2024-01-21 12:07:27', NULL, NULL, NULL, NULL, 1), -(2182, 'Grevenmacher', 129, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, NULL, NULL, NULL, 1), -(2183, 'Mersch', 129, '2024-01-21 12:07:28', '2024-01-21 12:07:28', NULL, NULL, NULL, NULL, 1), -(2184, 'Redange', 129, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, NULL, NULL, NULL, 1), -(2185, 'Remich', 129, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, NULL, NULL, NULL, 1), -(2186, 'Vianden', 129, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, NULL, NULL, NULL, 1), -(2187, 'Wiltz', 129, '2024-01-21 12:07:29', '2024-01-21 12:07:29', NULL, NULL, NULL, NULL, 1), -(2188, 'Macau', 130, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2189, 'Berovo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2190, 'Bitola', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2191, 'Brod', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2192, 'Debar', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2193, 'Delchevo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2194, 'Demir Hisar', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2195, 'Gevgelija', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2196, 'Gostivar', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2197, 'Kavadarci', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2198, 'Kichevo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2199, 'Kochani', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2200, 'Kratovo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2201, 'Kriva Palanka', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2202, 'Krushevo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2203, 'Kumanovo', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2204, 'Negotino', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2205, 'Ohrid', 131, '2024-01-21 12:07:30', '2024-01-21 12:07:30', NULL, NULL, NULL, NULL, 1), -(2206, 'Prilep', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2207, 'Probishtip', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2208, 'Radovish', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2209, 'Resen', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2210, 'Shtip', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2211, 'Skopje', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2212, 'Struga', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2213, 'Strumica', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2214, 'Sveti Nikole', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2215, 'Tetovo', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2216, 'Valandovo', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2217, 'Veles', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2218, 'Vinica', 131, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2219, 'Antananarivo', 132, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2220, 'Antsiranana', 132, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2221, 'Fianarantsoa', 132, '2024-01-21 12:07:31', '2024-01-21 12:07:31', NULL, NULL, NULL, NULL, 1), -(2222, 'Mahajanga', 132, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2223, 'Toamasina', 132, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2224, 'Toliary', 132, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2225, 'Balaka', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2226, 'Blantyre City', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2227, 'Chikwawa', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2228, 'Chiradzulu', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2229, 'Chitipa', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2230, 'Dedza', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2231, 'Dowa', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2232, 'Karonga', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2233, 'Kasungu', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2234, 'Lilongwe City', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2235, 'Machinga', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2236, 'Mangochi', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2237, 'Mchinji', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2238, 'Mulanje', 133, '2024-01-21 12:07:32', '2024-01-21 12:07:32', NULL, NULL, NULL, NULL, 1), -(2239, 'Mwanza', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2240, 'Mzimba', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2241, 'Mzuzu City', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2242, 'Nkhata Bay', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2243, 'Nkhotakota', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2244, 'Nsanje', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2245, 'Ntcheu', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2246, 'Ntchisi', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2247, 'Phalombe', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2248, 'Rumphi', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2249, 'Salima', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2250, 'Thyolo', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2251, 'Zomba Municipality', 133, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2252, 'Johor', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2253, 'Kedah', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2254, 'Kelantan', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2255, 'Kuala Lumpur', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2256, 'Labuan', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2257, 'Melaka', 134, '2024-01-21 12:07:33', '2024-01-21 12:07:33', NULL, NULL, NULL, NULL, 1), -(2258, 'Negeri Johor', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2259, 'Negeri Sembilan', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2260, 'Pahang', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2261, 'Penang', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2262, 'Perak', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2263, 'Perlis', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2264, 'Pulau Pinang', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2265, 'Sabah', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2266, 'Sarawak', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2267, 'Selangor', 134, '2024-01-21 12:07:34', '2024-01-21 12:07:34', NULL, NULL, NULL, NULL, 1), -(2268, 'Sembilan', 134, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2269, 'Terengganu', 134, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2270, 'Alif Alif', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2271, 'Alif Dhaal', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2272, 'Baa', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2273, 'Dhaal', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2274, 'Faaf', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2275, 'Gaaf Alif', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2276, 'Gaaf Dhaal', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2277, 'Ghaviyani', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2278, 'Haa Alif', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2279, 'Haa Dhaal', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2280, 'Kaaf', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2281, 'Laam', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2282, 'Lhaviyani', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2283, 'Male', 135, '2024-01-21 12:07:35', '2024-01-21 12:07:35', NULL, NULL, NULL, NULL, 1), -(2284, 'Miim', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2285, 'Nuun', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2286, 'Raa', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2287, 'Shaviyani', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2288, 'Siin', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2289, 'Thaa', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2290, 'Vaav', 135, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2291, 'Bamako', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2292, 'Gao', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2293, 'Kayes', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2294, 'Kidal', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2295, 'Koulikoro', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2296, 'Mopti', 136, '2024-01-21 12:07:36', '2024-01-21 12:07:36', NULL, NULL, NULL, NULL, 1), -(2297, 'Segou', 136, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2298, 'Sikasso', 136, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2299, 'Tombouctou', 136, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2300, 'Gozo and Comino', 137, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2301, 'Inner Harbour', 137, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2302, 'Outer Harbour', 137, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2303, 'South Eastern', 137, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2304, 'Ailinlaplap', 138, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2305, 'Ailuk', 138, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2306, 'Arno', 138, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2307, 'Aur', 138, '2024-01-21 12:07:37', '2024-01-21 12:07:37', NULL, NULL, NULL, NULL, 1), -(2308, 'Bikini', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2309, 'Ebon', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2310, 'Enewetak', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2311, 'Jabat', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2312, 'Jaluit', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2313, 'Kili', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2314, 'Kwajalein', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2315, 'Lae', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2316, 'Lib', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2317, 'Likiep', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2318, 'Majuro', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2319, 'Maloelap', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2320, 'Mejit', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2321, 'Mili', 138, '2024-01-21 12:07:38', '2024-01-21 12:07:38', NULL, NULL, NULL, NULL, 1), -(2322, 'Namorik', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2323, 'Namu', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2324, 'Rongelap', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2325, 'Ujae', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2326, 'Utrik', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2327, 'Wotho', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2328, 'Wotje', 138, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2329, 'Fort-de-France', 139, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2330, 'La Trinite', 139, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2331, 'Le Marin', 139, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2332, 'Saint-Pierre', 139, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2333, 'Assaba', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2334, 'Brakna', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2335, 'Dhakhlat Nawadibu', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2336, 'Hudh-al-Gharbi', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2337, 'Hudh-ash-Sharqi', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2338, 'Inshiri', 140, '2024-01-21 12:07:39', '2024-01-21 12:07:39', NULL, NULL, NULL, NULL, 1), -(2339, 'Nawakshut', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2340, 'Qidimagha', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2341, 'Qurqul', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2342, 'Taqant', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2343, 'Tiris Zammur', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2344, 'Trarza', 140, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2345, 'Black River', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2346, 'Eau Coulee', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2347, 'Flacq', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2348, 'Floreal', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2349, 'Grand Port', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2350, 'Moka', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2351, 'Pamplempousses', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2352, 'Plaines Wilhelm', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2353, 'Port Louis', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2354, 'Riviere du Rempart', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2355, 'Rodrigues', 141, '2024-01-21 12:07:40', '2024-01-21 12:07:40', NULL, NULL, NULL, NULL, 1), -(2356, 'Rose Hill', 141, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2357, 'Savanne', 141, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2358, 'Mayotte', 142, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2359, 'Pamanzi', 142, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2360, 'Aguascalientes', 143, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2361, 'Baja California', 143, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2362, 'Baja California Sur', 143, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2363, 'Campeche', 143, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2364, 'Chiapas', 143, '2024-01-21 12:07:41', '2024-01-21 12:07:41', NULL, NULL, NULL, NULL, 1), -(2365, 'Chihuahua', 143, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, NULL, NULL, NULL, 1), -(2366, 'Coahuila', 143, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, NULL, NULL, NULL, 1), -(2367, 'Colima', 143, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, NULL, NULL, NULL, 1), -(2368, 'Durango', 143, '2024-01-21 12:07:42', '2024-01-21 12:07:42', NULL, NULL, NULL, NULL, 1), -(2369, 'Estado de Mexico', 143, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, NULL, NULL, NULL, 1), -(2370, 'Guanajuato', 143, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, NULL, NULL, NULL, 1), -(2371, 'Guerrero', 143, '2024-01-21 12:07:43', '2024-01-21 12:07:43', NULL, NULL, NULL, NULL, 1), -(2372, 'Hidalgo', 143, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, NULL, NULL, NULL, 1), -(2373, 'Jalisco', 143, '2024-01-21 12:07:44', '2024-01-21 12:07:44', NULL, NULL, NULL, NULL, 1), -(2374, 'Mexico', 143, '2024-01-21 12:07:45', '2024-01-21 12:07:45', NULL, NULL, NULL, NULL, 1), -(2375, 'Michoacan', 143, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, NULL, NULL, NULL, 1), -(2376, 'Morelos', 143, '2024-01-21 12:07:47', '2024-01-21 12:07:47', NULL, NULL, NULL, NULL, 1), -(2377, 'Nayarit', 143, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, NULL, NULL, NULL, 1), -(2378, 'Nuevo Leon', 143, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, NULL, NULL, NULL, 1), -(2379, 'Oaxaca', 143, '2024-01-21 12:07:48', '2024-01-21 12:07:48', NULL, NULL, NULL, NULL, 1), -(2380, 'Puebla', 143, '2024-01-21 12:07:49', '2024-01-21 12:07:49', NULL, NULL, NULL, NULL, 1), -(2381, 'Queretaro', 143, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, NULL, NULL, NULL, 1), -(2382, 'Quintana Roo', 143, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, NULL, NULL, NULL, 1), -(2383, 'San Luis Potosi', 143, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, NULL, NULL, NULL, 1), -(2384, 'Sinaloa', 143, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, NULL, NULL, NULL, 1), -(2385, 'Sonora', 143, '2024-01-21 12:07:50', '2024-01-21 12:07:50', NULL, NULL, NULL, NULL, 1), -(2386, 'Tabasco', 143, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, NULL, NULL, NULL, 1), -(2387, 'Tamaulipas', 143, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, NULL, NULL, NULL, 1), -(2388, 'Tlaxcala', 143, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, NULL, NULL, NULL, 1), -(2389, 'Veracruz', 143, '2024-01-21 12:07:51', '2024-01-21 12:07:51', NULL, NULL, NULL, NULL, 1), -(2390, 'Yucatan', 143, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2391, 'Zacatecas', 143, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2392, 'Chuuk', 144, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2393, 'Kusaie', 144, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2394, 'Pohnpei', 144, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2395, 'Yap', 144, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2396, 'Balti', 145, '2024-01-21 12:07:53', '2024-01-21 12:07:53', NULL, NULL, NULL, NULL, 1), -(2397, 'Cahul', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2398, 'Chisinau', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2399, 'Chisinau Oras', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2400, 'Edinet', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2401, 'Gagauzia', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2402, 'Lapusna', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2403, 'Orhei', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2404, 'Soroca', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2405, 'Taraclia', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2406, 'Tighina', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2407, 'Transnistria', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2408, 'Ungheni', 145, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2409, 'Fontvieille', 146, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2410, 'La Condamine', 146, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2411, 'Monaco-Ville', 146, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2412, 'Monte Carlo', 146, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2413, 'Arhangaj', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2414, 'Bajan-Olgij', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2415, 'Bajanhongor', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2416, 'Bulgan', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2417, 'Darhan-Uul', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2418, 'Dornod', 147, '2024-01-21 12:07:54', '2024-01-21 12:07:54', NULL, NULL, NULL, NULL, 1), -(2419, 'Dornogovi', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2420, 'Dundgovi', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2421, 'Govi-Altaj', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2422, 'Govisumber', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2423, 'Hentij', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2424, 'Hovd', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2425, 'Hovsgol', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2426, 'Omnogovi', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2427, 'Orhon', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2428, 'Ovorhangaj', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2429, 'Selenge', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2430, 'Suhbaatar', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2431, 'Tov', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2432, 'Ulaanbaatar', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2433, 'Uvs', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2434, 'Zavhan', 147, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2435, 'Montserrat', 149, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2436, 'Agadir', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2437, 'Casablanca', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2438, 'Chaouia-Ouardigha', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2439, 'Doukkala-Abda', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2440, 'Fes-Boulemane', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2441, 'Gharb-Chrarda-Beni Hssen', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2442, 'Guelmim', 150, '2024-01-21 12:07:55', '2024-01-21 12:07:55', NULL, NULL, NULL, NULL, 1), -(2443, 'Kenitra', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2444, 'Marrakech-Tensift-Al Haouz', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2445, 'Meknes-Tafilalet', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2446, 'Oriental', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2447, 'Oujda', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2448, 'Province de Tanger', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2449, 'Rabat-Sale-Zammour-Zaer', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2450, 'Sala Al Jadida', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2451, 'Settat', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2452, 'Souss Massa-Draa', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2453, 'Tadla-Azilal', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2454, 'Tangier-Tetouan', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2455, 'Taza-Al Hoceima-Taounate', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2456, 'Wilaya de Casablanca', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2457, 'Wilaya de Rabat-Sale', 150, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2458, 'Cabo Delgado', 151, '2024-01-21 12:07:56', '2024-01-21 12:07:56', NULL, NULL, NULL, NULL, 1), -(2459, 'Inhambane', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2460, 'Manica', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2461, 'Maputo', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2462, 'Maputo Provincia', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2463, 'Nampula', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2464, 'Niassa', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2465, 'Sofala', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2466, 'Tete', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2467, 'Zambezia', 151, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2468, 'Ayeyarwady', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2469, 'Bago', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2470, 'Chin', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2471, 'Kachin', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2472, 'Kayah', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2473, 'Kayin', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2474, 'Magway', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2475, 'Mandalay', 152, '2024-01-21 12:07:57', '2024-01-21 12:07:57', NULL, NULL, NULL, NULL, 1), -(2476, 'Mon', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2477, 'Nay Pyi Taw', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2478, 'Rakhine', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2479, 'Sagaing', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2480, 'Shan', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2481, 'Tanintharyi', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2482, 'Yangon', 152, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2483, 'Caprivi', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2484, 'Erongo', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2485, 'Hardap', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2486, 'Karas', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2487, 'Kavango', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2488, 'Khomas', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2489, 'Kunene', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2490, 'Ohangwena', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2491, 'Omaheke', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2492, 'Omusati', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2493, 'Oshana', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2494, 'Oshikoto', 153, '2024-01-21 12:07:58', '2024-01-21 12:07:58', NULL, NULL, NULL, NULL, 1), -(2495, 'Otjozondjupa', 153, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2496, 'Yaren', 154, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2497, 'Bagmati', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2498, 'Bheri', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2499, 'Dhawalagiri', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2500, 'Gandaki', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2501, 'Janakpur', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2502, 'Karnali', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2503, 'Koshi', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2504, 'Lumbini', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2505, 'Mahakali', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2506, 'Mechi', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2507, 'Narayani', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2508, 'Rapti', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2509, 'Sagarmatha', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2510, 'Seti', 155, '2024-01-21 12:07:59', '2024-01-21 12:07:59', NULL, NULL, NULL, NULL, 1), -(2511, 'Benelux', 156, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, NULL, NULL, NULL, 1), -(2512, 'Drenthe', 156, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, NULL, NULL, NULL, 1), -(2513, 'Flevoland', 156, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, NULL, NULL, NULL, 1), -(2514, 'Friesland', 156, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, NULL, NULL, NULL, 1), -(2515, 'Gelderland', 156, '2024-01-21 12:08:00', '2024-01-21 12:08:00', NULL, NULL, NULL, NULL, 1), -(2516, 'Groningen', 156, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, NULL, NULL, NULL, 1), -(2517, 'Noord-Brabant', 156, '2024-01-21 12:08:01', '2024-01-21 12:08:01', NULL, NULL, NULL, NULL, 1), -(2518, 'Overijssel', 156, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, NULL, NULL, NULL, 1), -(2519, 'South Holland', 156, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, NULL, NULL, NULL, 1), -(2520, 'Utrecht', 156, '2024-01-21 12:08:03', '2024-01-21 12:08:03', NULL, NULL, NULL, NULL, 1), -(2521, 'Zeeland', 156, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, NULL, NULL, NULL, 1), -(2522, 'Zuid-Holland', 156, '2024-01-21 12:45:26', '2024-01-21 12:45:26', NULL, NULL, NULL, NULL, 1), -(2523, 'Iles', 157, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, NULL, NULL, NULL, 1), -(2524, 'Area Outside Region', 158, '2024-01-21 12:45:27', '2024-01-21 12:45:27', NULL, NULL, NULL, NULL, 1), -(2525, 'Bay of Plenty', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), -(2526, 'Canterbury', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), -(2527, 'Christchurch', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), -(2528, 'Gisborne', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), -(2529, 'Hawke s Bay', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2530, 'Manawatu-Wanganui', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2531, 'Marlborough', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2532, 'Nelson', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2533, 'Northland', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2534, 'Otago', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2535, 'Rodney', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2536, 'Southland', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2537, 'Taranaki', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2538, 'Tasman', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2539, 'Waikato', 158, '2024-01-21 12:45:28', '2024-01-21 12:45:28', NULL, NULL, NULL, NULL, 1), - (2540, 'Wellington', 158, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2541, 'West Coast', 158, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2542, 'Atlantico Norte', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2543, 'Atlantico Sur', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2544, 'Boaco', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2545, 'Carazo', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2546, 'Chinandega', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2547, 'Chontales', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2548, 'Esteli', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2549, 'Granada', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2550, 'Jinotega', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2551, 'Leon', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2552, 'Madriz', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2553, 'Managua', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2554, 'Masaya', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2555, 'Matagalpa', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2556, 'Nueva Segovia', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2557, 'Rio San Juan', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2558, 'Rivas', 159, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2559, 'Agadez', 160, '2024-01-21 12:45:29', '2024-01-21 12:45:29', NULL, NULL, NULL, NULL, 1), - (2560, 'Diffa', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2561, 'Dosso', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2562, 'Maradi', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2563, 'Niamey', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2564, 'Tahoua', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2565, 'Tillabery', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2566, 'Zinder', 160, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2567, 'Abia', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2568, 'Abuja Federal Capital Territory', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2569, 'Adamawa', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2570, 'Akwa Ibom', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2571, 'Anambra', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2572, 'Bauchi', 161, '2024-01-21 12:45:30', '2024-01-21 12:45:30', NULL, NULL, NULL, NULL, 1), - (2573, 'Bayelsa', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2574, 'Benue', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2575, 'Borno', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2576, 'Cross River', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2577, 'Delta', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2578, 'Ebonyi', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2579, 'Edo', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2580, 'Ekiti', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2581, 'Enugu', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2582, 'Gombe', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2583, 'Imo', 161, '2024-01-21 12:45:31', '2024-01-21 12:45:31', NULL, NULL, NULL, NULL, 1), - (2584, 'Jigawa', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2585, 'Kaduna', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2586, 'Kano', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2587, 'Katsina', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2588, 'Kebbi', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2589, 'Kogi', 161, '2024-01-21 12:45:32', '2024-01-21 12:45:32', NULL, NULL, NULL, NULL, 1), - (2590, 'Kwara', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2591, 'Lagos', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2592, 'Nassarawa', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2593, 'Niger', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2594, 'Ogun', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2595, 'Ondo', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2596, 'Osun', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1), - (2597, 'Oyo', 161, '2024-01-21 12:45:33', '2024-01-21 12:45:33', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES - (2598, 'Rivers', 161, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2599, 'Sokoto', 161, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2600, 'Taraba', 161, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2601, 'Yobe', 161, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2602, 'Zamfara', 161, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2603, 'Niue', 162, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2604, 'Norfolk Island', 163, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2605, 'Northern Islands', 164, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2606, 'Rota', 164, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2607, 'Saipan', 164, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2608, 'Tinian', 164, '2024-01-21 12:45:34', '2024-01-21 12:45:34', NULL, NULL, NULL, NULL, 1), - (2609, 'Akershus', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2610, 'Aust Agder', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2611, 'Bergen', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2612, 'Buskerud', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2613, 'Finnmark', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2614, 'Hedmark', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2615, 'Hordaland', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2616, 'Moere og Romsdal', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2617, 'Nord Trondelag', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2618, 'Nordland', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2619, 'Oestfold', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2620, 'Oppland', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2621, 'Oslo', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2622, 'Rogaland', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2623, 'Soer Troendelag', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2624, 'Sogn og Fjordane', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2625, 'Stavern', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2626, 'Sykkylven', 165, '2024-01-21 12:45:35', '2024-01-21 12:45:35', NULL, NULL, NULL, NULL, 1), - (2627, 'Telemark', 165, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2628, 'Troms', 165, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2629, 'Vest Agder', 165, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2630, 'Vestfold', 165, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2631, 'Østfold', 165, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2632, 'Al Buraimi', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2633, 'Dhufar', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2634, 'Masqat', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2635, 'Musandam', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2636, 'Rusayl', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2637, 'Wadi Kabir', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2638, 'ad-Dakhiliyah', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2639, 'adh-Dhahirah', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2640, 'al-Batinah', 166, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2641, 'Baluchistan', 167, '2024-01-21 12:45:36', '2024-01-21 12:45:36', NULL, NULL, NULL, NULL, 1), - (2642, 'Federal Capital Area', 167, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, NULL, NULL, NULL, 1), - (2643, 'Federally administered Tribal ', 167, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, NULL, NULL, NULL, 1), - (2644, 'North-West Frontier', 167, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, NULL, NULL, NULL, 1), - (2645, 'Northern Areas', 167, '2024-01-21 12:45:37', '2024-01-21 12:45:37', NULL, NULL, NULL, NULL, 1), - (2646, 'Sind', 167, '2024-01-21 12:45:38', '2024-01-21 12:45:38', NULL, NULL, NULL, NULL, 1), - (2647, 'Aimeliik', 168, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, NULL, NULL, NULL, 1), - (2648, 'Airai', 168, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, NULL, NULL, NULL, 1), - (2649, 'Angaur', 168, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, NULL, NULL, NULL, 1), - (2650, 'Hatobohei', 168, '2024-01-21 12:45:39', '2024-01-21 12:45:39', NULL, NULL, NULL, NULL, 1), - (2651, 'Kayangel', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2652, 'Koror', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2653, 'Melekeok', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2654, 'Ngaraard', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2655, 'Ngardmau', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2656, 'Ngaremlengui', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2657, 'Ngatpang', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2658, 'Ngchesar', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2659, 'Ngerchelong', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2660, 'Ngiwal', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2661, 'Peleliu', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2662, 'Sonsorol', 168, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2663, 'Ariha', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2664, 'Bayt Lahm', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2665, 'Dayr-al-Balah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2666, 'Ghazzah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2667, 'Ghazzah ash-Shamaliyah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2668, 'Janin', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2669, 'Khan Yunis', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2670, 'Nabulus', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2671, 'Qalqilyah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2672, 'Rafah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2673, 'Ram Allah wal-Birah', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2674, 'Salfit', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2675, 'Tubas', 169, '2024-01-21 12:45:40', '2024-01-21 12:45:40', NULL, NULL, NULL, NULL, 1), - (2676, 'Tulkarm', 169, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2677, 'al-Khalil', 169, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2678, 'al-Quds', 169, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2679, 'Bocas del Toro', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2680, 'Chiriqui', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2681, 'Cocle', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2682, 'Darien', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2683, 'Embera', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2684, 'Herrera', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2685, 'Kuna Yala', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2686, 'Los Santos', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2687, 'Ngobe Bugle', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2688, 'Panama', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2689, 'Veraguas', 170, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2690, 'East New Britain', 171, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2691, 'East Sepik', 171, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2692, 'Eastern Highlands', 171, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2693, 'Enga', 171, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2694, 'Fly River', 171, '2024-01-21 12:45:41', '2024-01-21 12:45:41', NULL, NULL, NULL, NULL, 1), - (2695, 'Gulf', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2696, 'Madang', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2697, 'Manus', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2698, 'Milne Bay', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2699, 'Morobe', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2700, 'National Capital District', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2701, 'New Ireland', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2702, 'North Solomons', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2703, 'Oro', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2704, 'Sandaun', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2705, 'Simbu', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2706, 'Southern Highlands', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2707, 'West New Britain', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2708, 'Western Highlands', 171, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2709, 'Alto Paraguay', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2710, 'Alto Parana', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2711, 'Amambay', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2712, 'Asuncion', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2713, 'Boqueron', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2714, 'Caaguazu', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2715, 'Caazapa', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2716, 'Canendiyu', 172, '2024-01-21 12:45:42', '2024-01-21 12:45:42', NULL, NULL, NULL, NULL, 1), - (2717, 'Concepcion', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2718, 'Cordillera', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2719, 'Guaira', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2720, 'Itapua', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2721, 'Neembucu', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2722, 'Paraguari', 172, '2024-01-21 12:45:43', '2024-01-21 12:45:43', NULL, NULL, NULL, NULL, 1), - (2723, 'Presidente Hayes', 172, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2724, 'San Pedro', 172, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2725, 'Ancash', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2726, 'Apurimac', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2727, 'Arequipa', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2728, 'Ayacucho', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2729, 'Cajamarca', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2730, 'Cusco', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2731, 'Huancavelica', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2732, 'Huanuco', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2733, 'Ica', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2734, 'Junin', 173, '2024-01-21 12:45:44', '2024-01-21 12:45:44', NULL, NULL, NULL, NULL, 1), - (2735, 'Lambayeque', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2736, 'Lima y Callao', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2737, 'Loreto', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2738, 'Madre de Dios', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2739, 'Moquegua', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2740, 'Pasco', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2741, 'Piura', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2742, 'Puno', 173, '2024-01-21 12:45:45', '2024-01-21 12:45:45', NULL, NULL, NULL, NULL, 1), - (2743, 'San Martin', 173, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2744, 'Tacna', 173, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2745, 'Tumbes', 173, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2746, 'Ucayali', 173, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2747, 'Batangas', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2748, 'Bicol', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2749, 'Bulacan', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2750, 'Cagayan', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2751, 'Caraga', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2752, 'Central Luzon', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2753, 'Central Mindanao', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2754, 'Central Visayas', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2755, 'Davao', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2756, 'Eastern Visayas', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2757, 'Greater Metropolitan Area', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2758, 'Ilocos', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2759, 'Laguna', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2760, 'Luzon', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2761, 'Mactan', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2762, 'Metropolitan Manila Area', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2763, 'Muslim Mindanao', 174, '2024-01-21 12:45:46', '2024-01-21 12:45:46', NULL, NULL, NULL, NULL, 1), - (2764, 'Northern Mindanao', 174, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2765, 'Southern Mindanao', 174, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2766, 'Southern Tagalog', 174, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2767, 'Western Mindanao', 174, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2768, 'Western Visayas', 174, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2769, 'Pitcairn Island', 175, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2770, 'Biale Blota', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2771, 'Dobroszyce', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2772, 'Dolnoslaskie', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2773, 'Dziekanow Lesny', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2774, 'Hopowo', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2775, 'Kartuzy', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2776, 'Koscian', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2777, 'Krakow', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2778, 'Kujawsko-Pomorskie', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2779, 'Lodzkie', 176, '2024-01-21 12:45:47', '2024-01-21 12:45:47', NULL, NULL, NULL, NULL, 1), - (2780, 'Lubelskie', 176, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, NULL, NULL, NULL, 1), - (2781, 'Lubuskie', 176, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, NULL, NULL, NULL, 1), - (2782, 'Malomice', 176, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, NULL, NULL, NULL, 1), - (2783, 'Malopolskie', 176, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, NULL, NULL, NULL, 1), - (2784, 'Mazowieckie', 176, '2024-01-21 12:45:48', '2024-01-21 12:45:48', NULL, NULL, NULL, NULL, 1), - (2785, 'Mirkow', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2786, 'Opolskie', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2787, 'Ostrowiec', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2788, 'Podkarpackie', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2789, 'Podlaskie', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2790, 'Polska', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2791, 'Pomorskie', 176, '2024-01-21 12:45:49', '2024-01-21 12:45:49', NULL, NULL, NULL, NULL, 1), - (2792, 'Poznan', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2793, 'Pruszkow', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2794, 'Rymanowska', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2795, 'Rzeszow', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2796, 'Slaskie', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2797, 'Stare Pole', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2798, 'Swietokrzyskie', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2799, 'Warminsko-Mazurskie', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2800, 'Warsaw', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2801, 'Wejherowo', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2802, 'Wielkopolskie', 176, '2024-01-21 12:45:50', '2024-01-21 12:45:50', NULL, NULL, NULL, NULL, 1), - (2803, 'Wroclaw', 176, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2804, 'Zachodnio-Pomorskie', 176, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2805, 'Zukowo', 176, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2806, 'Abrantes', 177, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2807, 'Acores', 177, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2808, 'Alentejo', 177, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2809, 'Algarve', 177, '2024-01-21 12:45:51', '2024-01-21 12:45:51', NULL, NULL, NULL, NULL, 1), - (2810, 'Braga', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2811, 'Centro', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2812, 'Distrito de Leiria', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2813, 'Distrito de Viana do Castelo', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2814, 'Distrito de Vila Real', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2815, 'Distrito do Porto', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2816, 'Lisboa e Vale do Tejo', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2817, 'Madeira', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2818, 'Norte', 177, '2024-01-21 12:45:52', '2024-01-21 12:45:52', NULL, NULL, NULL, NULL, 1), - (2819, 'Paivas', 177, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2820, 'Arecibo', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2821, 'Bayamon', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2822, 'Carolina', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2823, 'Florida', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2824, 'Guayama', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2825, 'Humacao', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2826, 'Mayaguez-Aguadilla', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2827, 'Ponce', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2828, 'Salinas', 178, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2829, 'Doha', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2830, 'Jarian-al-Batnah', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2831, 'Umm Salal', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2832, 'ad-Dawhah', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2833, 'al-Ghuwayriyah', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2834, 'al-Jumayliyah', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2835, 'al-Khawr', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2836, 'al-Wakrah', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2837, 'ar-Rayyan', 179, '2024-01-21 12:45:54', '2024-01-21 12:45:54', NULL, NULL, NULL, NULL, 1), - (2838, 'Saint-Benoit', 180, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, NULL, NULL, NULL, 1), - (2839, 'Saint-Denis', 180, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, NULL, NULL, NULL, 1), - (2840, 'Saint-Paul', 180, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, NULL, NULL, NULL, 1), - (2841, 'Alba', 181, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, NULL, NULL, NULL, 1), - (2842, 'Arad', 181, '2024-01-21 12:45:55', '2024-01-21 12:45:55', NULL, NULL, NULL, NULL, 1), - (2843, 'Arges', 181, '2024-01-21 12:45:56', '2024-01-21 12:45:56', NULL, NULL, NULL, NULL, 1), - (2844, 'Bacau', 181, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, NULL, NULL, NULL, 1), - (2845, 'Bihor', 181, '2024-01-21 12:45:57', '2024-01-21 12:45:57', NULL, NULL, NULL, NULL, 1), - (2846, 'Bistrita-Nasaud', 181, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, NULL, NULL, NULL, 1), - (2847, 'Botosani', 181, '2024-01-21 12:45:58', '2024-01-21 12:45:58', NULL, NULL, NULL, NULL, 1), - (2848, 'Braila', 181, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, NULL, NULL, NULL, 1), - (2849, 'Brasov', 181, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, NULL, NULL, NULL, 1), - (2850, 'Bucuresti', 181, '2024-01-21 12:45:59', '2024-01-21 12:45:59', NULL, NULL, NULL, NULL, 1), - (2851, 'Buzau', 181, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, NULL, NULL, NULL, 1), - (2852, 'Calarasi', 181, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, NULL, NULL, NULL, 1), - (2853, 'Caras-Severin', 181, '2024-01-21 12:46:00', '2024-01-21 12:46:00', NULL, NULL, NULL, NULL, 1), - (2854, 'Cluj', 181, '2024-01-21 12:46:01', '2024-01-21 12:46:01', NULL, NULL, NULL, NULL, 1), - (2855, 'Constanta', 181, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, NULL, NULL, NULL, 1), - (2856, 'Covasna', 181, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, NULL, NULL, NULL, 1), - (2857, 'Dambovita', 181, '2024-01-21 12:46:02', '2024-01-21 12:46:02', NULL, NULL, NULL, NULL, 1), - (2858, 'Dolj', 181, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, NULL, NULL, NULL, 1), - (2859, 'Galati', 181, '2024-01-21 12:46:03', '2024-01-21 12:46:03', NULL, NULL, NULL, NULL, 1), - (2860, 'Giurgiu', 181, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, NULL, NULL, NULL, 1), - (2861, 'Gorj', 181, '2024-01-21 12:46:04', '2024-01-21 12:46:04', NULL, NULL, NULL, NULL, 1), - (2862, 'Harghita', 181, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, NULL, NULL, NULL, 1), - (2863, 'Hunedoara', 181, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, NULL, NULL, NULL, 1), - (2864, 'Ialomita', 181, '2024-01-21 12:46:05', '2024-01-21 12:46:05', NULL, NULL, NULL, NULL, 1), - (2865, 'Iasi', 181, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, NULL, NULL, NULL, 1), - (2866, 'Ilfov', 181, '2024-01-21 12:46:06', '2024-01-21 12:46:06', NULL, NULL, NULL, NULL, 1), - (2867, 'Maramures', 181, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, NULL, NULL, NULL, 1), - (2868, 'Mehedinti', 181, '2024-01-21 12:46:07', '2024-01-21 12:46:07', NULL, NULL, NULL, NULL, 1), - (2869, 'Mures', 181, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, NULL, NULL, NULL, 1), - (2870, 'Neamt', 181, '2024-01-21 12:46:08', '2024-01-21 12:46:08', NULL, NULL, NULL, NULL, 1), - (2871, 'Olt', 181, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, NULL, NULL, NULL, 1), - (2872, 'Prahova', 181, '2024-01-21 12:46:09', '2024-01-21 12:46:09', NULL, NULL, NULL, NULL, 1), - (2873, 'Salaj', 181, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, NULL, NULL, NULL, 1), - (2874, 'Satu Mare', 181, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, NULL, NULL, NULL, 1), - (2875, 'Sibiu', 181, '2024-01-21 12:46:10', '2024-01-21 12:46:10', NULL, NULL, NULL, NULL, 1), - (2876, 'Sondelor', 181, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, NULL, NULL, NULL, 1), - (2877, 'Suceava', 181, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, NULL, NULL, NULL, 1), - (2878, 'Teleorman', 181, '2024-01-21 12:46:11', '2024-01-21 12:46:11', NULL, NULL, NULL, NULL, 1), - (2879, 'Timis', 181, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, NULL, NULL, NULL, 1), - (2880, 'Tulcea', 181, '2024-01-21 12:46:12', '2024-01-21 12:46:12', NULL, NULL, NULL, NULL, 1), - (2881, 'Valcea', 181, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, NULL, NULL, NULL, 1), - (2882, 'Vaslui', 181, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, NULL, NULL, NULL, 1), - (2883, 'Vrancea', 181, '2024-01-21 12:46:13', '2024-01-21 12:46:13', NULL, NULL, NULL, NULL, 1), - (2884, 'Adygeja', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2885, 'Aga', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2886, 'Alanija', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2887, 'Altaj', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2888, 'Amur', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2889, 'Arhangelsk', 182, '2024-01-21 12:46:14', '2024-01-21 12:46:14', NULL, NULL, NULL, NULL, 1), - (2890, 'Astrahan', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2891, 'Bashkortostan', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2892, 'Belgorod', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2893, 'Brjansk', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2894, 'Burjatija', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2895, 'Chechenija', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2896, 'Cheljabinsk', 182, '2024-01-21 12:46:15', '2024-01-21 12:46:15', NULL, NULL, NULL, NULL, 1), - (2897, 'Chita', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2898, 'Chukotka', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2899, 'Chuvashija', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2900, 'Dagestan', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2901, 'Evenkija', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2902, 'Gorno-Altaj', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2903, 'Habarovsk', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2904, 'Hakasija', 182, '2024-01-21 12:46:16', '2024-01-21 12:46:16', NULL, NULL, NULL, NULL, 1), - (2905, 'Hanty-Mansija', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2906, 'Ingusetija', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2907, 'Irkutsk', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2908, 'Ivanovo', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2909, 'Jamalo-Nenets', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2910, 'Jaroslavl', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2911, 'Jevrej', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2912, 'Kabardino-Balkarija', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2913, 'Kaliningrad', 182, '2024-01-21 12:46:17', '2024-01-21 12:46:17', NULL, NULL, NULL, NULL, 1), - (2914, 'Kalmykija', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2915, 'Kaluga', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2916, 'Kamchatka', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2917, 'Karachaj-Cherkessija', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2918, 'Karelija', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2919, 'Kemerovo', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2920, 'Khabarovskiy Kray', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2921, 'Kirov', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2922, 'Komi', 182, '2024-01-21 12:46:18', '2024-01-21 12:46:18', NULL, NULL, NULL, NULL, 1), - (2923, 'Komi-Permjakija', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2924, 'Korjakija', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2925, 'Kostroma', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2926, 'Krasnodar', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2927, 'Krasnojarsk', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2928, 'Krasnoyarskiy Kray', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2929, 'Kurgan', 182, '2024-01-21 12:46:19', '2024-01-21 12:46:19', NULL, NULL, NULL, NULL, 1), - (2930, 'Kursk', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2931, 'Leningrad', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2932, 'Lipeck', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2933, 'Magadan', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2934, 'Marij El', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2935, 'Mordovija', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2936, 'Moscow', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2937, 'Moskovskaja Oblast', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2938, 'Moskovskaya Oblast', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2939, 'Moskva', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2940, 'Murmansk', 182, '2024-01-21 12:46:20', '2024-01-21 12:46:20', NULL, NULL, NULL, NULL, 1), - (2941, 'Nenets', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2942, 'Nizhnij Novgorod', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2943, 'Novgorod', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2944, 'Novokusnezk', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2945, 'Novosibirsk', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2946, 'Omsk', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2947, 'Orenburg', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2948, 'Orjol', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2949, 'Penza', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2950, 'Perm', 182, '2024-01-21 12:46:21', '2024-01-21 12:46:21', NULL, NULL, NULL, NULL, 1), - (2951, 'Primorje', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2952, 'Pskov', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2953, 'Pskovskaya Oblast', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2954, 'Rjazan', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2955, 'Rostov', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2956, 'Saha', 182, '2024-01-21 12:46:22', '2024-01-21 12:46:22', NULL, NULL, NULL, NULL, 1), - (2957, 'Sahalin', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2958, 'Samara', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2959, 'Samarskaya', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2960, 'Sankt-Peterburg', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2961, 'Saratov', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2962, 'Smolensk', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2963, 'Stavropol', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2964, 'Sverdlovsk', 182, '2024-01-21 12:46:23', '2024-01-21 12:46:23', NULL, NULL, NULL, NULL, 1), - (2965, 'Tajmyrija', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2966, 'Tambov', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2967, 'Tatarstan', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2968, 'Tjumen', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2969, 'Tomsk', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2970, 'Tula', 182, '2024-01-21 12:46:24', '2024-01-21 12:46:24', NULL, NULL, NULL, NULL, 1), - (2971, 'Tver', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2972, 'Tyva', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2973, 'Udmurtija', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2974, 'Uljanovsk', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2975, 'Ulyanovskaya Oblast', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2976, 'Ust-Orda', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2977, 'Vladimir', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2978, 'Volgograd', 182, '2024-01-21 12:46:25', '2024-01-21 12:46:25', NULL, NULL, NULL, NULL, 1), - (2979, 'Vologda', 182, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2980, 'Voronezh', 182, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2981, 'Butare', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2982, 'Byumba', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2983, 'Cyangugu', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2984, 'Gikongoro', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2985, 'Gisenyi', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2986, 'Gitarama', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2987, 'Kibungo', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2988, 'Kibuye', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2989, 'Kigali-ngali', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2990, 'Ruhengeri', 183, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2991, 'Ascension', 185, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2992, 'Gough Island', 185, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2993, 'Saint Helena', 185, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2994, 'Tristan da Cunha', 185, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2995, 'Christ Church Nichola Town', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2996, 'Saint Anne Sandy Point', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2997, 'Saint George Basseterre', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2998, 'Saint George Gingerland', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (2999, 'Saint James Windward', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (3000, 'Saint John Capesterre', 186, '2024-01-21 12:46:26', '2024-01-21 12:46:26', NULL, NULL, NULL, NULL, 1), - (3001, 'Saint John Figtree', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3002, 'Saint Mary Cayon', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3003, 'Saint Paul Capesterre', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3004, 'Saint Paul Charlestown', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3005, 'Saint Peter Basseterre', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3006, 'Saint Thomas Lowland', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3007, 'Saint Thomas Middle Island', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3008, 'Trinity Palmetto Point', 186, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3009, 'Anse-la-Raye', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3010, 'Canaries', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3011, 'Castries', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3012, 'Choiseul', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3013, 'Dennery', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3014, 'Gros Inlet', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3015, 'Laborie', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3016, 'Micoud', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3017, 'Soufriere', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3018, 'Vieux Fort', 187, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3019, 'Miquelon-Langlade', 189, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3020, 'Charlotte', 190, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3021, 'Grenadines', 190, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), - (3022, 'A ana', 191, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), -(3023, 'Aiga-i-le-Tai', 191, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), -(3024, 'Atua', 191, '2024-01-21 12:46:27', '2024-01-21 12:46:27', NULL, NULL, NULL, NULL, 1), -(3025, 'Fa asaleleaga', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), - (3026, 'Gaga emauga', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3027, 'Gagaifomauga', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3028, 'Palauli', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3029, 'Satupa itea', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), - (3030, 'Tuamasaga', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), - (3031, 'Va a-o-Fonoti', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3032, 'Vaisigano', 191, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3033, 'Acquaviva', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3034, 'Borgo Maggiore', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3035, 'Chiesanuova', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3036, 'Domagnano', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3037, 'Faetano', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3038, 'Fiorentino', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3039, 'Montegiardino', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3040, 'San Marino', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3041, 'Serravalle', 192, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3042, 'Agua Grande', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3043, 'Cantagalo', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3044, 'Lemba', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3045, 'Lobata', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3046, 'Me-Zochi', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3047, 'Pague', 193, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3048, 'Al Khobar', 194, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3049, 'Aseer', 194, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3050, 'Ash Sharqiyah', 194, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3051, 'Asir', 194, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3052, 'Central Province', 194, '2024-01-21 12:46:28', '2024-01-21 12:46:28', NULL, NULL, NULL, NULL, 1), -(3053, 'Eastern Province', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), -(3054, 'Ha il', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3055, 'Jawf', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3056, 'Jizan', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3057, 'Makkah', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3058, 'Najran', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3059, 'Qasim', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3060, 'Tabuk', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3061, 'Western Province', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3062, 'al-Bahah', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3063, 'al-Hudud-ash-Shamaliyah', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3064, 'al-Madinah', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3065, 'ar-Riyad', 194, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3066, 'Dakar', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3067, 'Diourbel', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3068, 'Fatick', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3069, 'Kaolack', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3070, 'Kolda', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3071, 'Louga', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3072, 'Saint-Louis', 195, '2024-01-21 12:46:29', '2024-01-21 12:46:29', NULL, NULL, NULL, NULL, 1), - (3073, 'Tambacounda', 195, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3074, 'Thies', 195, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3075, 'Ziguinchor', 195, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3076, 'Central Serbia', 196, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3077, 'Kosovo and Metohija', 196, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3078, 'Vojvodina', 196, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3079, 'Anse Boileau', 197, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3080, 'Anse Royale', 197, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3081, 'Cascade', 197, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3082, 'Takamaka', 197, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3083, 'Singapore', 199, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3084, 'Banskobystricky', 201, '2024-01-21 12:46:30', '2024-01-21 12:46:30', NULL, NULL, NULL, NULL, 1), - (3085, 'Bratislavsky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3086, 'Kosicky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3087, 'Nitriansky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3088, 'Presovsky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3089, 'Trenciansky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3090, 'Trnavsky', 201, '2024-01-21 12:46:31', '2024-01-21 12:46:31', NULL, NULL, NULL, NULL, 1), - (3091, 'Zilinsky', 201, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3092, 'Benedikt', 202, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3093, 'Gorenjska', 202, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3094, 'Gorishka', 202, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3095, 'Jugovzhodna Slovenija', 202, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3096, 'Koroshka', 202, '2024-01-21 12:46:32', '2024-01-21 12:46:32', NULL, NULL, NULL, NULL, 1), - (3097, 'Notranjsko-krashka', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3098, 'Obalno-krashka', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3099, 'Obcina Domzale', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3100, 'Obcina Vitanje', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3101, 'Osrednjeslovenska', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3102, 'Podravska', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3103, 'Pomurska', 202, '2024-01-21 12:46:33', '2024-01-21 12:46:33', NULL, NULL, NULL, NULL, 1), - (3104, 'Savinjska', 202, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3105, 'Slovenian Littoral', 202, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3106, 'Spodnjeposavska', 202, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3107, 'Zasavska', 202, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3108, 'Guadalcanal', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES - (3109, 'Isabel', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3110, 'Makira and Ulawa', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3111, 'Malaita', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3112, 'Rennell and Bellona', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3113, 'Temotu', 203, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3114, 'Awdal', 204, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3115, 'Bakol', 204, '2024-01-21 12:46:34', '2024-01-21 12:46:34', NULL, NULL, NULL, NULL, 1), - (3116, 'Banadir', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3117, 'Bay', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3118, 'Galgudug', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3119, 'Gedo', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3120, 'Hiran', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3121, 'Jubbada Hose', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3122, 'Jubbadha Dexe', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3123, 'Mudug', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3124, 'Nugal', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3125, 'Sanag', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3126, 'Shabellaha Dhexe', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3127, 'Shabellaha Hose', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3128, 'Togdher', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3129, 'Woqoyi Galbed', 204, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3130, 'Eastern Cape', 205, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3131, 'Free State', 205, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3132, 'Gauteng', 205, '2024-01-21 12:46:35', '2024-01-21 12:46:35', NULL, NULL, NULL, NULL, 1), - (3133, 'Kempton Park', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3134, 'Kramerville', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3135, 'KwaZulu Natal', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3136, 'Limpopo', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3137, 'Mpumalanga', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3138, 'North West', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3139, 'Northern Cape', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3140, 'Parow', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3141, 'Table View', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3142, 'Umtentweni', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3143, 'Western Cape', 205, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3144, 'Central Equatoria', 207, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3145, 'A Coruna', 208, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3146, 'Alacant', 208, '2024-01-21 12:46:36', '2024-01-21 12:46:36', NULL, NULL, NULL, NULL, 1), - (3147, 'Alava', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3148, 'Albacete', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3149, 'Almeria', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3150, 'Asturias', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3151, 'Avila', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3152, 'Badajoz', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3153, 'Balears', 208, '2024-01-21 12:46:37', '2024-01-21 12:46:37', NULL, NULL, NULL, NULL, 1), - (3154, 'Barcelona', 208, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, NULL, NULL, NULL, 1), - (3155, 'Burgos', 208, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, NULL, NULL, NULL, 1), - (3156, 'Caceres', 208, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, NULL, NULL, NULL, 1), - (3157, 'Cadiz', 208, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, NULL, NULL, NULL, 1), - (3158, 'Cantabria', 208, '2024-01-21 12:46:38', '2024-01-21 12:46:38', NULL, NULL, NULL, NULL, 1), - (3159, 'Castello', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3160, 'Ceuta', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3161, 'Ciudad Real', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3162, 'Cuenca', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3163, 'Girona', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3164, 'Guadalajara', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3165, 'Guipuzcoa', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3166, 'Huelva', 208, '2024-01-21 12:46:39', '2024-01-21 12:46:39', NULL, NULL, NULL, NULL, 1), - (3167, 'Huesca', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3168, 'Jaen', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3169, 'Las Palmas', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3170, 'Lleida', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3171, 'Lugo', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3172, 'Madrid', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3173, 'Malaga', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3174, 'Melilla', 208, '2024-01-21 12:46:40', '2024-01-21 12:46:40', NULL, NULL, NULL, NULL, 1), - (3175, 'Murcia', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3176, 'Navarra', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3177, 'Ourense', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3178, 'Pais Vasco', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3179, 'Palencia', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3180, 'Pontevedra', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3181, 'Salamanca', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3182, 'Segovia', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3183, 'Sevilla', 208, '2024-01-21 12:46:41', '2024-01-21 12:46:41', NULL, NULL, NULL, NULL, 1), - (3184, 'Soria', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3185, 'Tarragona', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3186, 'Santa Cruz de Tenerife', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3187, 'Teruel', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3188, 'Valencia', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3189, 'Valladolid', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3190, 'Vizcaya', 208, '2024-01-21 12:46:42', '2024-01-21 12:46:42', NULL, NULL, NULL, NULL, 1), - (3191, 'Zamora', 208, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3192, 'Zaragoza', 208, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3193, 'Amparai', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3194, 'Anuradhapuraya', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3195, 'Badulla', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3196, 'Boralesgamuwa', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3197, 'Colombo', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3198, 'Galla', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3199, 'Gampaha', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3200, 'Hambantota', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3201, 'Kalatura', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3202, 'Kegalla', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3203, 'Kilinochchi', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3204, 'Kurunegala', 209, '2024-01-21 12:46:43', '2024-01-21 12:46:43', NULL, NULL, NULL, NULL, 1), - (3205, 'Madakalpuwa', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3206, 'Maha Nuwara', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3207, 'Malwana', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3208, 'Mannarama', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3209, 'Matale', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3210, 'Matara', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3211, 'Monaragala', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3212, 'Mullaitivu', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3213, 'North Eastern Province', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3214, 'North Western Province', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3215, 'Nuwara Eliya', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3216, 'Polonnaruwa', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3217, 'Puttalama', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3218, 'Ratnapuraya', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3219, 'Southern Province', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3220, 'Tirikunamalaya', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3221, 'Tuscany', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3222, 'Vavuniyawa', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3223, 'Yapanaya', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3224, 'kadawatha', 209, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), - (3225, 'A ali-an-Nil', 210, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), -(3226, 'Bahr-al-Jabal', 210, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), -(3227, 'Gharb Bahr-al-Ghazal', 210, '2024-01-21 12:46:44', '2024-01-21 12:46:44', NULL, NULL, NULL, NULL, 1), -(3228, 'Gharb Darfur', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3229, 'Gharb Kurdufan', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3230, 'Gharb-al-Istiwa iyah', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3231, 'Janub Darfur', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3232, 'Janub Kurdufan', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3233, 'Junqali', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3234, 'Kassala', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3235, 'Nahr-an-Nil', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3236, 'Shamal Bahr-al-Ghazal', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3237, 'Shamal Darfur', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3238, 'Shamal Kurdufan', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), - (3239, 'Sharq-al-Istiwa iyah', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3240, 'Sinnar', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3241, 'Warab', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3242, 'Wilayat al Khartum', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3243, 'al-Buhayrat', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3244, 'al-Jazirah', 210, '2024-01-21 12:46:45', '2024-01-21 12:46:45', NULL, NULL, NULL, NULL, 1), -(3245, 'al-Khartum', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3246, 'al-Qadarif', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3247, 'al-Wahdah', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3248, 'an-Nil-al-Abyad', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3249, 'an-Nil-al-Azraq', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3250, 'ash-Shamaliyah', 210, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3251, 'Brokopondo', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3252, 'Commewijne', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3253, 'Coronie', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3254, 'Marowijne', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3255, 'Nickerie', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3256, 'Paramaribo', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3257, 'Saramacca', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3258, 'Wanica', 211, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3259, 'Svalbard', 212, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3260, 'Hhohho', 213, '2024-01-21 12:46:46', '2024-01-21 12:46:46', NULL, NULL, NULL, NULL, 1), -(3261, 'Lubombo', 213, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3262, 'Manzini', 213, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3263, 'Shiselweni', 213, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3264, 'Alvsborgs Lan', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3265, 'Angermanland', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3266, 'Blekinge', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3267, 'Bohuslan', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3268, 'Dalarna', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3269, 'Gavleborg', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3270, 'Gotland', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3271, 'Halland', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3272, 'Jamtland', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3273, 'Jonkoping', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3274, 'Kalmar', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3275, 'Kristianstads', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3276, 'Kronoberg', 214, '2024-01-21 12:46:47', '2024-01-21 12:46:47', NULL, NULL, NULL, NULL, 1), -(3277, 'Norrbotten', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3278, 'Orebro', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3279, 'Ostergotland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3280, 'Saltsjo-Boo', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3281, 'Skane', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3282, 'Smaland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3283, 'Sodermanland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3284, 'Stockholm', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3285, 'Uppsala', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3286, 'Varmland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3287, 'Vasterbotten', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3288, 'Vastergotland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3289, 'Vasternorrland', 214, '2024-01-21 12:46:48', '2024-01-21 12:46:48', NULL, NULL, NULL, NULL, 1), -(3290, 'Vastmanland', 214, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3291, 'Vastra Gotaland', 214, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3292, 'Aargau', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3293, 'Appenzell Inner-Rhoden', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3294, 'Appenzell-Ausser Rhoden', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3295, 'Basel-Landschaft', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3296, 'Basel-Stadt', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3297, 'Bern', 215, '2024-01-21 12:46:49', '2024-01-21 12:46:49', NULL, NULL, NULL, NULL, 1), -(3298, 'Canton Ticino', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3299, 'Fribourg', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3300, 'Geneve', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3301, 'Glarus', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3302, 'Graubunden', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3303, 'Heerbrugg', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3304, 'Kanton Aargau', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3305, 'Luzern', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3306, 'Morbio Inferiore', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3307, 'Muhen', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3308, 'Neuchatel', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3309, 'Nidwalden', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3310, 'Obwalden', 215, '2024-01-21 12:46:50', '2024-01-21 12:46:50', NULL, NULL, NULL, NULL, 1), -(3311, 'Sankt Gallen', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3312, 'Schaffhausen', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3313, 'Schwyz', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3314, 'Solothurn', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3315, 'Thurgau', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3316, 'Ticino', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3317, 'Uri', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3318, 'Valais', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3319, 'Vaud', 215, '2024-01-21 12:46:51', '2024-01-21 12:46:51', NULL, NULL, NULL, NULL, 1), -(3320, 'Vauffelin', 215, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), -(3321, 'Zug', 215, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), -(3322, 'Zurich', 215, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), -(3323, 'Aleppo', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), -(3324, 'Dar a', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), - (3325, 'Dayr-az-Zawr', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), - (3326, 'Dimashq', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), - (3327, 'Halab', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), - (3328, 'Hamah', 216, '2024-01-21 12:46:52', '2024-01-21 12:46:52', NULL, NULL, NULL, NULL, 1), - (3329, 'Hims', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3330, 'Idlib', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3331, 'Madinat Dimashq', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3332, 'Tartus', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3333, 'al-Hasakah', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3334, 'al-Ladhiqiyah', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3335, 'al-Qunaytirah', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3336, 'ar-Raqqah', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3337, 'as-Suwayda', 216, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3338, 'Changhua County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3339, 'Chiayi County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3340, 'Chiayi City', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3341, 'Taipei City', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3342, 'Hsinchu County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3343, 'Hsinchu City', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3344, 'Hualien County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3345, 'Kaohsiung City', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3346, 'Keelung City', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3347, 'Kinmen County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3348, 'Miaoli County', 217, '2024-01-21 12:46:53', '2024-01-21 12:46:53', NULL, NULL, NULL, NULL, 1), - (3349, 'Nantou County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3350, 'Penghu County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3351, 'Pingtung County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3352, 'Taichung City', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3353, 'Tainan City', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3354, 'New Taipei City', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3355, 'Taitung County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3356, 'Taoyuan City', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3357, 'Yilan County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3358, 'YunLin County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3359, 'Lienchiang County', 217, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3360, 'Dushanbe', 218, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3361, 'Gorno-Badakhshan', 218, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3362, 'Karotegin', 218, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3363, 'Khatlon', 218, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3364, 'Sughd', 218, '2024-01-21 12:46:54', '2024-01-21 12:46:54', NULL, NULL, NULL, NULL, 1), - (3365, 'Arusha', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3366, 'Dar es Salaam', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3367, 'Dodoma', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3368, 'Iringa', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3369, 'Kagera', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3370, 'Kigoma', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3371, 'Kilimanjaro', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3372, 'Lindi', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3373, 'Mara', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3374, 'Mbeya', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3375, 'Morogoro', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3376, 'Mtwara', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3377, 'Pwani', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3378, 'Rukwa', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3379, 'Ruvuma', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3380, 'Shinyanga', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3381, 'Singida', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3382, 'Tabora', 219, '2024-01-21 12:46:55', '2024-01-21 12:46:55', NULL, NULL, NULL, NULL, 1), - (3383, 'Tanga', 219, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3384, 'Zanzibar and Pemba', 219, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3385, 'Amnat Charoen', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3386, 'Ang Thong', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3387, 'Bangkok', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3388, 'Buri Ram', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3389, 'Chachoengsao', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3390, 'Chai Nat', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3391, 'Chaiyaphum', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3392, 'Changwat Chaiyaphum', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3393, 'Chanthaburi', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3394, 'Chiang Mai', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3395, 'Chiang Rai', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3396, 'Chon Buri', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3397, 'Chumphon', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3398, 'Kalasin', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3399, 'Kamphaeng Phet', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3400, 'Kanchanaburi', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3401, 'Khon Kaen', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3402, 'Krabi', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3403, 'Krung Thep', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3404, 'Lampang', 220, '2024-01-21 12:46:56', '2024-01-21 12:46:56', NULL, NULL, NULL, NULL, 1), - (3405, 'Lamphun', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3406, 'Loei', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3407, 'Lop Buri', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3408, 'Mae Hong Son', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3409, 'Maha Sarakham', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3410, 'Mukdahan', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3411, 'Nakhon Nayok', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3412, 'Nakhon Pathom', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3413, 'Nakhon Phanom', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3414, 'Nakhon Ratchasima', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3415, 'Nakhon Sawan', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3416, 'Nakhon Si Thammarat', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3417, 'Nan', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3418, 'Narathiwat', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3419, 'Nong Bua Lam Phu', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3420, 'Nong Khai', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3421, 'Nonthaburi', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3422, 'Pathum Thani', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3423, 'Pattani', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3424, 'Phangnga', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3425, 'Phatthalung', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3426, 'Phayao', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3427, 'Phetchabun', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3428, 'Phetchaburi', 220, '2024-01-21 12:46:57', '2024-01-21 12:46:57', NULL, NULL, NULL, NULL, 1), - (3429, 'Phichit', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3430, 'Phitsanulok', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3431, 'Phra Nakhon Si Ayutthaya', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3432, 'Phrae', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3433, 'Phuket', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3434, 'Prachin Buri', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3435, 'Prachuap Khiri Khan', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3436, 'Ranong', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3437, 'Ratchaburi', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3438, 'Rayong', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3439, 'Roi Et', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3440, 'Sa Kaeo', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3441, 'Sakon Nakhon', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3442, 'Samut Prakan', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3443, 'Samut Sakhon', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3444, 'Samut Songkhran', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3445, 'Saraburi', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3446, 'Satun', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3447, 'Si Sa Ket', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3448, 'Sing Buri', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3449, 'Songkhla', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3450, 'Sukhothai', 220, '2024-01-21 12:46:58', '2024-01-21 12:46:58', NULL, NULL, NULL, NULL, 1), - (3451, 'Suphan Buri', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3452, 'Surat Thani', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3453, 'Surin', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3454, 'Tak', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3455, 'Trang', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3456, 'Trat', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3457, 'Ubon Ratchathani', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3458, 'Udon Thani', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3459, 'Uthai Thani', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3460, 'Uttaradit', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3461, 'Yala', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3462, 'Yasothon', 220, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3463, 'Kara', 222, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3464, 'Maritime', 222, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3465, 'Atafu', 223, '2024-01-21 12:46:59', '2024-01-21 12:46:59', NULL, NULL, NULL, NULL, 1), - (3466, 'Fakaofo', 223, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3467, 'Nukunonu', 223, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3468, 'Eua', 224, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3469, 'Ha apai', 224, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), -(3470, 'Niuas', 224, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), -(3471, 'Tongatapu', 224, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), -(3472, 'Vava u', 224, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3473, 'Arima-Tunapuna-Piarco', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3474, 'Caroni', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3475, 'Chaguanas', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3476, 'Couva-Tabaquite-Talparo', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3477, 'Diego Martin', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3478, 'Glencoe', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3479, 'Penal Debe', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3480, 'Point Fortin', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3481, 'Port of Spain', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3482, 'Princes Town', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3483, 'San Fernando', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3484, 'Sangre Grande', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3485, 'Siparia', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3486, 'Tobago', 225, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3487, 'Aryanah', 226, '2024-01-21 12:47:00', '2024-01-21 12:47:00', NULL, NULL, NULL, NULL, 1), - (3488, 'Bajah', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), - (3489, 'Bin Arus', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3490, 'Binzart', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3491, 'Gouvernorat de Ariana', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3492, 'Gouvernorat de Nabeul', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3493, 'Gouvernorat de Sousse', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3494, 'Hammamet Yasmine', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3495, 'Jundubah', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3496, 'Madaniyin', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3497, 'Manubah', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3498, 'Monastir', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3499, 'Nabul', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3500, 'Qabis', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3501, 'Qafsah', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3502, 'Qibili', 226, '2024-01-21 12:47:01', '2024-01-21 12:47:01', NULL, NULL, NULL, NULL, 1), -(3503, 'Safaqis', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3504, 'Sfax', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3505, 'Sidi Bu Zayd', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3506, 'Silyanah', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3507, 'Susah', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3508, 'Tatawin', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3509, 'Tawzar', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3510, 'Tunis', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3511, 'Zaghwan', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3512, 'al-Kaf', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3513, 'al-Mahdiyah', 226, '2024-01-21 12:47:02', '2024-01-21 12:47:02', NULL, NULL, NULL, NULL, 1), -(3514, 'al-Munastir', 226, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3515, 'al-Qasrayn', 226, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3516, 'al-Qayrawan', 226, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3517, 'Adana', 227, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3518, 'Adiyaman', 227, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3519, 'Afyon', 227, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3520, 'Agri', 227, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3521, 'Aksaray', 227, '2024-01-21 12:47:03', '2024-01-21 12:47:03', NULL, NULL, NULL, NULL, 1), -(3522, 'Amasya', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3523, 'Ankara', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3524, 'Antalya', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3525, 'Ardahan', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3526, 'Artvin', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3527, 'Aydin', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3528, 'Balikesir', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3529, 'Bartin', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3530, 'Batman', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3531, 'Bayburt', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3532, 'Bilecik', 227, '2024-01-21 12:47:04', '2024-01-21 12:47:04', NULL, NULL, NULL, NULL, 1), -(3533, 'Bingol', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3534, 'Bitlis', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3535, 'Bolu', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3536, 'Burdur', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3537, 'Bursa', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3538, 'Canakkale', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3539, 'Cankiri', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3540, 'Corum', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3541, 'Denizli', 227, '2024-01-21 12:47:05', '2024-01-21 12:47:05', NULL, NULL, NULL, NULL, 1), -(3542, 'Diyarbakir', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3543, 'Duzce', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3544, 'Edirne', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3545, 'Elazig', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3546, 'Erzincan', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3547, 'Erzurum', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3548, 'Eskisehir', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3549, 'Gaziantep', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3550, 'Giresun', 227, '2024-01-21 12:47:06', '2024-01-21 12:47:06', NULL, NULL, NULL, NULL, 1), -(3551, 'Gumushane', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3552, 'Hakkari', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3553, 'Hatay', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3554, 'Icel', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3555, 'Igdir', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3556, 'Isparta', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3557, 'Istanbul', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3558, 'Izmir', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3559, 'Kahramanmaras', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3560, 'Karabuk', 227, '2024-01-21 12:47:07', '2024-01-21 12:47:07', NULL, NULL, NULL, NULL, 1), -(3561, 'Karaman', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3562, 'Kars', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3563, 'Karsiyaka', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3564, 'Kastamonu', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3565, 'Kayseri', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3566, 'Kilis', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3567, 'Kirikkale', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3568, 'Kirklareli', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3569, 'Kirsehir', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3570, 'Kocaeli', 227, '2024-01-21 12:47:08', '2024-01-21 12:47:08', NULL, NULL, NULL, NULL, 1), -(3571, 'Konya', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3572, 'Kutahya', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3573, 'Lefkosa', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3574, 'Malatya', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3575, 'Manisa', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3576, 'Mardin', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3577, 'Mugla', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3578, 'Mus', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3579, 'Nevsehir', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3580, 'Nigde', 227, '2024-01-21 12:47:09', '2024-01-21 12:47:09', NULL, NULL, NULL, NULL, 1), -(3581, 'Ordu', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3582, 'Osmaniye', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3583, 'Rize', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3584, 'Sakarya', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3585, 'Samsun', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3586, 'Sanliurfa', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3587, 'Siirt', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3588, 'Sinop', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3589, 'Sirnak', 227, '2024-01-21 12:47:10', '2024-01-21 12:47:10', NULL, NULL, NULL, NULL, 1), -(3590, 'Sivas', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3591, 'Tekirdag', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3592, 'Tokat', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3593, 'Trabzon', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3594, 'Tunceli', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3595, 'Usak', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3596, 'Van', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3597, 'Yalova', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3598, 'Yozgat', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3599, 'Zonguldak', 227, '2024-01-21 12:47:11', '2024-01-21 12:47:11', NULL, NULL, NULL, NULL, 1), -(3600, 'Ahal', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3601, 'Asgabat', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3602, 'Balkan', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3603, 'Dasoguz', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3604, 'Lebap', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3605, 'Mari', 228, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3606, 'Grand Turk', 229, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3607, 'South Caicos and East Caicos', 229, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3608, 'Funafuti', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3609, 'Nanumanga', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3610, 'Nanumea', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3611, 'Niutao', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3612, 'Nui', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3613, 'Nukufetau', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3614, 'Nukulaelae', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3615, 'Vaitupu', 230, '2024-01-21 12:47:12', '2024-01-21 12:47:12', NULL, NULL, NULL, NULL, 1), -(3616, 'Cherkas ka', 232, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, NULL, NULL, NULL, 1), - (3617, 'Chernihivs ka', 232, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, NULL, NULL, NULL, 1), -(3618, 'Chernivets ka', 232, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, NULL, NULL, NULL, 1), - (3619, 'Crimea', 232, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, NULL, NULL, NULL, 1), - (3620, 'Dnipropetrovska', 232, '2024-01-21 12:47:13', '2024-01-21 12:47:13', NULL, NULL, NULL, NULL, 1), - (3621, 'Donets ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1); -INSERT INTO `cities` (`id`, `name`, `country_id`, `created_at`, `updated_at`, `translations`, `timezone`, `lat`, `lng`, `is_activated`) VALUES -(3622, 'Ivano-Frankivs ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3623, 'Kharkiv', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3624, 'Kharkov', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3625, 'Khersonska', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3626, 'Khmel nyts ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3627, 'Kirovohrad', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3628, 'Krym', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3629, 'Kyyiv', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3630, 'Kyyivs ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), -(3631, 'L vivs ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), -(3632, 'Luhans ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3633, 'Mykolayivs ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), -(3634, 'Odes ka', 232, '2024-01-21 12:47:14', '2024-01-21 12:47:14', NULL, NULL, NULL, NULL, 1), - (3635, 'Odessa', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3636, 'Poltavs ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), -(3637, 'Rivnens ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3638, 'Sevastopol ', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), -(3639, 'Sums ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3640, 'Ternopil s ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3641, 'Volyns ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), -(3642, 'Vynnyts ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3643, 'Zakarpats ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), -(3644, 'Zaporizhia', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), -(3645, 'Zhytomyrs ka', 232, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3646, 'Abu Zabi', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3647, 'Ajman', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3648, 'Dubai', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3649, 'Ras al-Khaymah', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3650, 'Sharjah', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3651, 'Sharjha', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3652, 'Umm al Qaywayn', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3653, 'al-Fujayrah', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3654, 'ash-Shariqah', 233, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3655, 'Aberdeen', 234, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3656, 'Aberdeenshire', 234, '2024-01-21 12:47:15', '2024-01-21 12:47:15', NULL, NULL, NULL, NULL, 1), - (3657, 'Argyll', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3658, 'Bedfordshire', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3659, 'Belfast', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3660, 'Berkshire', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3661, 'Birmingham', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3662, 'Brechin', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3663, 'Bridgnorth', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3664, 'Bristol', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3665, 'Buckinghamshire', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3666, 'Cambridge', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3667, 'Cambridgeshire', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3668, 'Channel Islands', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3669, 'Cheshire', 234, '2024-01-21 12:47:16', '2024-01-21 12:47:16', NULL, NULL, NULL, NULL, 1), - (3670, 'Cleveland', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3671, 'Co Fermanagh', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3672, 'Conwy', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3673, 'Cornwall', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3674, 'Coventry', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3675, 'Craven Arms', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3676, 'Cumbria', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3677, 'Denbighshire', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3678, 'Derby', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3679, 'Derbyshire', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3680, 'Devon', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3681, 'Dial Code Dungannon', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3682, 'Didcot', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3683, 'Dorset', 234, '2024-01-21 12:47:17', '2024-01-21 12:47:17', NULL, NULL, NULL, NULL, 1), - (3684, 'Dunbartonshire', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3685, 'Durham', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3686, 'East Dunbartonshire', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3687, 'East Lothian', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3688, 'East Midlands', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3689, 'East Sussex', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3690, 'East Yorkshire', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3691, 'England', 234, '2024-01-21 12:47:18', '2024-01-21 12:47:18', NULL, NULL, NULL, NULL, 1), - (3692, 'Essex', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3693, 'Fermanagh', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3694, 'Fife', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3695, 'Flintshire', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3696, 'Fulham', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3697, 'Gainsborough', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3698, 'Glocestershire', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3699, 'Gwent', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3700, 'Hampshire', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3701, 'Hants', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3702, 'Herefordshire', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3703, 'Hertfordshire', 234, '2024-01-21 12:47:21', '2024-01-21 12:47:21', NULL, NULL, NULL, NULL, 1), - (3704, 'Ireland', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3705, 'Isle Of Man', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3706, 'Isle of Wight', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3707, 'Kenford', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3708, 'Kent', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3709, 'Kilmarnock', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3710, 'Lanarkshire', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3711, 'Lancashire', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3712, 'Leicestershire', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3713, 'Lincolnshire', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3714, 'Llanymynech', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3715, 'London', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3716, 'Ludlow', 234, '2024-01-21 12:47:22', '2024-01-21 12:47:22', NULL, NULL, NULL, NULL, 1), - (3717, 'Mayfair', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3718, 'Merseyside', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3719, 'Mid Glamorgan', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3720, 'Middlesex', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3721, 'Mildenhall', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3722, 'Monmouthshire', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3723, 'Newton Stewart', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3724, 'Norfolk', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3725, 'North Humberside', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3726, 'North Yorkshire', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3727, 'Northamptonshire', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3728, 'Northants', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3729, 'Northern Ireland', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3730, 'Northumberland', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3731, 'Nottinghamshire', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3732, 'Oxford', 234, '2024-01-21 12:47:23', '2024-01-21 12:47:23', NULL, NULL, NULL, NULL, 1), - (3733, 'Powys', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3734, 'Roos-shire', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3735, 'SUSSEX', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3736, 'Sark', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3737, 'Scotland', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3738, 'Scottish Borders', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3739, 'Shropshire', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3740, 'Somerset', 234, '2024-01-21 12:47:24', '2024-01-21 12:47:24', NULL, NULL, NULL, NULL, 1), - (3741, 'South Glamorgan', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3742, 'South Wales', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3743, 'South Yorkshire', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3744, 'Southwell', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3745, 'Staffordshire', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3746, 'Strabane', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3747, 'Suffolk', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3748, 'Surrey', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3749, 'Twickenham', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3750, 'Tyne and Wear', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3751, 'Tyrone', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3752, 'Utah', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3753, 'Wales', 234, '2024-01-21 12:47:25', '2024-01-21 12:47:25', NULL, NULL, NULL, NULL, 1), - (3754, 'Warwickshire', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3755, 'West Lothian', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3756, 'West Midlands', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3757, 'West Sussex', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3758, 'West Yorkshire', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3759, 'Whissendine', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3760, 'Wiltshire', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3761, 'Wokingham', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3762, 'Worcestershire', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3763, 'Wrexham', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3764, 'Wurttemberg', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3765, 'Yorkshire', 234, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3766, 'Alabama', 235, '2024-01-21 12:47:26', '2024-01-21 12:47:26', NULL, NULL, NULL, NULL, 1), - (3767, 'Alaska', 235, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, NULL, NULL, NULL, 1), - (3768, 'Arizona', 235, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, NULL, NULL, NULL, 1), - (3769, 'Arkansas', 235, '2024-01-21 12:47:27', '2024-01-21 12:47:27', NULL, NULL, NULL, NULL, 1), - (3770, 'Byram', 235, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, NULL, NULL, NULL, 1), - (3771, 'California', 235, '2024-01-21 12:47:28', '2024-01-21 12:47:28', NULL, NULL, NULL, NULL, 1), - (3772, 'Cokato', 235, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, NULL, NULL, NULL, 1), - (3773, 'Colorado', 235, '2024-01-21 12:47:31', '2024-01-21 12:47:31', NULL, NULL, NULL, NULL, 1), - (3774, 'Connecticut', 235, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, NULL, NULL, NULL, 1), - (3775, 'Delaware', 235, '2024-01-21 12:47:32', '2024-01-21 12:47:32', NULL, NULL, NULL, NULL, 1), - (3776, 'District of Columbia', 235, '2024-01-21 12:47:33', '2024-01-21 12:47:33', NULL, NULL, NULL, NULL, 1), - (3777, 'Georgia', 235, '2024-01-21 12:47:35', '2024-01-21 12:47:35', NULL, NULL, NULL, NULL, 1), - (3778, 'Hawaii', 235, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, NULL, NULL, NULL, 1), - (3779, 'Idaho', 235, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, NULL, NULL, NULL, 1), - (3780, 'Illinois', 235, '2024-01-21 12:47:36', '2024-01-21 12:47:36', NULL, NULL, NULL, NULL, 1), - (3781, 'Indiana', 235, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, NULL, NULL, NULL, 1), - (3782, 'Iowa', 235, '2024-01-21 12:47:38', '2024-01-21 12:47:38', NULL, NULL, NULL, NULL, 1), - (3783, 'Kansas', 235, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, NULL, NULL, NULL, 1), - (3784, 'Kentucky', 235, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, NULL, NULL, NULL, 1), - (3785, 'Louisiana', 235, '2024-01-21 12:47:39', '2024-01-21 12:47:39', NULL, NULL, NULL, NULL, 1), - (3786, 'Lowa', 235, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, NULL, NULL, NULL, 1), - (3787, 'Maine', 235, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, NULL, NULL, NULL, 1), - (3788, 'Maryland', 235, '2024-01-21 12:47:40', '2024-01-21 12:47:40', NULL, NULL, NULL, NULL, 1), - (3789, 'Massachusetts', 235, '2024-01-21 12:47:41', '2024-01-21 12:47:41', NULL, NULL, NULL, NULL, 1), - (3790, 'Medfield', 235, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, NULL, NULL, NULL, 1), - (3791, 'Michigan', 235, '2024-01-21 12:47:42', '2024-01-21 12:47:42', NULL, NULL, NULL, NULL, 1), - (3792, 'Minnesota', 235, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, NULL, NULL, NULL, 1), - (3793, 'Mississippi', 235, '2024-01-21 12:47:43', '2024-01-21 12:47:43', NULL, NULL, NULL, NULL, 1), - (3794, 'Missouri', 235, '2024-01-21 12:47:44', '2024-01-21 12:47:44', NULL, NULL, NULL, NULL, 1), - (3795, 'Nebraska', 235, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, NULL, NULL, NULL, 1), - (3796, 'Nevada', 235, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, NULL, NULL, NULL, 1), - (3797, 'New Hampshire', 235, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, NULL, NULL, NULL, 1), - (3798, 'New Jersey', 235, '2024-01-21 12:47:45', '2024-01-21 12:47:45', NULL, NULL, NULL, NULL, 1), - (3799, 'New Jersy', 235, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, NULL, NULL, NULL, 1), - (3800, 'New Mexico', 235, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, NULL, NULL, NULL, 1), - (3801, 'New York', 235, '2024-01-21 12:47:46', '2024-01-21 12:47:46', NULL, NULL, NULL, NULL, 1), - (3802, 'North Carolina', 235, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, NULL, NULL, NULL, 1), - (3803, 'North Dakota', 235, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, NULL, NULL, NULL, 1), - (3804, 'Ohio', 235, '2024-01-21 12:47:48', '2024-01-21 12:47:48', NULL, NULL, NULL, NULL, 1), - (3805, 'Oklahoma', 235, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, NULL, NULL, NULL, 1), - (3806, 'Oregon', 235, '2024-01-21 12:47:49', '2024-01-21 12:47:49', NULL, NULL, NULL, NULL, 1), - (3807, 'Pennsylvania', 235, '2024-01-21 12:47:50', '2024-01-21 12:47:50', NULL, NULL, NULL, NULL, 1), - (3808, 'Ramey', 235, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, NULL, NULL, NULL, 1), - (3809, 'Rhode Island', 235, '2024-01-21 12:47:51', '2024-01-21 12:47:51', NULL, NULL, NULL, NULL, 1), - (3810, 'South Carolina', 235, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, NULL, NULL, NULL, 1), - (3811, 'South Dakota', 235, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, NULL, NULL, NULL, 1), - (3812, 'Sublimity', 235, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, NULL, NULL, NULL, 1), - (3813, 'Tennessee', 235, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, NULL, NULL, NULL, 1), - (3814, 'Texas', 235, '2024-01-21 12:47:52', '2024-01-21 12:47:52', NULL, NULL, NULL, NULL, 1), - (3815, 'Trimble', 235, '2024-01-21 12:47:53', '2024-01-21 12:47:53', NULL, NULL, NULL, NULL, 1), - (3816, 'Vermont', 235, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, NULL, NULL, NULL, 1), - (3817, 'Virginia', 235, '2024-01-21 12:47:54', '2024-01-21 12:47:54', NULL, NULL, NULL, NULL, 1), - (3818, 'Washington', 235, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, NULL, NULL, NULL, 1), - (3819, 'West Virginia', 235, '2024-01-21 12:47:55', '2024-01-21 12:47:55', NULL, NULL, NULL, NULL, 1), - (3820, 'Wisconsin', 235, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, NULL, NULL, NULL, 1), - (3821, 'Wyoming', 235, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, NULL, NULL, NULL, 1), - (3822, 'United States Minor Outlying I', 236, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, NULL, NULL, NULL, 1), - (3823, 'Artigas', 237, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, NULL, NULL, NULL, 1), - (3824, 'Canelones', 237, '2024-01-21 12:47:56', '2024-01-21 12:47:56', NULL, NULL, NULL, NULL, 1), - (3825, 'Cerro Largo', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3826, 'Colonia', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3827, 'Durazno', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3828, 'Flores', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3829, 'Lavalleja', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3830, 'Maldonado', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3831, 'Montevideo', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3832, 'Paysandu', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3833, 'Rivera', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3834, 'Rocha', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3835, 'Salto', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3836, 'Soriano', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3837, 'Tacuarembo', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3838, 'Treinta y Tres', 237, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3839, 'Andijon', 238, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3840, 'Buhoro', 238, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3841, 'Cizah', 238, '2024-01-21 12:47:57', '2024-01-21 12:47:57', NULL, NULL, NULL, NULL, 1), - (3842, 'Fargona', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3843, 'Horazm', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3844, 'Kaskadar', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3845, 'Korakalpogiston', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3846, 'Namangan', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3847, 'Navoi', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3848, 'Samarkand', 238, '2024-01-21 12:47:58', '2024-01-21 12:47:58', NULL, NULL, NULL, NULL, 1), - (3849, 'Sirdare', 238, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3850, 'Surhondar', 238, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3851, 'Toskent', 238, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3852, 'Malampa', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3853, 'Penama', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3854, 'Sanma', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3855, 'Shefa', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3856, 'Tafea', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3857, 'Torba', 239, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3858, 'Anzoategui', 240, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3859, 'Apure', 240, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3860, 'Aragua', 240, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3861, 'Barinas', 240, '2024-01-21 12:47:59', '2024-01-21 12:47:59', NULL, NULL, NULL, NULL, 1), - (3862, 'Carabobo', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3863, 'Cojedes', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3864, 'Delta Amacuro', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3865, 'Falcon', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3866, 'Guarico', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3867, 'Lara', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3868, 'Merida', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3869, 'Miranda', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3870, 'Monagas', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3871, 'Nueva Esparta', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3872, 'Portuguesa', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3873, 'Tachira', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3874, 'Trujillo', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3875, 'Vargas', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3876, 'Yaracuy', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3877, 'Zulia', 240, '2024-01-21 12:48:00', '2024-01-21 12:48:00', NULL, NULL, NULL, NULL, 1), - (3878, 'Bac Giang', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3879, 'Binh Dinh', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3880, 'Binh Duong', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3881, 'Da Nang', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3882, 'Dong Bang Song Cuu Long', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3883, 'Dong Bang Song Hong', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3884, 'Dong Nai', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3885, 'Dong Nam Bo', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3886, 'Duyen Hai Mien Trung', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3887, 'Hanoi', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3888, 'Hung Yen', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3889, 'Khu Bon Cu', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3890, 'Long An', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3891, 'Mien Nui Va Trung Du', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3892, 'Thai Nguyen', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3893, 'Thanh Pho Ho Chi Minh', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3894, 'Thu Do Ha Noi', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3895, 'Tinh Can Tho', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3896, 'Tinh Da Nang', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3897, 'Tinh Gia Lai', 241, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3898, 'Anegada', 242, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3899, 'Jost van Dyke', 242, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3900, 'Tortola', 242, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3901, 'Saint Croix', 243, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3902, 'Alo', 244, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3903, 'Singave', 244, '2024-01-21 12:48:01', '2024-01-21 12:48:01', NULL, NULL, NULL, NULL, 1), - (3904, 'Wallis', 244, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3905, 'Bu Jaydur', 150, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3906, 'Wad-adh-Dhahab', 150, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3907, 'al- Ayun', 150, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), -(3908, 'as-Samarah', 150, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), -(3909, ' Adan', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3910, 'Abyan', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3911, 'Dhamar', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3912, 'Hadramaut', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3913, 'Hajjah', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3914, 'Hudaydah', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3915, 'Ibb', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3916, 'Lahij', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3917, 'Ma rib', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), -(3918, 'Madinat San a', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), - (3919, 'Sa dah', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), -(3920, 'Sana', 246, '2024-01-21 12:48:02', '2024-01-21 12:48:02', NULL, NULL, NULL, NULL, 1), -(3921, 'Shabwah', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), -(3922, 'Ta izz', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3923, 'al-Bayda', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3924, 'al-Hudaydah', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3925, 'al-Jawf', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3926, 'al-Mahrah', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3927, 'al-Mahwit', 246, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3928, 'Copperbelt', 247, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3929, 'Luapala', 247, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3930, 'Lusaka', 247, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3931, 'North-Western', 247, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3932, 'Bulawayo', 248, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3933, 'Harare', 248, '2024-01-21 12:48:03', '2024-01-21 12:48:03', NULL, NULL, NULL, NULL, 1), - (3934, 'Manicaland', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3935, 'Mashonaland Central', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3936, 'Mashonaland East', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3937, 'Mashonaland West', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3938, 'Masvingo', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3939, 'Matabeleland North', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3940, 'Matabeleland South', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3941, 'Midlands', 248, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3942, 'Badakhshan', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3943, 'Badgis', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3944, 'Baglan', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3945, 'Balkh', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3946, 'Bamiyan', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3947, 'Farah', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3948, 'Faryab', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3949, 'Gawr', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3950, 'Gazni', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3951, 'Herat', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3952, 'Hilmand', 250, '2024-01-21 12:48:04', '2024-01-21 12:48:04', NULL, NULL, NULL, NULL, 1), - (3953, 'Jawzjan', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3954, 'Kabul', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3955, 'Kapisa', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3956, 'Khawst', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3957, 'Kunar', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3958, 'Lagman', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3959, 'Lawghar', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3960, 'Nangarhar', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3961, 'Nimruz', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3962, 'Nuristan', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3963, 'Paktika', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3964, 'Paktiya', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3965, 'Parwan', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3966, 'Qandahar', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3967, 'Qunduz', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3968, 'Samangan', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3969, 'Sar-e Pul', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3970, 'Takhar', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3971, 'Uruzgan', 250, '2024-01-21 12:48:05', '2024-01-21 12:48:05', NULL, NULL, NULL, NULL, 1), - (3972, 'Wardag', 250, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, NULL, NULL, NULL, 1), - (3973, 'Zabul', 250, '2024-01-21 12:48:06', '2024-01-21 12:48:06', NULL, NULL, NULL, NULL, 1); diff --git a/database/data/countries.json b/database/data/countries.json new file mode 100644 index 0000000..1b83792 --- /dev/null +++ b/database/data/countries.json @@ -0,0 +1,251 @@ +[ +{"id":"1","name":"Aland Islands","code":"AX","phone":"248","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Aland Islands\", \"cn\": \"奥兰群岛\", \"de\": \"Åland\", \"es\": \"Alandia\", \"fa\": \"جزایر الند\", \"fr\": \"Åland\", \"hr\": \"Ålandski otoci\", \"it\": \"Isole Aland\", \"ja\": \"オーランド諸島\", \"kr\": \"올란드 제도\", \"nl\": \"Ålandeilanden\", \"pt\": \"Ilhas de Aland\", \"tr\": \"Åland Adalari\", \"pt-BR\": \"Ilhas de Aland\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Mariehamn\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"248","iso3":"ALA","nationality":"Aland Island","capital":"Mariehamn","tld":".ax","native":"Åland","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"60.12","lng":"19.90","emoji":"🇦🇽","emojiU":"U+1F1E6 U+1F1FD","flag":"1","is_activated":"1"}, +{"id":"2","name":"Albania","code":"AL","phone":"008","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Albania\", \"cn\": \"阿尔巴尼亚\", \"de\": \"Albanien\", \"es\": \"Albania\", \"fa\": \"آلبانی\", \"fr\": \"Albanie\", \"hr\": \"Albanija\", \"it\": \"Albania\", \"ja\": \"アルバニア\", \"kr\": \"알바니아\", \"nl\": \"Albanië\", \"pt\": \"Albânia\", \"tr\": \"Arnavutluk\", \"pt-BR\": \"Albânia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Tirane\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"008","iso3":"ALB","nationality":"Albanian ","capital":"Tirana","tld":".al","native":"Shqipëria","region":"Europe","currency":"ALL","currency_name":"Albanian lek","currency_symbol":"Lek","wikiDataId":null,"lat":"41.00","lng":"20.00","emoji":"🇦🇱","emojiU":"U+1F1E6 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"3","name":"Algeria","code":"DZ","phone":"012","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Algeria\", \"cn\": \"阿尔及利亚\", \"de\": \"Algerien\", \"es\": \"Argelia\", \"fa\": \"الجزایر\", \"fr\": \"Algérie\", \"hr\": \"Alžir\", \"it\": \"Algeria\", \"ja\": \"アルジェリア\", \"kr\": \"알제리\", \"nl\": \"Algerije\", \"pt\": \"Argélia\", \"tr\": \"Cezayir\", \"pt-BR\": \"Argélia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa\/Algiers\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"012","iso3":"DZA","nationality":"Algerian","capital":"Algiers","tld":".dz","native":"الجزائر","region":"Africa","currency":"DZD","currency_name":"Algerian dinar","currency_symbol":"دج","wikiDataId":null,"lat":"28.00","lng":"3.00","emoji":"🇩🇿","emojiU":"U+1F1E9 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"4","name":"American Samoa","code":"AS","phone":"016","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"American Samoa\", \"cn\": \"美属萨摩亚\", \"de\": \"Amerikanisch-Samoa\", \"es\": \"Samoa Americana\", \"fa\": \"ساموآی آمریکا\", \"fr\": \"Samoa américaines\", \"hr\": \"Američka Samoa\", \"it\": \"Samoa Americane\", \"ja\": \"アメリカ領サモア\", \"kr\": \"아메리칸사모아\", \"nl\": \"Amerikaans Samoa\", \"pt\": \"Samoa Americana\", \"tr\": \"Amerikan Samoasi\", \"pt-BR\": \"Samoa Americana\"}","timezones":"[{\"tzName\": \"Samoa Standard Time\", \"zoneName\": \"Pacific\/Pago_Pago\", \"gmtOffset\": -39600, \"abbreviation\": \"SST\", \"gmtOffsetName\": \"UTC-11:00\"}]","numeric_code":"016","iso3":"ASM","nationality":"American Samoan","capital":"Pago Pago","tld":".as","native":"American Samoa","region":"Oceania","currency":"USD","currency_name":"US Dollar","currency_symbol":"$","wikiDataId":null,"lat":"-14.33","lng":"-170.00","emoji":"🇦🇸","emojiU":"U+1F1E6 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"5","name":"Andorra","code":"AD","phone":"020","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Andorra\", \"cn\": \"安道尔\", \"de\": \"Andorra\", \"es\": \"Andorra\", \"fa\": \"آندورا\", \"fr\": \"Andorre\", \"hr\": \"Andora\", \"it\": \"Andorra\", \"ja\": \"アンドラ\", \"kr\": \"안도라\", \"nl\": \"Andorra\", \"pt\": \"Andorra\", \"tr\": \"Andorra\", \"pt-BR\": \"Andorra\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Andorra\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"020","iso3":"AND","nationality":"Andorran","capital":"Andorra la Vella","tld":".ad","native":"Andorra","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"42.50","lng":"1.50","emoji":"🇦🇩","emojiU":"U+1F1E6 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"6","name":"Angola","code":"AO","phone":"024","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Angola\", \"cn\": \"安哥拉\", \"de\": \"Angola\", \"es\": \"Angola\", \"fa\": \"آنگولا\", \"fr\": \"Angola\", \"hr\": \"Angola\", \"it\": \"Angola\", \"ja\": \"アンゴラ\", \"kr\": \"앙골라\", \"nl\": \"Angola\", \"pt\": \"Angola\", \"tr\": \"Angola\", \"pt-BR\": \"Angola\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Luanda\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"024","iso3":"AGO","nationality":"Angolan","capital":"Luanda","tld":".ao","native":"Angola","region":"Africa","currency":"AOA","currency_name":"Angolan kwanza","currency_symbol":"Kz","wikiDataId":null,"lat":"-12.50","lng":"18.50","emoji":"🇦🇴","emojiU":"U+1F1E6 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"7","name":"Anguilla","code":"AI","phone":"660","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Anguilla\", \"cn\": \"安圭拉\", \"de\": \"Anguilla\", \"es\": \"Anguilla\", \"fa\": \"آنگویلا\", \"fr\": \"Anguilla\", \"hr\": \"Angvila\", \"it\": \"Anguilla\", \"ja\": \"アンギラ\", \"kr\": \"앵귈라\", \"nl\": \"Anguilla\", \"pt\": \"Anguila\", \"tr\": \"Anguilla\", \"pt-BR\": \"Anguila\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"660","iso3":"AIA","nationality":"Anguillan","capital":"The Valley","tld":".ai","native":"Anguilla","region":"Americas","currency":"XCD","currency_name":"East Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"18.25","lng":"-63.17","emoji":"🇦🇮","emojiU":"U+1F1E6 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"8","name":"Antarctica","code":"AQ","phone":"010","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Antarctica\", \"cn\": \"南极洲\", \"de\": \"Antarktika\", \"es\": \"Antártida\", \"fa\": \"جنوبگان\", \"fr\": \"Antarctique\", \"hr\": \"Antarktika\", \"it\": \"Antartide\", \"ja\": \"南極大陸\", \"kr\": \"남극\", \"nl\": \"Antarctica\", \"pt\": \"Antárctida\", \"tr\": \"Antartika\", \"pt-BR\": \"Antártida\"}","timezones":"[{\"tzName\": \"Australian Western Standard Time\", \"zoneName\": \"Antarctica\/Casey\", \"gmtOffset\": 39600, \"abbreviation\": \"AWST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Davis Time\", \"zoneName\": \"Antarctica\/Davis\", \"gmtOffset\": 25200, \"abbreviation\": \"DAVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Dumont dUrville Time\", \"zoneName\": \"Antarctica\/DumontDUrville\", \"gmtOffset\": 36000, \"abbreviation\": \"DDUT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Mawson Station Time\", \"zoneName\": \"Antarctica\/Mawson\", \"gmtOffset\": 18000, \"abbreviation\": \"MAWT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"New Zealand Daylight Time\", \"zoneName\": \"Antarctica\/McMurdo\", \"gmtOffset\": 46800, \"abbreviation\": \"NZDT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Chile Summer Time\", \"zoneName\": \"Antarctica\/Palmer\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Rothera Research Station Time\", \"zoneName\": \"Antarctica\/Rothera\", \"gmtOffset\": -10800, \"abbreviation\": \"ROTT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Showa Station Time\", \"zoneName\": \"Antarctica\/Syowa\", \"gmtOffset\": 10800, \"abbreviation\": \"SYOT\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Antarctica\/Troll\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Vostok Station Time\", \"zoneName\": \"Antarctica\/Vostok\", \"gmtOffset\": 21600, \"abbreviation\": \"VOST\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"010","iso3":"ATA","nationality":"Antarctic","capital":"","tld":".aq","native":"Antarctica","region":"Polar","currency":"AAD","currency_name":"Antarctican dollar","currency_symbol":"$","wikiDataId":null,"lat":"-74.65","lng":"4.48","emoji":"🇦🇶","emojiU":"U+1F1E6 U+1F1F6","flag":"1","is_activated":"1"}, +{"id":"9","name":"Antigua And Barbuda","code":"AG","phone":"028","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Antigua And Barbuda\", \"cn\": \"安提瓜和巴布达\", \"de\": \"Antigua und Barbuda\", \"es\": \"Antigua y Barbuda\", \"fa\": \"آنتیگوا و باربودا\", \"fr\": \"Antigua-et-Barbuda\", \"hr\": \"Antigva i Barbuda\", \"it\": \"Antigua e Barbuda\", \"ja\": \"アンティグア・バーブーダ\", \"kr\": \"앤티가 바부다\", \"nl\": \"Antigua en Barbuda\", \"pt\": \"Antígua e Barbuda\", \"tr\": \"Antigua Ve Barbuda\", \"pt-BR\": \"Antígua e Barbuda\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Antigua\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"028","iso3":"ATG","nationality":"Antiguan or Barbudan","capital":"St. Johns","tld":".ag","native":"Antigua and Barbuda","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"17.05","lng":"-61.80","emoji":"🇦🇬","emojiU":"U+1F1E6 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"10","name":"Argentina","code":"AR","phone":"032","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Argentina\", \"cn\": \"阿根廷\", \"de\": \"Argentinien\", \"es\": \"Argentina\", \"fa\": \"آرژانتین\", \"fr\": \"Argentine\", \"hr\": \"Argentina\", \"it\": \"Argentina\", \"ja\": \"アルゼンチン\", \"kr\": \"아르헨티나\", \"nl\": \"Argentinië\", \"pt\": \"Argentina\", \"tr\": \"Arjantin\", \"pt-BR\": \"Argentina\"}","timezones":"[{\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Buenos_Aires\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Catamarca\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Cordoba\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Jujuy\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/La_Rioja\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Mendoza\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Rio_Gallegos\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Salta\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/San_Juan\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/San_Luis\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Tucuman\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America\/Argentina\/Ushuaia\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"032","iso3":"ARG","nationality":"Argentine","capital":"Buenos Aires","tld":".ar","native":"Argentina","region":"Americas","currency":"ARS","currency_name":"Argentine peso","currency_symbol":"$","wikiDataId":null,"lat":"-34.00","lng":"-64.00","emoji":"🇦🇷","emojiU":"U+1F1E6 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"11","name":"Armenia","code":"AM","phone":"051","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Armenia\", \"cn\": \"亚美尼亚\", \"de\": \"Armenien\", \"es\": \"Armenia\", \"fa\": \"ارمنستان\", \"fr\": \"Arménie\", \"hr\": \"Armenija\", \"it\": \"Armenia\", \"ja\": \"アルメニア\", \"kr\": \"아르메니아\", \"nl\": \"Armenië\", \"pt\": \"Arménia\", \"tr\": \"Ermenistan\", \"pt-BR\": \"Armênia\"}","timezones":"[{\"tzName\": \"Armenia Time\", \"zoneName\": \"Asia\/Yerevan\", \"gmtOffset\": 14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"051","iso3":"ARM","nationality":"Armenian","capital":"Yerevan","tld":".am","native":"Հայաստան","region":"Asia","currency":"AMD","currency_name":"Armenian dram","currency_symbol":"֏","wikiDataId":null,"lat":"40.00","lng":"45.00","emoji":"🇦🇲","emojiU":"U+1F1E6 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"12","name":"Aruba","code":"AW","phone":"533","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Aruba\", \"cn\": \"阿鲁巴\", \"de\": \"Aruba\", \"es\": \"Aruba\", \"fa\": \"آروبا\", \"fr\": \"Aruba\", \"hr\": \"Aruba\", \"it\": \"Aruba\", \"ja\": \"アルバ\", \"kr\": \"아루바\", \"nl\": \"Aruba\", \"pt\": \"Aruba\", \"tr\": \"Aruba\", \"pt-BR\": \"Aruba\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Aruba\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"533","iso3":"ABW","nationality":"Aruban","capital":"Oranjestad","tld":".aw","native":"Aruba","region":"Americas","currency":"AWG","currency_name":"Aruban florin","currency_symbol":"ƒ","wikiDataId":null,"lat":"12.50","lng":"-69.97","emoji":"🇦🇼","emojiU":"U+1F1E6 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"13","name":"Australia","code":"AU","phone":"036","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Australia\", \"cn\": \"澳大利亚\", \"de\": \"Australien\", \"es\": \"Australia\", \"fa\": \"استرالیا\", \"fr\": \"Australie\", \"hr\": \"Australija\", \"it\": \"Australia\", \"ja\": \"オーストラリア\", \"kr\": \"호주\", \"nl\": \"Australië\", \"pt\": \"Austrália\", \"tr\": \"Avustralya\", \"pt-BR\": \"Austrália\"}","timezones":"[{\"tzName\": \"Macquarie Island Station Time\", \"zoneName\": \"Antarctica\/Macquarie\", \"gmtOffset\": 39600, \"abbreviation\": \"MIST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Central Daylight Saving Time\", \"zoneName\": \"Australia\/Adelaide\", \"gmtOffset\": 37800, \"abbreviation\": \"ACDT\", \"gmtOffsetName\": \"UTC+10:30\"}, {\"tzName\": \"Australian Eastern Standard Time\", \"zoneName\": \"Australia\/Brisbane\", \"gmtOffset\": 36000, \"abbreviation\": \"AEST\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Australian Central Daylight Saving Time\", \"zoneName\": \"Australia\/Broken_Hill\", \"gmtOffset\": 37800, \"abbreviation\": \"ACDT\", \"gmtOffsetName\": \"UTC+10:30\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia\/Currie\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Central Standard Time\", \"zoneName\": \"Australia\/Darwin\", \"gmtOffset\": 34200, \"abbreviation\": \"ACST\", \"gmtOffsetName\": \"UTC+09:30\"}, {\"tzName\": \"Australian Central Western Standard Time (Unofficial)\", \"zoneName\": \"Australia\/Eucla\", \"gmtOffset\": 31500, \"abbreviation\": \"ACWST\", \"gmtOffsetName\": \"UTC+08:45\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia\/Hobart\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Eastern Standard Time\", \"zoneName\": \"Australia\/Lindeman\", \"gmtOffset\": 36000, \"abbreviation\": \"AEST\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Lord Howe Summer Time\", \"zoneName\": \"Australia\/Lord_Howe\", \"gmtOffset\": 39600, \"abbreviation\": \"LHST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia\/Melbourne\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Western Standard Time\", \"zoneName\": \"Australia\/Perth\", \"gmtOffset\": 28800, \"abbreviation\": \"AWST\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia\/Sydney\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}]","numeric_code":"036","iso3":"AUS","nationality":"Australian","capital":"Canberra","tld":".au","native":"Australia","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-27.00","lng":"133.00","emoji":"🇦🇺","emojiU":"U+1F1E6 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"14","name":"Austria","code":"AT","phone":"040","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Austria\", \"cn\": \"奥地利\", \"de\": \"Österreich\", \"es\": \"Austria\", \"fa\": \"اتریش\", \"fr\": \"Autriche\", \"hr\": \"Austrija\", \"it\": \"Austria\", \"ja\": \"オーストリア\", \"kr\": \"오스트리아\", \"nl\": \"Oostenrijk\", \"pt\": \"áustria\", \"tr\": \"Avusturya\", \"pt-BR\": \"áustria\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Vienna\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"040","iso3":"AUT","nationality":"Austrian","capital":"Vienna","tld":".at","native":"Österreich","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"47.33","lng":"13.33","emoji":"🇦🇹","emojiU":"U+1F1E6 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"15","name":"Azerbaijan","code":"AZ","phone":"031","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Azerbaijan\", \"cn\": \"阿塞拜疆\", \"de\": \"Aserbaidschan\", \"es\": \"Azerbaiyán\", \"fa\": \"آذربایجان\", \"fr\": \"Azerbaïdjan\", \"hr\": \"Azerbajdžan\", \"it\": \"Azerbaijan\", \"ja\": \"アゼルバイジャン\", \"kr\": \"아제르바이잔\", \"nl\": \"Azerbeidzjan\", \"pt\": \"Azerbaijão\", \"tr\": \"Azerbaycan\", \"pt-BR\": \"Azerbaijão\"}","timezones":"[{\"tzName\": \"Azerbaijan Time\", \"zoneName\": \"Asia\/Baku\", \"gmtOffset\": 14400, \"abbreviation\": \"AZT\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"031","iso3":"AZE","nationality":"Azerbaijani, Azeri","capital":"Baku","tld":".az","native":"Azərbaycan","region":"Asia","currency":"AZN","currency_name":"Azerbaijani manat","currency_symbol":"m","wikiDataId":null,"lat":"40.50","lng":"47.50","emoji":"🇦🇿","emojiU":"U+1F1E6 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"16","name":"The Bahamas","code":"BS","phone":"044","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"The Bahamas\", \"cn\": \"巴哈马\", \"de\": \"Bahamas\", \"es\": \"Bahamas\", \"fa\": \"باهاما\", \"fr\": \"Bahamas\", \"hr\": \"Bahami\", \"it\": \"Bahamas\", \"ja\": \"バハマ\", \"kr\": \"바하마\", \"nl\": \"Bahama’s\", \"pt\": \"Baamas\", \"tr\": \"Bahamalar\", \"pt-BR\": \"Bahamas\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America)\", \"zoneName\": \"America\/Nassau\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"044","iso3":"BHS","nationality":"Bahamian","capital":"Nassau","tld":".bs","native":"Bahamas","region":"Americas","currency":"BSD","currency_name":"Bahamian dollar","currency_symbol":"B$","wikiDataId":null,"lat":"24.25","lng":"-76.00","emoji":"🇧🇸","emojiU":"U+1F1E7 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"17","name":"Bahrain","code":"BH","phone":"048","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bahrain\", \"cn\": \"巴林\", \"de\": \"Bahrain\", \"es\": \"Bahrein\", \"fa\": \"بحرین\", \"fr\": \"Bahreïn\", \"hr\": \"Bahrein\", \"it\": \"Bahrein\", \"ja\": \"バーレーン\", \"kr\": \"바레인\", \"nl\": \"Bahrein\", \"pt\": \"Barém\", \"tr\": \"Bahreyn\", \"pt-BR\": \"Bahrein\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Bahrain\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"048","iso3":"BHR","nationality":"Bahraini","capital":"Manama","tld":".bh","native":"‏البحرين","region":"Asia","currency":"BHD","currency_name":"Bahraini dinar","currency_symbol":".د.ب","wikiDataId":null,"lat":"26.00","lng":"50.55","emoji":"🇧🇭","emojiU":"U+1F1E7 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"18","name":"Bangladesh","code":"BD","phone":"050","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bangladesh\", \"cn\": \"孟加拉\", \"de\": \"Bangladesch\", \"es\": \"Bangladesh\", \"fa\": \"بنگلادش\", \"fr\": \"Bangladesh\", \"hr\": \"Bangladeš\", \"it\": \"Bangladesh\", \"ja\": \"バングラデシュ\", \"kr\": \"방글라데시\", \"nl\": \"Bangladesh\", \"pt\": \"Bangladeche\", \"tr\": \"Bangladeş\", \"pt-BR\": \"Bangladesh\"}","timezones":"[{\"tzName\": \"Bangladesh Standard Time\", \"zoneName\": \"Asia\/Dhaka\", \"gmtOffset\": 21600, \"abbreviation\": \"BDT\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"050","iso3":"BGD","nationality":"Bangladeshi","capital":"Dhaka","tld":".bd","native":"Bangladesh","region":"Asia","currency":"BDT","currency_name":"Bangladeshi taka","currency_symbol":"৳","wikiDataId":null,"lat":"24.00","lng":"90.00","emoji":"🇧🇩","emojiU":"U+1F1E7 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"19","name":"Barbados","code":"BB","phone":"052","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Barbados\", \"cn\": \"巴巴多斯\", \"de\": \"Barbados\", \"es\": \"Barbados\", \"fa\": \"باربادوس\", \"fr\": \"Barbade\", \"hr\": \"Barbados\", \"it\": \"Barbados\", \"ja\": \"バルバドス\", \"kr\": \"바베이도스\", \"nl\": \"Barbados\", \"pt\": \"Barbados\", \"tr\": \"Barbados\", \"pt-BR\": \"Barbados\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Barbados\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"052","iso3":"BRB","nationality":"Barbadian","capital":"Bridgetown","tld":".bb","native":"Barbados","region":"Americas","currency":"BBD","currency_name":"Barbadian dollar","currency_symbol":"Bds$","wikiDataId":null,"lat":"13.17","lng":"-59.53","emoji":"🇧🇧","emojiU":"U+1F1E7 U+1F1E7","flag":"1","is_activated":"1"}, +{"id":"20","name":"Belarus","code":"BY","phone":"112","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Belarus\", \"cn\": \"白俄罗斯\", \"de\": \"Weißrussland\", \"es\": \"Bielorrusia\", \"fa\": \"بلاروس\", \"fr\": \"Biélorussie\", \"hr\": \"Bjelorusija\", \"it\": \"Bielorussia\", \"ja\": \"ベラルーシ\", \"kr\": \"벨라루스\", \"nl\": \"Wit-Rusland\", \"pt\": \"Bielorrússia\", \"tr\": \"Belarus\", \"pt-BR\": \"Bielorrússia\"}","timezones":"[{\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe\/Minsk\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"112","iso3":"BLR","nationality":"Belarusian","capital":"Minsk","tld":".by","native":"Белару́сь","region":"Europe","currency":"BYN","currency_name":"Belarusian ruble","currency_symbol":"Br","wikiDataId":null,"lat":"53.00","lng":"28.00","emoji":"🇧🇾","emojiU":"U+1F1E7 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"21","name":"Belgium","code":"BE","phone":"056","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Belgium\", \"cn\": \"比利时\", \"de\": \"Belgien\", \"es\": \"Bélgica\", \"fa\": \"بلژیک\", \"fr\": \"Belgique\", \"hr\": \"Belgija\", \"it\": \"Belgio\", \"ja\": \"ベルギー\", \"kr\": \"벨기에\", \"nl\": \"België\", \"pt\": \"Bélgica\", \"tr\": \"Belçika\", \"pt-BR\": \"Bélgica\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Brussels\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"056","iso3":"BEL","nationality":"Belgian","capital":"Brussels","tld":".be","native":"België","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"50.83","lng":"4.00","emoji":"🇧🇪","emojiU":"U+1F1E7 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"22","name":"Belize","code":"BZ","phone":"084","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Belize\", \"cn\": \"伯利兹\", \"de\": \"Belize\", \"es\": \"Belice\", \"fa\": \"بلیز\", \"fr\": \"Belize\", \"hr\": \"Belize\", \"it\": \"Belize\", \"ja\": \"ベリーズ\", \"kr\": \"벨리즈\", \"nl\": \"Belize\", \"pt\": \"Belize\", \"tr\": \"Belize\", \"pt-BR\": \"Belize\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America)\", \"zoneName\": \"America\/Belize\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"084","iso3":"BLZ","nationality":"Belizean","capital":"Belmopan","tld":".bz","native":"Belize","region":"Americas","currency":"BZD","currency_name":"Belize dollar","currency_symbol":"$","wikiDataId":null,"lat":"17.25","lng":"-88.75","emoji":"🇧🇿","emojiU":"U+1F1E7 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"23","name":"Benin","code":"BJ","phone":"204","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Benin\", \"cn\": \"贝宁\", \"de\": \"Benin\", \"es\": \"Benín\", \"fa\": \"بنین\", \"fr\": \"Bénin\", \"hr\": \"Benin\", \"it\": \"Benin\", \"ja\": \"ベナン\", \"kr\": \"베냉\", \"nl\": \"Benin\", \"pt\": \"Benim\", \"tr\": \"Benin\", \"pt-BR\": \"Benin\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Porto-Novo\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"204","iso3":"BEN","nationality":"Beninese, Beninois","capital":"Porto-Novo","tld":".bj","native":"Bénin","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"9.50","lng":"2.25","emoji":"🇧🇯","emojiU":"U+1F1E7 U+1F1EF","flag":"1","is_activated":"1"}, +{"id":"24","name":"Bermuda","code":"BM","phone":"060","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bermuda\", \"cn\": \"百慕大\", \"de\": \"Bermuda\", \"es\": \"Bermudas\", \"fa\": \"برمودا\", \"fr\": \"Bermudes\", \"hr\": \"Bermudi\", \"it\": \"Bermuda\", \"ja\": \"バミューダ\", \"kr\": \"버뮤다\", \"nl\": \"Bermuda\", \"pt\": \"Bermudas\", \"tr\": \"Bermuda\", \"pt-BR\": \"Bermudas\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"Atlantic\/Bermuda\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"060","iso3":"BMU","nationality":"Bermudian, Bermudan","capital":"Hamilton","tld":".bm","native":"Bermuda","region":"Americas","currency":"BMD","currency_name":"Bermudian dollar","currency_symbol":"$","wikiDataId":null,"lat":"32.33","lng":"-64.75","emoji":"🇧🇲","emojiU":"U+1F1E7 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"25","name":"Bhutan","code":"BT","phone":"064","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bhutan\", \"cn\": \"不丹\", \"de\": \"Bhutan\", \"es\": \"Bután\", \"fa\": \"بوتان\", \"fr\": \"Bhoutan\", \"hr\": \"Butan\", \"it\": \"Bhutan\", \"ja\": \"ブータン\", \"kr\": \"부탄\", \"nl\": \"Bhutan\", \"pt\": \"Butão\", \"tr\": \"Butan\", \"pt-BR\": \"Butão\"}","timezones":"[{\"tzName\": \"Bhutan Time\", \"zoneName\": \"Asia\/Thimphu\", \"gmtOffset\": 21600, \"abbreviation\": \"BTT\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"064","iso3":"BTN","nationality":"Bhutanese","capital":"Thimphu","tld":".bt","native":"ʼbrug-yul","region":"Asia","currency":"BTN","currency_name":"Bhutanese ngultrum","currency_symbol":"Nu.","wikiDataId":null,"lat":"27.50","lng":"90.50","emoji":"🇧🇹","emojiU":"U+1F1E7 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"26","name":"Bolivia","code":"BO","phone":"068","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bolivia\", \"cn\": \"玻利维亚\", \"de\": \"Bolivien\", \"es\": \"Bolivia\", \"fa\": \"بولیوی\", \"fr\": \"Bolivie\", \"hr\": \"Bolivija\", \"it\": \"Bolivia\", \"ja\": \"ボリビア多民族国\", \"kr\": \"볼리비아\", \"nl\": \"Bolivia\", \"pt\": \"Bolívia\", \"tr\": \"Bolivya\", \"pt-BR\": \"Bolívia\"}","timezones":"[{\"tzName\": \"Bolivia Time\", \"zoneName\": \"America\/La_Paz\", \"gmtOffset\": -14400, \"abbreviation\": \"BOT\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"068","iso3":"BOL","nationality":"Bolivian","capital":"Sucre","tld":".bo","native":"Bolivia","region":"Americas","currency":"BOB","currency_name":"Bolivian boliviano","currency_symbol":"Bs.","wikiDataId":null,"lat":"-17.00","lng":"-65.00","emoji":"🇧🇴","emojiU":"U+1F1E7 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"27","name":"Bonaire, Sint Eustatius and Saba","code":"BQ","phone":"535","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Bonaire, Sint Eustatius and Saba\", \"cn\": \"博内尔岛、圣尤斯特歇斯和萨巴岛\", \"de\": \"Bonaire, Sint Eustatius und Saba\", \"fa\": \"بونیر\", \"fr\": \"Bonaire, Saint-Eustache et Saba\", \"it\": \"Bonaire, Saint-Eustache e Saba\", \"kr\": \"보네르 섬\", \"pt\": \"Bonaire\", \"tr\": \"Karayip Hollandasi\", \"pt-BR\": \"Bonaire\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"535","iso3":"BES","nationality":"Bonaire","capital":"Kralendijk","tld":".an","native":"Caribisch Nederland","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"12.15","lng":"-68.27","emoji":"🇧🇶","emojiU":"U+1F1E7 U+1F1F6","flag":"1","is_activated":"1"}, +{"id":"28","name":"Bosnia and Herzegovina","code":"BA","phone":"070","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bosnia and Herzegovina\", \"cn\": \"波斯尼亚和黑塞哥维那\", \"de\": \"Bosnien und Herzegowina\", \"es\": \"Bosnia y Herzegovina\", \"fa\": \"بوسنی و هرزگوین\", \"fr\": \"Bosnie-Herzégovine\", \"hr\": \"Bosna i Hercegovina\", \"it\": \"Bosnia ed Erzegovina\", \"ja\": \"ボスニア・ヘルツェゴビナ\", \"kr\": \"보스니아 헤르체고비나\", \"nl\": \"Bosnië en Herzegovina\", \"pt\": \"Bósnia e Herzegovina\", \"tr\": \"Bosna Hersek\", \"pt-BR\": \"Bósnia e Herzegovina\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Sarajevo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"070","iso3":"BIH","nationality":"Bosnian or Herzegovinian","capital":"Sarajevo","tld":".ba","native":"Bosna i Hercegovina","region":"Europe","currency":"BAM","currency_name":"Bosnia and Herzegovina convertible mark","currency_symbol":"KM","wikiDataId":null,"lat":"44.00","lng":"18.00","emoji":"🇧🇦","emojiU":"U+1F1E7 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"29","name":"Botswana","code":"BW","phone":"072","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Botswana\", \"cn\": \"博茨瓦纳\", \"de\": \"Botswana\", \"es\": \"Botswana\", \"fa\": \"بوتسوانا\", \"fr\": \"Botswana\", \"hr\": \"Bocvana\", \"it\": \"Botswana\", \"ja\": \"ボツワナ\", \"kr\": \"보츠와나\", \"nl\": \"Botswana\", \"pt\": \"Botsuana\", \"tr\": \"Botsvana\", \"pt-BR\": \"Botsuana\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Gaborone\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"072","iso3":"BWA","nationality":"Motswana, Botswanan","capital":"Gaborone","tld":".bw","native":"Botswana","region":"Africa","currency":"BWP","currency_name":"Botswana pula","currency_symbol":"P","wikiDataId":null,"lat":"-22.00","lng":"24.00","emoji":"🇧🇼","emojiU":"U+1F1E7 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"30","name":"Bouvet Island","code":"BV","phone":"074","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bouvet Island\", \"cn\": \"布维岛\", \"de\": \"Bouvetinsel\", \"es\": \"Isla Bouvet\", \"fa\": \"جزیره بووه\", \"fr\": \"Île Bouvet\", \"hr\": \"Otok Bouvet\", \"it\": \"Isola Bouvet\", \"ja\": \"ブーベ島\", \"kr\": \"부벳 섬\", \"nl\": \"Bouveteiland\", \"pt\": \"Ilha Bouvet\", \"tr\": \"Bouvet Adasi\", \"pt-BR\": \"Ilha Bouvet\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Oslo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"074","iso3":"BVT","nationality":"Bouvet Island","capital":"","tld":".bv","native":"Bouvetøya","region":"","currency":"NOK","currency_name":"Norwegian Krone","currency_symbol":"kr","wikiDataId":null,"lat":"-54.43","lng":"3.40","emoji":"🇧🇻","emojiU":"U+1F1E7 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"31","name":"Brazil","code":"BR","phone":"076","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Brazil\", \"cn\": \"巴西\", \"de\": \"Brasilien\", \"es\": \"Brasil\", \"fa\": \"برزیل\", \"fr\": \"Brésil\", \"hr\": \"Brazil\", \"it\": \"Brasile\", \"ja\": \"ブラジル\", \"kr\": \"브라질\", \"nl\": \"Brazilië\", \"pt\": \"Brasil\", \"tr\": \"Brezilya\", \"pt-BR\": \"Brasil\"}","timezones":"[{\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Araguaina\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Bahia\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Belem\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America\/Boa_Vista\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America\/Campo_Grande\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Brasilia Time\", \"zoneName\": \"America\/Cuiaba\", \"gmtOffset\": -14400, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Acre Time\", \"zoneName\": \"America\/Eirunepe\", \"gmtOffset\": -18000, \"abbreviation\": \"ACT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Fortaleza\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Maceio\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Amazon Time (Brazil)\", \"zoneName\": \"America\/Manaus\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Fernando de Noronha Time\", \"zoneName\": \"America\/Noronha\", \"gmtOffset\": -7200, \"abbreviation\": \"FNT\", \"gmtOffsetName\": \"UTC-02:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America\/Porto_Velho\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Recife\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Acre Time\", \"zoneName\": \"America\/Rio_Branco\", \"gmtOffset\": -18000, \"abbreviation\": \"ACT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Santarem\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America\/Sao_Paulo\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"076","iso3":"BRA","nationality":"Brazilian","capital":"Brasilia","tld":".br","native":"Brasil","region":"Americas","currency":"BRL","currency_name":"Brazilian real","currency_symbol":"R$","wikiDataId":null,"lat":"-10.00","lng":"-55.00","emoji":"🇧🇷","emojiU":"U+1F1E7 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"32","name":"British Indian Ocean Territory","code":"IO","phone":"086","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"British Indian Ocean Territory\", \"cn\": \"英属印度洋领地\", \"de\": \"Britisches Territorium im Indischen Ozean\", \"es\": \"Territorio Británico del Océano Índico\", \"fa\": \"قلمرو بریتانیا در اقیانوس هند\", \"fr\": \"Territoire britannique de locéan Indien\", \"hr\": \"Britanski Indijskooceanski teritorij\", \"it\": \"Territorio britannico dell oceano indiano\", \"ja\": \"イギリス領インド洋地域\", \"kr\": \"영국령 인도양 지역\", \"nl\": \"Britse Gebieden in de Indische Oceaan\", \"pt\": \"Território Britânico do Oceano Índico\", \"tr\": \"Britanya Hint Okyanusu Topraklari\", \"pt-BR\": \"Território Britânico do Oceano íÍdico\"}","timezones":"[{\"tzName\": \"Indian Ocean Time\", \"zoneName\": \"Indian\/Chagos\", \"gmtOffset\": 21600, \"abbreviation\": \"IOT\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"086","iso3":"IOT","nationality":"BIOT","capital":"Diego Garcia","tld":".io","native":"British Indian Ocean Territory","region":"Africa","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"-6.00","lng":"71.50","emoji":"🇮🇴","emojiU":"U+1F1EE U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"33","name":"Brunei","code":"BN","phone":"096","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Brunei\", \"cn\": \"文莱\", \"de\": \"Brunei\", \"es\": \"Brunei\", \"fa\": \"برونئی\", \"fr\": \"Brunei\", \"hr\": \"Brunej\", \"it\": \"Brunei\", \"ja\": \"ブルネイ・ダルサラーム\", \"kr\": \"브루나이\", \"nl\": \"Brunei\", \"pt\": \"Brunei\", \"tr\": \"Brunei\", \"pt-BR\": \"Brunei\"}","timezones":"[{\"tzName\": \"Brunei Darussalam Time\", \"zoneName\": \"Asia\/Brunei\", \"gmtOffset\": 28800, \"abbreviation\": \"BNT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"096","iso3":"BRN","nationality":"Bruneian","capital":"Bandar Seri Begawan","tld":".bn","native":"Negara Brunei Darussalam","region":"Asia","currency":"BND","currency_name":"Brunei dollar","currency_symbol":"B$","wikiDataId":null,"lat":"4.50","lng":"114.67","emoji":"🇧🇳","emojiU":"U+1F1E7 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"34","name":"Bulgaria","code":"BG","phone":"100","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Bulgaria\", \"cn\": \"保加利亚\", \"de\": \"Bulgarien\", \"es\": \"Bulgaria\", \"fa\": \"بلغارستان\", \"fr\": \"Bulgarie\", \"hr\": \"Bugarska\", \"it\": \"Bulgaria\", \"ja\": \"ブルガリア\", \"kr\": \"불가리아\", \"nl\": \"Bulgarije\", \"pt\": \"Bulgária\", \"tr\": \"Bulgaristan\", \"pt-BR\": \"Bulgária\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Sofia\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"100","iso3":"BGR","nationality":"Bulgarian","capital":"Sofia","tld":".bg","native":"България","region":"Europe","currency":"BGN","currency_name":"Bulgarian lev","currency_symbol":"Лв.","wikiDataId":null,"lat":"43.00","lng":"25.00","emoji":"🇧🇬","emojiU":"U+1F1E7 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"35","name":"Burkina Faso","code":"BF","phone":"854","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Burkina Faso\", \"cn\": \"布基纳法索\", \"de\": \"Burkina Faso\", \"es\": \"Burkina Faso\", \"fa\": \"بورکینافاسو\", \"fr\": \"Burkina Faso\", \"hr\": \"Burkina Faso\", \"it\": \"Burkina Faso\", \"ja\": \"ブルキナファソ\", \"kr\": \"부르키나 파소\", \"nl\": \"Burkina Faso\", \"pt\": \"Burquina Faso\", \"tr\": \"Burkina Faso\", \"pt-BR\": \"Burkina Faso\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Ouagadougou\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"854","iso3":"BFA","nationality":"Burkinabe","capital":"Ouagadougou","tld":".bf","native":"Burkina Faso","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"13.00","lng":"-2.00","emoji":"🇧🇫","emojiU":"U+1F1E7 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"36","name":"Burundi","code":"BI","phone":"108","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Burundi\", \"cn\": \"布隆迪\", \"de\": \"Burundi\", \"es\": \"Burundi\", \"fa\": \"بوروندی\", \"fr\": \"Burundi\", \"hr\": \"Burundi\", \"it\": \"Burundi\", \"ja\": \"ブルンジ\", \"kr\": \"부룬디\", \"nl\": \"Burundi\", \"pt\": \"Burúndi\", \"tr\": \"Burundi\", \"pt-BR\": \"Burundi\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Bujumbura\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"108","iso3":"BDI","nationality":"Burundian","capital":"Bujumbura","tld":".bi","native":"Burundi","region":"Africa","currency":"BIF","currency_name":"Burundian franc","currency_symbol":"FBu","wikiDataId":null,"lat":"-3.50","lng":"30.00","emoji":"🇧🇮","emojiU":"U+1F1E7 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"37","name":"Cambodia","code":"KH","phone":"116","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cambodia\", \"cn\": \"柬埔寨\", \"de\": \"Kambodscha\", \"es\": \"Camboya\", \"fa\": \"کامبوج\", \"fr\": \"Cambodge\", \"hr\": \"Kambodža\", \"it\": \"Cambogia\", \"ja\": \"カンボジア\", \"kr\": \"캄보디아\", \"nl\": \"Cambodja\", \"pt\": \"Camboja\", \"tr\": \"Kamboçya\", \"pt-BR\": \"Camboja\"}","timezones":"[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia\/Phnom_Penh\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"116","iso3":"KHM","nationality":"Cambodian","capital":"Phnom Penh","tld":".kh","native":"Kâmpŭchéa","region":"Asia","currency":"KHR","currency_name":"Cambodian riel","currency_symbol":"KHR","wikiDataId":null,"lat":"13.00","lng":"105.00","emoji":"🇰🇭","emojiU":"U+1F1F0 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"38","name":"Cameroon","code":"CM","phone":"120","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cameroon\", \"cn\": \"喀麦隆\", \"de\": \"Kamerun\", \"es\": \"Camerún\", \"fa\": \"کامرون\", \"fr\": \"Cameroun\", \"hr\": \"Kamerun\", \"it\": \"Camerun\", \"ja\": \"カメルーン\", \"kr\": \"카메룬\", \"nl\": \"Kameroen\", \"pt\": \"Camarões\", \"tr\": \"Kamerun\", \"pt-BR\": \"Camarões\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Douala\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"120","iso3":"CMR","nationality":"Cameroonian","capital":"Yaounde","tld":".cm","native":"Cameroon","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FCFA","wikiDataId":null,"lat":"6.00","lng":"12.00","emoji":"🇨🇲","emojiU":"U+1F1E8 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"39","name":"Canada","code":"CA","phone":"124","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Canada\", \"cn\": \"加拿大\", \"de\": \"Kanada\", \"es\": \"Canadá\", \"fa\": \"کانادا\", \"fr\": \"Canada\", \"hr\": \"Kanada\", \"it\": \"Canada\", \"ja\": \"カナダ\", \"kr\": \"캐나다\", \"nl\": \"Canada\", \"pt\": \"Canadá\", \"tr\": \"Kanada\", \"pt-BR\": \"Canadá\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America)\", \"zoneName\": \"America\/Atikokan\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Blanc-Sablon\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Cambridge_Bay\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Creston\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Dawson\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Dawson_Creek\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Edmonton\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America\/Fort_Nelson\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Glace_Bay\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Goose_Bay\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Halifax\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Inuvik\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Iqaluit\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Moncton\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Nipigon\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Pangnirtung\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Rainy_River\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Rankin_Inlet\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Regina\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Resolute\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Newfoundland Standard Time\", \"zoneName\": \"America\/St_Johns\", \"gmtOffset\": -12600, \"abbreviation\": \"NST\", \"gmtOffsetName\": \"UTC-03:30\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Swift_Current\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Thunder_Bay\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Toronto\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America\/Vancouver\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Whitehorse\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Winnipeg\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Yellowknife\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}]","numeric_code":"124","iso3":"CAN","nationality":"Canadian","capital":"Ottawa","tld":".ca","native":"Canada","region":"Americas","currency":"CAD","currency_name":"Canadian dollar","currency_symbol":"$","wikiDataId":null,"lat":"60.00","lng":"-95.00","emoji":"🇨🇦","emojiU":"U+1F1E8 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"40","name":"Cape Verde","code":"CV","phone":"132","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cape Verde\", \"cn\": \"佛得角\", \"de\": \"Kap Verde\", \"es\": \"Cabo Verde\", \"fa\": \"کیپ ورد\", \"fr\": \"Cap Vert\", \"hr\": \"Zelenortska Republika\", \"it\": \"Capo Verde\", \"ja\": \"カーボベルデ\", \"kr\": \"카보베르데\", \"nl\": \"Kaapverdië\", \"pt\": \"Cabo Verde\", \"tr\": \"Cabo Verde\", \"pt-BR\": \"Cabo Verde\"}","timezones":"[{\"tzName\": \"Cape Verde Time\", \"zoneName\": \"Atlantic\/Cape_Verde\", \"gmtOffset\": -3600, \"abbreviation\": \"CVT\", \"gmtOffsetName\": \"UTC-01:00\"}]","numeric_code":"132","iso3":"CPV","nationality":"Verdean","capital":"Praia","tld":".cv","native":"Cabo Verde","region":"Africa","currency":"CVE","currency_name":"Cape Verdean escudo","currency_symbol":"$","wikiDataId":null,"lat":"16.00","lng":"-24.00","emoji":"🇨🇻","emojiU":"U+1F1E8 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"41","name":"Cayman Islands","code":"KY","phone":"136","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cayman Islands\", \"cn\": \"开曼群岛\", \"de\": \"Kaimaninseln\", \"es\": \"Islas Caimán\", \"fa\": \"جزایر کیمن\", \"fr\": \"Îles Caïmans\", \"hr\": \"Kajmanski otoci\", \"it\": \"Isole Cayman\", \"ja\": \"ケイマン諸島\", \"kr\": \"케이먼 제도\", \"nl\": \"Caymaneilanden\", \"pt\": \"Ilhas Caimão\", \"tr\": \"Cayman Adalari\", \"pt-BR\": \"Ilhas Cayman\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Cayman\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"136","iso3":"CYM","nationality":"Caymanian","capital":"George Town","tld":".ky","native":"Cayman Islands","region":"Americas","currency":"KYD","currency_name":"Cayman Islands dollar","currency_symbol":"$","wikiDataId":null,"lat":"19.50","lng":"-80.50","emoji":"🇰🇾","emojiU":"U+1F1F0 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"42","name":"Central African Republic","code":"CF","phone":"140","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Central African Republic\", \"cn\": \"中非\", \"de\": \"Zentralafrikanische Republik\", \"es\": \"República Centroafricana\", \"fa\": \"جمهوری آفریقای مرکزی\", \"fr\": \"République centrafricaine\", \"hr\": \"Srednjoafrička Republika\", \"it\": \"Repubblica Centrafricana\", \"ja\": \"中央アフリカ共和国\", \"kr\": \"중앙아프리카 공화국\", \"nl\": \"Centraal-Afrikaanse Republiek\", \"pt\": \"República Centro-Africana\", \"tr\": \"Orta Afrika Cumhuriyeti\", \"pt-BR\": \"República Centro-Africana\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Bangui\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"140","iso3":"CAF","nationality":"Central African","capital":"Bangui","tld":".cf","native":"Ködörösêse tî Bêafrîka","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FCFA","wikiDataId":null,"lat":"7.00","lng":"21.00","emoji":"🇨🇫","emojiU":"U+1F1E8 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"43","name":"Chad","code":"TD","phone":"148","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Chad\", \"cn\": \"乍得\", \"de\": \"Tschad\", \"es\": \"Chad\", \"fa\": \"چاد\", \"fr\": \"Tchad\", \"hr\": \"Čad\", \"it\": \"Ciad\", \"ja\": \"チャド\", \"kr\": \"차드\", \"nl\": \"Tsjaad\", \"pt\": \"Chade\", \"tr\": \"Çad\", \"pt-BR\": \"Chade\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Ndjamena\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"148","iso3":"TCD","nationality":"Chadian","capital":"NDjamena","tld":".td","native":"Tchad","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FCFA","wikiDataId":null,"lat":"15.00","lng":"19.00","emoji":"🇹🇩","emojiU":"U+1F1F9 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"44","name":"Chile","code":"CL","phone":"152","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Chile\", \"cn\": \"智利\", \"de\": \"Chile\", \"es\": \"Chile\", \"fa\": \"شیلی\", \"fr\": \"Chili\", \"hr\": \"Čile\", \"it\": \"Cile\", \"ja\": \"チリ\", \"kr\": \"칠리\", \"nl\": \"Chili\", \"pt\": \"Chile\", \"tr\": \"Şili\", \"pt-BR\": \"Chile\"}","timezones":"[{\"tzName\": \"Chile Summer Time\", \"zoneName\": \"America\/Punta_Arenas\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Chile Summer Time\", \"zoneName\": \"America\/Santiago\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Easter Island Summer Time\", \"zoneName\": \"Pacific\/Easter\", \"gmtOffset\": -18000, \"abbreviation\": \"EASST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"152","iso3":"CHL","nationality":"Chilean","capital":"Santiago","tld":".cl","native":"Chile","region":"Americas","currency":"CLP","currency_name":"Chilean peso","currency_symbol":"$","wikiDataId":null,"lat":"-30.00","lng":"-71.00","emoji":"🇨🇱","emojiU":"U+1F1E8 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"45","name":"China","code":"CN","phone":"156","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"China\", \"cn\": \"中国\", \"de\": \"China\", \"es\": \"China\", \"fa\": \"چین\", \"fr\": \"Chine\", \"hr\": \"Kina\", \"it\": \"Cina\", \"ja\": \"中国\", \"kr\": \"중국\", \"nl\": \"China\", \"pt\": \"China\", \"tr\": \"Çin\", \"pt-BR\": \"China\"}","timezones":"[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia\/Shanghai\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia\/Urumqi\", \"gmtOffset\": 21600, \"abbreviation\": \"XJT\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"156","iso3":"CHN","nationality":"Chinese","capital":"Beijing","tld":".cn","native":"中国","region":"Asia","currency":"CNY","currency_name":"Chinese yuan","currency_symbol":"¥","wikiDataId":null,"lat":"35.00","lng":"105.00","emoji":"🇨🇳","emojiU":"U+1F1E8 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"46","name":"Christmas Island","code":"CX","phone":"162","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Christmas Island\", \"cn\": \"圣诞岛\", \"de\": \"Weihnachtsinsel\", \"es\": \"Isla de Navidad\", \"fa\": \"جزیره کریسمس\", \"fr\": \"Île Christmas\", \"hr\": \"Božićni otok\", \"it\": \"Isola di Natale\", \"ja\": \"クリスマス島\", \"kr\": \"크리스마스 섬\", \"nl\": \"Christmaseiland\", \"pt\": \"Ilha do Natal\", \"tr\": \"Christmas Adasi\", \"pt-BR\": \"Ilha Christmas\"}","timezones":"[{\"tzName\": \"Christmas Island Time\", \"zoneName\": \"Indian\/Christmas\", \"gmtOffset\": 25200, \"abbreviation\": \"CXT\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"162","iso3":"CXR","nationality":"Christmas Island","capital":"Flying Fish Cove","tld":".cx","native":"Christmas Island","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-10.50","lng":"105.67","emoji":"🇨🇽","emojiU":"U+1F1E8 U+1F1FD","flag":"1","is_activated":"1"}, +{"id":"47","name":"Cocos (Keeling) Islands","code":"CC","phone":"166","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cocos (Keeling) Islands\", \"cn\": \"科科斯(基林)群岛\", \"de\": \"Kokosinseln\", \"es\": \"Islas Cocos o Islas Keeling\", \"fa\": \"جزایر کوکوس\", \"fr\": \"Îles Cocos\", \"hr\": \"Kokosovi Otoci\", \"it\": \"Isole Cocos e Keeling\", \"ja\": \"ココス(キーリング)諸島\", \"kr\": \"코코스 제도\", \"nl\": \"Cocoseilanden\", \"pt\": \"Ilhas dos Cocos\", \"tr\": \"Cocos Adalari\", \"pt-BR\": \"Ilhas Cocos\"}","timezones":"[{\"tzName\": \"Cocos Islands Time\", \"zoneName\": \"Indian\/Cocos\", \"gmtOffset\": 23400, \"abbreviation\": \"CCT\", \"gmtOffsetName\": \"UTC+06:30\"}]","numeric_code":"166","iso3":"CCK","nationality":"Cocos Island","capital":"West Island","tld":".cc","native":"Cocos (Keeling) Islands","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-12.50","lng":"96.83","emoji":"🇨🇨","emojiU":"U+1F1E8 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"48","name":"Colombia","code":"CO","phone":"170","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Colombia\", \"cn\": \"哥伦比亚\", \"de\": \"Kolumbien\", \"es\": \"Colombia\", \"fa\": \"کلمبیا\", \"fr\": \"Colombie\", \"hr\": \"Kolumbija\", \"it\": \"Colombia\", \"ja\": \"コロンビア\", \"kr\": \"콜롬비아\", \"nl\": \"Colombia\", \"pt\": \"Colômbia\", \"tr\": \"Kolombiya\", \"pt-BR\": \"Colômbia\"}","timezones":"[{\"tzName\": \"Colombia Time\", \"zoneName\": \"America\/Bogota\", \"gmtOffset\": -18000, \"abbreviation\": \"COT\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"170","iso3":"COL","nationality":"Colombian","capital":"Bogotá","tld":".co","native":"Colombia","region":"Americas","currency":"COP","currency_name":"Colombian peso","currency_symbol":"$","wikiDataId":null,"lat":"4.00","lng":"-72.00","emoji":"🇨🇴","emojiU":"U+1F1E8 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"49","name":"Comoros","code":"KM","phone":"174","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Comoros\", \"cn\": \"科摩罗\", \"de\": \"Union der Komoren\", \"es\": \"Comoras\", \"fa\": \"کومور\", \"fr\": \"Comores\", \"hr\": \"Komori\", \"it\": \"Comore\", \"ja\": \"コモロ\", \"kr\": \"코모로\", \"nl\": \"Comoren\", \"pt\": \"Comores\", \"tr\": \"Komorlar\", \"pt-BR\": \"Comores\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian\/Comoro\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"174","iso3":"COM","nationality":"Comoran, Comorian","capital":"Moroni","tld":".km","native":"Komori","region":"Africa","currency":"KMF","currency_name":"Comorian franc","currency_symbol":"CF","wikiDataId":null,"lat":"-12.17","lng":"44.25","emoji":"🇰🇲","emojiU":"U+1F1F0 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"50","name":"Congo","code":"CG","phone":"178","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Congo\", \"cn\": \"刚果\", \"de\": \"Kongo\", \"es\": \"Congo\", \"fa\": \"کنگو\", \"fr\": \"Congo\", \"hr\": \"Kongo\", \"it\": \"Congo\", \"ja\": \"コンゴ共和国\", \"kr\": \"콩고\", \"nl\": \"Congo [Republiek]\", \"pt\": \"Congo\", \"tr\": \"Kongo\", \"pt-BR\": \"Congo\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Brazzaville\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"178","iso3":"COG","nationality":"Congolese","capital":"Brazzaville","tld":".cg","native":"République du Congo","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FC","wikiDataId":null,"lat":"-1.00","lng":"15.00","emoji":"🇨🇬","emojiU":"U+1F1E8 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"51","name":"Democratic Republic of the Congo","code":"CD","phone":"180","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Democratic Republic of the Congo\", \"cn\": \"刚果(金)\", \"de\": \"Kongo (Dem. Rep.)\", \"es\": \"Congo (Rep. Dem.)\", \"fa\": \"جمهوری کنگو\", \"fr\": \"Congo (Rép. dém.)\", \"hr\": \"Kongo, Demokratska Republika\", \"it\": \"Congo (Rep. Dem.)\", \"ja\": \"コンゴ民主共和国\", \"kr\": \"콩고 민주 공화국\", \"nl\": \"Congo [DRC]\", \"pt\": \"RD Congo\", \"tr\": \"Kongo Demokratik Cumhuriyeti\", \"pt-BR\": \"RD Congo\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Kinshasa\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Lubumbashi\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"180","iso3":"COD","nationality":"Congolese","capital":"Kinshasa","tld":".cd","native":"République démocratique du Congo","region":"Africa","currency":"CDF","currency_name":"Congolese Franc","currency_symbol":"FC","wikiDataId":null,"lat":"0.00","lng":"25.00","emoji":"🇨🇩","emojiU":"U+1F1E8 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"52","name":"Cook Islands","code":"CK","phone":"184","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cook Islands\", \"cn\": \"库克群岛\", \"de\": \"Cookinseln\", \"es\": \"Islas Cook\", \"fa\": \"جزایر کوک\", \"fr\": \"Îles Cook\", \"hr\": \"Cookovo Otočje\", \"it\": \"Isole Cook\", \"ja\": \"クック諸島\", \"kr\": \"쿡 제도\", \"nl\": \"Cookeilanden\", \"pt\": \"Ilhas Cook\", \"tr\": \"Cook Adalari\", \"pt-BR\": \"Ilhas Cook\"}","timezones":"[{\"tzName\": \"Cook Island Time\", \"zoneName\": \"Pacific\/Rarotonga\", \"gmtOffset\": -36000, \"abbreviation\": \"CKT\", \"gmtOffsetName\": \"UTC-10:00\"}]","numeric_code":"184","iso3":"COK","nationality":"Cook Island","capital":"Avarua","tld":".ck","native":"Cook Islands","region":"Oceania","currency":"NZD","currency_name":"Cook Islands dollar","currency_symbol":"$","wikiDataId":null,"lat":"-21.23","lng":"-159.77","emoji":"🇨🇰","emojiU":"U+1F1E8 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"53","name":"Costa Rica","code":"CR","phone":"188","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Costa Rica\", \"cn\": \"哥斯达黎加\", \"de\": \"Costa Rica\", \"es\": \"Costa Rica\", \"fa\": \"کاستاریکا\", \"fr\": \"Costa Rica\", \"hr\": \"Kostarika\", \"it\": \"Costa Rica\", \"ja\": \"コスタリカ\", \"kr\": \"코스타리카\", \"nl\": \"Costa Rica\", \"pt\": \"Costa Rica\", \"tr\": \"Kosta Rika\", \"pt-BR\": \"Costa Rica\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Costa_Rica\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"188","iso3":"CRI","nationality":"Costa Rican","capital":"San Jose","tld":".cr","native":"Costa Rica","region":"Americas","currency":"CRC","currency_name":"Costa Rican colón","currency_symbol":"₡","wikiDataId":null,"lat":"10.00","lng":"-84.00","emoji":"🇨🇷","emojiU":"U+1F1E8 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"54","name":"Cote DIvoire (Ivory Coast)","code":"CI","phone":"384","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cote DIvoire (Ivory Coast)\", \"cn\": \"科特迪瓦\", \"de\": \"Elfenbeinküste\", \"es\": \"Costa de Marfil\", \"fa\": \"ساحل عاج\", \"fr\": \"Côte dIvoire\", \"hr\": \"Obala Bjelokosti\", \"it\": \"Costa DAvorio\", \"ja\": \"コートジボワール\", \"kr\": \"코트디부아르\", \"nl\": \"Ivoorkust\", \"pt\": \"Costa do Marfim\", \"tr\": \"Kotdivuar\", \"pt-BR\": \"Costa do Marfim\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Abidjan\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"384","iso3":"CIV","nationality":"Ivorian","capital":"Yamoussoukro","tld":".ci","native":null,"region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"8.00","lng":"-5.00","emoji":"🇨🇮","emojiU":"U+1F1E8 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"55","name":"Croatia","code":"HR","phone":"191","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Croatia\", \"cn\": \"克罗地亚\", \"de\": \"Kroatien\", \"es\": \"Croacia\", \"fa\": \"کرواسی\", \"fr\": \"Croatie\", \"hr\": \"Hrvatska\", \"it\": \"Croazia\", \"ja\": \"クロアチア\", \"kr\": \"크로아티아\", \"nl\": \"Kroatië\", \"pt\": \"Croácia\", \"tr\": \"Hirvatistan\", \"pt-BR\": \"Croácia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Zagreb\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"191","iso3":"HRV","nationality":"Croatian","capital":"Zagreb","tld":".hr","native":"Hrvatska","region":"Europe","currency":"HRK","currency_name":"Croatian kuna","currency_symbol":"kn","wikiDataId":null,"lat":"45.17","lng":"15.50","emoji":"🇭🇷","emojiU":"U+1F1ED U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"56","name":"Cuba","code":"CU","phone":"192","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cuba\", \"cn\": \"古巴\", \"de\": \"Kuba\", \"es\": \"Cuba\", \"fa\": \"کوبا\", \"fr\": \"Cuba\", \"hr\": \"Kuba\", \"it\": \"Cuba\", \"ja\": \"キューバ\", \"kr\": \"쿠바\", \"nl\": \"Cuba\", \"pt\": \"Cuba\", \"tr\": \"Küba\", \"pt-BR\": \"Cuba\"}","timezones":"[{\"tzName\": \"Cuba Standard Time\", \"zoneName\": \"America\/Havana\", \"gmtOffset\": -18000, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"192","iso3":"CUB","nationality":"Cuban","capital":"Havana","tld":".cu","native":"Cuba","region":"Americas","currency":"CUP","currency_name":"Cuban peso","currency_symbol":"$","wikiDataId":null,"lat":"21.50","lng":"-80.00","emoji":"🇨🇺","emojiU":"U+1F1E8 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"57","name":"Curaçao","code":"CW","phone":"531","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Curaçao\", \"cn\": \"库拉索\", \"de\": \"Curaçao\", \"fa\": \"کوراسائو\", \"fr\": \"Curaçao\", \"it\": \"Curaçao\", \"kr\": \"퀴라소\", \"nl\": \"Curaçao\", \"pt\": \"Curaçao\", \"tr\": \"Curaçao\", \"pt-BR\": \"Curaçao\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Curacao\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"531","iso3":"CUW","nationality":"Curacaoan","capital":"Willemstad","tld":".cw","native":"Curaçao","region":"Americas","currency":"ANG","currency_name":"Netherlands Antillean guilder","currency_symbol":"ƒ","wikiDataId":null,"lat":"12.12","lng":"-68.93","emoji":"🇨🇼","emojiU":"U+1F1E8 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"58","name":"Cyprus","code":"CY","phone":"196","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Cyprus\", \"cn\": \"塞浦路斯\", \"de\": \"Zypern\", \"es\": \"Chipre\", \"fa\": \"قبرس\", \"fr\": \"Chypre\", \"hr\": \"Cipar\", \"it\": \"Cipro\", \"ja\": \"キプロス\", \"kr\": \"키프로스\", \"nl\": \"Cyprus\", \"pt\": \"Chipre\", \"tr\": \"Kuzey Kıbrıs Türk Cumhuriyeti\", \"pt-BR\": \"Chipre\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Famagusta\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Nicosia\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"196","iso3":"CYP","nationality":"Cypriot","capital":"Nicosia","tld":".cy","native":"Κύπρος","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"35.00","lng":"33.00","emoji":"🇨🇾","emojiU":"U+1F1E8 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"59","name":"Czech Republic","code":"CZ","phone":"203","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Czech Republic\", \"cn\": \"捷克\", \"de\": \"Tschechische Republik\", \"es\": \"República Checa\", \"fa\": \"جمهوری چک\", \"fr\": \"République tchèque\", \"hr\": \"Češka\", \"it\": \"Repubblica Ceca\", \"ja\": \"チェコ\", \"kr\": \"체코\", \"nl\": \"Tsjechië\", \"pt\": \"República Checa\", \"tr\": \"Çekya\", \"pt-BR\": \"República Tcheca\"}","timezones":null,"numeric_code":"203","iso3":"CZE","nationality":"Czech","capital":"Prague","tld":".cz","native":"Česká republika","region":"Europe","currency":"CZK","currency_name":"Czech koruna","currency_symbol":"Kč","wikiDataId":null,"lat":"49.75","lng":"15.50","emoji":"🇨🇿","emojiU":"U+1F1E8 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"60","name":"Denmark","code":"DK","phone":"208","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Denmark\", \"cn\": \"丹麦\", \"de\": \"Dänemark\", \"es\": \"Dinamarca\", \"fa\": \"دانمارک\", \"fr\": \"Danemark\", \"hr\": \"Danska\", \"it\": \"Danimarca\", \"ja\": \"デンマーク\", \"kr\": \"덴마크\", \"nl\": \"Denemarken\", \"pt\": \"Dinamarca\", \"tr\": \"Danimarka\", \"pt-BR\": \"Dinamarca\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Copenhagen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"208","iso3":"DNK","nationality":"Danish","capital":"Copenhagen","tld":".dk","native":"Danmark","region":"Europe","currency":"DKK","currency_name":"Danish krone","currency_symbol":"Kr.","wikiDataId":null,"lat":"56.00","lng":"10.00","emoji":"🇩🇰","emojiU":"U+1F1E9 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"61","name":"Djibouti","code":"DJ","phone":"262","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Djibouti\", \"cn\": \"吉布提\", \"de\": \"Dschibuti\", \"es\": \"Yibuti\", \"fa\": \"جیبوتی\", \"fr\": \"Djibouti\", \"hr\": \"Džibuti\", \"it\": \"Gibuti\", \"ja\": \"ジブチ\", \"kr\": \"지부티\", \"nl\": \"Djibouti\", \"pt\": \"Djibuti\", \"tr\": \"Cibuti\", \"pt-BR\": \"Djibuti\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Djibouti\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"262","iso3":"DJI","nationality":"Djiboutian","capital":"Djibouti","tld":".dj","native":"Djibouti","region":"Africa","currency":"DJF","currency_name":"Djiboutian franc","currency_symbol":"Fdj","wikiDataId":null,"lat":"11.50","lng":"43.00","emoji":"🇩🇯","emojiU":"U+1F1E9 U+1F1EF","flag":"1","is_activated":"1"}, +{"id":"62","name":"Dominica","code":"DM","phone":"212","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Dominica\", \"cn\": \"多米尼加\", \"de\": \"Dominica\", \"es\": \"Dominica\", \"fa\": \"دومینیکا\", \"fr\": \"Dominique\", \"hr\": \"Dominika\", \"it\": \"Dominica\", \"ja\": \"ドミニカ国\", \"kr\": \"도미니카 연방\", \"nl\": \"Dominica\", \"pt\": \"Dominica\", \"tr\": \"Dominika\", \"pt-BR\": \"Dominica\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Dominica\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"212","iso3":"DMA","nationality":"Dominican","capital":"Roseau","tld":".dm","native":"Dominica","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"15.42","lng":"-61.33","emoji":"🇩🇲","emojiU":"U+1F1E9 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"63","name":"Dominican Republic","code":"DO","phone":"214","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Dominican Republic\", \"cn\": \"多明尼加共和国\", \"de\": \"Dominikanische Republik\", \"es\": \"República Dominicana\", \"fa\": \"جمهوری دومینیکن\", \"fr\": \"République dominicaine\", \"hr\": \"Dominikanska Republika\", \"it\": \"Repubblica Dominicana\", \"ja\": \"ドミニカ共和国\", \"kr\": \"도미니카 공화국\", \"nl\": \"Dominicaanse Republiek\", \"pt\": \"República Dominicana\", \"tr\": \"Dominik Cumhuriyeti\", \"pt-BR\": \"República Dominicana\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Santo_Domingo\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"214","iso3":"DOM","nationality":"Dominican","capital":"Santo Domingo","tld":".do","native":"República Dominicana","region":"Americas","currency":"DOP","currency_name":"Dominican peso","currency_symbol":"$","wikiDataId":null,"lat":"19.00","lng":"-70.67","emoji":"🇩🇴","emojiU":"U+1F1E9 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"64","name":"Ecuador","code":"EC","phone":"218","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Ecuador\", \"cn\": \"厄瓜多尔\", \"de\": \"Ecuador\", \"es\": \"Ecuador\", \"fa\": \"اکوادور\", \"fr\": \"Équateur\", \"hr\": \"Ekvador\", \"it\": \"Ecuador\", \"ja\": \"エクアドル\", \"kr\": \"에콰도르\", \"nl\": \"Ecuador\", \"pt\": \"Equador\", \"tr\": \"Ekvator\", \"pt-BR\": \"Equador\"}","timezones":"[{\"tzName\": \"Ecuador Time\", \"zoneName\": \"America\/Guayaquil\", \"gmtOffset\": -18000, \"abbreviation\": \"ECT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Galápagos Time\", \"zoneName\": \"Pacific\/Galapagos\", \"gmtOffset\": -21600, \"abbreviation\": \"GALT\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"218","iso3":"ECU","nationality":"Ecuadorian","capital":"Quito","tld":".ec","native":"Ecuador","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"-2.00","lng":"-77.50","emoji":"🇪🇨","emojiU":"U+1F1EA U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"65","name":"Egypt","code":"EG","phone":"02","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Egypt\", \"cn\": \"埃及\", \"de\": \"Ägypten\", \"es\": \"Egipto\", \"fa\": \"مصر\", \"fr\": \"Égypte\", \"hr\": \"Egipat\", \"it\": \"Egitto\", \"ja\": \"エジプト\", \"kr\": \"이집트\", \"nl\": \"Egypte\", \"pt\": \"Egipto\", \"tr\": \"Mısır\", \"pt-BR\": \"Egito\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Africa\/Cairo\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"818","iso3":"EGY","nationality":"Egyptian","capital":"Cairo","tld":".eg","native":"مصر‎","region":"Africa","currency":"EGP","currency_name":"Egyptian pound","currency_symbol":"ج.م","wikiDataId":null,"lat":"27.00","lng":"30.00","emoji":"🇪🇬","emojiU":"U+1F1EA U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"66","name":"El Salvador","code":"SV","phone":"222","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"El Salvador\", \"cn\": \"萨尔瓦多\", \"de\": \"El Salvador\", \"es\": \"El Salvador\", \"fa\": \"السالوادور\", \"fr\": \"Salvador\", \"hr\": \"Salvador\", \"it\": \"El Salvador\", \"ja\": \"エルサルバドル\", \"kr\": \"엘살바도르\", \"nl\": \"El Salvador\", \"pt\": \"El Salvador\", \"tr\": \"El Salvador\", \"pt-BR\": \"El Salvador\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/El_Salvador\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"222","iso3":"SLV","nationality":"Salvadoran","capital":"San Salvador","tld":".sv","native":"El Salvador","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"13.83","lng":"-88.92","emoji":"🇸🇻","emojiU":"U+1F1F8 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"67","name":"Equatorial Guinea","code":"GQ","phone":"226","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Equatorial Guinea\", \"cn\": \"赤道几内亚\", \"de\": \"Äquatorial-Guinea\", \"es\": \"Guinea Ecuatorial\", \"fa\": \"گینه استوایی\", \"fr\": \"Guinée-Équatoriale\", \"hr\": \"Ekvatorijalna Gvineja\", \"it\": \"Guinea Equatoriale\", \"ja\": \"赤道ギニア\", \"kr\": \"적도 기니\", \"nl\": \"Equatoriaal-Guinea\", \"pt\": \"Guiné Equatorial\", \"tr\": \"Ekvator Ginesi\", \"pt-BR\": \"Guiné Equatorial\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Malabo\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"226","iso3":"GNQ","nationality":"Equatorial Guinean, Equatoguinean","capital":"Malabo","tld":".gq","native":"Guinea Ecuatorial","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FCFA","wikiDataId":null,"lat":"2.00","lng":"10.00","emoji":"🇬🇶","emojiU":"U+1F1EC U+1F1F6","flag":"1","is_activated":"1"}, +{"id":"68","name":"Eritrea","code":"ER","phone":"232","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Eritrea\", \"cn\": \"厄立特里亚\", \"de\": \"Eritrea\", \"es\": \"Eritrea\", \"fa\": \"اریتره\", \"fr\": \"Érythrée\", \"hr\": \"Eritreja\", \"it\": \"Eritrea\", \"ja\": \"エリトリア\", \"kr\": \"에리트레아\", \"nl\": \"Eritrea\", \"pt\": \"Eritreia\", \"tr\": \"Eritre\", \"pt-BR\": \"Eritreia\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Asmara\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"232","iso3":"ERI","nationality":"Eritrean","capital":"Asmara","tld":".er","native":"ኤርትራ","region":"Africa","currency":"ERN","currency_name":"Eritrean nakfa","currency_symbol":"Nfk","wikiDataId":null,"lat":"15.00","lng":"39.00","emoji":"🇪🇷","emojiU":"U+1F1EA U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"69","name":"Estonia","code":"EE","phone":"233","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Estonia\", \"cn\": \"爱沙尼亚\", \"de\": \"Estland\", \"es\": \"Estonia\", \"fa\": \"استونی\", \"fr\": \"Estonie\", \"hr\": \"Estonija\", \"it\": \"Estonia\", \"ja\": \"エストニア\", \"kr\": \"에스토니아\", \"nl\": \"Estland\", \"pt\": \"Estónia\", \"tr\": \"Estonya\", \"pt-BR\": \"Estônia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Tallinn\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"233","iso3":"EST","nationality":"Estonian","capital":"Tallinn","tld":".ee","native":"Eesti","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"59.00","lng":"26.00","emoji":"🇪🇪","emojiU":"U+1F1EA U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"70","name":"Ethiopia","code":"ET","phone":"231","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Ethiopia\", \"cn\": \"埃塞俄比亚\", \"de\": \"Äthiopien\", \"es\": \"Etiopía\", \"fa\": \"اتیوپی\", \"fr\": \"Éthiopie\", \"hr\": \"Etiopija\", \"it\": \"Etiopia\", \"ja\": \"エチオピア\", \"kr\": \"에티오피아\", \"nl\": \"Ethiopië\", \"pt\": \"Etiópia\", \"tr\": \"Etiyopya\", \"pt-BR\": \"Etiópia\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Addis_Ababa\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"231","iso3":"ETH","nationality":"Ethiopian","capital":"Addis Ababa","tld":".et","native":"ኢትዮጵያ","region":"Africa","currency":"ETB","currency_name":"Ethiopian birr","currency_symbol":"Nkf","wikiDataId":null,"lat":"8.00","lng":"38.00","emoji":"🇪🇹","emojiU":"U+1F1EA U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"71","name":"Falkland Islands","code":"FK","phone":"238","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Falkland Islands\", \"cn\": \"福克兰群岛\", \"de\": \"Falklandinseln\", \"es\": \"Islas Malvinas\", \"fa\": \"جزایر فالکلند\", \"fr\": \"Îles Malouines\", \"hr\": \"Falklandski Otoci\", \"it\": \"Isole Falkland o Isole Malvine\", \"ja\": \"フォークランド(マルビナス)諸島\", \"kr\": \"포클랜드 제도\", \"nl\": \"Falklandeilanden [Islas Malvinas]\", \"pt\": \"Ilhas Falkland\", \"tr\": \"Falkland Adalari\", \"pt-BR\": \"Ilhas Malvinas\"}","timezones":"[{\"tzName\": \"Falkland Islands Summer Time\", \"zoneName\": \"Atlantic\/Stanley\", \"gmtOffset\": -10800, \"abbreviation\": \"FKST\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"238","iso3":"FLK","nationality":"Falkland Island","capital":"Stanley","tld":".fk","native":"Falkland Islands","region":"Americas","currency":"FKP","currency_name":"Falkland Islands pound","currency_symbol":"£","wikiDataId":null,"lat":"-51.75","lng":"-59.00","emoji":"🇫🇰","emojiU":"U+1F1EB U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"72","name":"Faroe Islands","code":"FO","phone":"234","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Faroe Islands\", \"cn\": \"法罗群岛\", \"de\": \"Färöer-Inseln\", \"es\": \"Islas Faroe\", \"fa\": \"جزایر فارو\", \"fr\": \"Îles Féroé\", \"hr\": \"Farski Otoci\", \"it\": \"Isole Far Oer\", \"ja\": \"フェロー諸島\", \"kr\": \"페로 제도\", \"nl\": \"Faeröer\", \"pt\": \"Ilhas Faroé\", \"tr\": \"Faroe Adalari\", \"pt-BR\": \"Ilhas Faroé\"}","timezones":"[{\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic\/Faroe\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"234","iso3":"FRO","nationality":"Faroese","capital":"Torshavn","tld":".fo","native":"Føroyar","region":"Europe","currency":"DKK","currency_name":"Danish krone","currency_symbol":"Kr.","wikiDataId":null,"lat":"62.00","lng":"-7.00","emoji":"🇫🇴","emojiU":"U+1F1EB U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"73","name":"Fiji Islands","code":"FJ","phone":"242","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Fiji Islands\", \"cn\": \"斐济\", \"de\": \"Fidschi\", \"es\": \"Fiyi\", \"fa\": \"فیجی\", \"fr\": \"Fidji\", \"hr\": \"Fiđi\", \"it\": \"Figi\", \"ja\": \"フィジー\", \"kr\": \"피지\", \"nl\": \"Fiji\", \"pt\": \"Fiji\", \"tr\": \"Fiji\", \"pt-BR\": \"Fiji\"}","timezones":"[{\"tzName\": \"Fiji Time\", \"zoneName\": \"Pacific\/Fiji\", \"gmtOffset\": 43200, \"abbreviation\": \"FJT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"242","iso3":"FJI","nationality":"Fijian","capital":"Suva","tld":".fj","native":"Fiji","region":"Oceania","currency":"FJD","currency_name":"Fijian dollar","currency_symbol":"FJ$","wikiDataId":null,"lat":"-18.00","lng":"175.00","emoji":"🇫🇯","emojiU":"U+1F1EB U+1F1EF","flag":"1","is_activated":"1"}, +{"id":"74","name":"Finland","code":"FI","phone":"246","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Finland\", \"cn\": \"芬兰\", \"de\": \"Finnland\", \"es\": \"Finlandia\", \"fa\": \"فنلاند\", \"fr\": \"Finlande\", \"hr\": \"Finska\", \"it\": \"Finlandia\", \"ja\": \"フィンランド\", \"kr\": \"핀란드\", \"nl\": \"Finland\", \"pt\": \"Finlândia\", \"tr\": \"Finlandiya\", \"pt-BR\": \"Finlândia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Helsinki\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"246","iso3":"FIN","nationality":"Finnish","capital":"Helsinki","tld":".fi","native":"Suomi","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"64.00","lng":"26.00","emoji":"🇫🇮","emojiU":"U+1F1EB U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"75","name":"France","code":"FR","phone":"250","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"France\", \"cn\": \"法国\", \"de\": \"Frankreich\", \"es\": \"Francia\", \"fa\": \"فرانسه\", \"fr\": \"France\", \"hr\": \"Francuska\", \"it\": \"Francia\", \"ja\": \"フランス\", \"kr\": \"프랑스\", \"nl\": \"Frankrijk\", \"pt\": \"França\", \"tr\": \"Fransa\", \"pt-BR\": \"França\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Paris\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"250","iso3":"FRA","nationality":"French","capital":"Paris","tld":".fr","native":"France","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"46.00","lng":"2.00","emoji":"🇫🇷","emojiU":"U+1F1EB U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"76","name":"French Guiana","code":"GF","phone":"254","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"French Guiana\", \"cn\": \"法属圭亚那\", \"de\": \"Französisch Guyana\", \"es\": \"Guayana Francesa\", \"fa\": \"گویان فرانسه\", \"fr\": \"Guayane\", \"hr\": \"Francuska Gvajana\", \"it\": \"Guyana francese\", \"ja\": \"フランス領ギアナ\", \"kr\": \"프랑스령 기아나\", \"nl\": \"Frans-Guyana\", \"pt\": \"Guiana Francesa\", \"tr\": \"Fransiz Guyanasi\", \"pt-BR\": \"Guiana Francesa\"}","timezones":"[{\"tzName\": \"French Guiana Time\", \"zoneName\": \"America\/Cayenne\", \"gmtOffset\": -10800, \"abbreviation\": \"GFT\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"254","iso3":"GUF","nationality":"French Guianese","capital":"Cayenne","tld":".gf","native":"Guyane française","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"4.00","lng":"-53.00","emoji":"🇬🇫","emojiU":"U+1F1EC U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"77","name":"French Polynesia","code":"PF","phone":"258","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"French Polynesia\", \"cn\": \"法属波利尼西亚\", \"de\": \"Französisch-Polynesien\", \"es\": \"Polinesia Francesa\", \"fa\": \"پلی‌نزی فرانسه\", \"fr\": \"Polynésie française\", \"hr\": \"Francuska Polinezija\", \"it\": \"Polinesia Francese\", \"ja\": \"フランス領ポリネシア\", \"kr\": \"프랑스령 폴리네시아\", \"nl\": \"Frans-Polynesië\", \"pt\": \"Polinésia Francesa\", \"tr\": \"Fransiz Polinezyasi\", \"pt-BR\": \"Polinésia Francesa\"}","timezones":"[{\"tzName\": \"Gambier Islands Time\", \"zoneName\": \"Pacific\/Gambier\", \"gmtOffset\": -32400, \"abbreviation\": \"GAMT\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Marquesas Islands Time\", \"zoneName\": \"Pacific\/Marquesas\", \"gmtOffset\": -34200, \"abbreviation\": \"MART\", \"gmtOffsetName\": \"UTC-09:30\"}, {\"tzName\": \"Tahiti Time\", \"zoneName\": \"Pacific\/Tahiti\", \"gmtOffset\": -36000, \"abbreviation\": \"TAHT\", \"gmtOffsetName\": \"UTC-10:00\"}]","numeric_code":"258","iso3":"PYF","nationality":"French Polynesia","capital":"Papeete","tld":".pf","native":"Polynésie française","region":"Oceania","currency":"XPF","currency_name":"CFP franc","currency_symbol":"₣","wikiDataId":null,"lat":"-15.00","lng":"-140.00","emoji":"🇵🇫","emojiU":"U+1F1F5 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"78","name":"French Southern Territories","code":"TF","phone":"260","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"French Southern Territories\", \"cn\": \"法属南部领地\", \"de\": \"Französische Süd- und Antarktisgebiete\", \"es\": \"Tierras Australes y Antárticas Francesas\", \"fa\": \"سرزمین‌های جنوبی و جنوبگانی فرانسه\", \"fr\": \"Terres australes et antarctiques françaises\", \"hr\": \"Francuski južni i antarktički teritoriji\", \"it\": \"Territori Francesi del Sud\", \"ja\": \"フランス領南方・南極地域\", \"kr\": \"프랑스령 남방 및 남극\", \"nl\": \"Franse Gebieden in de zuidelijke Indische Oceaan\", \"pt\": \"Terras Austrais e Antárticas Francesas\", \"tr\": \"Fransiz Güney Topraklari\", \"pt-BR\": \"Terras Austrais e Antárticas Francesas\"}","timezones":"[{\"tzName\": \"French Southern and Antarctic Time\", \"zoneName\": \"Indian\/Kerguelen\", \"gmtOffset\": 18000, \"abbreviation\": \"TFT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"260","iso3":"ATF","nationality":"French Southern Territories","capital":"Port-aux-Francais","tld":".tf","native":"Territoire des Terres australes et antarctiques fr","region":"Africa","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"-49.25","lng":"69.17","emoji":"🇹🇫","emojiU":"U+1F1F9 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"79","name":"Gabon","code":"GA","phone":"266","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Gabon\", \"cn\": \"加蓬\", \"de\": \"Gabun\", \"es\": \"Gabón\", \"fa\": \"گابن\", \"fr\": \"Gabon\", \"hr\": \"Gabon\", \"it\": \"Gabon\", \"ja\": \"ガボン\", \"kr\": \"가봉\", \"nl\": \"Gabon\", \"pt\": \"Gabão\", \"tr\": \"Gabon\", \"pt-BR\": \"Gabão\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Libreville\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"266","iso3":"GAB","nationality":"Gabonese","capital":"Libreville","tld":".ga","native":"Gabon","region":"Africa","currency":"XAF","currency_name":"Central African CFA franc","currency_symbol":"FCFA","wikiDataId":null,"lat":"-1.00","lng":"11.75","emoji":"🇬🇦","emojiU":"U+1F1EC U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"80","name":"Gambia The","code":"GM","phone":"270","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Gambia The\", \"cn\": \"冈比亚\", \"de\": \"Gambia\", \"es\": \"Gambia\", \"fa\": \"گامبیا\", \"fr\": \"Gambie\", \"hr\": \"Gambija\", \"it\": \"Gambia\", \"ja\": \"ガンビア\", \"kr\": \"감비아\", \"nl\": \"Gambia\", \"pt\": \"Gâmbia\", \"tr\": \"Gambiya\", \"pt-BR\": \"Gâmbia\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Banjul\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"270","iso3":"GMB","nationality":"Gambian","capital":"Banjul","tld":".gm","native":"Gambia","region":"Africa","currency":"GMD","currency_name":"Gambian dalasi","currency_symbol":"D","wikiDataId":null,"lat":"13.47","lng":"-16.57","emoji":"🇬🇲","emojiU":"U+1F1EC U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"81","name":"Georgia","code":"GE","phone":"268","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Georgia\", \"cn\": \"格鲁吉亚\", \"de\": \"Georgien\", \"es\": \"Georgia\", \"fa\": \"گرجستان\", \"fr\": \"Géorgie\", \"hr\": \"Gruzija\", \"it\": \"Georgia\", \"ja\": \"グルジア\", \"kr\": \"조지아\", \"nl\": \"Georgië\", \"pt\": \"Geórgia\", \"tr\": \"Gürcistan\", \"pt-BR\": \"Geórgia\"}","timezones":"[{\"tzName\": \"Georgia Standard Time\", \"zoneName\": \"Asia\/Tbilisi\", \"gmtOffset\": 14400, \"abbreviation\": \"GET\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"268","iso3":"GEO","nationality":"Georgian","capital":"Tbilisi","tld":".ge","native":"საქართველო","region":"Asia","currency":"GEL","currency_name":"Georgian lari","currency_symbol":"ლ","wikiDataId":null,"lat":"42.00","lng":"43.50","emoji":"🇬🇪","emojiU":"U+1F1EC U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"82","name":"Germany","code":"DE","phone":"276","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Germany\", \"cn\": \"德国\", \"de\": \"Deutschland\", \"es\": \"Alemania\", \"fa\": \"آلمان\", \"fr\": \"Allemagne\", \"hr\": \"Njemačka\", \"it\": \"Germania\", \"ja\": \"ドイツ\", \"kr\": \"독일\", \"nl\": \"Duitsland\", \"pt\": \"Alemanha\", \"tr\": \"Almanya\", \"pt-BR\": \"Alemanha\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Berlin\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Busingen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"276","iso3":"DEU","nationality":"German","capital":"Berlin","tld":".de","native":"Deutschland","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"51.00","lng":"9.00","emoji":"🇩🇪","emojiU":"U+1F1E9 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"83","name":"Ghana","code":"GH","phone":"288","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Ghana\", \"cn\": \"加纳\", \"de\": \"Ghana\", \"es\": \"Ghana\", \"fa\": \"غنا\", \"fr\": \"Ghana\", \"hr\": \"Gana\", \"it\": \"Ghana\", \"ja\": \"ガーナ\", \"kr\": \"가나\", \"nl\": \"Ghana\", \"pt\": \"Gana\", \"tr\": \"Gana\", \"pt-BR\": \"Gana\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Accra\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"288","iso3":"GHA","nationality":"Ghanaian","capital":"Accra","tld":".gh","native":"Ghana","region":"Africa","currency":"GHS","currency_name":"Ghanaian cedi","currency_symbol":"GH₵","wikiDataId":null,"lat":"8.00","lng":"-2.00","emoji":"🇬🇭","emojiU":"U+1F1EC U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"84","name":"Gibraltar","code":"GI","phone":"292","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Gibraltar\", \"cn\": \"直布罗陀\", \"de\": \"Gibraltar\", \"es\": \"Gibraltar\", \"fa\": \"جبل‌طارق\", \"fr\": \"Gibraltar\", \"hr\": \"Gibraltar\", \"it\": \"Gibilterra\", \"ja\": \"ジブラルタル\", \"kr\": \"지브롤터\", \"nl\": \"Gibraltar\", \"pt\": \"Gibraltar\", \"tr\": \"Cebelitarik\", \"pt-BR\": \"Gibraltar\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Gibraltar\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"292","iso3":"GIB","nationality":"Gibraltar","capital":"Gibraltar","tld":".gi","native":"Gibraltar","region":"Europe","currency":"GIP","currency_name":"Gibraltar pound","currency_symbol":"£","wikiDataId":null,"lat":"36.13","lng":"-5.35","emoji":"🇬🇮","emojiU":"U+1F1EC U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"85","name":"Greece","code":"GR","phone":"300","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Greece\", \"cn\": \"希腊\", \"de\": \"Griechenland\", \"es\": \"Grecia\", \"fa\": \"یونان\", \"fr\": \"Grèce\", \"hr\": \"Grčka\", \"it\": \"Grecia\", \"ja\": \"ギリシャ\", \"kr\": \"그리스\", \"nl\": \"Griekenland\", \"pt\": \"Grécia\", \"tr\": \"Yunanistan\", \"pt-BR\": \"Grécia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Athens\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"300","iso3":"GRC","nationality":"Greek, Hellenic","capital":"Athens","tld":".gr","native":"Ελλάδα","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"39.00","lng":"22.00","emoji":"🇬🇷","emojiU":"U+1F1EC U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"86","name":"Greenland","code":"GL","phone":"304","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Greenland\", \"cn\": \"格陵兰岛\", \"de\": \"Grönland\", \"es\": \"Groenlandia\", \"fa\": \"گرینلند\", \"fr\": \"Groenland\", \"hr\": \"Grenland\", \"it\": \"Groenlandia\", \"ja\": \"グリーンランド\", \"kr\": \"그린란드\", \"nl\": \"Groenland\", \"pt\": \"Gronelândia\", \"tr\": \"Grönland\", \"pt-BR\": \"Groelândia\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"America\/Danmarkshavn\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"West Greenland Time\", \"zoneName\": \"America\/Nuuk\", \"gmtOffset\": -10800, \"abbreviation\": \"WGT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Eastern Greenland Time\", \"zoneName\": \"America\/Scoresbysund\", \"gmtOffset\": -3600, \"abbreviation\": \"EGT\", \"gmtOffsetName\": \"UTC-01:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Thule\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"304","iso3":"GRL","nationality":"Greenlandic","capital":"Nuuk","tld":".gl","native":"Kalaallit Nunaat","region":"Americas","currency":"DKK","currency_name":"Danish krone","currency_symbol":"Kr.","wikiDataId":null,"lat":"72.00","lng":"-40.00","emoji":"🇬🇱","emojiU":"U+1F1EC U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"87","name":"Grenada","code":"GD","phone":"308","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Grenada\", \"cn\": \"格林纳达\", \"de\": \"Grenada\", \"es\": \"Grenada\", \"fa\": \"گرنادا\", \"fr\": \"Grenade\", \"hr\": \"Grenada\", \"it\": \"Grenada\", \"ja\": \"グレナダ\", \"kr\": \"그레나다\", \"nl\": \"Grenada\", \"pt\": \"Granada\", \"tr\": \"Grenada\", \"pt-BR\": \"Granada\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Grenada\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"308","iso3":"GRD","nationality":"Grenadian","capital":"St. Georges","tld":".gd","native":"Grenada","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"12.12","lng":"-61.67","emoji":"🇬🇩","emojiU":"U+1F1EC U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"88","name":"Guadeloupe","code":"GP","phone":"312","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guadeloupe\", \"cn\": \"瓜德罗普岛\", \"de\": \"Guadeloupe\", \"es\": \"Guadalupe\", \"fa\": \"جزیره گوادلوپ\", \"fr\": \"Guadeloupe\", \"hr\": \"Gvadalupa\", \"it\": \"Guadeloupa\", \"ja\": \"グアドループ\", \"kr\": \"과들루프\", \"nl\": \"Guadeloupe\", \"pt\": \"Guadalupe\", \"tr\": \"Guadeloupe\", \"pt-BR\": \"Guadalupe\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Guadeloupe\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"312","iso3":"GLP","nationality":"Guadeloupe","capital":"Basse-Terre","tld":".gp","native":"Guadeloupe","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"16.25","lng":"-61.58","emoji":"🇬🇵","emojiU":"U+1F1EC U+1F1F5","flag":"1","is_activated":"1"}, +{"id":"89","name":"Guam","code":"GU","phone":"316","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guam\", \"cn\": \"关岛\", \"de\": \"Guam\", \"es\": \"Guam\", \"fa\": \"گوام\", \"fr\": \"Guam\", \"hr\": \"Guam\", \"it\": \"Guam\", \"ja\": \"グアム\", \"kr\": \"괌\", \"nl\": \"Guam\", \"pt\": \"Guame\", \"tr\": \"Guam\", \"pt-BR\": \"Guam\"}","timezones":"[{\"tzName\": \"Chamorro Standard Time\", \"zoneName\": \"Pacific\/Guam\", \"gmtOffset\": 36000, \"abbreviation\": \"CHST\", \"gmtOffsetName\": \"UTC+10:00\"}]","numeric_code":"316","iso3":"GUM","nationality":"Guamanian, Guambat","capital":"Hagatna","tld":".gu","native":"Guam","region":"Oceania","currency":"USD","currency_name":"US Dollar","currency_symbol":"$","wikiDataId":null,"lat":"13.47","lng":"144.78","emoji":"🇬🇺","emojiU":"U+1F1EC U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"90","name":"Guatemala","code":"GT","phone":"320","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guatemala\", \"cn\": \"危地马拉\", \"de\": \"Guatemala\", \"es\": \"Guatemala\", \"fa\": \"گواتمالا\", \"fr\": \"Guatemala\", \"hr\": \"Gvatemala\", \"it\": \"Guatemala\", \"ja\": \"グアテマラ\", \"kr\": \"과테말라\", \"nl\": \"Guatemala\", \"pt\": \"Guatemala\", \"tr\": \"Guatemala\", \"pt-BR\": \"Guatemala\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Guatemala\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"320","iso3":"GTM","nationality":"Guatemalan","capital":"Guatemala City","tld":".gt","native":"Guatemala","region":"Americas","currency":"GTQ","currency_name":"Guatemalan quetzal","currency_symbol":"Q","wikiDataId":null,"lat":"15.50","lng":"-90.25","emoji":"🇬🇹","emojiU":"U+1F1EC U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"91","name":"Guernsey and Alderney","code":"GG","phone":"831","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guernsey and Alderney\", \"cn\": \"根西岛\", \"de\": \"Guernsey\", \"es\": \"Guernsey\", \"fa\": \"گرنزی\", \"fr\": \"Guernesey\", \"hr\": \"Guernsey\", \"it\": \"Guernsey\", \"ja\": \"ガーンジー\", \"kr\": \"건지, 올더니\", \"nl\": \"Guernsey\", \"pt\": \"Guernsey\", \"tr\": \"Alderney\", \"pt-BR\": \"Guernsey\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe\/Guernsey\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"831","iso3":"GGY","nationality":"Channel Island","capital":"St Peter Port","tld":".gg","native":"Guernsey","region":"Europe","currency":"GBP","currency_name":"British pound","currency_symbol":"£","wikiDataId":null,"lat":"49.47","lng":"-2.58","emoji":"🇬🇬","emojiU":"U+1F1EC U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"92","name":"Guinea","code":"GN","phone":"324","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guinea\", \"cn\": \"几内亚\", \"de\": \"Guinea\", \"es\": \"Guinea\", \"fa\": \"گینه\", \"fr\": \"Guinée\", \"hr\": \"Gvineja\", \"it\": \"Guinea\", \"ja\": \"ギニア\", \"kr\": \"기니\", \"nl\": \"Guinee\", \"pt\": \"Guiné\", \"tr\": \"Gine\", \"pt-BR\": \"Guiné\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Conakry\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"324","iso3":"GIN","nationality":"Guinean","capital":"Conakry","tld":".gn","native":"Guinée","region":"Africa","currency":"GNF","currency_name":"Guinean franc","currency_symbol":"FG","wikiDataId":null,"lat":"11.00","lng":"-10.00","emoji":"🇬🇳","emojiU":"U+1F1EC U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"93","name":"Guinea-Bissau","code":"GW","phone":"624","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guinea-Bissau\", \"cn\": \"几内亚比绍\", \"de\": \"Guinea-Bissau\", \"es\": \"Guinea-Bisáu\", \"fa\": \"گینه بیسائو\", \"fr\": \"Guinée-Bissau\", \"hr\": \"Gvineja Bisau\", \"it\": \"Guinea-Bissau\", \"ja\": \"ギニアビサウ\", \"kr\": \"기니비사우\", \"nl\": \"Guinee-Bissau\", \"pt\": \"Guiné-Bissau\", \"tr\": \"Gine-bissau\", \"pt-BR\": \"Guiné-Bissau\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Bissau\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"624","iso3":"GNB","nationality":"Bissau-Guinean","capital":"Bissau","tld":".gw","native":"Guiné-Bissau","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"12.00","lng":"-15.00","emoji":"🇬🇼","emojiU":"U+1F1EC U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"94","name":"Guyana","code":"GY","phone":"328","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Guyana\", \"cn\": \"圭亚那\", \"de\": \"Guyana\", \"es\": \"Guyana\", \"fa\": \"گویان\", \"fr\": \"Guyane\", \"hr\": \"Gvajana\", \"it\": \"Guyana\", \"ja\": \"ガイアナ\", \"kr\": \"가이아나\", \"nl\": \"Guyana\", \"pt\": \"Guiana\", \"tr\": \"Guyana\", \"pt-BR\": \"Guiana\"}","timezones":"[{\"tzName\": \"Guyana Time\", \"zoneName\": \"America\/Guyana\", \"gmtOffset\": -14400, \"abbreviation\": \"GYT\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"328","iso3":"GUY","nationality":"Guyanese","capital":"Georgetown","tld":".gy","native":"Guyana","region":"Americas","currency":"GYD","currency_name":"Guyanese dollar","currency_symbol":"$","wikiDataId":null,"lat":"5.00","lng":"-59.00","emoji":"🇬🇾","emojiU":"U+1F1EC U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"95","name":"Haiti","code":"HT","phone":"332","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Haiti\", \"cn\": \"海地\", \"de\": \"Haiti\", \"es\": \"Haiti\", \"fa\": \"هائیتی\", \"fr\": \"Haïti\", \"hr\": \"Haiti\", \"it\": \"Haiti\", \"ja\": \"ハイチ\", \"kr\": \"아이티\", \"nl\": \"Haïti\", \"pt\": \"Haiti\", \"tr\": \"Haiti\", \"pt-BR\": \"Haiti\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Port-au-Prince\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"332","iso3":"HTI","nationality":"Haitian","capital":"Port-au-Prince","tld":".ht","native":"Haïti","region":"Americas","currency":"HTG","currency_name":"Haitian gourde","currency_symbol":"G","wikiDataId":null,"lat":"19.00","lng":"-72.42","emoji":"🇭🇹","emojiU":"U+1F1ED U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"96","name":"Heard Island and McDonald Islands","code":"HM","phone":"334","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Heard Island and McDonald Islands\", \"cn\": \"赫德·唐纳岛及麦唐纳岛\", \"de\": \"Heard und die McDonaldinseln\", \"es\": \"Islas Heard y McDonald\", \"fa\": \"جزیره هرد و جزایر مک‌دونالد\", \"fr\": \"Îles Heard-et-MacDonald\", \"hr\": \"Otok Heard i otočje McDonald\", \"it\": \"Isole Heard e McDonald\", \"ja\": \"ハード島とマクドナルド諸島\", \"kr\": \"허드 맥도날드 제도\", \"nl\": \"Heard- en McDonaldeilanden\", \"pt\": \"Ilha Heard e Ilhas McDonald\", \"tr\": \"Heard Adasi Ve Mcdonald Adalari\", \"pt-BR\": \"Ilha Heard e Ilhas McDonald\"}","timezones":"[{\"tzName\": \"French Southern and Antarctic Time\", \"zoneName\": \"Indian\/Kerguelen\", \"gmtOffset\": 18000, \"abbreviation\": \"TFT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"334","iso3":"HMD","nationality":"Heard Island or McDonald Islands","capital":"","tld":".hm","native":"Heard Island and McDonald Islands","region":"","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-53.10","lng":"72.52","emoji":"🇭🇲","emojiU":"U+1F1ED U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"97","name":"Vatican City State (Holy See)","code":"VA","phone":"336","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Vatican City State (Holy See)\", \"cn\": \"梵蒂冈\", \"de\": \"Heiliger Stuhl\", \"es\": \"Santa Sede\", \"fa\": \"سریر مقدس\", \"fr\": \"voir Saint\", \"hr\": \"Sveta Stolica\", \"it\": \"Santa Sede\", \"ja\": \"聖座\", \"kr\": \"바티칸 시국\", \"nl\": \"Heilige Stoel\", \"pt\": \"Vaticano\", \"tr\": \"Vatikan\", \"pt-BR\": \"Vaticano\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Vatican\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"336","iso3":"VAT","nationality":"Vatican","capital":"Vatican City","tld":".va","native":"Vaticano","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"41.90","lng":"12.45","emoji":"🇻🇦","emojiU":"U+1F1FB U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"98","name":"Honduras","code":"HN","phone":"340","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Honduras\", \"cn\": \"洪都拉斯\", \"de\": \"Honduras\", \"es\": \"Honduras\", \"fa\": \"هندوراس\", \"fr\": \"Honduras\", \"hr\": \"Honduras\", \"it\": \"Honduras\", \"ja\": \"ホンジュラス\", \"kr\": \"온두라스\", \"nl\": \"Honduras\", \"pt\": \"Honduras\", \"tr\": \"Honduras\", \"pt-BR\": \"Honduras\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Tegucigalpa\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"340","iso3":"HND","nationality":"Honduran","capital":"Tegucigalpa","tld":".hn","native":"Honduras","region":"Americas","currency":"HNL","currency_name":"Honduran lempira","currency_symbol":"L","wikiDataId":null,"lat":"15.00","lng":"-86.50","emoji":"🇭🇳","emojiU":"U+1F1ED U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"99","name":"Hong Kong S.A.R.","code":"HK","phone":"344","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Hong Kong S.A.R.\", \"cn\": \"中国香港\", \"de\": \"Hong Kong\", \"es\": \"Hong Kong\", \"fa\": \"هنگ‌کنگ\", \"fr\": \"Hong Kong\", \"hr\": \"Hong Kong\", \"it\": \"Hong Kong\", \"ja\": \"香港\", \"kr\": \"홍콩\", \"nl\": \"Hongkong\", \"pt\": \"Hong Kong\", \"tr\": \"Hong Kong\", \"pt-BR\": \"Hong Kong\"}","timezones":"[{\"tzName\": \"Hong Kong Time\", \"zoneName\": \"Asia\/Hong_Kong\", \"gmtOffset\": 28800, \"abbreviation\": \"HKT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"344","iso3":"HKG","nationality":"Hong Kong, Hong Kongese","capital":"Hong Kong","tld":".hk","native":"香港","region":"Asia","currency":"HKD","currency_name":"Hong Kong dollar","currency_symbol":"$","wikiDataId":null,"lat":"22.25","lng":"114.17","emoji":"🇭🇰","emojiU":"U+1F1ED U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"100","name":"Hungary","code":"HU","phone":"348","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Hungary\", \"cn\": \"匈牙利\", \"de\": \"Ungarn\", \"es\": \"Hungría\", \"fa\": \"مجارستان\", \"fr\": \"Hongrie\", \"hr\": \"Mađarska\", \"it\": \"Ungheria\", \"ja\": \"ハンガリー\", \"kr\": \"헝가리\", \"nl\": \"Hongarije\", \"pt\": \"Hungria\", \"tr\": \"Macaristan\", \"pt-BR\": \"Hungria\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Budapest\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"348","iso3":"HUN","nationality":"Hungarian, Magyar","capital":"Budapest","tld":".hu","native":"Magyarország","region":"Europe","currency":"HUF","currency_name":"Hungarian forint","currency_symbol":"Ft","wikiDataId":null,"lat":"47.00","lng":"20.00","emoji":"🇭🇺","emojiU":"U+1F1ED U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"101","name":"Iceland","code":"IS","phone":"352","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Iceland\", \"cn\": \"冰岛\", \"de\": \"Island\", \"es\": \"Islandia\", \"fa\": \"ایسلند\", \"fr\": \"Islande\", \"hr\": \"Island\", \"it\": \"Islanda\", \"ja\": \"アイスランド\", \"kr\": \"아이슬란드\", \"nl\": \"IJsland\", \"pt\": \"Islândia\", \"tr\": \"İzlanda\", \"pt-BR\": \"Islândia\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Atlantic\/Reykjavik\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"352","iso3":"ISL","nationality":"Icelandic","capital":"Reykjavik","tld":".is","native":"Ísland","region":"Europe","currency":"ISK","currency_name":"Icelandic króna","currency_symbol":"kr","wikiDataId":null,"lat":"65.00","lng":"-18.00","emoji":"🇮🇸","emojiU":"U+1F1EE U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"102","name":"India","code":"IN","phone":"356","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"India\", \"cn\": \"印度\", \"de\": \"Indien\", \"es\": \"India\", \"fa\": \"هند\", \"fr\": \"Inde\", \"hr\": \"Indija\", \"it\": \"India\", \"ja\": \"インド\", \"kr\": \"인도\", \"nl\": \"India\", \"pt\": \"Índia\", \"tr\": \"Hindistan\", \"pt-BR\": \"Índia\"}","timezones":"[{\"tzName\": \"Indian Standard Time\", \"zoneName\": \"Asia\/Kolkata\", \"gmtOffset\": 19800, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+05:30\"}]","numeric_code":"356","iso3":"IND","nationality":"Indian","capital":"New Delhi","tld":".in","native":"भारत","region":"Asia","currency":"INR","currency_name":"Indian rupee","currency_symbol":"₹","wikiDataId":null,"lat":"20.00","lng":"77.00","emoji":"🇮🇳","emojiU":"U+1F1EE U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"103","name":"Indonesia","code":"ID","phone":"360","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Indonesia\", \"cn\": \"印度尼西亚\", \"de\": \"Indonesien\", \"es\": \"Indonesia\", \"fa\": \"اندونزی\", \"fr\": \"Indonésie\", \"hr\": \"Indonezija\", \"it\": \"Indonesia\", \"ja\": \"インドネシア\", \"kr\": \"인도네시아\", \"nl\": \"Indonesië\", \"pt\": \"Indonésia\", \"tr\": \"Endonezya\", \"pt-BR\": \"Indonésia\"}","timezones":"[{\"tzName\": \"Western Indonesian Time\", \"zoneName\": \"Asia\/Jakarta\", \"gmtOffset\": 25200, \"abbreviation\": \"WIB\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Eastern Indonesian Time\", \"zoneName\": \"Asia\/Jayapura\", \"gmtOffset\": 32400, \"abbreviation\": \"WIT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Central Indonesia Time\", \"zoneName\": \"Asia\/Makassar\", \"gmtOffset\": 28800, \"abbreviation\": \"WITA\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Western Indonesian Time\", \"zoneName\": \"Asia\/Pontianak\", \"gmtOffset\": 25200, \"abbreviation\": \"WIB\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"360","iso3":"IDN","nationality":"Indonesian","capital":"Jakarta","tld":".id","native":"Indonesia","region":"Asia","currency":"IDR","currency_name":"Indonesian rupiah","currency_symbol":"Rp","wikiDataId":null,"lat":"-5.00","lng":"120.00","emoji":"🇮🇩","emojiU":"U+1F1EE U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"104","name":"Iran","code":"IR","phone":"364","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Iran\", \"cn\": \"伊朗\", \"de\": \"Iran\", \"es\": \"Iran\", \"fa\": \"ایران\", \"fr\": \"Iran\", \"hr\": \"Iran\", \"ja\": \"イラン・イスラム共和国\", \"kr\": \"이란\", \"nl\": \"Iran\", \"pt\": \"Irão\", \"tr\": \"İran\", \"pt-BR\": \"Irã\"}","timezones":"[{\"tzName\": \"Iran Daylight Time\", \"zoneName\": \"Asia\/Tehran\", \"gmtOffset\": 12600, \"abbreviation\": \"IRDT\", \"gmtOffsetName\": \"UTC+03:30\"}]","numeric_code":"364","iso3":"IRN","nationality":"Iranian, Persian","capital":"Tehran","tld":".ir","native":"ایران","region":"Asia","currency":"IRR","currency_name":"Iranian rial","currency_symbol":"﷼","wikiDataId":null,"lat":"32.00","lng":"53.00","emoji":"🇮🇷","emojiU":"U+1F1EE U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"105","name":"Iraq","code":"IQ","phone":"368","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Iraq\", \"cn\": \"伊拉克\", \"de\": \"Irak\", \"es\": \"Irak\", \"fa\": \"عراق\", \"fr\": \"Irak\", \"hr\": \"Irak\", \"it\": \"Iraq\", \"ja\": \"イラク\", \"kr\": \"이라크\", \"nl\": \"Irak\", \"pt\": \"Iraque\", \"tr\": \"Irak\", \"pt-BR\": \"Iraque\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Baghdad\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"368","iso3":"IRQ","nationality":"Iraqi","capital":"Baghdad","tld":".iq","native":"العراق","region":"Asia","currency":"IQD","currency_name":"Iraqi dinar","currency_symbol":"د.ع","wikiDataId":null,"lat":"33.00","lng":"44.00","emoji":"🇮🇶","emojiU":"U+1F1EE U+1F1F6","flag":"1","is_activated":"1"}, +{"id":"106","name":"Ireland","code":"IE","phone":"372","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Ireland\", \"cn\": \"爱尔兰\", \"de\": \"Irland\", \"es\": \"Irlanda\", \"fa\": \"ایرلند\", \"fr\": \"Irlande\", \"hr\": \"Irska\", \"it\": \"Irlanda\", \"ja\": \"アイルランド\", \"kr\": \"아일랜드\", \"nl\": \"Ierland\", \"pt\": \"Irlanda\", \"tr\": \"İrlanda\", \"pt-BR\": \"Irlanda\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe\/Dublin\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"372","iso3":"IRL","nationality":"Irish","capital":"Dublin","tld":".ie","native":"Éire","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"53.00","lng":"-8.00","emoji":"🇮🇪","emojiU":"U+1F1EE U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"107","name":"Man (Isle of)","code":"IM","phone":"833","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Man (Isle of)\", \"cn\": \"马恩岛\", \"de\": \"Insel Man\", \"es\": \"Isla de Man\", \"fa\": \"جزیره من\", \"fr\": \"Île de Man\", \"hr\": \"Otok Man\", \"it\": \"Isola di Man\", \"ja\": \"マン島\", \"kr\": \"맨 섬\", \"nl\": \"Isle of Man\", \"pt\": \"Ilha de Man\", \"tr\": \"Man Adasi\", \"pt-BR\": \"Ilha de Man\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe\/Isle_of_Man\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"833","iso3":"IMN","nationality":"Manx","capital":"Douglas, Isle of Man","tld":".im","native":"Isle of Man","region":"Europe","currency":"GBP","currency_name":"British pound","currency_symbol":"£","wikiDataId":null,"lat":"54.25","lng":"-4.50","emoji":"🇮🇲","emojiU":"U+1F1EE U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"108","name":"Israel","code":"IL","phone":"376","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Israel\", \"cn\": \"以色列\", \"de\": \"Israel\", \"es\": \"Israel\", \"fa\": \"اسرائیل\", \"fr\": \"Israël\", \"hr\": \"Izrael\", \"it\": \"Israele\", \"ja\": \"イスラエル\", \"kr\": \"이스라엘\", \"nl\": \"Israël\", \"pt\": \"Israel\", \"tr\": \"İsrail\", \"pt-BR\": \"Israel\"}","timezones":"[{\"tzName\": \"Israel Standard Time\", \"zoneName\": \"Asia\/Jerusalem\", \"gmtOffset\": 7200, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"376","iso3":"ISR","nationality":"Israeli","capital":"Jerusalem","tld":".il","native":"יִשְׂרָאֵל","region":"Asia","currency":"ILS","currency_name":"Israeli new shekel","currency_symbol":"₪","wikiDataId":null,"lat":"31.50","lng":"34.75","emoji":"🇮🇱","emojiU":"U+1F1EE U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"109","name":"Italy","code":"IT","phone":"380","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Italy\", \"cn\": \"意大利\", \"de\": \"Italien\", \"es\": \"Italia\", \"fa\": \"ایتالیا\", \"fr\": \"Italie\", \"hr\": \"Italija\", \"it\": \"Italia\", \"ja\": \"イタリア\", \"kr\": \"이탈리아\", \"nl\": \"Italië\", \"pt\": \"Itália\", \"tr\": \"İtalya\", \"pt-BR\": \"Itália\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Rome\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"380","iso3":"ITA","nationality":"Italian","capital":"Rome","tld":".it","native":"Italia","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"42.83","lng":"12.83","emoji":"🇮🇹","emojiU":"U+1F1EE U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"110","name":"Jamaica","code":"JM","phone":"388","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Jamaica\", \"cn\": \"牙买加\", \"de\": \"Jamaika\", \"es\": \"Jamaica\", \"fa\": \"جامائیکا\", \"fr\": \"Jamaïque\", \"hr\": \"Jamajka\", \"it\": \"Giamaica\", \"ja\": \"ジャマイカ\", \"kr\": \"자메이카\", \"nl\": \"Jamaica\", \"pt\": \"Jamaica\", \"tr\": \"Jamaika\", \"pt-BR\": \"Jamaica\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Jamaica\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"388","iso3":"JAM","nationality":"Jamaican","capital":"Kingston","tld":".jm","native":"Jamaica","region":"Americas","currency":"JMD","currency_name":"Jamaican dollar","currency_symbol":"J$","wikiDataId":null,"lat":"18.25","lng":"-77.50","emoji":"🇯🇲","emojiU":"U+1F1EF U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"111","name":"Japan","code":"JP","phone":"392","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Japan\", \"cn\": \"日本\", \"de\": \"Japan\", \"es\": \"Japón\", \"fa\": \"ژاپن\", \"fr\": \"Japon\", \"hr\": \"Japan\", \"it\": \"Giappone\", \"ja\": \"日本\", \"kr\": \"일본\", \"nl\": \"Japan\", \"pt\": \"Japão\", \"tr\": \"Japonya\", \"pt-BR\": \"Japão\"}","timezones":"[{\"tzName\": \"Japan Standard Time\", \"zoneName\": \"Asia\/Tokyo\", \"gmtOffset\": 32400, \"abbreviation\": \"JST\", \"gmtOffsetName\": \"UTC+09:00\"}]","numeric_code":"392","iso3":"JPN","nationality":"Japanese","capital":"Tokyo","tld":".jp","native":"日本","region":"Asia","currency":"JPY","currency_name":"Japanese yen","currency_symbol":"¥","wikiDataId":null,"lat":"36.00","lng":"138.00","emoji":"🇯🇵","emojiU":"U+1F1EF U+1F1F5","flag":"1","is_activated":"1"}, +{"id":"112","name":"Jersey","code":"JE","phone":"832","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Jersey\", \"cn\": \"泽西岛\", \"de\": \"Jersey\", \"es\": \"Jersey\", \"fa\": \"جرزی\", \"fr\": \"Jersey\", \"hr\": \"Jersey\", \"it\": \"Isola di Jersey\", \"ja\": \"ジャージー\", \"kr\": \"저지 섬\", \"nl\": \"Jersey\", \"pt\": \"Jersey\", \"tr\": \"Jersey\", \"pt-BR\": \"Jersey\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe\/Jersey\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"832","iso3":"JEY","nationality":"Channel Island","capital":"Saint Helier","tld":".je","native":"Jersey","region":"Europe","currency":"GBP","currency_name":"British pound","currency_symbol":"£","wikiDataId":null,"lat":"49.25","lng":"-2.17","emoji":"🇯🇪","emojiU":"U+1F1EF U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"113","name":"Jordan","code":"JO","phone":"400","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Jordan\", \"cn\": \"约旦\", \"de\": \"Jordanien\", \"es\": \"Jordania\", \"fa\": \"اردن\", \"fr\": \"Jordanie\", \"hr\": \"Jordan\", \"it\": \"Giordania\", \"ja\": \"ヨルダン\", \"kr\": \"요르단\", \"nl\": \"Jordanië\", \"pt\": \"Jordânia\", \"tr\": \"Ürdün\", \"pt-BR\": \"Jordânia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Amman\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"400","iso3":"JOR","nationality":"Jordanian","capital":"Amman","tld":".jo","native":"الأردن","region":"Asia","currency":"JOD","currency_name":"Jordanian dinar","currency_symbol":"ا.د","wikiDataId":null,"lat":"31.00","lng":"36.00","emoji":"🇯🇴","emojiU":"U+1F1EF U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"114","name":"Kazakhstan","code":"KZ","phone":"398","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Kazakhstan\", \"cn\": \"哈萨克斯坦\", \"de\": \"Kasachstan\", \"es\": \"Kazajistán\", \"fa\": \"قزاقستان\", \"fr\": \"Kazakhstan\", \"hr\": \"Kazahstan\", \"it\": \"Kazakistan\", \"ja\": \"カザフスタン\", \"kr\": \"카자흐스탄\", \"nl\": \"Kazachstan\", \"pt\": \"Cazaquistão\", \"tr\": \"Kazakistan\", \"pt-BR\": \"Cazaquistão\"}","timezones":"[{\"tzName\": \"Alma-Ata Time[1\", \"zoneName\": \"Asia\/Almaty\", \"gmtOffset\": 21600, \"abbreviation\": \"ALMT\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Aqtobe Time\", \"zoneName\": \"Asia\/Aqtau\", \"gmtOffset\": 18000, \"abbreviation\": \"AQTT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Aqtobe Time\", \"zoneName\": \"Asia\/Aqtobe\", \"gmtOffset\": 18000, \"abbreviation\": \"AQTT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Moscow Daylight Time+1\", \"zoneName\": \"Asia\/Atyrau\", \"gmtOffset\": 18000, \"abbreviation\": \"MSD+1\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Oral Time\", \"zoneName\": \"Asia\/Oral\", \"gmtOffset\": 18000, \"abbreviation\": \"ORAT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Qyzylorda Summer Time\", \"zoneName\": \"Asia\/Qostanay\", \"gmtOffset\": 21600, \"abbreviation\": \"QYZST\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Qyzylorda Summer Time\", \"zoneName\": \"Asia\/Qyzylorda\", \"gmtOffset\": 18000, \"abbreviation\": \"QYZT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"398","iso3":"KAZ","nationality":"Kazakhstani, Kazakh","capital":"Astana","tld":".kz","native":"Қазақстан","region":"Asia","currency":"KZT","currency_name":"Kazakhstani tenge","currency_symbol":"лв","wikiDataId":null,"lat":"48.00","lng":"68.00","emoji":"🇰🇿","emojiU":"U+1F1F0 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"115","name":"Kenya","code":"KE","phone":"404","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Kenya\", \"cn\": \"肯尼亚\", \"de\": \"Kenia\", \"es\": \"Kenia\", \"fa\": \"کنیا\", \"fr\": \"Kenya\", \"hr\": \"Kenija\", \"it\": \"Kenya\", \"ja\": \"ケニア\", \"kr\": \"케냐\", \"nl\": \"Kenia\", \"pt\": \"Quénia\", \"tr\": \"Kenya\", \"pt-BR\": \"Quênia\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Nairobi\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"404","iso3":"KEN","nationality":"Kenyan","capital":"Nairobi","tld":".ke","native":"Kenya","region":"Africa","currency":"KES","currency_name":"Kenyan shilling","currency_symbol":"KSh","wikiDataId":null,"lat":"1.00","lng":"38.00","emoji":"🇰🇪","emojiU":"U+1F1F0 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"116","name":"Kiribati","code":"KI","phone":"296","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Kiribati\", \"cn\": \"基里巴斯\", \"de\": \"Kiribati\", \"es\": \"Kiribati\", \"fa\": \"کیریباتی\", \"fr\": \"Kiribati\", \"hr\": \"Kiribati\", \"it\": \"Kiribati\", \"ja\": \"キリバス\", \"kr\": \"키리바시\", \"nl\": \"Kiribati\", \"pt\": \"Quiribáti\", \"tr\": \"Kiribati\", \"pt-BR\": \"Kiribati\"}","timezones":"[{\"tzName\": \"Phoenix Island Time\", \"zoneName\": \"Pacific\/Enderbury\", \"gmtOffset\": 46800, \"abbreviation\": \"PHOT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Line Islands Time\", \"zoneName\": \"Pacific\/Kiritimati\", \"gmtOffset\": 50400, \"abbreviation\": \"LINT\", \"gmtOffsetName\": \"UTC+14:00\"}, {\"tzName\": \"Gilbert Island Time\", \"zoneName\": \"Pacific\/Tarawa\", \"gmtOffset\": 43200, \"abbreviation\": \"GILT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"296","iso3":"KIR","nationality":"I-Kiribati","capital":"Tarawa","tld":".ki","native":"Kiribati","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"1.42","lng":"173.00","emoji":"🇰🇮","emojiU":"U+1F1F0 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"117","name":"North Korea","code":"KP","phone":"408","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"North Korea\", \"cn\": \"朝鲜\", \"de\": \"Nordkorea\", \"es\": \"Corea del Norte\", \"fa\": \"کره جنوبی\", \"fr\": \"Corée du Nord\", \"hr\": \"Sjeverna Koreja\", \"it\": \"Corea del Nord\", \"ja\": \"朝鮮民主主義人民共和国\", \"kr\": \"조선민주주의인민공화국\", \"nl\": \"Noord-Korea\", \"pt\": \"Coreia do Norte\", \"tr\": \"Kuzey Kore\", \"pt-BR\": \"Coreia do Norte\"}","timezones":"[{\"tzName\": \"Korea Standard Time\", \"zoneName\": \"Asia\/Pyongyang\", \"gmtOffset\": 32400, \"abbreviation\": \"KST\", \"gmtOffsetName\": \"UTC+09:00\"}]","numeric_code":"408","iso3":"PRK","nationality":"North Korean","capital":"Pyongyang","tld":".kp","native":"북한","region":"Asia","currency":"KPW","currency_name":"North Korean Won","currency_symbol":"₩","wikiDataId":null,"lat":"40.00","lng":"127.00","emoji":"🇰🇵","emojiU":"U+1F1F0 U+1F1F5","flag":"1","is_activated":"1"}, +{"id":"118","name":"South Korea","code":"KR","phone":"410","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"South Korea\", \"cn\": \"韩国\", \"de\": \"Südkorea\", \"es\": \"Corea del Sur\", \"fa\": \"کره شمالی\", \"fr\": \"Corée du Sud\", \"hr\": \"Južna Koreja\", \"it\": \"Corea del Sud\", \"ja\": \"大韓民国\", \"kr\": \"대한민국\", \"nl\": \"Zuid-Korea\", \"pt\": \"Coreia do Sul\", \"tr\": \"Güney Kore\", \"pt-BR\": \"Coreia do Sul\"}","timezones":"[{\"tzName\": \"Korea Standard Time\", \"zoneName\": \"Asia\/Seoul\", \"gmtOffset\": 32400, \"abbreviation\": \"KST\", \"gmtOffsetName\": \"UTC+09:00\"}]","numeric_code":"410","iso3":"KOR","nationality":"South Korean","capital":"Seoul","tld":".kr","native":"대한민국","region":"Asia","currency":"KRW","currency_name":"Won","currency_symbol":"₩","wikiDataId":null,"lat":"37.00","lng":"127.50","emoji":"🇰🇷","emojiU":"U+1F1F0 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"119","name":"Kuwait","code":"KW","phone":"414","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Kuwait\", \"cn\": \"科威特\", \"de\": \"Kuwait\", \"es\": \"Kuwait\", \"fa\": \"کویت\", \"fr\": \"Koweït\", \"hr\": \"Kuvajt\", \"it\": \"Kuwait\", \"ja\": \"クウェート\", \"kr\": \"쿠웨이트\", \"nl\": \"Koeweit\", \"pt\": \"Kuwait\", \"tr\": \"Kuveyt\", \"pt-BR\": \"Kuwait\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Kuwait\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"414","iso3":"KWT","nationality":"Kuwaiti","capital":"Kuwait City","tld":".kw","native":"الكويت","region":"Asia","currency":"KWD","currency_name":"Kuwaiti dinar","currency_symbol":"ك.د","wikiDataId":null,"lat":"29.50","lng":"45.75","emoji":"🇰🇼","emojiU":"U+1F1F0 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"120","name":"Kyrgyzstan","code":"KG","phone":"417","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Kyrgyzstan\", \"cn\": \"吉尔吉斯斯坦\", \"de\": \"Kirgisistan\", \"es\": \"Kirguizistán\", \"fa\": \"قرقیزستان\", \"fr\": \"Kirghizistan\", \"hr\": \"Kirgistan\", \"it\": \"Kirghizistan\", \"ja\": \"キルギス\", \"kr\": \"키르기스스탄\", \"nl\": \"Kirgizië\", \"pt\": \"Quirguizistão\", \"tr\": \"Kirgizistan\", \"pt-BR\": \"Quirguistão\"}","timezones":"[{\"tzName\": \"Kyrgyzstan Time\", \"zoneName\": \"Asia\/Bishkek\", \"gmtOffset\": 21600, \"abbreviation\": \"KGT\", \"gmtOffsetName\": \"UTC+06:00\"}]","numeric_code":"417","iso3":"KGZ","nationality":"Kyrgyzstani, Kyrgyz, Kirgiz, Kirghiz","capital":"Bishkek","tld":".kg","native":"Кыргызстан","region":"Asia","currency":"KGS","currency_name":"Kyrgyzstani som","currency_symbol":"лв","wikiDataId":null,"lat":"41.00","lng":"75.00","emoji":"🇰🇬","emojiU":"U+1F1F0 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"121","name":"Laos","code":"LA","phone":"418","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Laos\", \"cn\": \"寮人民民主共和国\", \"de\": \"Laos\", \"es\": \"Laos\", \"fa\": \"لائوس\", \"fr\": \"Laos\", \"hr\": \"Laos\", \"it\": \"Laos\", \"ja\": \"ラオス人民民主共和国\", \"kr\": \"라오스\", \"nl\": \"Laos\", \"pt\": \"Laos\", \"tr\": \"Laos\", \"pt-BR\": \"Laos\"}","timezones":"[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia\/Vientiane\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"418","iso3":"LAO","nationality":"Lao, Laotian","capital":"Vientiane","tld":".la","native":"ສປປລາວ","region":"Asia","currency":"LAK","currency_name":"Lao kip","currency_symbol":"₭","wikiDataId":null,"lat":"18.00","lng":"105.00","emoji":"🇱🇦","emojiU":"U+1F1F1 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"122","name":"Latvia","code":"LV","phone":"428","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Latvia\", \"cn\": \"拉脱维亚\", \"de\": \"Lettland\", \"es\": \"Letonia\", \"fa\": \"لتونی\", \"fr\": \"Lettonie\", \"hr\": \"Latvija\", \"it\": \"Lettonia\", \"ja\": \"ラトビア\", \"kr\": \"라트비아\", \"nl\": \"Letland\", \"pt\": \"Letónia\", \"tr\": \"Letonya\", \"pt-BR\": \"Letônia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Riga\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"428","iso3":"LVA","nationality":"Latvian","capital":"Riga","tld":".lv","native":"Latvija","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"57.00","lng":"25.00","emoji":"🇱🇻","emojiU":"U+1F1F1 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"123","name":"Lebanon","code":"LB","phone":"422","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Lebanon\", \"cn\": \"黎巴嫩\", \"de\": \"Libanon\", \"es\": \"Líbano\", \"fa\": \"لبنان\", \"fr\": \"Liban\", \"hr\": \"Libanon\", \"it\": \"Libano\", \"ja\": \"レバノン\", \"kr\": \"레바논\", \"nl\": \"Libanon\", \"pt\": \"Líbano\", \"tr\": \"Lübnan\", \"pt-BR\": \"Líbano\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Beirut\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"422","iso3":"LBN","nationality":"Lebanese","capital":"Beirut","tld":".lb","native":"لبنان","region":"Asia","currency":"LBP","currency_name":"Lebanese pound","currency_symbol":"£","wikiDataId":null,"lat":"33.83","lng":"35.83","emoji":"🇱🇧","emojiU":"U+1F1F1 U+1F1E7","flag":"1","is_activated":"1"}, +{"id":"124","name":"Lesotho","code":"LS","phone":"426","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Lesotho\", \"cn\": \"莱索托\", \"de\": \"Lesotho\", \"es\": \"Lesotho\", \"fa\": \"لسوتو\", \"fr\": \"Lesotho\", \"hr\": \"Lesoto\", \"it\": \"Lesotho\", \"ja\": \"レソト\", \"kr\": \"레소토\", \"nl\": \"Lesotho\", \"pt\": \"Lesoto\", \"tr\": \"Lesotho\", \"pt-BR\": \"Lesoto\"}","timezones":"[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa\/Maseru\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"426","iso3":"LSO","nationality":"Basotho","capital":"Maseru","tld":".ls","native":"Lesotho","region":"Africa","currency":"LSL","currency_name":"Lesotho loti","currency_symbol":"L","wikiDataId":null,"lat":"-29.50","lng":"28.50","emoji":"🇱🇸","emojiU":"U+1F1F1 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"125","name":"Liberia","code":"LR","phone":"430","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Liberia\", \"cn\": \"利比里亚\", \"de\": \"Liberia\", \"es\": \"Liberia\", \"fa\": \"لیبریا\", \"fr\": \"Liberia\", \"hr\": \"Liberija\", \"it\": \"Liberia\", \"ja\": \"リベリア\", \"kr\": \"라이베리아\", \"nl\": \"Liberia\", \"pt\": \"Libéria\", \"tr\": \"Liberya\", \"pt-BR\": \"Libéria\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Monrovia\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"430","iso3":"LBR","nationality":"Liberian","capital":"Monrovia","tld":".lr","native":"Liberia","region":"Africa","currency":"LRD","currency_name":"Liberian dollar","currency_symbol":"$","wikiDataId":null,"lat":"6.50","lng":"-9.50","emoji":"🇱🇷","emojiU":"U+1F1F1 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"126","name":"Libya","code":"LY","phone":"434","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Libya\", \"cn\": \"利比亚\", \"de\": \"Libyen\", \"es\": \"Libia\", \"fa\": \"لیبی\", \"fr\": \"Libye\", \"hr\": \"Libija\", \"it\": \"Libia\", \"ja\": \"リビア\", \"kr\": \"리비아\", \"nl\": \"Libië\", \"pt\": \"Líbia\", \"tr\": \"Libya\", \"pt-BR\": \"Líbia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Africa\/Tripoli\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"434","iso3":"LBY","nationality":"Libyan","capital":"Tripolis","tld":".ly","native":"‏ليبيا","region":"Africa","currency":"LYD","currency_name":"Libyan dinar","currency_symbol":"د.ل","wikiDataId":null,"lat":"25.00","lng":"17.00","emoji":"🇱🇾","emojiU":"U+1F1F1 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"127","name":"Liechtenstein","code":"LI","phone":"438","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Liechtenstein\", \"cn\": \"列支敦士登\", \"de\": \"Liechtenstein\", \"es\": \"Liechtenstein\", \"fa\": \"لیختن‌اشتاین\", \"fr\": \"Liechtenstein\", \"hr\": \"Lihtenštajn\", \"it\": \"Liechtenstein\", \"ja\": \"リヒテンシュタイン\", \"kr\": \"리히텐슈타인\", \"nl\": \"Liechtenstein\", \"pt\": \"Listenstaine\", \"tr\": \"Lihtenştayn\", \"pt-BR\": \"Liechtenstein\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Vaduz\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"438","iso3":"LIE","nationality":"Liechtenstein","capital":"Vaduz","tld":".li","native":"Liechtenstein","region":"Europe","currency":"CHF","currency_name":"Swiss franc","currency_symbol":"CHf","wikiDataId":null,"lat":"47.27","lng":"9.53","emoji":"🇱🇮","emojiU":"U+1F1F1 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"128","name":"Lithuania","code":"LT","phone":"440","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Lithuania\", \"cn\": \"立陶宛\", \"de\": \"Litauen\", \"es\": \"Lituania\", \"fa\": \"لیتوانی\", \"fr\": \"Lituanie\", \"hr\": \"Litva\", \"it\": \"Lituania\", \"ja\": \"リトアニア\", \"kr\": \"리투아니아\", \"nl\": \"Litouwen\", \"pt\": \"Lituânia\", \"tr\": \"Litvanya\", \"pt-BR\": \"Lituânia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Vilnius\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"440","iso3":"LTU","nationality":"Lithuanian","capital":"Vilnius","tld":".lt","native":"Lietuva","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"56.00","lng":"24.00","emoji":"🇱🇹","emojiU":"U+1F1F1 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"129","name":"Luxembourg","code":"LU","phone":"442","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Luxembourg\", \"cn\": \"卢森堡\", \"de\": \"Luxemburg\", \"es\": \"Luxemburgo\", \"fa\": \"لوکزامبورگ\", \"fr\": \"Luxembourg\", \"hr\": \"Luksemburg\", \"it\": \"Lussemburgo\", \"ja\": \"ルクセンブルク\", \"kr\": \"룩셈부르크\", \"nl\": \"Luxemburg\", \"pt\": \"Luxemburgo\", \"tr\": \"Lüksemburg\", \"pt-BR\": \"Luxemburgo\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Luxembourg\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"442","iso3":"LUX","nationality":"Luxembourg, Luxembourgish","capital":"Luxembourg","tld":".lu","native":"Luxembourg","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"49.75","lng":"6.17","emoji":"🇱🇺","emojiU":"U+1F1F1 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"130","name":"Macau S.A.R.","code":"MO","phone":"446","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Macau S.A.R.\", \"cn\": \"中国澳门\", \"de\": \"Macao\", \"es\": \"Macao\", \"fa\": \"مکائو\", \"fr\": \"Macao\", \"hr\": \"Makao\", \"it\": \"Macao\", \"ja\": \"マカオ\", \"kr\": \"마카오\", \"nl\": \"Macao\", \"pt\": \"Macau\", \"tr\": \"Makao\", \"pt-BR\": \"Macau\"}","timezones":"[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia\/Macau\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"446","iso3":"MAC","nationality":"Macanese, Chinese","capital":"Macao","tld":".mo","native":"澳門","region":"Asia","currency":"MOP","currency_name":"Macanese pataca","currency_symbol":"$","wikiDataId":null,"lat":"22.17","lng":"113.55","emoji":"🇲🇴","emojiU":"U+1F1F2 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"131","name":"North Macedonia","code":"MK","phone":"807","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"North Macedonia\", \"cn\": \"北馬其頓\", \"de\": \"Nordmazedonien\", \"es\": \"Macedonia del Norte\", \"fa\": \"ﻢﻗﺩﻮﻨﯿﻫ ﺶﻣﺎﻠﯾ\", \"fr\": \"Macédoine du Nord\", \"hr\": \"Sjeverna Makedonija\", \"it\": \"Macedonia del Nord\", \"ja\": \"北マケドニア\", \"kr\": \"북마케도니아\", \"nl\": \"Noord-Macedonië\", \"pt\": \"Macedónia do Norte\", \"tr\": \"Kuzey Makedonya\", \"pt-BR\": \"Macedônia do Norte\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Skopje\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"807","iso3":"MKD","nationality":"Macedonian","capital":"Skopje","tld":".mk","native":"Северна Македонија","region":"Europe","currency":"MKD","currency_name":"Denar","currency_symbol":"ден","wikiDataId":null,"lat":"41.83","lng":"22.00","emoji":"🇲🇰","emojiU":"U+1F1F2 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"132","name":"Madagascar","code":"MG","phone":"450","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Madagascar\", \"cn\": \"马达加斯加\", \"de\": \"Madagaskar\", \"es\": \"Madagascar\", \"fa\": \"ماداگاسکار\", \"fr\": \"Madagascar\", \"hr\": \"Madagaskar\", \"it\": \"Madagascar\", \"ja\": \"マダガスカル\", \"kr\": \"마다가스카르\", \"nl\": \"Madagaskar\", \"pt\": \"Madagáscar\", \"tr\": \"Madagaskar\", \"pt-BR\": \"Madagascar\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian\/Antananarivo\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"450","iso3":"MDG","nationality":"Malagasy","capital":"Antananarivo","tld":".mg","native":"Madagasikara","region":"Africa","currency":"MGA","currency_name":"Malagasy ariary","currency_symbol":"Ar","wikiDataId":null,"lat":"-20.00","lng":"47.00","emoji":"🇲🇬","emojiU":"U+1F1F2 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"133","name":"Malawi","code":"MW","phone":"454","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Malawi\", \"cn\": \"马拉维\", \"de\": \"Malawi\", \"es\": \"Malawi\", \"fa\": \"مالاوی\", \"fr\": \"Malawi\", \"hr\": \"Malavi\", \"it\": \"Malawi\", \"ja\": \"マラウイ\", \"kr\": \"말라위\", \"nl\": \"Malawi\", \"pt\": \"Malávi\", \"tr\": \"Malavi\", \"pt-BR\": \"Malawi\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Blantyre\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"454","iso3":"MWI","nationality":"Malawian","capital":"Lilongwe","tld":".mw","native":"Malawi","region":"Africa","currency":"MWK","currency_name":"Malawian kwacha","currency_symbol":"MK","wikiDataId":null,"lat":"-13.50","lng":"34.00","emoji":"🇲🇼","emojiU":"U+1F1F2 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"134","name":"Malaysia","code":"MY","phone":"458","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Malaysia\", \"cn\": \"马来西亚\", \"de\": \"Malaysia\", \"es\": \"Malasia\", \"fa\": \"مالزی\", \"fr\": \"Malaisie\", \"hr\": \"Malezija\", \"it\": \"Malesia\", \"ja\": \"マレーシア\", \"kr\": \"말레이시아\", \"nl\": \"Maleisië\", \"pt\": \"Malásia\", \"tr\": \"Malezya\", \"pt-BR\": \"Malásia\"}","timezones":"[{\"tzName\": \"Malaysia Time\", \"zoneName\": \"Asia\/Kuala_Lumpur\", \"gmtOffset\": 28800, \"abbreviation\": \"MYT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Malaysia Time\", \"zoneName\": \"Asia\/Kuching\", \"gmtOffset\": 28800, \"abbreviation\": \"MYT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"458","iso3":"MYS","nationality":"Malaysian","capital":"Kuala Lumpur","tld":".my","native":"Malaysia","region":"Asia","currency":"MYR","currency_name":"Malaysian ringgit","currency_symbol":"RM","wikiDataId":null,"lat":"2.50","lng":"112.50","emoji":"🇲🇾","emojiU":"U+1F1F2 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"135","name":"Maldives","code":"MV","phone":"462","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Maldives\", \"cn\": \"马尔代夫\", \"de\": \"Malediven\", \"es\": \"Maldivas\", \"fa\": \"مالدیو\", \"fr\": \"Maldives\", \"hr\": \"Maldivi\", \"it\": \"Maldive\", \"ja\": \"モルディブ\", \"kr\": \"몰디브\", \"nl\": \"Maldiven\", \"pt\": \"Maldivas\", \"tr\": \"Maldivler\", \"pt-BR\": \"Maldivas\"}","timezones":"[{\"tzName\": \"Maldives Time\", \"zoneName\": \"Indian\/Maldives\", \"gmtOffset\": 18000, \"abbreviation\": \"MVT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"462","iso3":"MDV","nationality":"Maldivian","capital":"Male","tld":".mv","native":"Maldives","region":"Asia","currency":"MVR","currency_name":"Maldivian rufiyaa","currency_symbol":"Rf","wikiDataId":null,"lat":"3.25","lng":"73.00","emoji":"🇲🇻","emojiU":"U+1F1F2 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"136","name":"Mali","code":"ML","phone":"466","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mali\", \"cn\": \"马里\", \"de\": \"Mali\", \"es\": \"Mali\", \"fa\": \"مالی\", \"fr\": \"Mali\", \"hr\": \"Mali\", \"it\": \"Mali\", \"ja\": \"マリ\", \"kr\": \"말리\", \"nl\": \"Mali\", \"pt\": \"Mali\", \"tr\": \"Mali\", \"pt-BR\": \"Mali\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Bamako\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"466","iso3":"MLI","nationality":"Malian, Malinese","capital":"Bamako","tld":".ml","native":"Mali","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"17.00","lng":"-4.00","emoji":"🇲🇱","emojiU":"U+1F1F2 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"137","name":"Malta","code":"MT","phone":"470","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Malta\", \"cn\": \"马耳他\", \"de\": \"Malta\", \"es\": \"Malta\", \"fa\": \"مالت\", \"fr\": \"Malte\", \"hr\": \"Malta\", \"it\": \"Malta\", \"ja\": \"マルタ\", \"kr\": \"몰타\", \"nl\": \"Malta\", \"pt\": \"Malta\", \"tr\": \"Malta\", \"pt-BR\": \"Malta\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Malta\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"470","iso3":"MLT","nationality":"Maltese","capital":"Valletta","tld":".mt","native":"Malta","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"35.83","lng":"14.58","emoji":"🇲🇹","emojiU":"U+1F1F2 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"138","name":"Marshall Islands","code":"MH","phone":"584","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Marshall Islands\", \"cn\": \"马绍尔群岛\", \"de\": \"Marshallinseln\", \"es\": \"Islas Marshall\", \"fa\": \"جزایر مارشال\", \"fr\": \"Îles Marshall\", \"hr\": \"Maršalovi Otoci\", \"it\": \"Isole Marshall\", \"ja\": \"マーシャル諸島\", \"kr\": \"마셜 제도\", \"nl\": \"Marshalleilanden\", \"pt\": \"Ilhas Marshall\", \"tr\": \"Marşal Adalari\", \"pt-BR\": \"Ilhas Marshall\"}","timezones":"[{\"tzName\": \"Marshall Islands Time\", \"zoneName\": \"Pacific\/Kwajalein\", \"gmtOffset\": 43200, \"abbreviation\": \"MHT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Marshall Islands Time\", \"zoneName\": \"Pacific\/Majuro\", \"gmtOffset\": 43200, \"abbreviation\": \"MHT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"584","iso3":"MHL","nationality":"Marshallese","capital":"Majuro","tld":".mh","native":"M̧ajeļ","region":"Oceania","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"9.00","lng":"168.00","emoji":"🇲🇭","emojiU":"U+1F1F2 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"139","name":"Martinique","code":"MQ","phone":"474","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Martinique\", \"cn\": \"马提尼克岛\", \"de\": \"Martinique\", \"es\": \"Martinica\", \"fa\": \"مونتسرات\", \"fr\": \"Martinique\", \"hr\": \"Martinique\", \"it\": \"Martinica\", \"ja\": \"マルティニーク\", \"kr\": \"마르티니크\", \"nl\": \"Martinique\", \"pt\": \"Martinica\", \"tr\": \"Martinik\", \"pt-BR\": \"Martinica\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Martinique\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"474","iso3":"MTQ","nationality":"Martiniquais, Martinican","capital":"Fort-de-France","tld":".mq","native":"Martinique","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"14.67","lng":"-61.00","emoji":"🇲🇶","emojiU":"U+1F1F2 U+1F1F6","flag":"1","is_activated":"1"}, +{"id":"140","name":"Mauritania","code":"MR","phone":"478","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mauritania\", \"cn\": \"毛里塔尼亚\", \"de\": \"Mauretanien\", \"es\": \"Mauritania\", \"fa\": \"موریتانی\", \"fr\": \"Mauritanie\", \"hr\": \"Mauritanija\", \"it\": \"Mauritania\", \"ja\": \"モーリタニア\", \"kr\": \"모리타니\", \"nl\": \"Mauritanië\", \"pt\": \"Mauritânia\", \"tr\": \"Moritanya\", \"pt-BR\": \"Mauritânia\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Nouakchott\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"478","iso3":"MRT","nationality":"Mauritanian","capital":"Nouakchott","tld":".mr","native":"موريتانيا","region":"Africa","currency":"MRO","currency_name":"Mauritanian ouguiya","currency_symbol":"MRU","wikiDataId":null,"lat":"20.00","lng":"-12.00","emoji":"🇲🇷","emojiU":"U+1F1F2 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"141","name":"Mauritius","code":"MU","phone":"480","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mauritius\", \"cn\": \"毛里求斯\", \"de\": \"Mauritius\", \"es\": \"Mauricio\", \"fa\": \"موریس\", \"fr\": \"Île Maurice\", \"hr\": \"Mauricijus\", \"it\": \"Mauritius\", \"ja\": \"モーリシャス\", \"kr\": \"모리셔스\", \"nl\": \"Mauritius\", \"pt\": \"Maurícia\", \"tr\": \"Morityus\", \"pt-BR\": \"Maurício\"}","timezones":"[{\"tzName\": \"Mauritius Time\", \"zoneName\": \"Indian\/Mauritius\", \"gmtOffset\": 14400, \"abbreviation\": \"MUT\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"480","iso3":"MUS","nationality":"Mauritian","capital":"Port Louis","tld":".mu","native":"Maurice","region":"Africa","currency":"MUR","currency_name":"Mauritian rupee","currency_symbol":"₨","wikiDataId":null,"lat":"-20.28","lng":"57.55","emoji":"🇲🇺","emojiU":"U+1F1F2 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"142","name":"Mayotte","code":"YT","phone":"175","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mayotte\", \"cn\": \"马约特\", \"de\": \"Mayotte\", \"es\": \"Mayotte\", \"fa\": \"مایوت\", \"fr\": \"Mayotte\", \"hr\": \"Mayotte\", \"it\": \"Mayotte\", \"ja\": \"マヨット\", \"kr\": \"마요트\", \"nl\": \"Mayotte\", \"pt\": \"Mayotte\", \"tr\": \"Mayotte\", \"pt-BR\": \"Mayotte\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian\/Mayotte\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"175","iso3":"MYT","nationality":"Mahoran","capital":"Mamoudzou","tld":".yt","native":"Mayotte","region":"Africa","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"-12.83","lng":"45.17","emoji":"🇾🇹","emojiU":"U+1F1FE U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"143","name":"Mexico","code":"MX","phone":"484","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mexico\", \"cn\": \"墨西哥\", \"de\": \"Mexiko\", \"es\": \"México\", \"fa\": \"مکزیک\", \"fr\": \"Mexique\", \"hr\": \"Meksiko\", \"it\": \"Messico\", \"ja\": \"メキシコ\", \"kr\": \"멕시코\", \"nl\": \"Mexico\", \"pt\": \"México\", \"tr\": \"Meksika\", \"pt-BR\": \"México\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Bahia_Banderas\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Cancun\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Chihuahua\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Hermosillo\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Matamoros\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Mazatlan\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Merida\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Mexico_City\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Monterrey\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Ojinaga\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America\/Tijuana\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}]","numeric_code":"484","iso3":"MEX","nationality":"Mexican","capital":"Ciudad de México","tld":".mx","native":"México","region":"Americas","currency":"MXN","currency_name":"Mexican peso","currency_symbol":"$","wikiDataId":null,"lat":"23.00","lng":"-102.00","emoji":"🇲🇽","emojiU":"U+1F1F2 U+1F1FD","flag":"1","is_activated":"1"}, +{"id":"144","name":"Micronesia","code":"FM","phone":"583","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Micronesia\", \"cn\": \"密克罗尼西亚\", \"de\": \"Mikronesien\", \"es\": \"Micronesia\", \"fa\": \"ایالات فدرال میکرونزی\", \"fr\": \"Micronésie\", \"hr\": \"Mikronezija\", \"it\": \"Micronesia\", \"ja\": \"ミクロネシア連邦\", \"kr\": \"미크로네시아 연방\", \"nl\": \"Micronesië\", \"pt\": \"Micronésia\", \"tr\": \"Mikronezya\", \"pt-BR\": \"Micronésia\"}","timezones":"[{\"tzName\": \"Chuuk Time\", \"zoneName\": \"Pacific\/Chuuk\", \"gmtOffset\": 36000, \"abbreviation\": \"CHUT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Kosrae Time\", \"zoneName\": \"Pacific\/Kosrae\", \"gmtOffset\": 39600, \"abbreviation\": \"KOST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Pohnpei Standard Time\", \"zoneName\": \"Pacific\/Pohnpei\", \"gmtOffset\": 39600, \"abbreviation\": \"PONT\", \"gmtOffsetName\": \"UTC+11:00\"}]","numeric_code":"583","iso3":"FSM","nationality":"Micronesian","capital":"Palikir","tld":".fm","native":"Micronesia","region":"Oceania","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"6.92","lng":"158.25","emoji":"🇫🇲","emojiU":"U+1F1EB U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"145","name":"Moldova","code":"MD","phone":"498","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Moldova\", \"cn\": \"摩尔多瓦\", \"de\": \"Moldawie\", \"es\": \"Moldavia\", \"fa\": \"مولداوی\", \"fr\": \"Moldavie\", \"hr\": \"Moldova\", \"it\": \"Moldavia\", \"ja\": \"モルドバ共和国\", \"kr\": \"몰도바\", \"nl\": \"Moldavië\", \"pt\": \"Moldávia\", \"tr\": \"Moldova\", \"pt-BR\": \"Moldávia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Chisinau\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"498","iso3":"MDA","nationality":"Moldovan","capital":"Chisinau","tld":".md","native":"Moldova","region":"Europe","currency":"MDL","currency_name":"Moldovan leu","currency_symbol":"L","wikiDataId":null,"lat":"47.00","lng":"29.00","emoji":"🇲🇩","emojiU":"U+1F1F2 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"146","name":"Monaco","code":"MC","phone":"492","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Monaco\", \"cn\": \"摩纳哥\", \"de\": \"Monaco\", \"es\": \"Mónaco\", \"fa\": \"موناکو\", \"fr\": \"Monaco\", \"hr\": \"Monako\", \"it\": \"Principato di Monaco\", \"ja\": \"モナコ\", \"kr\": \"모나코\", \"nl\": \"Monaco\", \"pt\": \"Mónaco\", \"tr\": \"Monako\", \"pt-BR\": \"Mônaco\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Monaco\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"492","iso3":"MCO","nationality":"Monegasque, Monacan","capital":"Monaco","tld":".mc","native":"Monaco","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"43.73","lng":"7.40","emoji":"🇲🇨","emojiU":"U+1F1F2 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"147","name":"Mongolia","code":"MN","phone":"496","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mongolia\", \"cn\": \"蒙古\", \"de\": \"Mongolei\", \"es\": \"Mongolia\", \"fa\": \"مغولستان\", \"fr\": \"Mongolie\", \"hr\": \"Mongolija\", \"it\": \"Mongolia\", \"ja\": \"モンゴル\", \"kr\": \"몽골\", \"nl\": \"Mongolië\", \"pt\": \"Mongólia\", \"tr\": \"Moğolistan\", \"pt-BR\": \"Mongólia\"}","timezones":"[{\"tzName\": \"Choibalsan Standard Time\", \"zoneName\": \"Asia\/Choibalsan\", \"gmtOffset\": 28800, \"abbreviation\": \"CHOT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Hovd Time\", \"zoneName\": \"Asia\/Hovd\", \"gmtOffset\": 25200, \"abbreviation\": \"HOVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Ulaanbaatar Standard Time\", \"zoneName\": \"Asia\/Ulaanbaatar\", \"gmtOffset\": 28800, \"abbreviation\": \"ULAT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"496","iso3":"MNG","nationality":"Mongolian","capital":"Ulan Bator","tld":".mn","native":"Монгол улс","region":"Asia","currency":"MNT","currency_name":"Mongolian tögrög","currency_symbol":"₮","wikiDataId":null,"lat":"46.00","lng":"105.00","emoji":"🇲🇳","emojiU":"U+1F1F2 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"148","name":"Montenegro","code":"ME","phone":"499","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Montenegro\", \"cn\": \"黑山\", \"de\": \"Montenegro\", \"es\": \"Montenegro\", \"fa\": \"مونته‌نگرو\", \"fr\": \"Monténégro\", \"hr\": \"Crna Gora\", \"it\": \"Montenegro\", \"ja\": \"モンテネグロ\", \"kr\": \"몬테네그로\", \"nl\": \"Montenegro\", \"pt\": \"Montenegro\", \"tr\": \"Karadağ\", \"pt-BR\": \"Montenegro\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Podgorica\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"499","iso3":"MNE","nationality":"Montenegrin","capital":"Podgorica","tld":".me","native":"Црна Гора","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"42.50","lng":"19.30","emoji":"🇲🇪","emojiU":"U+1F1F2 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"149","name":"Montserrat","code":"MS","phone":"500","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Montserrat\", \"cn\": \"蒙特塞拉特\", \"de\": \"Montserrat\", \"es\": \"Montserrat\", \"fa\": \"مایوت\", \"fr\": \"Montserrat\", \"hr\": \"Montserrat\", \"it\": \"Montserrat\", \"ja\": \"モントセラト\", \"kr\": \"몬트세랫\", \"nl\": \"Montserrat\", \"pt\": \"Monserrate\", \"tr\": \"Montserrat\", \"pt-BR\": \"Montserrat\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Montserrat\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"500","iso3":"MSR","nationality":"Montserratian","capital":"Plymouth","tld":".ms","native":"Montserrat","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"16.75","lng":"-62.20","emoji":"🇲🇸","emojiU":"U+1F1F2 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"150","name":"Morocco","code":"MA","phone":"504","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Morocco\", \"cn\": \"摩洛哥\", \"de\": \"Marokko\", \"es\": \"Marruecos\", \"fa\": \"مراکش\", \"fr\": \"Maroc\", \"hr\": \"Maroko\", \"it\": \"Marocco\", \"ja\": \"モロッコ\", \"kr\": \"모로코\", \"nl\": \"Marokko\", \"pt\": \"Marrocos\", \"tr\": \"Fas\", \"pt-BR\": \"Marrocos\"}","timezones":"[{\"tzName\": \"Western European Summer Time\", \"zoneName\": \"Africa\/Casablanca\", \"gmtOffset\": 3600, \"abbreviation\": \"WEST\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"504","iso3":"MAR","nationality":"Moroccan","capital":"Rabat","tld":".ma","native":"المغرب","region":"Africa","currency":"MAD","currency_name":"Moroccan dirham","currency_symbol":"DH","wikiDataId":null,"lat":"32.00","lng":"-5.00","emoji":"🇲🇦","emojiU":"U+1F1F2 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"151","name":"Mozambique","code":"MZ","phone":"508","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Mozambique\", \"cn\": \"莫桑比克\", \"de\": \"Mosambik\", \"es\": \"Mozambique\", \"fa\": \"موزامبیک\", \"fr\": \"Mozambique\", \"hr\": \"Mozambik\", \"it\": \"Mozambico\", \"ja\": \"モザンビーク\", \"kr\": \"모잠비크\", \"nl\": \"Mozambique\", \"pt\": \"Moçambique\", \"tr\": \"Mozambik\", \"pt-BR\": \"Moçambique\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Maputo\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"508","iso3":"MOZ","nationality":"Mozambican","capital":"Maputo","tld":".mz","native":"Moçambique","region":"Africa","currency":"MZN","currency_name":"Mozambican metical","currency_symbol":"MT","wikiDataId":null,"lat":"-18.25","lng":"35.00","emoji":"🇲🇿","emojiU":"U+1F1F2 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"152","name":"Myanmar","code":"MM","phone":"104","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Myanmar\", \"cn\": \"缅甸\", \"de\": \"Myanmar\", \"es\": \"Myanmar\", \"fa\": \"میانمار\", \"fr\": \"Myanmar\", \"hr\": \"Mijanmar\", \"it\": \"Birmania\", \"ja\": \"ミャンマー\", \"kr\": \"미얀마\", \"nl\": \"Myanmar\", \"pt\": \"Myanmar\", \"tr\": \"Myanmar\", \"pt-BR\": \"Myanmar\"}","timezones":"[{\"tzName\": \"Myanmar Standard Time\", \"zoneName\": \"Asia\/Yangon\", \"gmtOffset\": 23400, \"abbreviation\": \"MMT\", \"gmtOffsetName\": \"UTC+06:30\"}]","numeric_code":"104","iso3":"MMR","nationality":"Burmese","capital":"Nay Pyi Taw","tld":".mm","native":"မြန်မာ","region":"Asia","currency":"MMK","currency_name":"Burmese kyat","currency_symbol":"K","wikiDataId":null,"lat":"22.00","lng":"98.00","emoji":"🇲🇲","emojiU":"U+1F1F2 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"153","name":"Namibia","code":"NA","phone":"516","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Namibia\", \"cn\": \"纳米比亚\", \"de\": \"Namibia\", \"es\": \"Namibia\", \"fa\": \"نامیبیا\", \"fr\": \"Namibie\", \"hr\": \"Namibija\", \"it\": \"Namibia\", \"ja\": \"ナミビア\", \"kr\": \"나미비아\", \"nl\": \"Namibië\", \"pt\": \"Namíbia\", \"tr\": \"Namibya\", \"pt-BR\": \"Namíbia\"}","timezones":"[{\"tzName\": \"West Africa Summer Time\", \"zoneName\": \"Africa\/Windhoek\", \"gmtOffset\": 7200, \"abbreviation\": \"WAST\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"516","iso3":"NAM","nationality":"Namibian","capital":"Windhoek","tld":".na","native":"Namibia","region":"Africa","currency":"NAD","currency_name":"Namibian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-22.00","lng":"17.00","emoji":"🇳🇦","emojiU":"U+1F1F3 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"154","name":"Nauru","code":"NR","phone":"520","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Nauru\", \"cn\": \"瑙鲁\", \"de\": \"Nauru\", \"es\": \"Nauru\", \"fa\": \"نائورو\", \"fr\": \"Nauru\", \"hr\": \"Nauru\", \"it\": \"Nauru\", \"ja\": \"ナウル\", \"kr\": \"나우루\", \"nl\": \"Nauru\", \"pt\": \"Nauru\", \"tr\": \"Nauru\", \"pt-BR\": \"Nauru\"}","timezones":"[{\"tzName\": \"Nauru Time\", \"zoneName\": \"Pacific\/Nauru\", \"gmtOffset\": 43200, \"abbreviation\": \"NRT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"520","iso3":"NRU","nationality":"Nauruan","capital":"Yaren","tld":".nr","native":"Nauru","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-0.53","lng":"166.92","emoji":"🇳🇷","emojiU":"U+1F1F3 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"155","name":"Nepal","code":"NP","phone":"524","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Nepal\", \"cn\": \"尼泊尔\", \"de\": \"Népal\", \"es\": \"Nepal\", \"fa\": \"نپال\", \"fr\": \"Népal\", \"hr\": \"Nepal\", \"it\": \"Nepal\", \"ja\": \"ネパール\", \"kr\": \"네팔\", \"nl\": \"Nepal\", \"pt\": \"Nepal\", \"tr\": \"Nepal\", \"pt-BR\": \"Nepal\"}","timezones":"[{\"tzName\": \"Nepal Time\", \"zoneName\": \"Asia\/Kathmandu\", \"gmtOffset\": 20700, \"abbreviation\": \"NPT\", \"gmtOffsetName\": \"UTC+05:45\"}]","numeric_code":"524","iso3":"NPL","nationality":"Nepali, Nepalese","capital":"Kathmandu","tld":".np","native":"नपल","region":"Asia","currency":"NPR","currency_name":"Nepalese rupee","currency_symbol":"₨","wikiDataId":null,"lat":"28.00","lng":"84.00","emoji":"🇳🇵","emojiU":"U+1F1F3 U+1F1F5","flag":"1","is_activated":"1"}, +{"id":"156","name":"Netherlands","code":"NL","phone":"528","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Netherlands\", \"cn\": \"荷兰\", \"de\": \"Niederlande\", \"es\": \"Países Bajos\", \"fa\": \"پادشاهی هلند\", \"fr\": \"Pays-Bas\", \"hr\": \"Nizozemska\", \"it\": \"Paesi Bassi\", \"ja\": \"オランダ\", \"kr\": \"네덜란드 \", \"nl\": \"Nederland\", \"pt\": \"Países Baixos\", \"tr\": \"Hollanda\", \"pt-BR\": \"Holanda\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Amsterdam\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"528","iso3":"NLD","nationality":"Dutch, Netherlandic","capital":"Amsterdam","tld":".nl","native":"Nederland","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"52.50","lng":"5.75","emoji":"🇳🇱","emojiU":"U+1F1F3 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"157","name":"New Caledonia","code":"NC","phone":"540","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"New Caledonia\", \"cn\": \"新喀里多尼亚\", \"de\": \"Neukaledonien\", \"es\": \"Nueva Caledonia\", \"fa\": \"کالدونیای جدید\", \"fr\": \"Nouvelle-Calédonie\", \"hr\": \"Nova Kaledonija\", \"it\": \"Nuova Caledonia\", \"ja\": \"ニューカレドニア\", \"kr\": \"누벨칼레도니\", \"nl\": \"Nieuw-Caledonië\", \"pt\": \"Nova Caledónia\", \"tr\": \"Yeni Kaledonya\", \"pt-BR\": \"Nova Caledônia\"}","timezones":"[{\"tzName\": \"New Caledonia Time\", \"zoneName\": \"Pacific\/Noumea\", \"gmtOffset\": 39600, \"abbreviation\": \"NCT\", \"gmtOffsetName\": \"UTC+11:00\"}]","numeric_code":"540","iso3":"NCL","nationality":"New Caledonian","capital":"Noumea","tld":".nc","native":"Nouvelle-Calédonie","region":"Oceania","currency":"XPF","currency_name":"CFP franc","currency_symbol":"₣","wikiDataId":null,"lat":"-21.50","lng":"165.50","emoji":"🇳🇨","emojiU":"U+1F1F3 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"158","name":"New Zealand","code":"NZ","phone":"554","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"New Zealand\", \"cn\": \"新西兰\", \"de\": \"Neuseeland\", \"es\": \"Nueva Zelanda\", \"fa\": \"نیوزیلند\", \"fr\": \"Nouvelle-Zélande\", \"hr\": \"Novi Zeland\", \"it\": \"Nuova Zelanda\", \"ja\": \"ニュージーランド\", \"kr\": \"뉴질랜드\", \"nl\": \"Nieuw-Zeeland\", \"pt\": \"Nova Zelândia\", \"tr\": \"Yeni Zelanda\", \"pt-BR\": \"Nova Zelândia\"}","timezones":"[{\"tzName\": \"New Zealand Daylight Time\", \"zoneName\": \"Pacific\/Auckland\", \"gmtOffset\": 46800, \"abbreviation\": \"NZDT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Chatham Standard Time\", \"zoneName\": \"Pacific\/Chatham\", \"gmtOffset\": 49500, \"abbreviation\": \"CHAST\", \"gmtOffsetName\": \"UTC+13:45\"}]","numeric_code":"554","iso3":"NZL","nationality":"New Zealand, NZ","capital":"Wellington","tld":".nz","native":"New Zealand","region":"Oceania","currency":"NZD","currency_name":"New Zealand dollar","currency_symbol":"$","wikiDataId":null,"lat":"-41.00","lng":"174.00","emoji":"🇳🇿","emojiU":"U+1F1F3 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"159","name":"Nicaragua","code":"NI","phone":"558","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Nicaragua\", \"cn\": \"尼加拉瓜\", \"de\": \"Nicaragua\", \"es\": \"Nicaragua\", \"fa\": \"نیکاراگوئه\", \"fr\": \"Nicaragua\", \"hr\": \"Nikaragva\", \"it\": \"Nicaragua\", \"ja\": \"ニカラグア\", \"kr\": \"니카라과\", \"nl\": \"Nicaragua\", \"pt\": \"Nicarágua\", \"tr\": \"Nikaragua\", \"pt-BR\": \"Nicarágua\"}","timezones":"[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Managua\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]","numeric_code":"558","iso3":"NIC","nationality":"Nicaraguan","capital":"Managua","tld":".ni","native":"Nicaragua","region":"Americas","currency":"NIO","currency_name":"Nicaraguan córdoba","currency_symbol":"C$","wikiDataId":null,"lat":"13.00","lng":"-85.00","emoji":"🇳🇮","emojiU":"U+1F1F3 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"160","name":"Niger","code":"NE","phone":"562","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Niger\", \"cn\": \"尼日尔\", \"de\": \"Niger\", \"es\": \"Níger\", \"fa\": \"نیجر\", \"fr\": \"Niger\", \"hr\": \"Niger\", \"it\": \"Niger\", \"ja\": \"ニジェール\", \"kr\": \"니제르\", \"nl\": \"Niger\", \"pt\": \"Níger\", \"tr\": \"Nijer\", \"pt-BR\": \"Níger\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Niamey\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"562","iso3":"NER","nationality":"Nigerien","capital":"Niamey","tld":".ne","native":"Niger","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"16.00","lng":"8.00","emoji":"🇳🇪","emojiU":"U+1F1F3 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"161","name":"Nigeria","code":"NG","phone":"566","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Nigeria\", \"cn\": \"尼日利亚\", \"de\": \"Nigeria\", \"es\": \"Nigeria\", \"fa\": \"نیجریه\", \"fr\": \"Nigéria\", \"hr\": \"Nigerija\", \"it\": \"Nigeria\", \"ja\": \"ナイジェリア\", \"kr\": \"나이지리아\", \"nl\": \"Nigeria\", \"pt\": \"Nigéria\", \"tr\": \"Nijerya\", \"pt-BR\": \"Nigéria\"}","timezones":"[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa\/Lagos\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"566","iso3":"NGA","nationality":"Nigerian","capital":"Abuja","tld":".ng","native":"Nigeria","region":"Africa","currency":"NGN","currency_name":"Nigerian naira","currency_symbol":"₦","wikiDataId":null,"lat":"10.00","lng":"8.00","emoji":"🇳🇬","emojiU":"U+1F1F3 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"162","name":"Niue","code":"NU","phone":"570","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Niue\", \"cn\": \"纽埃\", \"de\": \"Niue\", \"es\": \"Niue\", \"fa\": \"نیووی\", \"fr\": \"Niue\", \"hr\": \"Niue\", \"it\": \"Niue\", \"ja\": \"ニウエ\", \"kr\": \"니우에\", \"nl\": \"Niue\", \"pt\": \"Niue\", \"tr\": \"Niue\", \"pt-BR\": \"Niue\"}","timezones":"[{\"tzName\": \"Niue Time\", \"zoneName\": \"Pacific\/Niue\", \"gmtOffset\": -39600, \"abbreviation\": \"NUT\", \"gmtOffsetName\": \"UTC-11:00\"}]","numeric_code":"570","iso3":"NIU","nationality":"Niuean","capital":"Alofi","tld":".nu","native":"Niuē","region":"Oceania","currency":"NZD","currency_name":"New Zealand dollar","currency_symbol":"$","wikiDataId":null,"lat":"-19.03","lng":"-169.87","emoji":"🇳🇺","emojiU":"U+1F1F3 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"163","name":"Norfolk Island","code":"NF","phone":"574","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Norfolk Island\", \"cn\": \"诺福克岛\", \"de\": \"Norfolkinsel\", \"es\": \"Isla de Norfolk\", \"fa\": \"جزیره نورفک\", \"fr\": \"Île de Norfolk\", \"hr\": \"Otok Norfolk\", \"it\": \"Isola Norfolk\", \"ja\": \"ノーフォーク島\", \"kr\": \"노퍽 섬\", \"nl\": \"Norfolkeiland\", \"pt\": \"Ilha Norfolk\", \"tr\": \"Norfolk Adasi\", \"pt-BR\": \"Ilha Norfolk\"}","timezones":"[{\"tzName\": \"Norfolk Time\", \"zoneName\": \"Pacific\/Norfolk\", \"gmtOffset\": 43200, \"abbreviation\": \"NFT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"574","iso3":"NFK","nationality":"Norfolk Island","capital":"Kingston","tld":".nf","native":"Norfolk Island","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-29.03","lng":"167.95","emoji":"🇳🇫","emojiU":"U+1F1F3 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"164","name":"Northern Mariana Islands","code":"MP","phone":"580","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Northern Mariana Islands\", \"cn\": \"北马里亚纳群岛\", \"de\": \"Nördliche Marianen\", \"es\": \"Islas Marianas del Norte\", \"fa\": \"جزایر ماریانای شمالی\", \"fr\": \"Îles Mariannes du Nord\", \"hr\": \"Sjevernomarijanski otoci\", \"it\": \"Isole Marianne Settentrionali\", \"ja\": \"北マリアナ諸島\", \"kr\": \"북마리아나 제도\", \"nl\": \"Noordelijke Marianeneilanden\", \"pt\": \"Ilhas Marianas\", \"tr\": \"Kuzey Mariana Adalari\", \"pt-BR\": \"Ilhas Marianas\"}","timezones":"[{\"tzName\": \"Chamorro Standard Time\", \"zoneName\": \"Pacific\/Saipan\", \"gmtOffset\": 36000, \"abbreviation\": \"ChST\", \"gmtOffsetName\": \"UTC+10:00\"}]","numeric_code":"580","iso3":"MNP","nationality":"Northern Marianan","capital":"Saipan","tld":".mp","native":"Northern Mariana Islands","region":"Oceania","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"15.20","lng":"145.75","emoji":"🇲🇵","emojiU":"U+1F1F2 U+1F1F5","flag":"1","is_activated":"1"}, +{"id":"165","name":"Norway","code":"NO","phone":"578","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Norway\", \"cn\": \"挪威\", \"de\": \"Norwegen\", \"es\": \"Noruega\", \"fa\": \"نروژ\", \"fr\": \"Norvège\", \"hr\": \"Norveška\", \"it\": \"Norvegia\", \"ja\": \"ノルウェー\", \"kr\": \"노르웨이\", \"nl\": \"Noorwegen\", \"pt\": \"Noruega\", \"tr\": \"Norveç\", \"pt-BR\": \"Noruega\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Oslo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"578","iso3":"NOR","nationality":"Norwegian","capital":"Oslo","tld":".no","native":"Norge","region":"Europe","currency":"NOK","currency_name":"Norwegian krone","currency_symbol":"kr","wikiDataId":null,"lat":"62.00","lng":"10.00","emoji":"🇳🇴","emojiU":"U+1F1F3 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"166","name":"Oman","code":"OM","phone":"512","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Oman\", \"cn\": \"阿曼\", \"de\": \"Oman\", \"es\": \"Omán\", \"fa\": \"عمان\", \"fr\": \"Oman\", \"hr\": \"Oman\", \"it\": \"oman\", \"ja\": \"オマーン\", \"kr\": \"오만\", \"nl\": \"Oman\", \"pt\": \"Omã\", \"tr\": \"Umman\", \"pt-BR\": \"Omã\"}","timezones":"[{\"tzName\": \"Gulf Standard Time\", \"zoneName\": \"Asia\/Muscat\", \"gmtOffset\": 14400, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"512","iso3":"OMN","nationality":"Omani","capital":"Muscat","tld":".om","native":"عمان","region":"Asia","currency":"OMR","currency_name":"Omani rial","currency_symbol":".ع.ر","wikiDataId":null,"lat":"21.00","lng":"57.00","emoji":"🇴🇲","emojiU":"U+1F1F4 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"167","name":"Pakistan","code":"PK","phone":"586","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Pakistan\", \"cn\": \"巴基斯坦\", \"de\": \"Pakistan\", \"es\": \"Pakistán\", \"fa\": \"پاکستان\", \"fr\": \"Pakistan\", \"hr\": \"Pakistan\", \"it\": \"Pakistan\", \"ja\": \"パキスタン\", \"kr\": \"파키스탄\", \"nl\": \"Pakistan\", \"pt\": \"Paquistão\", \"tr\": \"Pakistan\", \"pt-BR\": \"Paquistão\"}","timezones":"[{\"tzName\": \"Pakistan Standard Time\", \"zoneName\": \"Asia\/Karachi\", \"gmtOffset\": 18000, \"abbreviation\": \"PKT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"586","iso3":"PAK","nationality":"Pakistani","capital":"Islamabad","tld":".pk","native":"Pakistan","region":"Asia","currency":"PKR","currency_name":"Pakistani rupee","currency_symbol":"₨","wikiDataId":null,"lat":"30.00","lng":"70.00","emoji":"🇵🇰","emojiU":"U+1F1F5 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"168","name":"Palau","code":"PW","phone":"585","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Palau\", \"cn\": \"帕劳\", \"de\": \"Palau\", \"es\": \"Palau\", \"fa\": \"پالائو\", \"fr\": \"Palaos\", \"hr\": \"Palau\", \"it\": \"Palau\", \"ja\": \"パラオ\", \"kr\": \"팔라우\", \"nl\": \"Palau\", \"pt\": \"Palau\", \"tr\": \"Palau\", \"pt-BR\": \"Palau\"}","timezones":"[{\"tzName\": \"Palau Time\", \"zoneName\": \"Pacific\/Palau\", \"gmtOffset\": 32400, \"abbreviation\": \"PWT\", \"gmtOffsetName\": \"UTC+09:00\"}]","numeric_code":"585","iso3":"PLW","nationality":"Palauan","capital":"Melekeok","tld":".pw","native":"Palau","region":"Oceania","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"7.50","lng":"134.50","emoji":"🇵🇼","emojiU":"U+1F1F5 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"169","name":"Palestinian Territory Occupied","code":"PS","phone":"275","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Palestinian Territory Occupied\", \"cn\": \"巴勒斯坦\", \"de\": \"Palästina\", \"es\": \"Palestina\", \"fa\": \"فلسطین\", \"fr\": \"Palestine\", \"hr\": \"Palestina\", \"it\": \"Palestina\", \"ja\": \"パレスチナ\", \"kr\": \"팔레스타인 영토\", \"nl\": \"Palestijnse gebieden\", \"pt\": \"Palestina\", \"tr\": \"Filistin\", \"pt-BR\": \"Palestina\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Gaza\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Hebron\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"275","iso3":"PSE","nationality":"Palestinian","capital":"East Jerusalem","tld":".ps","native":"فلسطين","region":"Asia","currency":"ILS","currency_name":"Israeli new shekel","currency_symbol":"₪","wikiDataId":null,"lat":"31.90","lng":"35.20","emoji":"🇵🇸","emojiU":"U+1F1F5 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"170","name":"Panama","code":"PA","phone":"591","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Panama\", \"cn\": \"巴拿马\", \"de\": \"Panama\", \"es\": \"Panamá\", \"fa\": \"پاناما\", \"fr\": \"Panama\", \"hr\": \"Panama\", \"it\": \"Panama\", \"ja\": \"パナマ\", \"kr\": \"파나마\", \"nl\": \"Panama\", \"pt\": \"Panamá\", \"tr\": \"Panama\", \"pt-BR\": \"Panamá\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Panama\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"591","iso3":"PAN","nationality":"Panamanian","capital":"Panama City","tld":".pa","native":"Panamá","region":"Americas","currency":"PAB","currency_name":"Panamanian balboa","currency_symbol":"B\/.","wikiDataId":null,"lat":"9.00","lng":"-80.00","emoji":"🇵🇦","emojiU":"U+1F1F5 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"171","name":"Papua new Guinea","code":"PG","phone":"598","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Papua new Guinea\", \"cn\": \"巴布亚新几内亚\", \"de\": \"Papua-Neuguinea\", \"es\": \"Papúa Nueva Guinea\", \"fa\": \"پاپوآ گینه نو\", \"fr\": \"Papouasie-Nouvelle-Guinée\", \"hr\": \"Papua Nova Gvineja\", \"it\": \"Papua Nuova Guinea\", \"ja\": \"パプアニューギニア\", \"kr\": \"파푸아뉴기니\", \"nl\": \"Papoea-Nieuw-Guinea\", \"pt\": \"Papua Nova Guiné\", \"tr\": \"Papua Yeni Gine\", \"pt-BR\": \"Papua Nova Guiné\"}","timezones":"[{\"tzName\": \"Bougainville Standard Time[6\", \"zoneName\": \"Pacific\/Bougainville\", \"gmtOffset\": 39600, \"abbreviation\": \"BST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Papua New Guinea Time\", \"zoneName\": \"Pacific\/Port_Moresby\", \"gmtOffset\": 36000, \"abbreviation\": \"PGT\", \"gmtOffsetName\": \"UTC+10:00\"}]","numeric_code":"598","iso3":"PNG","nationality":"Papua New Guinean, Papuan","capital":"Port Moresby","tld":".pg","native":"Papua Niugini","region":"Oceania","currency":"PGK","currency_name":"Papua New Guinean kina","currency_symbol":"K","wikiDataId":null,"lat":"-6.00","lng":"147.00","emoji":"🇵🇬","emojiU":"U+1F1F5 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"172","name":"Paraguay","code":"PY","phone":"600","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Paraguay\", \"cn\": \"巴拉圭\", \"de\": \"Paraguay\", \"es\": \"Paraguay\", \"fa\": \"پاراگوئه\", \"fr\": \"Paraguay\", \"hr\": \"Paragvaj\", \"it\": \"Paraguay\", \"ja\": \"パラグアイ\", \"kr\": \"파라과이\", \"nl\": \"Paraguay\", \"pt\": \"Paraguai\", \"tr\": \"Paraguay\", \"pt-BR\": \"Paraguai\"}","timezones":"[{\"tzName\": \"Paraguay Summer Time\", \"zoneName\": \"America\/Asuncion\", \"gmtOffset\": -10800, \"abbreviation\": \"PYST\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"600","iso3":"PRY","nationality":"Paraguayan","capital":"Asuncion","tld":".py","native":"Paraguay","region":"Americas","currency":"PYG","currency_name":"Paraguayan guarani","currency_symbol":"₲","wikiDataId":null,"lat":"-23.00","lng":"-58.00","emoji":"🇵🇾","emojiU":"U+1F1F5 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"173","name":"Peru","code":"PE","phone":"604","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Peru\", \"cn\": \"秘鲁\", \"de\": \"Peru\", \"es\": \"Perú\", \"fa\": \"پرو\", \"fr\": \"Pérou\", \"hr\": \"Peru\", \"it\": \"Perù\", \"ja\": \"ペルー\", \"kr\": \"페루\", \"nl\": \"Peru\", \"pt\": \"Peru\", \"tr\": \"Peru\", \"pt-BR\": \"Peru\"}","timezones":"[{\"tzName\": \"Peru Time\", \"zoneName\": \"America\/Lima\", \"gmtOffset\": -18000, \"abbreviation\": \"PET\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"604","iso3":"PER","nationality":"Peruvian","capital":"Lima","tld":".pe","native":"Perú","region":"Americas","currency":"PEN","currency_name":"Peruvian sol","currency_symbol":"S\/.","wikiDataId":null,"lat":"-10.00","lng":"-76.00","emoji":"🇵🇪","emojiU":"U+1F1F5 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"174","name":"Philippines","code":"PH","phone":"608","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Philippines\", \"cn\": \"菲律宾\", \"de\": \"Philippinen\", \"es\": \"Filipinas\", \"fa\": \"جزایر الندفیلیپین\", \"fr\": \"Philippines\", \"hr\": \"Filipini\", \"it\": \"Filippine\", \"ja\": \"フィリピン\", \"kr\": \"필리핀\", \"nl\": \"Filipijnen\", \"pt\": \"Filipinas\", \"tr\": \"Filipinler\", \"pt-BR\": \"Filipinas\"}","timezones":"[{\"tzName\": \"Philippine Time\", \"zoneName\": \"Asia\/Manila\", \"gmtOffset\": 28800, \"abbreviation\": \"PHT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"608","iso3":"PHL","nationality":"Philippine, Filipino","capital":"Manila","tld":".ph","native":"Pilipinas","region":"Asia","currency":"PHP","currency_name":"Philippine peso","currency_symbol":"₱","wikiDataId":null,"lat":"13.00","lng":"122.00","emoji":"🇵🇭","emojiU":"U+1F1F5 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"175","name":"Pitcairn Island","code":"PN","phone":"612","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Pitcairn Island\", \"cn\": \"皮特凯恩群岛\", \"de\": \"Pitcairn\", \"es\": \"Islas Pitcairn\", \"fa\": \"پیتکرن\", \"fr\": \"Îles Pitcairn\", \"hr\": \"Pitcairnovo otočje\", \"it\": \"Isole Pitcairn\", \"ja\": \"ピトケアン\", \"kr\": \"핏케언 제도\", \"nl\": \"Pitcairneilanden\", \"pt\": \"Ilhas Picárnia\", \"tr\": \"Pitcairn Adalari\", \"pt-BR\": \"Ilhas Pitcairn\"}","timezones":"[{\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"Pacific\/Pitcairn\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}]","numeric_code":"612","iso3":"PCN","nationality":"Pitcairn Island","capital":"Adamstown","tld":".pn","native":"Pitcairn Islands","region":"Oceania","currency":"NZD","currency_name":"New Zealand dollar","currency_symbol":"$","wikiDataId":null,"lat":"-25.07","lng":"-130.10","emoji":"🇵🇳","emojiU":"U+1F1F5 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"176","name":"Poland","code":"PL","phone":"616","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Poland\", \"cn\": \"波兰\", \"de\": \"Polen\", \"es\": \"Polonia\", \"fa\": \"لهستان\", \"fr\": \"Pologne\", \"hr\": \"Poljska\", \"it\": \"Polonia\", \"ja\": \"ポーランド\", \"kr\": \"폴란드\", \"nl\": \"Polen\", \"pt\": \"Polónia\", \"tr\": \"Polonya\", \"pt-BR\": \"Polônia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Warsaw\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"616","iso3":"POL","nationality":"Polish","capital":"Warsaw","tld":".pl","native":"Polska","region":"Europe","currency":"PLN","currency_name":"Polish złoty","currency_symbol":"zł","wikiDataId":null,"lat":"52.00","lng":"20.00","emoji":"🇵🇱","emojiU":"U+1F1F5 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"177","name":"Portugal","code":"PT","phone":"620","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Portugal\", \"cn\": \"葡萄牙\", \"de\": \"Portugal\", \"es\": \"Portugal\", \"fa\": \"پرتغال\", \"fr\": \"Portugal\", \"hr\": \"Portugal\", \"it\": \"Portogallo\", \"ja\": \"ポルトガル\", \"kr\": \"포르투갈\", \"nl\": \"Portugal\", \"pt\": \"Portugal\", \"tr\": \"Portekiz\", \"pt-BR\": \"Portugal\"}","timezones":"[{\"tzName\": \"Azores Standard Time\", \"zoneName\": \"Atlantic\/Azores\", \"gmtOffset\": -3600, \"abbreviation\": \"AZOT\", \"gmtOffsetName\": \"UTC-01:00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic\/Madeira\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Europe\/Lisbon\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"620","iso3":"PRT","nationality":"Portuguese","capital":"Lisbon","tld":".pt","native":"Portugal","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"39.50","lng":"-8.00","emoji":"🇵🇹","emojiU":"U+1F1F5 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"178","name":"Puerto Rico","code":"PR","phone":"630","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Puerto Rico\", \"cn\": \"波多黎各\", \"de\": \"Puerto Rico\", \"es\": \"Puerto Rico\", \"fa\": \"پورتو ریکو\", \"fr\": \"Porto Rico\", \"hr\": \"Portoriko\", \"it\": \"Porto Rico\", \"ja\": \"プエルトリコ\", \"kr\": \"푸에르토리코\", \"nl\": \"Puerto Rico\", \"pt\": \"Porto Rico\", \"tr\": \"Porto Riko\", \"pt-BR\": \"Porto Rico\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Puerto_Rico\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"630","iso3":"PRI","nationality":"Puerto Rican","capital":"San Juan","tld":".pr","native":"Puerto Rico","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"18.25","lng":"-66.50","emoji":"🇵🇷","emojiU":"U+1F1F5 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"179","name":"Qatar","code":"QA","phone":"634","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Qatar\", \"cn\": \"卡塔尔\", \"de\": \"Katar\", \"es\": \"Catar\", \"fa\": \"قطر\", \"fr\": \"Qatar\", \"hr\": \"Katar\", \"it\": \"Qatar\", \"ja\": \"カタール\", \"kr\": \"카타르\", \"nl\": \"Qatar\", \"pt\": \"Catar\", \"tr\": \"Katar\", \"pt-BR\": \"Catar\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Qatar\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"634","iso3":"QAT","nationality":"Qatari","capital":"Doha","tld":".qa","native":"قطر","region":"Asia","currency":"QAR","currency_name":"Qatari riyal","currency_symbol":"ق.ر","wikiDataId":null,"lat":"25.50","lng":"51.25","emoji":"🇶🇦","emojiU":"U+1F1F6 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"180","name":"Reunion","code":"RE","phone":"638","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Reunion\", \"cn\": \"留尼汪岛\", \"de\": \"Réunion\", \"es\": \"Reunión\", \"fa\": \"رئونیون\", \"fr\": \"Réunion\", \"hr\": \"Réunion\", \"it\": \"Riunione\", \"ja\": \"レユニオン\", \"kr\": \"레위니옹\", \"nl\": \"Réunion\", \"pt\": \"Reunião\", \"tr\": \"Réunion\", \"pt-BR\": \"Reunião\"}","timezones":"[{\"tzName\": \"Réunion Time\", \"zoneName\": \"Indian\/Reunion\", \"gmtOffset\": 14400, \"abbreviation\": \"RET\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"638","iso3":"REU","nationality":"Reunionese, Reunionnais","capital":"Saint-Denis","tld":".re","native":"La Réunion","region":"Africa","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"-21.15","lng":"55.50","emoji":"🇷🇪","emojiU":"U+1F1F7 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"181","name":"Romania","code":"RO","phone":"642","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Romania\", \"cn\": \"罗马尼亚\", \"de\": \"Rumänien\", \"es\": \"Rumania\", \"fa\": \"رومانی\", \"fr\": \"Roumanie\", \"hr\": \"Rumunjska\", \"it\": \"Romania\", \"ja\": \"ルーマニア\", \"kr\": \"루마니아\", \"nl\": \"Roemenië\", \"pt\": \"Roménia\", \"tr\": \"Romanya\", \"pt-BR\": \"Romênia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Bucharest\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"642","iso3":"ROU","nationality":"Romanian","capital":"Bucharest","tld":".ro","native":"România","region":"Europe","currency":"RON","currency_name":"Romanian leu","currency_symbol":"lei","wikiDataId":null,"lat":"46.00","lng":"25.00","emoji":"🇷🇴","emojiU":"U+1F1F7 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"182","name":"Russia","code":"RU","phone":"643","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Russia\", \"cn\": \"俄罗斯联邦\", \"de\": \"Russland\", \"es\": \"Rusia\", \"fa\": \"روسیه\", \"fr\": \"Russie\", \"hr\": \"Rusija\", \"it\": \"Russia\", \"ja\": \"ロシア連邦\", \"kr\": \"러시아\", \"nl\": \"Rusland\", \"pt\": \"Rússia\", \"tr\": \"Rusya\", \"pt-BR\": \"Rússia\"}","timezones":"[{\"tzName\": \"Anadyr Time[4\", \"zoneName\": \"Asia\/Anadyr\", \"gmtOffset\": 43200, \"abbreviation\": \"ANAT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia\/Barnaul\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia\/Chita\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Irkutsk Time\", \"zoneName\": \"Asia\/Irkutsk\", \"gmtOffset\": 28800, \"abbreviation\": \"IRKT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Kamchatka Time\", \"zoneName\": \"Asia\/Kamchatka\", \"gmtOffset\": 43200, \"abbreviation\": \"PETT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia\/Khandyga\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia\/Krasnoyarsk\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Magadan Time\", \"zoneName\": \"Asia\/Magadan\", \"gmtOffset\": 39600, \"abbreviation\": \"MAGT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia\/Novokuznetsk\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Novosibirsk Time\", \"zoneName\": \"Asia\/Novosibirsk\", \"gmtOffset\": 25200, \"abbreviation\": \"NOVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Omsk Time\", \"zoneName\": \"Asia\/Omsk\", \"gmtOffset\": 21600, \"abbreviation\": \"OMST\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Sakhalin Island Time\", \"zoneName\": \"Asia\/Sakhalin\", \"gmtOffset\": 39600, \"abbreviation\": \"SAKT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Srednekolymsk Time\", \"zoneName\": \"Asia\/Srednekolymsk\", \"gmtOffset\": 39600, \"abbreviation\": \"SRET\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Moscow Daylight Time+3\", \"zoneName\": \"Asia\/Tomsk\", \"gmtOffset\": 25200, \"abbreviation\": \"MSD+3\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Vladivostok Time\", \"zoneName\": \"Asia\/Ust-Nera\", \"gmtOffset\": 36000, \"abbreviation\": \"VLAT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Vladivostok Time\", \"zoneName\": \"Asia\/Vladivostok\", \"gmtOffset\": 36000, \"abbreviation\": \"VLAT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia\/Yakutsk\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Yekaterinburg Time\", \"zoneName\": \"Asia\/Yekaterinburg\", \"gmtOffset\": 18000, \"abbreviation\": \"YEKT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe\/Astrakhan\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Kaliningrad\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe\/Kirov\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe\/Moscow\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe\/Samara\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Moscow Daylight Time+4\", \"zoneName\": \"Europe\/Saratov\", \"gmtOffset\": 14400, \"abbreviation\": \"MSD\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe\/Ulyanovsk\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Moscow Standard Time\", \"zoneName\": \"Europe\/Volgograd\", \"gmtOffset\": 14400, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"643","iso3":"RUS","nationality":"Russian","capital":"Moscow","tld":".ru","native":"Россия","region":"Europe","currency":"RUB","currency_name":"Russian ruble","currency_symbol":"₽","wikiDataId":null,"lat":"60.00","lng":"100.00","emoji":"🇷🇺","emojiU":"U+1F1F7 U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"183","name":"Rwanda","code":"RW","phone":"646","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Rwanda\", \"cn\": \"卢旺达\", \"de\": \"Ruanda\", \"es\": \"Ruanda\", \"fa\": \"رواندا\", \"fr\": \"Rwanda\", \"hr\": \"Ruanda\", \"it\": \"Ruanda\", \"ja\": \"ルワンダ\", \"kr\": \"르완다\", \"nl\": \"Rwanda\", \"pt\": \"Ruanda\", \"tr\": \"Ruanda\", \"pt-BR\": \"Ruanda\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Kigali\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"646","iso3":"RWA","nationality":"Rwandan","capital":"Kigali","tld":".rw","native":"Rwanda","region":"Africa","currency":"RWF","currency_name":"Rwandan franc","currency_symbol":"FRw","wikiDataId":null,"lat":"-2.00","lng":"30.00","emoji":"🇷🇼","emojiU":"U+1F1F7 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"184","name":"Saint-Barthelemy","code":"BL","phone":"652","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint-Barthelemy\", \"cn\": \"圣巴泰勒米\", \"de\": \"Saint-Barthélemy\", \"es\": \"San Bartolomé\", \"fa\": \"سن-بارتلمی\", \"fr\": \"Saint-Barthélemy\", \"hr\": \"Saint Barthélemy\", \"it\": \"Antille Francesi\", \"ja\": \"サン・バルテルミー\", \"kr\": \"생바르텔레미\", \"nl\": \"Saint Barthélemy\", \"pt\": \"São Bartolomeu\", \"tr\": \"Saint Barthélemy\", \"pt-BR\": \"São Bartolomeu\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/St_Barthelemy\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"652","iso3":"BLM","nationality":"Barthelemois","capital":"Gustavia","tld":".bl","native":"Saint-Barthélemy","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"18.50","lng":"-63.42","emoji":"🇧🇱","emojiU":"U+1F1E7 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"185","name":"Saint Helena","code":"SH","phone":"654","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint Helena\", \"cn\": \"圣赫勒拿\", \"de\": \"Sankt Helena\", \"es\": \"Santa Helena\", \"fa\": \"سنت هلنا، اسنشن و تریستان دا کونا\", \"fr\": \"Sainte-Hélène\", \"hr\": \"Sveta Helena\", \"it\": \"Sant Elena\", \"ja\": \"セントヘレナ・アセンションおよびトリスタンダクーニャ\", \"kr\": \"세인트헬레나\", \"nl\": \"Sint-Helena\", \"pt\": \"Santa Helena\", \"tr\": \"Saint Helena\", \"pt-BR\": \"Santa Helena\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Atlantic\/St_Helena\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"654","iso3":"SHN","nationality":"Saint Helenian","capital":"Jamestown","tld":".sh","native":"Saint Helena","region":"Africa","currency":"SHP","currency_name":"Saint Helena pound","currency_symbol":"£","wikiDataId":null,"lat":"-15.95","lng":"-5.70","emoji":"🇸🇭","emojiU":"U+1F1F8 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"186","name":"Saint Kitts And Nevis","code":"KN","phone":"659","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint Kitts And Nevis\", \"cn\": \"圣基茨和尼维斯\", \"de\": \"St. Kitts und Nevis\", \"es\": \"San Cristóbal y Nieves\", \"fa\": \"سنت کیتس و نویس\", \"fr\": \"Saint-Christophe-et-Niévès\", \"hr\": \"Sveti Kristof i Nevis\", \"it\": \"Saint Kitts e Nevis\", \"ja\": \"セントクリストファー・ネイビス\", \"kr\": \"세인트키츠 네비스\", \"nl\": \"Saint Kitts en Nevis\", \"pt\": \"São Cristóvão e Neves\", \"tr\": \"Saint Kitts Ve Nevis\", \"pt-BR\": \"São Cristóvão e Neves\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/St_Kitts\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"659","iso3":"KNA","nationality":"Kittitian or Nevisian","capital":"Basseterre","tld":".kn","native":"Saint Kitts and Nevis","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"17.33","lng":"-62.75","emoji":"🇰🇳","emojiU":"U+1F1F0 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"187","name":"Saint Lucia","code":"LC","phone":"662","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint Lucia\", \"cn\": \"圣卢西亚\", \"de\": \"Saint Lucia\", \"es\": \"Santa Lucía\", \"fa\": \"سنت لوسیا\", \"fr\": \"Saint-Lucie\", \"hr\": \"Sveta Lucija\", \"it\": \"Santa Lucia\", \"ja\": \"セントルシア\", \"kr\": \"세인트루시아\", \"nl\": \"Saint Lucia\", \"pt\": \"Santa Lúcia\", \"tr\": \"Saint Lucia\", \"pt-BR\": \"Santa Lúcia\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/St_Lucia\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"662","iso3":"LCA","nationality":"Saint Lucian","capital":"Castries","tld":".lc","native":"Saint Lucia","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"13.88","lng":"-60.97","emoji":"🇱🇨","emojiU":"U+1F1F1 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"188","name":"Saint-Martin (French part)","code":"MF","phone":"663","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint-Martin (French part)\", \"cn\": \"密克罗尼西亚\", \"de\": \"Saint Martin\", \"es\": \"Saint Martin\", \"fa\": \"سینت مارتن\", \"fr\": \"Saint-Martin\", \"hr\": \"Sveti Martin\", \"it\": \"Saint Martin\", \"ja\": \"サン・マルタン(フランス領)\", \"kr\": \"세인트마틴 섬\", \"nl\": \"Saint-Martin\", \"pt\": \"Ilha São Martinho\", \"tr\": \"Saint Martin\", \"pt-BR\": \"Saint Martin\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Marigot\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"663","iso3":"MAF","nationality":"Saint-Martinoise","capital":"Marigot","tld":".mf","native":"Saint-Martin","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"18.08","lng":"-63.95","emoji":"🇲🇫","emojiU":"U+1F1F2 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"189","name":"Saint Pierre and Miquelon","code":"PM","phone":"666","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint Pierre and Miquelon\", \"cn\": \"圣皮埃尔和密克隆\", \"de\": \"Saint-Pierre und Miquelon\", \"es\": \"San Pedro y Miquelón\", \"fa\": \"سن پیر و میکلن\", \"fr\": \"Saint-Pierre-et-Miquelon\", \"hr\": \"Sveti Petar i Mikelon\", \"it\": \"Saint-Pierre e Miquelon\", \"ja\": \"サンピエール島・ミクロン島\", \"kr\": \"생피에르 미클롱\", \"nl\": \"Saint Pierre en Miquelon\", \"pt\": \"São Pedro e Miquelon\", \"tr\": \"Saint Pierre Ve Miquelon\", \"pt-BR\": \"Saint-Pierre e Miquelon\"}","timezones":"[{\"tzName\": \"Pierre & Miquelon Daylight Time\", \"zoneName\": \"America\/Miquelon\", \"gmtOffset\": -10800, \"abbreviation\": \"PMDT\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"666","iso3":"SPM","nationality":"Saint-Pierrais or Miquelonnais","capital":"Saint-Pierre","tld":".pm","native":"Saint-Pierre-et-Miquelon","region":"Americas","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"46.83","lng":"-56.33","emoji":"🇵🇲","emojiU":"U+1F1F5 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"190","name":"Saint Vincent And The Grenadines","code":"VC","phone":"670","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Saint Vincent And The Grenadines\", \"cn\": \"圣文森特和格林纳丁斯\", \"de\": \"Saint Vincent und die Grenadinen\", \"es\": \"San Vicente y Granadinas\", \"fa\": \"سنت وینسنت و گرنادین‌ها\", \"fr\": \"Saint-Vincent-et-les-Grenadines\", \"hr\": \"Sveti Vincent i Grenadini\", \"it\": \"Saint Vincent e Grenadine\", \"ja\": \"セントビンセントおよびグレナディーン諸島\", \"kr\": \"세인트빈센트 그레나딘\", \"nl\": \"Saint Vincent en de Grenadines\", \"pt\": \"São Vicente e Granadinas\", \"tr\": \"Saint Vincent Ve Grenadinler\", \"pt-BR\": \"São Vicente e Granadinas\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/St_Vincent\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"670","iso3":"VCT","nationality":"Saint Vincentian, Vincentian","capital":"Kingstown","tld":".vc","native":"Saint Vincent and the Grenadines","region":"Americas","currency":"XCD","currency_name":"Eastern Caribbean dollar","currency_symbol":"$","wikiDataId":null,"lat":"13.25","lng":"-61.20","emoji":"🇻🇨","emojiU":"U+1F1FB U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"191","name":"Samoa","code":"WS","phone":"882","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"Samoa\", \"cn\": \"萨摩亚\", \"de\": \"Samoa\", \"es\": \"Samoa\", \"fa\": \"ساموآ\", \"fr\": \"Samoa\", \"hr\": \"Samoa\", \"it\": \"Samoa\", \"ja\": \"サモア\", \"kr\": \"사모아\", \"nl\": \"Samoa\", \"pt\": \"Samoa\", \"tr\": \"Samoa\", \"pt-BR\": \"Samoa\"}","timezones":"[{\"tzName\": \"West Samoa Time\", \"zoneName\": \"Pacific\/Apia\", \"gmtOffset\": 50400, \"abbreviation\": \"WST\", \"gmtOffsetName\": \"UTC+14:00\"}]","numeric_code":"882","iso3":"WSM","nationality":"Samoan","capital":"Apia","tld":".ws","native":"Samoa","region":"Oceania","currency":"WST","currency_name":"Samoan tālā","currency_symbol":"SAT","wikiDataId":null,"lat":"-13.58","lng":"-172.33","emoji":"🇼🇸","emojiU":"U+1F1FC U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"192","name":"San Marino","code":"SM","phone":"674","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:29","translations":"{\"ar\": \"San Marino\", \"cn\": \"圣马力诺\", \"de\": \"San Marino\", \"es\": \"San Marino\", \"fa\": \"سان مارینو\", \"fr\": \"Saint-Marin\", \"hr\": \"San Marino\", \"it\": \"San Marino\", \"ja\": \"サンマリノ\", \"kr\": \"산마리노\", \"nl\": \"San Marino\", \"pt\": \"São Marinho\", \"tr\": \"San Marino\", \"pt-BR\": \"San Marino\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/San_Marino\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"674","iso3":"SMR","nationality":"Sammarinese","capital":"San Marino","tld":".sm","native":"San Marino","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"43.77","lng":"12.42","emoji":"🇸🇲","emojiU":"U+1F1F8 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"193","name":"Sao Tome and Principe","code":"ST","phone":"678","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sao Tome and Principe\", \"cn\": \"圣多美和普林西比\", \"de\": \"São Tomé und Príncipe\", \"es\": \"Santo Tomé y Príncipe\", \"fa\": \"کواترو دو فرویرو\", \"fr\": \"Sao Tomé-et-Principe\", \"hr\": \"Sveti Toma i Princip\", \"it\": \"São Tomé e Príncipe\", \"ja\": \"サントメ・プリンシペ\", \"kr\": \"상투메 프린시페\", \"nl\": \"Sao Tomé en Principe\", \"pt\": \"São Tomé e Príncipe\", \"tr\": \"Sao Tome Ve Prinsipe\", \"pt-BR\": \"São Tomé e Príncipe\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Sao_Tome\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"678","iso3":"STP","nationality":"Sao Tomean","capital":"Sao Tome","tld":".st","native":"São Tomé e Príncipe","region":"Africa","currency":"STD","currency_name":"Dobra","currency_symbol":"Db","wikiDataId":null,"lat":"1.00","lng":"7.00","emoji":"🇸🇹","emojiU":"U+1F1F8 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"194","name":"Saudi Arabia","code":"SA","phone":"682","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Saudi Arabia\", \"cn\": \"沙特阿拉伯\", \"de\": \"Saudi-Arabien\", \"es\": \"Arabia Saudí\", \"fa\": \"عربستان سعودی\", \"fr\": \"Arabie Saoudite\", \"hr\": \"Saudijska Arabija\", \"it\": \"Arabia Saudita\", \"ja\": \"サウジアラビア\", \"kr\": \"사우디아라비아\", \"nl\": \"Saoedi-Arabië\", \"pt\": \"Arábia Saudita\", \"tr\": \"Suudi Arabistan\", \"pt-BR\": \"Arábia Saudita\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Riyadh\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"682","iso3":"SAU","nationality":"Saudi, Saudi Arabian","capital":"Riyadh","tld":".sa","native":"المملكة العربية السعودية","region":"Asia","currency":"SAR","currency_name":"Saudi riyal","currency_symbol":"﷼","wikiDataId":null,"lat":"25.00","lng":"45.00","emoji":"🇸🇦","emojiU":"U+1F1F8 U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"195","name":"Senegal","code":"SN","phone":"686","created_at":"2020-06-17 10:37:04","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Senegal\", \"cn\": \"塞内加尔\", \"de\": \"Senegal\", \"es\": \"Senegal\", \"fa\": \"سنگال\", \"fr\": \"Sénégal\", \"hr\": \"Senegal\", \"it\": \"Senegal\", \"ja\": \"セネガル\", \"kr\": \"세네갈\", \"nl\": \"Senegal\", \"pt\": \"Senegal\", \"tr\": \"Senegal\", \"pt-BR\": \"Senegal\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Dakar\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"686","iso3":"SEN","nationality":"Senegalese","capital":"Dakar","tld":".sn","native":"Sénégal","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"14.00","lng":"-14.00","emoji":"🇸🇳","emojiU":"U+1F1F8 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"196","name":"Serbia","code":"RS","phone":"688","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Serbia\", \"cn\": \"塞尔维亚\", \"de\": \"Serbien\", \"es\": \"Serbia\", \"fa\": \"صربستان\", \"fr\": \"Serbie\", \"hr\": \"Srbija\", \"it\": \"Serbia\", \"ja\": \"セルビア\", \"kr\": \"세르비아\", \"nl\": \"Servië\", \"pt\": \"Sérvia\", \"tr\": \"Sirbistan\", \"pt-BR\": \"Sérvia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Belgrade\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"688","iso3":"SRB","nationality":"Serbian","capital":"Belgrade","tld":".rs","native":"Србија","region":"Europe","currency":"RSD","currency_name":"Serbian dinar","currency_symbol":"din","wikiDataId":null,"lat":"44.00","lng":"21.00","emoji":"🇷🇸","emojiU":"U+1F1F7 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"197","name":"Seychelles","code":"SC","phone":"690","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Seychelles\", \"cn\": \"塞舌尔\", \"de\": \"Seychellen\", \"es\": \"Seychelles\", \"fa\": \"سیشل\", \"fr\": \"Seychelles\", \"hr\": \"Sejšeli\", \"it\": \"Seychelles\", \"ja\": \"セーシェル\", \"kr\": \"세이셸\", \"nl\": \"Seychellen\", \"pt\": \"Seicheles\", \"tr\": \"Seyşeller\", \"pt-BR\": \"Seicheles\"}","timezones":"[{\"tzName\": \"Seychelles Time\", \"zoneName\": \"Indian\/Mahe\", \"gmtOffset\": 14400, \"abbreviation\": \"SCT\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"690","iso3":"SYC","nationality":"Seychellois","capital":"Victoria","tld":".sc","native":"Seychelles","region":"Africa","currency":"SCR","currency_name":"Seychellois rupee","currency_symbol":"SRe","wikiDataId":null,"lat":"-4.58","lng":"55.67","emoji":"🇸🇨","emojiU":"U+1F1F8 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"198","name":"Sierra Leone","code":"SL","phone":"694","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sierra Leone\", \"cn\": \"塞拉利昂\", \"de\": \"Sierra Leone\", \"es\": \"Sierra Leone\", \"fa\": \"سیرالئون\", \"fr\": \"Sierra Leone\", \"hr\": \"Sijera Leone\", \"it\": \"Sierra Leone\", \"ja\": \"シエラレオネ\", \"kr\": \"시에라리온\", \"nl\": \"Sierra Leone\", \"pt\": \"Serra Leoa\", \"tr\": \"Sierra Leone\", \"pt-BR\": \"Serra Leoa\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Freetown\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"694","iso3":"SLE","nationality":"Sierra Leonean","capital":"Freetown","tld":".sl","native":"Sierra Leone","region":"Africa","currency":"SLL","currency_name":"Sierra Leonean leone","currency_symbol":"Le","wikiDataId":null,"lat":"8.50","lng":"-11.50","emoji":"🇸🇱","emojiU":"U+1F1F8 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"199","name":"Singapore","code":"SG","phone":"702","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Singapore\", \"cn\": \"新加坡\", \"de\": \"Singapur\", \"es\": \"Singapur\", \"fa\": \"سنگاپور\", \"fr\": \"Singapour\", \"hr\": \"Singapur\", \"it\": \"Singapore\", \"ja\": \"シンガポール\", \"kr\": \"싱가포르\", \"nl\": \"Singapore\", \"pt\": \"Singapura\", \"tr\": \"Singapur\", \"pt-BR\": \"Singapura\"}","timezones":"[{\"tzName\": \"Singapore Time\", \"zoneName\": \"Asia\/Singapore\", \"gmtOffset\": 28800, \"abbreviation\": \"SGT\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"702","iso3":"SGP","nationality":"Singaporean","capital":"Singapur","tld":".sg","native":"Singapore","region":"Asia","currency":"SGD","currency_name":"Singapore dollar","currency_symbol":"$","wikiDataId":null,"lat":"1.37","lng":"103.80","emoji":"🇸🇬","emojiU":"U+1F1F8 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"200","name":"Sint Maarten (Dutch part)","code":"SX","phone":"534","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sint Maarten (Dutch part)\", \"cn\": \"圣马丁岛(荷兰部分)\", \"de\": \"Sint Maarten (niederl. Teil)\", \"fa\": \"سینت مارتن\", \"fr\": \"Saint Martin (partie néerlandaise)\", \"it\": \"Saint Martin (parte olandese)\", \"kr\": \"신트마르턴\", \"nl\": \"Sint Maarten\", \"pt\": \"São Martinho\", \"tr\": \"Sint Maarten\", \"pt-BR\": \"Sint Maarten\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"534","iso3":"SXM","nationality":"Sint Maarten","capital":"Philipsburg","tld":".sx","native":"Sint Maarten","region":"Americas","currency":"ANG","currency_name":"Netherlands Antillean guilder","currency_symbol":"ƒ","wikiDataId":null,"lat":"18.03","lng":"-63.05","emoji":"🇸🇽","emojiU":"U+1F1F8 U+1F1FD","flag":"1","is_activated":"1"}, +{"id":"201","name":"Slovakia","code":"SK","phone":"703","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Slovakia\", \"cn\": \"斯洛伐克\", \"de\": \"Slowakei\", \"es\": \"República Eslovaca\", \"fa\": \"اسلواکی\", \"fr\": \"Slovaquie\", \"hr\": \"Slovačka\", \"it\": \"Slovacchia\", \"ja\": \"スロバキア\", \"kr\": \"슬로바키아\", \"nl\": \"Slowakije\", \"pt\": \"Eslováquia\", \"tr\": \"Slovakya\", \"pt-BR\": \"Eslováquia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Bratislava\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"703","iso3":"SVK","nationality":"Slovak","capital":"Bratislava","tld":".sk","native":"Slovensko","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"48.67","lng":"19.50","emoji":"🇸🇰","emojiU":"U+1F1F8 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"202","name":"Slovenia","code":"SI","phone":"705","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Slovenia\", \"cn\": \"斯洛文尼亚\", \"de\": \"Slowenien\", \"es\": \"Eslovenia\", \"fa\": \"اسلوونی\", \"fr\": \"Slovénie\", \"hr\": \"Slovenija\", \"it\": \"Slovenia\", \"ja\": \"スロベニア\", \"kr\": \"슬로베니아\", \"nl\": \"Slovenië\", \"pt\": \"Eslovénia\", \"tr\": \"Slovenya\", \"pt-BR\": \"Eslovênia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Ljubljana\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"705","iso3":"SVN","nationality":"Slovenian, Slovene","capital":"Ljubljana","tld":".si","native":"Slovenija","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"46.12","lng":"14.82","emoji":"🇸🇮","emojiU":"U+1F1F8 U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"203","name":"Solomon Islands","code":"SB","phone":"090","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Solomon Islands\", \"cn\": \"所罗门群岛\", \"de\": \"Salomonen\", \"es\": \"Islas Salomón\", \"fa\": \"جزایر سلیمان\", \"fr\": \"Îles Salomon\", \"hr\": \"Solomonski Otoci\", \"it\": \"Isole Salomone\", \"ja\": \"ソロモン諸島\", \"kr\": \"솔로몬 제도\", \"nl\": \"Salomonseilanden\", \"pt\": \"Ilhas Salomão\", \"tr\": \"Solomon Adalari\", \"pt-BR\": \"Ilhas Salomão\"}","timezones":"[{\"tzName\": \"Solomon Islands Time\", \"zoneName\": \"Pacific\/Guadalcanal\", \"gmtOffset\": 39600, \"abbreviation\": \"SBT\", \"gmtOffsetName\": \"UTC+11:00\"}]","numeric_code":"090","iso3":"SLB","nationality":"Solomon Island","capital":"Honiara","tld":".sb","native":"Solomon Islands","region":"Oceania","currency":"SBD","currency_name":"Solomon Islands dollar","currency_symbol":"Si$","wikiDataId":null,"lat":"-8.00","lng":"159.00","emoji":"🇸🇧","emojiU":"U+1F1F8 U+1F1E7","flag":"1","is_activated":"1"}, +{"id":"204","name":"Somalia","code":"SO","phone":"706","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Somalia\", \"cn\": \"索马里\", \"de\": \"Somalia\", \"es\": \"Somalia\", \"fa\": \"سومالی\", \"fr\": \"Somalie\", \"hr\": \"Somalija\", \"it\": \"Somalia\", \"ja\": \"ソマリア\", \"kr\": \"소말리아\", \"nl\": \"Somalië\", \"pt\": \"Somália\", \"tr\": \"Somali\", \"pt-BR\": \"Somália\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Mogadishu\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"706","iso3":"SOM","nationality":"Somali, Somalian","capital":"Mogadishu","tld":".so","native":"Soomaaliya","region":"Africa","currency":"SOS","currency_name":"Somali shilling","currency_symbol":"Sh.so.","wikiDataId":null,"lat":"10.00","lng":"49.00","emoji":"🇸🇴","emojiU":"U+1F1F8 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"205","name":"South Africa","code":"ZA","phone":"710","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"South Africa\", \"cn\": \"南非\", \"de\": \"Republik Südafrika\", \"es\": \"República de Sudáfrica\", \"fa\": \"آفریقای جنوبی\", \"fr\": \"Afrique du Sud\", \"hr\": \"Južnoafrička Republika\", \"it\": \"Sud Africa\", \"ja\": \"南アフリカ\", \"kr\": \"남아프리카 공화국\", \"nl\": \"Zuid-Afrika\", \"pt\": \"República Sul-Africana\", \"tr\": \"Güney Afrika Cumhuriyeti\", \"pt-BR\": \"República Sul-Africana\"}","timezones":"[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa\/Johannesburg\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"710","iso3":"ZAF","nationality":"South African","capital":"Pretoria","tld":".za","native":"South Africa","region":"Africa","currency":"ZAR","currency_name":"South African rand","currency_symbol":"R","wikiDataId":null,"lat":"-29.00","lng":"24.00","emoji":"🇿🇦","emojiU":"U+1F1FF U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"206","name":"South Georgia","code":"GS","phone":"239","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"South Georgia\", \"cn\": \"南乔治亚\", \"de\": \"Südgeorgien und die Südlichen Sandwichinseln\", \"es\": \"Islas Georgias del Sur y Sandwich del Sur\", \"fa\": \"جزایر جورجیای جنوبی و ساندویچ جنوبی\", \"fr\": \"Géorgie du Sud-et-les Îles Sandwich du Sud\", \"hr\": \"Južna Georgija i otočje Južni Sandwich\", \"it\": \"Georgia del Sud e Isole Sandwich Meridionali\", \"ja\": \"サウスジョージア・サウスサンドウィッチ諸島\", \"kr\": \"사우스조지아\", \"nl\": \"Zuid-Georgia en Zuidelijke Sandwicheilanden\", \"pt\": \"Ilhas Geórgia do Sul e Sanduíche do Sul\", \"tr\": \"Güney Georgia\", \"pt-BR\": \"Ilhas Geórgias do Sul e Sandwich do Sul\"}","timezones":"[{\"tzName\": \"South Georgia and the South Sandwich Islands Time\", \"zoneName\": \"Atlantic\/South_Georgia\", \"gmtOffset\": -7200, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC-02:00\"}]","numeric_code":"239","iso3":"SGS","nationality":"South Georgia or South Sandwich Islands","capital":"Grytviken","tld":".gs","native":"South Georgia","region":"Americas","currency":"GBP","currency_name":"British pound","currency_symbol":"£","wikiDataId":null,"lat":"-54.50","lng":"-37.00","emoji":"🇬🇸","emojiU":"U+1F1EC U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"207","name":"South Sudan","code":"SS","phone":"728","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"South Sudan\", \"cn\": \"南苏丹\", \"de\": \"Südsudan\", \"es\": \"Sudán del Sur\", \"fa\": \"سودان جنوبی\", \"fr\": \"Soudan du Sud\", \"hr\": \"Južni Sudan\", \"it\": \"Sudan del sud\", \"ja\": \"南スーダン\", \"kr\": \"남수단\", \"nl\": \"Zuid-Soedan\", \"pt\": \"Sudão do Sul\", \"tr\": \"Güney Sudan\", \"pt-BR\": \"Sudão do Sul\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Juba\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"728","iso3":"SSD","nationality":"South Sudanese","capital":"Juba","tld":".ss","native":"South Sudan","region":"Africa","currency":"SSP","currency_name":"South Sudanese pound","currency_symbol":"£","wikiDataId":null,"lat":"7.00","lng":"30.00","emoji":"🇸🇸","emojiU":"U+1F1F8 U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"208","name":"Spain","code":"ES","phone":"724","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Spain\", \"cn\": \"西班牙\", \"de\": \"Spanien\", \"es\": \"España\", \"fa\": \"اسپانیا\", \"fr\": \"Espagne\", \"hr\": \"Španjolska\", \"it\": \"Spagna\", \"ja\": \"スペイン\", \"kr\": \"스페인\", \"nl\": \"Spanje\", \"pt\": \"Espanha\", \"tr\": \"İspanya\", \"pt-BR\": \"Espanha\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa\/Ceuta\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic\/Canary\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Madrid\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"724","iso3":"ESP","nationality":"Spanish","capital":"Madrid","tld":".es","native":"España","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"40.00","lng":"-4.00","emoji":"🇪🇸","emojiU":"U+1F1EA U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"209","name":"Sri Lanka","code":"LK","phone":"144","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sri Lanka\", \"cn\": \"斯里兰卡\", \"de\": \"Sri Lanka\", \"es\": \"Sri Lanka\", \"fa\": \"سری‌لانکا\", \"fr\": \"Sri Lanka\", \"hr\": \"Šri Lanka\", \"it\": \"Sri Lanka\", \"ja\": \"スリランカ\", \"kr\": \"스리랑카\", \"nl\": \"Sri Lanka\", \"pt\": \"Sri Lanka\", \"tr\": \"Sri Lanka\", \"pt-BR\": \"Sri Lanka\"}","timezones":"[{\"tzName\": \"Indian Standard Time\", \"zoneName\": \"Asia\/Colombo\", \"gmtOffset\": 19800, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+05:30\"}]","numeric_code":"144","iso3":"LKA","nationality":"Sri Lankan","capital":"Colombo","tld":".lk","native":"śrī laṃkāva","region":"Asia","currency":"LKR","currency_name":"Sri Lankan rupee","currency_symbol":"Rs","wikiDataId":null,"lat":"7.00","lng":"81.00","emoji":"🇱🇰","emojiU":"U+1F1F1 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"210","name":"Sudan","code":"SD","phone":"729","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sudan\", \"cn\": \"苏丹\", \"de\": \"Sudan\", \"es\": \"Sudán\", \"fa\": \"سودان\", \"fr\": \"Soudan\", \"hr\": \"Sudan\", \"it\": \"Sudan\", \"ja\": \"スーダン\", \"kr\": \"수단\", \"nl\": \"Soedan\", \"pt\": \"Sudão\", \"tr\": \"Sudan\", \"pt-BR\": \"Sudão\"}","timezones":"[{\"tzName\": \"Eastern African Time\", \"zoneName\": \"Africa\/Khartoum\", \"gmtOffset\": 7200, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"729","iso3":"SDN","nationality":"Sudanese","capital":"Khartoum","tld":".sd","native":"السودان","region":"Africa","currency":"SDG","currency_name":"Sudanese pound","currency_symbol":".س.ج","wikiDataId":null,"lat":"15.00","lng":"30.00","emoji":"🇸🇩","emojiU":"U+1F1F8 U+1F1E9","flag":"1","is_activated":"1"}, +{"id":"211","name":"Suriname","code":"SR","phone":"740","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Suriname\", \"cn\": \"苏里南\", \"de\": \"Suriname\", \"es\": \"Surinam\", \"fa\": \"سورینام\", \"fr\": \"Surinam\", \"hr\": \"Surinam\", \"it\": \"Suriname\", \"ja\": \"スリナム\", \"kr\": \"수리남\", \"nl\": \"Suriname\", \"pt\": \"Suriname\", \"tr\": \"Surinam\", \"pt-BR\": \"Suriname\"}","timezones":"[{\"tzName\": \"Suriname Time\", \"zoneName\": \"America\/Paramaribo\", \"gmtOffset\": -10800, \"abbreviation\": \"SRT\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"740","iso3":"SUR","nationality":"Surinamese","capital":"Paramaribo","tld":".sr","native":"Suriname","region":"Americas","currency":"SRD","currency_name":"Surinamese dollar","currency_symbol":"$","wikiDataId":null,"lat":"4.00","lng":"-56.00","emoji":"🇸🇷","emojiU":"U+1F1F8 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"212","name":"Svalbard And Jan Mayen Islands","code":"SJ","phone":"744","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Svalbard And Jan Mayen Islands\", \"cn\": \"斯瓦尔巴和扬马延群岛\", \"de\": \"Svalbard und Jan Mayen\", \"es\": \"Islas Svalbard y Jan Mayen\", \"fa\": \"سوالبارد و یان ماین\", \"fr\": \"Svalbard et Jan Mayen\", \"hr\": \"Svalbard i Jan Mayen\", \"it\": \"Svalbard e Jan Mayen\", \"ja\": \"スヴァールバル諸島およびヤンマイエン島\", \"kr\": \"스발바르 얀마옌 제도\", \"nl\": \"Svalbard en Jan Mayen\", \"pt\": \"Svalbard\", \"tr\": \"Svalbard Ve Jan Mayen\", \"pt-BR\": \"Svalbard\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Arctic\/Longyearbyen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"744","iso3":"SJM","nationality":"Svalbard","capital":"Longyearbyen","tld":".sj","native":"Svalbard og Jan Mayen","region":"Europe","currency":"NOK","currency_name":"Norwegian Krone","currency_symbol":"kr","wikiDataId":null,"lat":"78.00","lng":"20.00","emoji":"🇸🇯","emojiU":"U+1F1F8 U+1F1EF","flag":"1","is_activated":"1"}, +{"id":"213","name":"Swaziland","code":"SZ","phone":"748","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Swaziland\", \"cn\": \"斯威士兰\", \"de\": \"Swasiland\", \"es\": \"Suazilandia\", \"fa\": \"سوازیلند\", \"fr\": \"Swaziland\", \"hr\": \"Svazi\", \"it\": \"Swaziland\", \"ja\": \"スワジランド\", \"kr\": \"에스와티니\", \"nl\": \"Swaziland\", \"pt\": \"Suazilândia\", \"tr\": \"Esvatini\", \"pt-BR\": \"Suazilândia\"}","timezones":"[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa\/Mbabane\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"748","iso3":"SWZ","nationality":"Swazi","capital":"Mbabane","tld":".sz","native":"Swaziland","region":"Africa","currency":"SZL","currency_name":"Lilangeni","currency_symbol":"E","wikiDataId":null,"lat":"-26.50","lng":"31.50","emoji":"🇸🇿","emojiU":"U+1F1F8 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"214","name":"Sweden","code":"SE","phone":"752","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Sweden\", \"cn\": \"瑞典\", \"de\": \"Schweden\", \"es\": \"Suecia\", \"fa\": \"سوئد\", \"fr\": \"Suède\", \"hr\": \"Švedska\", \"it\": \"Svezia\", \"ja\": \"スウェーデン\", \"kr\": \"스웨덴\", \"nl\": \"Zweden\", \"pt\": \"Suécia\", \"tr\": \"İsveç\", \"pt-BR\": \"Suécia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Stockholm\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"752","iso3":"SWE","nationality":"Swedish","capital":"Stockholm","tld":".se","native":"Sverige","region":"Europe","currency":"SEK","currency_name":"Swedish krona","currency_symbol":"kr","wikiDataId":null,"lat":"62.00","lng":"15.00","emoji":"🇸🇪","emojiU":"U+1F1F8 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"215","name":"Switzerland","code":"CH","phone":"756","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Switzerland\", \"cn\": \"瑞士\", \"de\": \"Schweiz\", \"es\": \"Suiza\", \"fa\": \"سوئیس\", \"fr\": \"Suisse\", \"hr\": \"Švicarska\", \"it\": \"Svizzera\", \"ja\": \"スイス\", \"kr\": \"스위스\", \"nl\": \"Zwitserland\", \"pt\": \"Suíça\", \"tr\": \"İsviçre\", \"pt-BR\": \"Suíça\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Zurich\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"756","iso3":"CHE","nationality":"Swiss","capital":"Bern","tld":".ch","native":"Schweiz","region":"Europe","currency":"CHF","currency_name":"Swiss franc","currency_symbol":"CHf","wikiDataId":null,"lat":"47.00","lng":"8.00","emoji":"🇨🇭","emojiU":"U+1F1E8 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"216","name":"Syria","code":"SY","phone":"760","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Syria\", \"cn\": \"叙利亚\", \"de\": \"Syrien\", \"es\": \"Siria\", \"fa\": \"سوریه\", \"fr\": \"Syrie\", \"hr\": \"Sirija\", \"it\": \"Siria\", \"ja\": \"シリア・アラブ共和国\", \"kr\": \"시리아\", \"nl\": \"Syrië\", \"pt\": \"Síria\", \"tr\": \"Suriye\", \"pt-BR\": \"Síria\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia\/Damascus\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"760","iso3":"SYR","nationality":"Syrian","capital":"Damascus","tld":".sy","native":"سوريا","region":"Asia","currency":"SYP","currency_name":"Syrian pound","currency_symbol":"LS","wikiDataId":null,"lat":"35.00","lng":"38.00","emoji":"🇸🇾","emojiU":"U+1F1F8 U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"217","name":"Taiwan","code":"TW","phone":"158","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Taiwan\", \"cn\": \"中国台湾\", \"de\": \"Taiwan\", \"es\": \"Taiwán\", \"fa\": \"تایوان\", \"fr\": \"Taïwan\", \"hr\": \"Tajvan\", \"it\": \"Taiwan\", \"ja\": \"台湾(中華民国)\", \"kr\": \"대만\", \"nl\": \"Taiwan\", \"pt\": \"Taiwan\", \"tr\": \"Tayvan\", \"pt-BR\": \"Taiwan\"}","timezones":"[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia\/Taipei\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}]","numeric_code":"158","iso3":"TWN","nationality":"Chinese, Taiwanese","capital":"Taipei","tld":".tw","native":"臺灣","region":"Asia","currency":"TWD","currency_name":"New Taiwan dollar","currency_symbol":"$","wikiDataId":null,"lat":"23.50","lng":"121.00","emoji":"🇹🇼","emojiU":"U+1F1F9 U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"218","name":"Tajikistan","code":"TJ","phone":"762","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tajikistan\", \"cn\": \"塔吉克斯坦\", \"de\": \"Tadschikistan\", \"es\": \"Tayikistán\", \"fa\": \"تاجیکستان\", \"fr\": \"Tadjikistan\", \"hr\": \"Tađikistan\", \"it\": \"Tagikistan\", \"ja\": \"タジキスタン\", \"kr\": \"타지키스탄\", \"nl\": \"Tadzjikistan\", \"pt\": \"Tajiquistão\", \"tr\": \"Tacikistan\", \"pt-BR\": \"Tajiquistão\"}","timezones":"[{\"tzName\": \"Tajikistan Time\", \"zoneName\": \"Asia\/Dushanbe\", \"gmtOffset\": 18000, \"abbreviation\": \"TJT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"762","iso3":"TJK","nationality":"Tajikistani","capital":"Dushanbe","tld":".tj","native":"Тоҷикистон","region":"Asia","currency":"TJS","currency_name":"Tajikistani somoni","currency_symbol":"SM","wikiDataId":null,"lat":"39.00","lng":"71.00","emoji":"🇹🇯","emojiU":"U+1F1F9 U+1F1EF","flag":"1","is_activated":"1"}, +{"id":"219","name":"Tanzania","code":"TZ","phone":"834","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tanzania\", \"cn\": \"坦桑尼亚\", \"de\": \"Tansania\", \"es\": \"Tanzania\", \"fa\": \"تانزانیا\", \"fr\": \"Tanzanie\", \"hr\": \"Tanzanija\", \"it\": \"Tanzania\", \"ja\": \"タンザニア\", \"kr\": \"탄자니아\", \"nl\": \"Tanzania\", \"pt\": \"Tanzânia\", \"tr\": \"Tanzanya\", \"pt-BR\": \"Tanzânia\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Dar_es_Salaam\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"834","iso3":"TZA","nationality":"Tanzanian","capital":"Dodoma","tld":".tz","native":"Tanzania","region":"Africa","currency":"TZS","currency_name":"Tanzanian shilling","currency_symbol":"TSh","wikiDataId":null,"lat":"-6.00","lng":"35.00","emoji":"🇹🇿","emojiU":"U+1F1F9 U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"220","name":"Thailand","code":"TH","phone":"764","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Thailand\", \"cn\": \"泰国\", \"de\": \"Thailand\", \"es\": \"Tailandia\", \"fa\": \"تایلند\", \"fr\": \"Thaïlande\", \"hr\": \"Tajland\", \"it\": \"Tailandia\", \"ja\": \"タイ\", \"kr\": \"태국\", \"nl\": \"Thailand\", \"pt\": \"Tailândia\", \"tr\": \"Tayland\", \"pt-BR\": \"Tailândia\"}","timezones":"[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia\/Bangkok\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"764","iso3":"THA","nationality":"Thai","capital":"Bangkok","tld":".th","native":"ประเทศไทย","region":"Asia","currency":"THB","currency_name":"Thai baht","currency_symbol":"฿","wikiDataId":null,"lat":"15.00","lng":"100.00","emoji":"🇹🇭","emojiU":"U+1F1F9 U+1F1ED","flag":"1","is_activated":"1"}, +{"id":"221","name":"East Timor","code":"TL","phone":"626","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"East Timor\", \"cn\": \"东帝汶\", \"de\": \"Timor-Leste\", \"es\": \"Timor Oriental\", \"fa\": \"تیمور شرقی\", \"fr\": \"Timor oriental\", \"hr\": \"Istočni Timor\", \"it\": \"Timor Est\", \"ja\": \"東ティモール\", \"kr\": \"동티모르\", \"nl\": \"Oost-Timor\", \"pt\": \"Timor Leste\", \"tr\": \"Doğu Timor\", \"pt-BR\": \"Timor Leste\"}","timezones":"[{\"tzName\": \"Timor Leste Time\", \"zoneName\": \"Asia\/Dili\", \"gmtOffset\": 32400, \"abbreviation\": \"TLT\", \"gmtOffsetName\": \"UTC+09:00\"}]","numeric_code":"626","iso3":"TLS","nationality":"Timorese","capital":"Dili","tld":".tl","native":"Timor-Leste","region":"Asia","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"-8.83","lng":"125.92","emoji":"🇹🇱","emojiU":"U+1F1F9 U+1F1F1","flag":"1","is_activated":"1"}, +{"id":"222","name":"Togo","code":"TG","phone":"768","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Togo\", \"cn\": \"多哥\", \"de\": \"Togo\", \"es\": \"Togo\", \"fa\": \"توگو\", \"fr\": \"Togo\", \"hr\": \"Togo\", \"it\": \"Togo\", \"ja\": \"トーゴ\", \"kr\": \"토고\", \"nl\": \"Togo\", \"pt\": \"Togo\", \"tr\": \"Togo\", \"pt-BR\": \"Togo\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa\/Lome\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"768","iso3":"TGO","nationality":"Togolese","capital":"Lome","tld":".tg","native":"Togo","region":"Africa","currency":"XOF","currency_name":"West African CFA franc","currency_symbol":"CFA","wikiDataId":null,"lat":"8.00","lng":"1.17","emoji":"🇹🇬","emojiU":"U+1F1F9 U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"223","name":"Tokelau","code":"TK","phone":"772","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tokelau\", \"cn\": \"托克劳\", \"de\": \"Tokelau\", \"es\": \"Islas Tokelau\", \"fa\": \"توکلائو\", \"fr\": \"Tokelau\", \"hr\": \"Tokelau\", \"it\": \"Isole Tokelau\", \"ja\": \"トケラウ\", \"kr\": \"토켈라우\", \"nl\": \"Tokelau\", \"pt\": \"Toquelau\", \"tr\": \"Tokelau\", \"pt-BR\": \"Tokelau\"}","timezones":"[{\"tzName\": \"Tokelau Time\", \"zoneName\": \"Pacific\/Fakaofo\", \"gmtOffset\": 46800, \"abbreviation\": \"TKT\", \"gmtOffsetName\": \"UTC+13:00\"}]","numeric_code":"772","iso3":"TKL","nationality":"Tokelauan","capital":"","tld":".tk","native":"Tokelau","region":"Oceania","currency":"NZD","currency_name":"New Zealand dollar","currency_symbol":"$","wikiDataId":null,"lat":"-9.00","lng":"-172.00","emoji":"🇹🇰","emojiU":"U+1F1F9 U+1F1F0","flag":"1","is_activated":"1"}, +{"id":"224","name":"Tonga","code":"TO","phone":"776","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tonga\", \"cn\": \"汤加\", \"de\": \"Tonga\", \"es\": \"Tonga\", \"fa\": \"تونگا\", \"fr\": \"Tonga\", \"hr\": \"Tonga\", \"it\": \"Tonga\", \"ja\": \"トンガ\", \"kr\": \"통가\", \"nl\": \"Tonga\", \"pt\": \"Tonga\", \"tr\": \"Tonga\", \"pt-BR\": \"Tonga\"}","timezones":"[{\"tzName\": \"Tonga Time\", \"zoneName\": \"Pacific\/Tongatapu\", \"gmtOffset\": 46800, \"abbreviation\": \"TOT\", \"gmtOffsetName\": \"UTC+13:00\"}]","numeric_code":"776","iso3":"TON","nationality":"Tongan","capital":"Nuku alofa","tld":".to","native":"Tonga","region":"Oceania","currency":"TOP","currency_name":"Tongan paʻanga","currency_symbol":"$","wikiDataId":null,"lat":"-20.00","lng":"-175.00","emoji":"🇹🇴","emojiU":"U+1F1F9 U+1F1F4","flag":"1","is_activated":"1"}, +{"id":"225","name":"Trinidad And Tobago","code":"TT","phone":"780","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Trinidad And Tobago\", \"cn\": \"特立尼达和多巴哥\", \"de\": \"Trinidad und Tobago\", \"es\": \"Trinidad y Tobago\", \"fa\": \"ترینیداد و توباگو\", \"fr\": \"Trinité et Tobago\", \"hr\": \"Trinidad i Tobago\", \"it\": \"Trinidad e Tobago\", \"ja\": \"トリニダード・トバゴ\", \"kr\": \"트리니다드 토바고\", \"nl\": \"Trinidad en Tobago\", \"pt\": \"Trindade e Tobago\", \"tr\": \"Trinidad Ve Tobago\", \"pt-BR\": \"Trinidad e Tobago\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Port_of_Spain\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"780","iso3":"TTO","nationality":"Trinidadian or Tobagonian","capital":"Port of Spain","tld":".tt","native":"Trinidad and Tobago","region":"Americas","currency":"TTD","currency_name":"Trinidad and Tobago dollar","currency_symbol":"$","wikiDataId":null,"lat":"11.00","lng":"-61.00","emoji":"🇹🇹","emojiU":"U+1F1F9 U+1F1F9","flag":"1","is_activated":"1"}, +{"id":"226","name":"Tunisia","code":"TN","phone":"788","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tunisia\", \"cn\": \"突尼斯\", \"de\": \"Tunesien\", \"es\": \"Túnez\", \"fa\": \"تونس\", \"fr\": \"Tunisie\", \"hr\": \"Tunis\", \"it\": \"Tunisia\", \"ja\": \"チュニジア\", \"kr\": \"튀니지\", \"nl\": \"Tunesië\", \"pt\": \"Tunísia\", \"tr\": \"Tunus\", \"pt-BR\": \"Tunísia\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa\/Tunis\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"788","iso3":"TUN","nationality":"Tunisian","capital":"Tunis","tld":".tn","native":"تونس","region":"Africa","currency":"TND","currency_name":"Tunisian dinar","currency_symbol":"ت.د","wikiDataId":null,"lat":"34.00","lng":"9.00","emoji":"🇹🇳","emojiU":"U+1F1F9 U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"227","name":"Turkey","code":"TR","phone":"792","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Turkey\", \"cn\": \"土耳其\", \"de\": \"Türkei\", \"es\": \"Turquía\", \"fa\": \"ترکیه\", \"fr\": \"Turquie\", \"hr\": \"Turska\", \"it\": \"Turchia\", \"ja\": \"トルコ\", \"kr\": \"터키\", \"nl\": \"Turkije\", \"pt\": \"Turquia\", \"tr\": \"Türkiye\", \"pt-BR\": \"Turquia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Istanbul\", \"gmtOffset\": 10800, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"792","iso3":"TUR","nationality":"Turkish","capital":"Ankara","tld":".tr","native":"Türkiye","region":"Asia","currency":"TRY","currency_name":"Turkish lira","currency_symbol":"₺","wikiDataId":null,"lat":"39.00","lng":"35.00","emoji":"🇹🇷","emojiU":"U+1F1F9 U+1F1F7","flag":"1","is_activated":"1"}, +{"id":"228","name":"Turkmenistan","code":"TM","phone":"795","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Turkmenistan\", \"cn\": \"土库曼斯坦\", \"de\": \"Turkmenistan\", \"es\": \"Turkmenistán\", \"fa\": \"ترکمنستان\", \"fr\": \"Turkménistan\", \"hr\": \"Turkmenistan\", \"it\": \"Turkmenistan\", \"ja\": \"トルクメニスタン\", \"kr\": \"투르크메니스탄\", \"nl\": \"Turkmenistan\", \"pt\": \"Turquemenistão\", \"tr\": \"Türkmenistan\", \"pt-BR\": \"Turcomenistão\"}","timezones":"[{\"tzName\": \"Turkmenistan Time\", \"zoneName\": \"Asia\/Ashgabat\", \"gmtOffset\": 18000, \"abbreviation\": \"TMT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"795","iso3":"TKM","nationality":"Turkmen","capital":"Ashgabat","tld":".tm","native":"Türkmenistan","region":"Asia","currency":"TMT","currency_name":"Turkmenistan manat","currency_symbol":"T","wikiDataId":null,"lat":"40.00","lng":"60.00","emoji":"🇹🇲","emojiU":"U+1F1F9 U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"229","name":"Turks And Caicos Islands","code":"TC","phone":"796","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Turks And Caicos Islands\", \"cn\": \"特克斯和凯科斯群岛\", \"de\": \"Turks- und Caicosinseln\", \"es\": \"Islas Turks y Caicos\", \"fa\": \"جزایر تورکس و کایکوس\", \"fr\": \"Îles Turques-et-Caïques\", \"hr\": \"Otoci Turks i Caicos\", \"it\": \"Isole Turks e Caicos\", \"ja\": \"タークス・カイコス諸島\", \"kr\": \"터크스 케이커스 제도\", \"nl\": \"Turks- en Caicoseilanden\", \"pt\": \"Ilhas Turcas e Caicos\", \"tr\": \"Turks Ve Caicos Adalari\", \"pt-BR\": \"Ilhas Turcas e Caicos\"}","timezones":"[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Grand_Turk\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]","numeric_code":"796","iso3":"TCA","nationality":"Turks and Caicos Island","capital":"Cockburn Town","tld":".tc","native":"Turks and Caicos Islands","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"21.75","lng":"-71.58","emoji":"🇹🇨","emojiU":"U+1F1F9 U+1F1E8","flag":"1","is_activated":"1"}, +{"id":"230","name":"Tuvalu","code":"TV","phone":"798","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Tuvalu\", \"cn\": \"图瓦卢\", \"de\": \"Tuvalu\", \"es\": \"Tuvalu\", \"fa\": \"تووالو\", \"fr\": \"Tuvalu\", \"hr\": \"Tuvalu\", \"it\": \"Tuvalu\", \"ja\": \"ツバル\", \"kr\": \"투발루\", \"nl\": \"Tuvalu\", \"pt\": \"Tuvalu\", \"tr\": \"Tuvalu\", \"pt-BR\": \"Tuvalu\"}","timezones":"[{\"tzName\": \"Tuvalu Time\", \"zoneName\": \"Pacific\/Funafuti\", \"gmtOffset\": 43200, \"abbreviation\": \"TVT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"798","iso3":"TUV","nationality":"Tuvaluan","capital":"Funafuti","tld":".tv","native":"Tuvalu","region":"Oceania","currency":"AUD","currency_name":"Australian dollar","currency_symbol":"$","wikiDataId":null,"lat":"-8.00","lng":"178.00","emoji":"🇹🇻","emojiU":"U+1F1F9 U+1F1FB","flag":"1","is_activated":"1"}, +{"id":"231","name":"Uganda","code":"UG","phone":"800","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Uganda\", \"cn\": \"乌干达\", \"de\": \"Uganda\", \"es\": \"Uganda\", \"fa\": \"اوگاندا\", \"fr\": \"Uganda\", \"hr\": \"Uganda\", \"it\": \"Uganda\", \"ja\": \"ウガンダ\", \"kr\": \"우간다\", \"nl\": \"Oeganda\", \"pt\": \"Uganda\", \"tr\": \"Uganda\", \"pt-BR\": \"Uganda\"}","timezones":"[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa\/Kampala\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"800","iso3":"UGA","nationality":"Ugandan","capital":"Kampala","tld":".ug","native":"Uganda","region":"Africa","currency":"UGX","currency_name":"Ugandan shilling","currency_symbol":"USh","wikiDataId":null,"lat":"1.00","lng":"32.00","emoji":"🇺🇬","emojiU":"U+1F1FA U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"232","name":"Ukraine","code":"UA","phone":"804","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Ukraine\", \"cn\": \"乌克兰\", \"de\": \"Ukraine\", \"es\": \"Ucrania\", \"fa\": \"وکراین\", \"fr\": \"Ukraine\", \"hr\": \"Ukrajina\", \"it\": \"Ucraina\", \"ja\": \"ウクライナ\", \"kr\": \"우크라이나\", \"nl\": \"Oekraïne\", \"pt\": \"Ucrânia\", \"tr\": \"Ukrayna\", \"pt-BR\": \"Ucrânia\"}","timezones":"[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Kiev\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe\/Simferopol\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Uzhgorod\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe\/Zaporozhye\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"804","iso3":"UKR","nationality":"Ukrainian","capital":"Kyiv","tld":".ua","native":"Україна","region":"Europe","currency":"UAH","currency_name":"Ukrainian hryvnia","currency_symbol":"₴","wikiDataId":null,"lat":"49.00","lng":"32.00","emoji":"🇺🇦","emojiU":"U+1F1FA U+1F1E6","flag":"1","is_activated":"1"}, +{"id":"233","name":"United Arab Emirates","code":"AE","phone":"784","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"United Arab Emirates\", \"cn\": \"阿拉伯联合酋长国\", \"de\": \"Vereinigte Arabische Emirate\", \"es\": \"Emiratos Árabes Unidos\", \"fa\": \"امارات متحده عربی\", \"fr\": \"Émirats arabes unis\", \"hr\": \"Ujedinjeni Arapski Emirati\", \"it\": \"Emirati Arabi Uniti\", \"ja\": \"アラブ首長国連邦\", \"kr\": \"아랍에미리트\", \"nl\": \"Verenigde Arabische Emiraten\", \"pt\": \"Emirados árabes Unidos\", \"tr\": \"Birleşik Arap Emirlikleri\", \"pt-BR\": \"Emirados árabes Unidos\"}","timezones":"[{\"tzName\": \"Gulf Standard Time\", \"zoneName\": \"Asia\/Dubai\", \"gmtOffset\": 14400, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC+04:00\"}]","numeric_code":"784","iso3":"ARE","nationality":"Emirati, Emirian, Emiri","capital":"Abu Dhabi","tld":".ae","native":"دولة الإمارات العربية المتحدة","region":"Asia","currency":"AED","currency_name":"United Arab Emirates dirham","currency_symbol":"إ.د","wikiDataId":null,"lat":"24.00","lng":"54.00","emoji":"🇦🇪","emojiU":"U+1F1E6 U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"234","name":"United Kingdom","code":"GB","phone":"826","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"United Kingdom\", \"cn\": \"英国\", \"de\": \"Vereinigtes Königreich\", \"es\": \"Reino Unido\", \"fa\": \"بریتانیای کبیر و ایرلند شمالی\", \"fr\": \"Royaume-Uni\", \"hr\": \"Ujedinjeno Kraljevstvo\", \"it\": \"Regno Unito\", \"ja\": \"イギリス\", \"kr\": \"영국\", \"nl\": \"Verenigd Koninkrijk\", \"pt\": \"Reino Unido\", \"tr\": \"Birleşik Krallik\", \"pt-BR\": \"Reino Unido\"}","timezones":"[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe\/London\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]","numeric_code":"826","iso3":"GBR","nationality":"British, UK","capital":"London","tld":".uk","native":"United Kingdom","region":"Europe","currency":"GBP","currency_name":"British pound","currency_symbol":"£","wikiDataId":null,"lat":"54.00","lng":"-2.00","emoji":"🇬🇧","emojiU":"U+1F1EC U+1F1E7","flag":"1","is_activated":"1"}, +{"id":"235","name":"United States","code":"US","phone":"840","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"United States\", \"cn\": \"美国\", \"de\": \"Vereinigte Staaten von Amerika\", \"es\": \"Estados Unidos\", \"fa\": \"ایالات متحده آمریکا\", \"fr\": \"États-Unis\", \"hr\": \"Sjedinjene Američke Države\", \"it\": \"Stati Uniti D America\", \"ja\": \"アメリカ合衆国\", \"kr\": \"미국\", \"nl\": \"Verenigde Staten\", \"pt\": \"Estados Unidos\", \"tr\": \"Amerika\", \"pt-BR\": \"Estados Unidos\"}","timezones":"[{\"tzName\": \"Hawaii–Aleutian Standard Time\", \"zoneName\": \"America\/Adak\", \"gmtOffset\": -36000, \"abbreviation\": \"HST\", \"gmtOffsetName\": \"UTC-10:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Anchorage\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Boise\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Chicago\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Denver\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Detroit\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Indianapolis\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Knox\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Marengo\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Petersburg\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Tell_City\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Vevay\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Vincennes\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Indiana\/Winamac\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Juneau\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Kentucky\/Louisville\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/Kentucky\/Monticello\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America\/Los_Angeles\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/Menominee\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Metlakatla\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America\/New_York\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Nome\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/North_Dakota\/Beulah\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/North_Dakota\/Center\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America\/North_Dakota\/New_Salem\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America\/Phoenix\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Sitka\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America\/Yakutat\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Hawaii–Aleutian Standard Time\", \"zoneName\": \"Pacific\/Honolulu\", \"gmtOffset\": -36000, \"abbreviation\": \"HST\", \"gmtOffsetName\": \"UTC-10:00\"}]","numeric_code":"840","iso3":"USA","nationality":"American","capital":"Washington","tld":".us","native":"United States","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"38.00","lng":"-97.00","emoji":"🇺🇸","emojiU":"U+1F1FA U+1F1F8","flag":"1","is_activated":"1"}, +{"id":"236","name":"United States Minor Outlying Islands","code":"UM","phone":"581","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"United States Minor Outlying Islands\", \"cn\": \"美国本土外小岛屿\", \"de\": \"Kleinere Inselbesitzungen der Vereinigten Staaten\", \"es\": \"Islas Ultramarinas Menores de Estados Unidos\", \"fa\": \"جزایر کوچک حاشیه‌ای ایالات متحده آمریکا\", \"fr\": \"Îles mineures éloignées des États-Unis\", \"hr\": \"Mali udaljeni otoci SAD-a\", \"it\": \"Isole minori esterne degli Stati Uniti d America\", \"ja\": \"合衆国領有小離島\", \"kr\": \"미국령 군소 제도\", \"nl\": \"Kleine afgelegen eilanden van de Verenigde Staten\", \"pt\": \"Ilhas Menores Distantes dos Estados Unidos\", \"tr\": \"Abd Küçük Harici Adalari\", \"pt-BR\": \"Ilhas Menores Distantes dos Estados Unidos\"}","timezones":"[{\"tzName\": \"Samoa Standard Time\", \"zoneName\": \"Pacific\/Midway\", \"gmtOffset\": -39600, \"abbreviation\": \"SST\", \"gmtOffsetName\": \"UTC-11:00\"}, {\"tzName\": \"Wake Island Time\", \"zoneName\": \"Pacific\/Wake\", \"gmtOffset\": 43200, \"abbreviation\": \"WAKT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"581","iso3":"UMI","nationality":"American","capital":"","tld":".us","native":"United States Minor Outlying Islands","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"0.00","lng":"0.00","emoji":"🇺🇲","emojiU":"U+1F1FA U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"237","name":"Uruguay","code":"UY","phone":"858","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Uruguay\", \"cn\": \"乌拉圭\", \"de\": \"Uruguay\", \"es\": \"Uruguay\", \"fa\": \"اروگوئه\", \"fr\": \"Uruguay\", \"hr\": \"Urugvaj\", \"it\": \"Uruguay\", \"ja\": \"ウルグアイ\", \"kr\": \"우루과이\", \"nl\": \"Uruguay\", \"pt\": \"Uruguai\", \"tr\": \"Uruguay\", \"pt-BR\": \"Uruguai\"}","timezones":"[{\"tzName\": \"Uruguay Standard Time\", \"zoneName\": \"America\/Montevideo\", \"gmtOffset\": -10800, \"abbreviation\": \"UYT\", \"gmtOffsetName\": \"UTC-03:00\"}]","numeric_code":"858","iso3":"URY","nationality":"Uruguayan","capital":"Montevideo","tld":".uy","native":"Uruguay","region":"Americas","currency":"UYU","currency_name":"Uruguayan peso","currency_symbol":"$","wikiDataId":null,"lat":"-33.00","lng":"-56.00","emoji":"🇺🇾","emojiU":"U+1F1FA U+1F1FE","flag":"1","is_activated":"1"}, +{"id":"238","name":"Uzbekistan","code":"UZ","phone":"860","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Uzbekistan\", \"cn\": \"乌兹别克斯坦\", \"de\": \"Usbekistan\", \"es\": \"Uzbekistán\", \"fa\": \"ازبکستان\", \"fr\": \"Ouzbékistan\", \"hr\": \"Uzbekistan\", \"it\": \"Uzbekistan\", \"ja\": \"ウズベキスタン\", \"kr\": \"우즈베키스탄\", \"nl\": \"Oezbekistan\", \"pt\": \"Usbequistão\", \"tr\": \"Özbekistan\", \"pt-BR\": \"Uzbequistão\"}","timezones":"[{\"tzName\": \"Uzbekistan Time\", \"zoneName\": \"Asia\/Samarkand\", \"gmtOffset\": 18000, \"abbreviation\": \"UZT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Uzbekistan Time\", \"zoneName\": \"Asia\/Tashkent\", \"gmtOffset\": 18000, \"abbreviation\": \"UZT\", \"gmtOffsetName\": \"UTC+05:00\"}]","numeric_code":"860","iso3":"UZB","nationality":"Uzbekistani, Uzbek","capital":"Tashkent","tld":".uz","native":"O‘zbekiston","region":"Asia","currency":"UZS","currency_name":"Uzbekistani soʻm","currency_symbol":"лв","wikiDataId":null,"lat":"41.00","lng":"64.00","emoji":"🇺🇿","emojiU":"U+1F1FA U+1F1FF","flag":"1","is_activated":"1"}, +{"id":"239","name":"Vanuatu","code":"VU","phone":"548","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Vanuatu\", \"cn\": \"瓦努阿图\", \"de\": \"Vanuatu\", \"es\": \"Vanuatu\", \"fa\": \"وانواتو\", \"fr\": \"Vanuatu\", \"hr\": \"Vanuatu\", \"it\": \"Vanuatu\", \"ja\": \"バヌアツ\", \"kr\": \"바누아투\", \"nl\": \"Vanuatu\", \"pt\": \"Vanuatu\", \"tr\": \"Vanuatu\", \"pt-BR\": \"Vanuatu\"}","timezones":"[{\"tzName\": \"Vanuatu Time\", \"zoneName\": \"Pacific\/Efate\", \"gmtOffset\": 39600, \"abbreviation\": \"VUT\", \"gmtOffsetName\": \"UTC+11:00\"}]","numeric_code":"548","iso3":"VUT","nationality":"Ni-Vanuatu, Vanuatuan","capital":"Port Vila","tld":".vu","native":"Vanuatu","region":"Oceania","currency":"VUV","currency_name":"Vanuatu vatu","currency_symbol":"VT","wikiDataId":null,"lat":"-16.00","lng":"167.00","emoji":"🇻🇺","emojiU":"U+1F1FB U+1F1FA","flag":"1","is_activated":"1"}, +{"id":"240","name":"Venezuela","code":"VE","phone":"862","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Venezuela\", \"cn\": \"委内瑞拉\", \"de\": \"Venezuela\", \"es\": \"Venezuela\", \"fa\": \"ونزوئلا\", \"fr\": \"Venezuela\", \"hr\": \"Venezuela\", \"it\": \"Venezuela\", \"ja\": \"ベネズエラ・ボリバル共和国\", \"kr\": \"베네수엘라\", \"nl\": \"Venezuela\", \"pt\": \"Venezuela\", \"tr\": \"Venezuela\", \"pt-BR\": \"Venezuela\"}","timezones":"[{\"tzName\": \"Venezuelan Standard Time\", \"zoneName\": \"America\/Caracas\", \"gmtOffset\": -14400, \"abbreviation\": \"VET\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"862","iso3":"VEN","nationality":"Venezuelan","capital":"Caracas","tld":".ve","native":"Venezuela","region":"Americas","currency":"VES","currency_name":"Bolívar","currency_symbol":"Bs","wikiDataId":null,"lat":"8.00","lng":"-66.00","emoji":"🇻🇪","emojiU":"U+1F1FB U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"241","name":"Vietnam","code":"VN","phone":"704","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Vietnam\", \"cn\": \"越南\", \"de\": \"Vietnam\", \"es\": \"Vietnam\", \"fa\": \"ویتنام\", \"fr\": \"Viêt Nam\", \"hr\": \"Vijetnam\", \"it\": \"Vietnam\", \"ja\": \"ベトナム\", \"kr\": \"베트남\", \"nl\": \"Vietnam\", \"pt\": \"Vietname\", \"tr\": \"Vietnam\", \"pt-BR\": \"Vietnã\"}","timezones":"[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia\/Ho_Chi_Minh\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]","numeric_code":"704","iso3":"VNM","nationality":"Vietnamese","capital":"Hanoi","tld":".vn","native":"Việt Nam","region":"Asia","currency":"VND","currency_name":"Vietnamese đồng","currency_symbol":"₫","wikiDataId":null,"lat":"16.17","lng":"107.83","emoji":"🇻🇳","emojiU":"U+1F1FB U+1F1F3","flag":"1","is_activated":"1"}, +{"id":"242","name":"Virgin Islands (British)","code":"VG","phone":"092","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Virgin Islands (British)\", \"cn\": \"圣文森特和格林纳丁斯\", \"de\": \"Britische Jungferninseln\", \"es\": \"Islas Vírgenes del Reino Unido\", \"fa\": \"جزایر ویرجین بریتانیا\", \"fr\": \"Îles Vierges britanniques\", \"hr\": \"Britanski Djevičanski Otoci\", \"it\": \"Isole Vergini Britanniche\", \"ja\": \"イギリス領ヴァージン諸島\", \"kr\": \"영국령 버진아일랜드\", \"nl\": \"Britse Maagdeneilanden\", \"pt\": \"Ilhas Virgens Britânicas\", \"tr\": \"Britanya Virjin Adalari\", \"pt-BR\": \"Ilhas Virgens Britânicas\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/Tortola\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"092","iso3":"VGB","nationality":"British Virgin Island","capital":"Road Town","tld":".vg","native":"British Virgin Islands","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"18.43","lng":"-64.62","emoji":"🇻🇬","emojiU":"U+1F1FB U+1F1EC","flag":"1","is_activated":"1"}, +{"id":"243","name":"Virgin Islands (US)","code":"VI","phone":"850","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Virgin Islands (US)\", \"cn\": \"维尔京群岛(美国)\", \"de\": \"Amerikanische Jungferninseln\", \"es\": \"Islas Vírgenes de los Estados Unidos\", \"fa\": \"جزایر ویرجین آمریکا\", \"fr\": \"Îles Vierges des États-Unis\", \"it\": \"Isole Vergini americane\", \"ja\": \"アメリカ領ヴァージン諸島\", \"kr\": \"미국령 버진아일랜드\", \"nl\": \"Verenigde Staten Maagdeneilanden\", \"pt\": \"Ilhas Virgens Americanas\", \"tr\": \"Abd Virjin Adalari\", \"pt-BR\": \"Ilhas Virgens Americanas\"}","timezones":"[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America\/St_Thomas\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]","numeric_code":"850","iso3":"VIR","nationality":"U.S. Virgin Island","capital":"Charlotte Amalie","tld":".vi","native":"United States Virgin Islands","region":"Americas","currency":"USD","currency_name":"United States dollar","currency_symbol":"$","wikiDataId":null,"lat":"18.34","lng":"-64.93","emoji":"🇻🇮","emojiU":"U+1F1FB U+1F1EE","flag":"1","is_activated":"1"}, +{"id":"244","name":"Wallis And Futuna Islands","code":"WF","phone":"876","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Wallis And Futuna Islands\", \"cn\": \"瓦利斯群岛和富图纳群岛\", \"de\": \"Wallis und Futuna\", \"es\": \"Wallis y Futuna\", \"fa\": \"والیس و فوتونا\", \"fr\": \"Wallis-et-Futuna\", \"hr\": \"Wallis i Fortuna\", \"it\": \"Wallis e Futuna\", \"ja\": \"ウォリス・フツナ\", \"kr\": \"왈리스 푸투나\", \"nl\": \"Wallis en Futuna\", \"pt\": \"Wallis e Futuna\", \"tr\": \"Wallis Ve Futuna\", \"pt-BR\": \"Wallis e Futuna\"}","timezones":"[{\"tzName\": \"Wallis & Futuna Time\", \"zoneName\": \"Pacific\/Wallis\", \"gmtOffset\": 43200, \"abbreviation\": \"WFT\", \"gmtOffsetName\": \"UTC+12:00\"}]","numeric_code":"876","iso3":"WLF","nationality":"Wallis and Futuna, Wallisian or Futunan","capital":"Mata Utu","tld":".wf","native":"Wallis et Futuna","region":"Oceania","currency":"XPF","currency_name":"CFP franc","currency_symbol":"₣","wikiDataId":null,"lat":"-13.30","lng":"-176.20","emoji":"🇼🇫","emojiU":"U+1F1FC U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"246","name":"Yemen","code":"YE","phone":"887","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Yemen\", \"cn\": \"也门\", \"de\": \"Jemen\", \"es\": \"Yemen\", \"fa\": \"یمن\", \"fr\": \"Yémen\", \"hr\": \"Jemen\", \"it\": \"Yemen\", \"ja\": \"イエメン\", \"kr\": \"예멘\", \"nl\": \"Jemen\", \"pt\": \"Iémen\", \"tr\": \"Yemen\", \"pt-BR\": \"Iêmen\"}","timezones":"[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia\/Aden\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]","numeric_code":"887","iso3":"YEM","nationality":"Yemeni","capital":"Sanaa","tld":".ye","native":"اليَمَن","region":"Asia","currency":"YER","currency_name":"Yemeni rial","currency_symbol":"﷼","wikiDataId":null,"lat":"15.00","lng":"48.00","emoji":"🇾🇪","emojiU":"U+1F1FE U+1F1EA","flag":"1","is_activated":"1"}, +{"id":"247","name":"Zambia","code":"ZM","phone":"894","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Zambia\", \"cn\": \"赞比亚\", \"de\": \"Sambia\", \"es\": \"Zambia\", \"fa\": \"زامبیا\", \"fr\": \"Zambie\", \"hr\": \"Zambija\", \"it\": \"Zambia\", \"ja\": \"ザンビア\", \"kr\": \"잠비아\", \"nl\": \"Zambia\", \"pt\": \"Zâmbia\", \"tr\": \"Zambiya\", \"pt-BR\": \"Zâmbia\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Lusaka\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"894","iso3":"ZMB","nationality":"Zambian","capital":"Lusaka","tld":".zm","native":"Zambia","region":"Africa","currency":"ZMW","currency_name":"Zambian kwacha","currency_symbol":"ZK","wikiDataId":null,"lat":"-15.00","lng":"30.00","emoji":"🇿🇲","emojiU":"U+1F1FF U+1F1F2","flag":"1","is_activated":"1"}, +{"id":"248","name":"Zimbabwe","code":"ZW","phone":"716","created_at":"2020-06-17 10:37:05","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Zimbabwe\", \"cn\": \"津巴布韦\", \"de\": \"Simbabwe\", \"es\": \"Zimbabue\", \"fa\": \"زیمباوه\", \"fr\": \"Zimbabwe\", \"hr\": \"Zimbabve\", \"it\": \"Zimbabwe\", \"ja\": \"ジンバブエ\", \"kr\": \"짐바브웨\", \"nl\": \"Zimbabwe\", \"pt\": \"Zimbabué\", \"tr\": \"Zimbabve\", \"pt-BR\": \"Zimbabwe\"}","timezones":"[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa\/Harare\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]","numeric_code":"716","iso3":"ZWE","nationality":"Zimbabwean","capital":"Harare","tld":".zw","native":"Zimbabwe","region":"Africa","currency":"ZWL","currency_name":"Zimbabwe Dollar","currency_symbol":"$","wikiDataId":null,"lat":"-20.00","lng":"30.00","emoji":"🇿🇼","emojiU":"U+1F1FF U+1F1FC","flag":"1","is_activated":"1"}, +{"id":"249","name":"Afghanistan","code":"AF","phone":"004","created_at":"2024-01-21 11:39:22","updated_at":"2024-01-21 12:54:28","translations":"{\"ar\": \"Afghanistan\", \"cn\": \"阿富汗\", \"de\": \"Afghanistan\", \"es\": \"Afganistán\", \"fa\": \"افغانستان\", \"fr\": \"Afghanistan\", \"hr\": \"Afganistan\", \"it\": \"Afghanistan\", \"ja\": \"アフガニスタン\", \"kr\": \"아프가니스탄\", \"nl\": \"Afghanistan\", \"pt\": \"Afeganistão\", \"tr\": \"Afganistan\", \"pt-BR\": \"Afeganistão\"}","timezones":"[{\"tzName\": \"Afghanistan Time\", \"zoneName\": \"Asia\/Kabul\", \"gmtOffset\": 16200, \"abbreviation\": \"AFT\", \"gmtOffsetName\": \"UTC+04:30\"}]","numeric_code":"004","iso3":"AFG","nationality":"Afghan","capital":"Kabul","tld":".af","native":"افغانستان","region":"Asia","currency":"AFN","currency_name":"Afghan afghani","currency_symbol":"؋","wikiDataId":null,"lat":"33.00","lng":"65.00","emoji":"🇦🇫","emojiU":"U+1F1E6 U+1F1EB","flag":"1","is_activated":"1"}, +{"id":"250","name":"Kosovo","code":"XK","phone":"926","created_at":"2024-01-21 11:39:24","updated_at":"2024-01-21 12:54:30","translations":"{\"ar\": \"Kosovo\", \"cn\": \"科索沃\", \"kr\": \"코소보\", \"tr\": \"Kosova\"}","timezones":"[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe\/Belgrade\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]","numeric_code":"926","iso3":"XKX","nationality":"Kosovar, Kosovan","capital":"Pristina","tld":".xk","native":"Republika e Kosovës","region":"Europe","currency":"EUR","currency_name":"Euro","currency_symbol":"€","wikiDataId":null,"lat":"42.56","lng":"20.34","emoji":"🇽🇰","emojiU":"U+1F1FD U+1F1F0","flag":"1","is_activated":"1"} +] diff --git a/database/data/countries.sql b/database/data/countries.sql deleted file mode 100644 index ecd9c0d..0000000 --- a/database/data/countries.sql +++ /dev/null @@ -1,255 +0,0 @@ - -INSERT INTO `countries` (`id`, `name`, `code`, `phone`, `created_at`, `updated_at`, `translations`, `timezones`, `numeric_code`, `iso3`, `nationality`, `capital`, `tld`, `native`, `region`, `currency`, `currency_name`, `currency_symbol`, `wikiDataId`, `lat`, `lng`, `emoji`, `emojiU`, `flag`, `is_activated`) VALUES -(1, 'Aland Islands', 'AX', '248', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Aland Islands\", \"cn\": \"奥兰群岛\", \"de\": \"Åland\", \"es\": \"Alandia\", \"fa\": \"جزایر الند\", \"fr\": \"Åland\", \"hr\": \"Ålandski otoci\", \"it\": \"Isole Aland\", \"ja\": \"オーランド諸島\", \"kr\": \"올란드 제도\", \"nl\": \"Ålandeilanden\", \"pt\": \"Ilhas de Aland\", \"tr\": \"Åland Adalari\", \"pt-BR\": \"Ilhas de Aland\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Mariehamn\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '248', 'ALA', 'Aland Island', 'Mariehamn', '.ax', 'Åland', 'Europe', 'EUR', 'Euro', '€', NULL, 60.12, 19.90, '🇦🇽', 'U+1F1E6 U+1F1FD', 1, 1), -(2, 'Albania', 'AL', '008', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Albania\", \"cn\": \"阿尔巴尼亚\", \"de\": \"Albanien\", \"es\": \"Albania\", \"fa\": \"آلبانی\", \"fr\": \"Albanie\", \"hr\": \"Albanija\", \"it\": \"Albania\", \"ja\": \"アルバニア\", \"kr\": \"알바니아\", \"nl\": \"Albanië\", \"pt\": \"Albânia\", \"tr\": \"Arnavutluk\", \"pt-BR\": \"Albânia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Tirane\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '008', 'ALB', 'Albanian ', 'Tirana', '.al', 'Shqipëria', 'Europe', 'ALL', 'Albanian lek', 'Lek', NULL, 41.00, 20.00, '🇦🇱', 'U+1F1E6 U+1F1F1', 1, 1), -(3, 'Algeria', 'DZ', '012', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Algeria\", \"cn\": \"阿尔及利亚\", \"de\": \"Algerien\", \"es\": \"Argelia\", \"fa\": \"الجزایر\", \"fr\": \"Algérie\", \"hr\": \"Alžir\", \"it\": \"Algeria\", \"ja\": \"アルジェリア\", \"kr\": \"알제리\", \"nl\": \"Algerije\", \"pt\": \"Argélia\", \"tr\": \"Cezayir\", \"pt-BR\": \"Argélia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa/Algiers\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '012', 'DZA', 'Algerian', 'Algiers', '.dz', 'الجزائر', 'Africa', 'DZD', 'Algerian dinar', 'دج', NULL, 28.00, 3.00, '🇩🇿', 'U+1F1E9 U+1F1FF', 1, 1), -(4, 'American Samoa', 'AS', '016', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"American Samoa\", \"cn\": \"美属萨摩亚\", \"de\": \"Amerikanisch-Samoa\", \"es\": \"Samoa Americana\", \"fa\": \"ساموآی آمریکا\", \"fr\": \"Samoa américaines\", \"hr\": \"Američka Samoa\", \"it\": \"Samoa Americane\", \"ja\": \"アメリカ領サモア\", \"kr\": \"아메리칸사모아\", \"nl\": \"Amerikaans Samoa\", \"pt\": \"Samoa Americana\", \"tr\": \"Amerikan Samoasi\", \"pt-BR\": \"Samoa Americana\"}', '[{\"tzName\": \"Samoa Standard Time\", \"zoneName\": \"Pacific/Pago_Pago\", \"gmtOffset\": -39600, \"abbreviation\": \"SST\", \"gmtOffsetName\": \"UTC-11:00\"}]', '016', 'ASM', 'American Samoan', 'Pago Pago', '.as', 'American Samoa', 'Oceania', 'USD', 'US Dollar', '$', NULL, -14.33, -170.00, '🇦🇸', 'U+1F1E6 U+1F1F8', 1, 1), -(5, 'Andorra', 'AD', '020', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Andorra\", \"cn\": \"安道尔\", \"de\": \"Andorra\", \"es\": \"Andorra\", \"fa\": \"آندورا\", \"fr\": \"Andorre\", \"hr\": \"Andora\", \"it\": \"Andorra\", \"ja\": \"アンドラ\", \"kr\": \"안도라\", \"nl\": \"Andorra\", \"pt\": \"Andorra\", \"tr\": \"Andorra\", \"pt-BR\": \"Andorra\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Andorra\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '020', 'AND', 'Andorran', 'Andorra la Vella', '.ad', 'Andorra', 'Europe', 'EUR', 'Euro', '€', NULL, 42.50, 1.50, '🇦🇩', 'U+1F1E6 U+1F1E9', 1, 1), -(6, 'Angola', 'AO', '024', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Angola\", \"cn\": \"安哥拉\", \"de\": \"Angola\", \"es\": \"Angola\", \"fa\": \"آنگولا\", \"fr\": \"Angola\", \"hr\": \"Angola\", \"it\": \"Angola\", \"ja\": \"アンゴラ\", \"kr\": \"앙골라\", \"nl\": \"Angola\", \"pt\": \"Angola\", \"tr\": \"Angola\", \"pt-BR\": \"Angola\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Luanda\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '024', 'AGO', 'Angolan', 'Luanda', '.ao', 'Angola', 'Africa', 'AOA', 'Angolan kwanza', 'Kz', NULL, -12.50, 18.50, '🇦🇴', 'U+1F1E6 U+1F1F4', 1, 1), -(7, 'Anguilla', 'AI', '660', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Anguilla\", \"cn\": \"安圭拉\", \"de\": \"Anguilla\", \"es\": \"Anguilla\", \"fa\": \"آنگویلا\", \"fr\": \"Anguilla\", \"hr\": \"Angvila\", \"it\": \"Anguilla\", \"ja\": \"アンギラ\", \"kr\": \"앵귈라\", \"nl\": \"Anguilla\", \"pt\": \"Anguila\", \"tr\": \"Anguilla\", \"pt-BR\": \"Anguila\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '660', 'AIA', 'Anguillan', 'The Valley', '.ai', 'Anguilla', 'Americas', 'XCD', 'East Caribbean dollar', '$', NULL, 18.25, -63.17, '🇦🇮', 'U+1F1E6 U+1F1EE', 1, 1), -(8, 'Antarctica', 'AQ', '010', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Antarctica\", \"cn\": \"南极洲\", \"de\": \"Antarktika\", \"es\": \"Antártida\", \"fa\": \"جنوبگان\", \"fr\": \"Antarctique\", \"hr\": \"Antarktika\", \"it\": \"Antartide\", \"ja\": \"南極大陸\", \"kr\": \"남극\", \"nl\": \"Antarctica\", \"pt\": \"Antárctida\", \"tr\": \"Antartika\", \"pt-BR\": \"Antártida\"}', '[{\"tzName\": \"Australian Western Standard Time\", \"zoneName\": \"Antarctica/Casey\", \"gmtOffset\": 39600, \"abbreviation\": \"AWST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Davis Time\", \"zoneName\": \"Antarctica/Davis\", \"gmtOffset\": 25200, \"abbreviation\": \"DAVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Dumont dUrville Time\", \"zoneName\": \"Antarctica/DumontDUrville\", \"gmtOffset\": 36000, \"abbreviation\": \"DDUT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Mawson Station Time\", \"zoneName\": \"Antarctica/Mawson\", \"gmtOffset\": 18000, \"abbreviation\": \"MAWT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"New Zealand Daylight Time\", \"zoneName\": \"Antarctica/McMurdo\", \"gmtOffset\": 46800, \"abbreviation\": \"NZDT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Chile Summer Time\", \"zoneName\": \"Antarctica/Palmer\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Rothera Research Station Time\", \"zoneName\": \"Antarctica/Rothera\", \"gmtOffset\": -10800, \"abbreviation\": \"ROTT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Showa Station Time\", \"zoneName\": \"Antarctica/Syowa\", \"gmtOffset\": 10800, \"abbreviation\": \"SYOT\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Antarctica/Troll\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Vostok Station Time\", \"zoneName\": \"Antarctica/Vostok\", \"gmtOffset\": 21600, \"abbreviation\": \"VOST\", \"gmtOffsetName\": \"UTC+06:00\"}]', '010', 'ATA', 'Antarctic', '', '.aq', 'Antarctica', 'Polar', 'AAD', 'Antarctican dollar', '$', NULL, -74.65, 4.48, '🇦🇶', 'U+1F1E6 U+1F1F6', 1, 1), -(9, 'Antigua And Barbuda', 'AG', '028', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Antigua And Barbuda\", \"cn\": \"安提瓜和巴布达\", \"de\": \"Antigua und Barbuda\", \"es\": \"Antigua y Barbuda\", \"fa\": \"آنتیگوا و باربودا\", \"fr\": \"Antigua-et-Barbuda\", \"hr\": \"Antigva i Barbuda\", \"it\": \"Antigua e Barbuda\", \"ja\": \"アンティグア・バーブーダ\", \"kr\": \"앤티가 바부다\", \"nl\": \"Antigua en Barbuda\", \"pt\": \"Antígua e Barbuda\", \"tr\": \"Antigua Ve Barbuda\", \"pt-BR\": \"Antígua e Barbuda\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Antigua\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '028', 'ATG', 'Antiguan or Barbudan', 'St. Johns', '.ag', 'Antigua and Barbuda', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 17.05, -61.80, '🇦🇬', 'U+1F1E6 U+1F1EC', 1, 1), -(10, 'Argentina', 'AR', '032', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Argentina\", \"cn\": \"阿根廷\", \"de\": \"Argentinien\", \"es\": \"Argentina\", \"fa\": \"آرژانتین\", \"fr\": \"Argentine\", \"hr\": \"Argentina\", \"it\": \"Argentina\", \"ja\": \"アルゼンチン\", \"kr\": \"아르헨티나\", \"nl\": \"Argentinië\", \"pt\": \"Argentina\", \"tr\": \"Arjantin\", \"pt-BR\": \"Argentina\"}', '[{\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Buenos_Aires\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Catamarca\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Cordoba\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Jujuy\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/La_Rioja\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Mendoza\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Rio_Gallegos\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Salta\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/San_Juan\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/San_Luis\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Tucuman\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Argentina Time\", \"zoneName\": \"America/Argentina/Ushuaia\", \"gmtOffset\": -10800, \"abbreviation\": \"ART\", \"gmtOffsetName\": \"UTC-03:00\"}]', '032', 'ARG', 'Argentine', 'Buenos Aires', '.ar', 'Argentina', 'Americas', 'ARS', 'Argentine peso', '$', NULL, -34.00, -64.00, '🇦🇷', 'U+1F1E6 U+1F1F7', 1, 1), -(11, 'Armenia', 'AM', '051', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Armenia\", \"cn\": \"亚美尼亚\", \"de\": \"Armenien\", \"es\": \"Armenia\", \"fa\": \"ارمنستان\", \"fr\": \"Arménie\", \"hr\": \"Armenija\", \"it\": \"Armenia\", \"ja\": \"アルメニア\", \"kr\": \"아르메니아\", \"nl\": \"Armenië\", \"pt\": \"Arménia\", \"tr\": \"Ermenistan\", \"pt-BR\": \"Armênia\"}', '[{\"tzName\": \"Armenia Time\", \"zoneName\": \"Asia/Yerevan\", \"gmtOffset\": 14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC+04:00\"}]', '051', 'ARM', 'Armenian', 'Yerevan', '.am', 'Հայաստան', 'Asia', 'AMD', 'Armenian dram', '֏', NULL, 40.00, 45.00, '🇦🇲', 'U+1F1E6 U+1F1F2', 1, 1), -(12, 'Aruba', 'AW', '533', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Aruba\", \"cn\": \"阿鲁巴\", \"de\": \"Aruba\", \"es\": \"Aruba\", \"fa\": \"آروبا\", \"fr\": \"Aruba\", \"hr\": \"Aruba\", \"it\": \"Aruba\", \"ja\": \"アルバ\", \"kr\": \"아루바\", \"nl\": \"Aruba\", \"pt\": \"Aruba\", \"tr\": \"Aruba\", \"pt-BR\": \"Aruba\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Aruba\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '533', 'ABW', 'Aruban', 'Oranjestad', '.aw', 'Aruba', 'Americas', 'AWG', 'Aruban florin', 'ƒ', NULL, 12.50, -69.97, '🇦🇼', 'U+1F1E6 U+1F1FC', 1, 1), -(13, 'Australia', 'AU', '036', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Australia\", \"cn\": \"澳大利亚\", \"de\": \"Australien\", \"es\": \"Australia\", \"fa\": \"استرالیا\", \"fr\": \"Australie\", \"hr\": \"Australija\", \"it\": \"Australia\", \"ja\": \"オーストラリア\", \"kr\": \"호주\", \"nl\": \"Australië\", \"pt\": \"Austrália\", \"tr\": \"Avustralya\", \"pt-BR\": \"Austrália\"}', '[{\"tzName\": \"Macquarie Island Station Time\", \"zoneName\": \"Antarctica/Macquarie\", \"gmtOffset\": 39600, \"abbreviation\": \"MIST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Central Daylight Saving Time\", \"zoneName\": \"Australia/Adelaide\", \"gmtOffset\": 37800, \"abbreviation\": \"ACDT\", \"gmtOffsetName\": \"UTC+10:30\"}, {\"tzName\": \"Australian Eastern Standard Time\", \"zoneName\": \"Australia/Brisbane\", \"gmtOffset\": 36000, \"abbreviation\": \"AEST\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Australian Central Daylight Saving Time\", \"zoneName\": \"Australia/Broken_Hill\", \"gmtOffset\": 37800, \"abbreviation\": \"ACDT\", \"gmtOffsetName\": \"UTC+10:30\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia/Currie\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Central Standard Time\", \"zoneName\": \"Australia/Darwin\", \"gmtOffset\": 34200, \"abbreviation\": \"ACST\", \"gmtOffsetName\": \"UTC+09:30\"}, {\"tzName\": \"Australian Central Western Standard Time (Unofficial)\", \"zoneName\": \"Australia/Eucla\", \"gmtOffset\": 31500, \"abbreviation\": \"ACWST\", \"gmtOffsetName\": \"UTC+08:45\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia/Hobart\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Eastern Standard Time\", \"zoneName\": \"Australia/Lindeman\", \"gmtOffset\": 36000, \"abbreviation\": \"AEST\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Lord Howe Summer Time\", \"zoneName\": \"Australia/Lord_Howe\", \"gmtOffset\": 39600, \"abbreviation\": \"LHST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia/Melbourne\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Australian Western Standard Time\", \"zoneName\": \"Australia/Perth\", \"gmtOffset\": 28800, \"abbreviation\": \"AWST\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Australian Eastern Daylight Saving Time\", \"zoneName\": \"Australia/Sydney\", \"gmtOffset\": 39600, \"abbreviation\": \"AEDT\", \"gmtOffsetName\": \"UTC+11:00\"}]', '036', 'AUS', 'Australian', 'Canberra', '.au', 'Australia', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -27.00, 133.00, '🇦🇺', 'U+1F1E6 U+1F1FA', 1, 1), -(14, 'Austria', 'AT', '040', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Austria\", \"cn\": \"奥地利\", \"de\": \"Österreich\", \"es\": \"Austria\", \"fa\": \"اتریش\", \"fr\": \"Autriche\", \"hr\": \"Austrija\", \"it\": \"Austria\", \"ja\": \"オーストリア\", \"kr\": \"오스트리아\", \"nl\": \"Oostenrijk\", \"pt\": \"áustria\", \"tr\": \"Avusturya\", \"pt-BR\": \"áustria\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Vienna\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '040', 'AUT', 'Austrian', 'Vienna', '.at', 'Österreich', 'Europe', 'EUR', 'Euro', '€', NULL, 47.33, 13.33, '🇦🇹', 'U+1F1E6 U+1F1F9', 1, 1), -(15, 'Azerbaijan', 'AZ', '031', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Azerbaijan\", \"cn\": \"阿塞拜疆\", \"de\": \"Aserbaidschan\", \"es\": \"Azerbaiyán\", \"fa\": \"آذربایجان\", \"fr\": \"Azerbaïdjan\", \"hr\": \"Azerbajdžan\", \"it\": \"Azerbaijan\", \"ja\": \"アゼルバイジャン\", \"kr\": \"아제르바이잔\", \"nl\": \"Azerbeidzjan\", \"pt\": \"Azerbaijão\", \"tr\": \"Azerbaycan\", \"pt-BR\": \"Azerbaijão\"}', '[{\"tzName\": \"Azerbaijan Time\", \"zoneName\": \"Asia/Baku\", \"gmtOffset\": 14400, \"abbreviation\": \"AZT\", \"gmtOffsetName\": \"UTC+04:00\"}]', '031', 'AZE', 'Azerbaijani, Azeri', 'Baku', '.az', 'Azərbaycan', 'Asia', 'AZN', 'Azerbaijani manat', 'm', NULL, 40.50, 47.50, '🇦🇿', 'U+1F1E6 U+1F1FF', 1, 1), -(16, 'The Bahamas', 'BS', '044', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"The Bahamas\", \"cn\": \"巴哈马\", \"de\": \"Bahamas\", \"es\": \"Bahamas\", \"fa\": \"باهاما\", \"fr\": \"Bahamas\", \"hr\": \"Bahami\", \"it\": \"Bahamas\", \"ja\": \"バハマ\", \"kr\": \"바하마\", \"nl\": \"Bahama’s\", \"pt\": \"Baamas\", \"tr\": \"Bahamalar\", \"pt-BR\": \"Bahamas\"}', '[{\"tzName\": \"Eastern Standard Time (North America)\", \"zoneName\": \"America/Nassau\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '044', 'BHS', 'Bahamian', 'Nassau', '.bs', 'Bahamas', 'Americas', 'BSD', 'Bahamian dollar', 'B$', NULL, 24.25, -76.00, '🇧🇸', 'U+1F1E7 U+1F1F8', 1, 1), -(17, 'Bahrain', 'BH', '048', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bahrain\", \"cn\": \"巴林\", \"de\": \"Bahrain\", \"es\": \"Bahrein\", \"fa\": \"بحرین\", \"fr\": \"Bahreïn\", \"hr\": \"Bahrein\", \"it\": \"Bahrein\", \"ja\": \"バーレーン\", \"kr\": \"바레인\", \"nl\": \"Bahrein\", \"pt\": \"Barém\", \"tr\": \"Bahreyn\", \"pt-BR\": \"Bahrein\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Bahrain\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '048', 'BHR', 'Bahraini', 'Manama', '.bh', '‏البحرين', 'Asia', 'BHD', 'Bahraini dinar', '.د.ب', NULL, 26.00, 50.55, '🇧🇭', 'U+1F1E7 U+1F1ED', 1, 1), -(18, 'Bangladesh', 'BD', '050', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bangladesh\", \"cn\": \"孟加拉\", \"de\": \"Bangladesch\", \"es\": \"Bangladesh\", \"fa\": \"بنگلادش\", \"fr\": \"Bangladesh\", \"hr\": \"Bangladeš\", \"it\": \"Bangladesh\", \"ja\": \"バングラデシュ\", \"kr\": \"방글라데시\", \"nl\": \"Bangladesh\", \"pt\": \"Bangladeche\", \"tr\": \"Bangladeş\", \"pt-BR\": \"Bangladesh\"}', '[{\"tzName\": \"Bangladesh Standard Time\", \"zoneName\": \"Asia/Dhaka\", \"gmtOffset\": 21600, \"abbreviation\": \"BDT\", \"gmtOffsetName\": \"UTC+06:00\"}]', '050', 'BGD', 'Bangladeshi', 'Dhaka', '.bd', 'Bangladesh', 'Asia', 'BDT', 'Bangladeshi taka', '৳', NULL, 24.00, 90.00, '🇧🇩', 'U+1F1E7 U+1F1E9', 1, 1), -(19, 'Barbados', 'BB', '052', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Barbados\", \"cn\": \"巴巴多斯\", \"de\": \"Barbados\", \"es\": \"Barbados\", \"fa\": \"باربادوس\", \"fr\": \"Barbade\", \"hr\": \"Barbados\", \"it\": \"Barbados\", \"ja\": \"バルバドス\", \"kr\": \"바베이도스\", \"nl\": \"Barbados\", \"pt\": \"Barbados\", \"tr\": \"Barbados\", \"pt-BR\": \"Barbados\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Barbados\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '052', 'BRB', 'Barbadian', 'Bridgetown', '.bb', 'Barbados', 'Americas', 'BBD', 'Barbadian dollar', 'Bds$', NULL, 13.17, -59.53, '🇧🇧', 'U+1F1E7 U+1F1E7', 1, 1), -(20, 'Belarus', 'BY', '112', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Belarus\", \"cn\": \"白俄罗斯\", \"de\": \"Weißrussland\", \"es\": \"Bielorrusia\", \"fa\": \"بلاروس\", \"fr\": \"Biélorussie\", \"hr\": \"Bjelorusija\", \"it\": \"Bielorussia\", \"ja\": \"ベラルーシ\", \"kr\": \"벨라루스\", \"nl\": \"Wit-Rusland\", \"pt\": \"Bielorrússia\", \"tr\": \"Belarus\", \"pt-BR\": \"Bielorrússia\"}', '[{\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe/Minsk\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}]', '112', 'BLR', 'Belarusian', 'Minsk', '.by', 'Белару́сь', 'Europe', 'BYN', 'Belarusian ruble', 'Br', NULL, 53.00, 28.00, '🇧🇾', 'U+1F1E7 U+1F1FE', 1, 1), -(21, 'Belgium', 'BE', '056', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Belgium\", \"cn\": \"比利时\", \"de\": \"Belgien\", \"es\": \"Bélgica\", \"fa\": \"بلژیک\", \"fr\": \"Belgique\", \"hr\": \"Belgija\", \"it\": \"Belgio\", \"ja\": \"ベルギー\", \"kr\": \"벨기에\", \"nl\": \"België\", \"pt\": \"Bélgica\", \"tr\": \"Belçika\", \"pt-BR\": \"Bélgica\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Brussels\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '056', 'BEL', 'Belgian', 'Brussels', '.be', 'België', 'Europe', 'EUR', 'Euro', '€', NULL, 50.83, 4.00, '🇧🇪', 'U+1F1E7 U+1F1EA', 1, 1), -(22, 'Belize', 'BZ', '084', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Belize\", \"cn\": \"伯利兹\", \"de\": \"Belize\", \"es\": \"Belice\", \"fa\": \"بلیز\", \"fr\": \"Belize\", \"hr\": \"Belize\", \"it\": \"Belize\", \"ja\": \"ベリーズ\", \"kr\": \"벨리즈\", \"nl\": \"Belize\", \"pt\": \"Belize\", \"tr\": \"Belize\", \"pt-BR\": \"Belize\"}', '[{\"tzName\": \"Central Standard Time (North America)\", \"zoneName\": \"America/Belize\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '084', 'BLZ', 'Belizean', 'Belmopan', '.bz', 'Belize', 'Americas', 'BZD', 'Belize dollar', '$', NULL, 17.25, -88.75, '🇧🇿', 'U+1F1E7 U+1F1FF', 1, 1), -(23, 'Benin', 'BJ', '204', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Benin\", \"cn\": \"贝宁\", \"de\": \"Benin\", \"es\": \"Benín\", \"fa\": \"بنین\", \"fr\": \"Bénin\", \"hr\": \"Benin\", \"it\": \"Benin\", \"ja\": \"ベナン\", \"kr\": \"베냉\", \"nl\": \"Benin\", \"pt\": \"Benim\", \"tr\": \"Benin\", \"pt-BR\": \"Benin\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Porto-Novo\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '204', 'BEN', 'Beninese, Beninois', 'Porto-Novo', '.bj', 'Bénin', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 9.50, 2.25, '🇧🇯', 'U+1F1E7 U+1F1EF', 1, 1), -(24, 'Bermuda', 'BM', '060', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bermuda\", \"cn\": \"百慕大\", \"de\": \"Bermuda\", \"es\": \"Bermudas\", \"fa\": \"برمودا\", \"fr\": \"Bermudes\", \"hr\": \"Bermudi\", \"it\": \"Bermuda\", \"ja\": \"バミューダ\", \"kr\": \"버뮤다\", \"nl\": \"Bermuda\", \"pt\": \"Bermudas\", \"tr\": \"Bermuda\", \"pt-BR\": \"Bermudas\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"Atlantic/Bermuda\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '060', 'BMU', 'Bermudian, Bermudan', 'Hamilton', '.bm', 'Bermuda', 'Americas', 'BMD', 'Bermudian dollar', '$', NULL, 32.33, -64.75, '🇧🇲', 'U+1F1E7 U+1F1F2', 1, 1), -(25, 'Bhutan', 'BT', '064', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bhutan\", \"cn\": \"不丹\", \"de\": \"Bhutan\", \"es\": \"Bután\", \"fa\": \"بوتان\", \"fr\": \"Bhoutan\", \"hr\": \"Butan\", \"it\": \"Bhutan\", \"ja\": \"ブータン\", \"kr\": \"부탄\", \"nl\": \"Bhutan\", \"pt\": \"Butão\", \"tr\": \"Butan\", \"pt-BR\": \"Butão\"}', '[{\"tzName\": \"Bhutan Time\", \"zoneName\": \"Asia/Thimphu\", \"gmtOffset\": 21600, \"abbreviation\": \"BTT\", \"gmtOffsetName\": \"UTC+06:00\"}]', '064', 'BTN', 'Bhutanese', 'Thimphu', '.bt', 'ʼbrug-yul', 'Asia', 'BTN', 'Bhutanese ngultrum', 'Nu.', NULL, 27.50, 90.50, '🇧🇹', 'U+1F1E7 U+1F1F9', 1, 1), -(26, 'Bolivia', 'BO', '068', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bolivia\", \"cn\": \"玻利维亚\", \"de\": \"Bolivien\", \"es\": \"Bolivia\", \"fa\": \"بولیوی\", \"fr\": \"Bolivie\", \"hr\": \"Bolivija\", \"it\": \"Bolivia\", \"ja\": \"ボリビア多民族国\", \"kr\": \"볼리비아\", \"nl\": \"Bolivia\", \"pt\": \"Bolívia\", \"tr\": \"Bolivya\", \"pt-BR\": \"Bolívia\"}', '[{\"tzName\": \"Bolivia Time\", \"zoneName\": \"America/La_Paz\", \"gmtOffset\": -14400, \"abbreviation\": \"BOT\", \"gmtOffsetName\": \"UTC-04:00\"}]', '068', 'BOL', 'Bolivian', 'Sucre', '.bo', 'Bolivia', 'Americas', 'BOB', 'Bolivian boliviano', 'Bs.', NULL, -17.00, -65.00, '🇧🇴', 'U+1F1E7 U+1F1F4', 1, 1), -(27, 'Bonaire, Sint Eustatius and Saba', 'BQ', '535', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Bonaire, Sint Eustatius and Saba\", \"cn\": \"博内尔岛、圣尤斯特歇斯和萨巴岛\", \"de\": \"Bonaire, Sint Eustatius und Saba\", \"fa\": \"بونیر\", \"fr\": \"Bonaire, Saint-Eustache et Saba\", \"it\": \"Bonaire, Saint-Eustache e Saba\", \"kr\": \"보네르 섬\", \"pt\": \"Bonaire\", \"tr\": \"Karayip Hollandasi\", \"pt-BR\": \"Bonaire\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '535', 'BES', 'Bonaire', 'Kralendijk', '.an', 'Caribisch Nederland', 'Americas', 'USD', 'United States dollar', '$', NULL, 12.15, -68.27, '🇧🇶', 'U+1F1E7 U+1F1F6', 1, 1), -(28, 'Bosnia and Herzegovina', 'BA', '070', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bosnia and Herzegovina\", \"cn\": \"波斯尼亚和黑塞哥维那\", \"de\": \"Bosnien und Herzegowina\", \"es\": \"Bosnia y Herzegovina\", \"fa\": \"بوسنی و هرزگوین\", \"fr\": \"Bosnie-Herzégovine\", \"hr\": \"Bosna i Hercegovina\", \"it\": \"Bosnia ed Erzegovina\", \"ja\": \"ボスニア・ヘルツェゴビナ\", \"kr\": \"보스니아 헤르체고비나\", \"nl\": \"Bosnië en Herzegovina\", \"pt\": \"Bósnia e Herzegovina\", \"tr\": \"Bosna Hersek\", \"pt-BR\": \"Bósnia e Herzegovina\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Sarajevo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '070', 'BIH', 'Bosnian or Herzegovinian', 'Sarajevo', '.ba', 'Bosna i Hercegovina', 'Europe', 'BAM', 'Bosnia and Herzegovina convertible mark', 'KM', NULL, 44.00, 18.00, '🇧🇦', 'U+1F1E7 U+1F1E6', 1, 1), -(29, 'Botswana', 'BW', '072', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Botswana\", \"cn\": \"博茨瓦纳\", \"de\": \"Botswana\", \"es\": \"Botswana\", \"fa\": \"بوتسوانا\", \"fr\": \"Botswana\", \"hr\": \"Bocvana\", \"it\": \"Botswana\", \"ja\": \"ボツワナ\", \"kr\": \"보츠와나\", \"nl\": \"Botswana\", \"pt\": \"Botsuana\", \"tr\": \"Botsvana\", \"pt-BR\": \"Botsuana\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Gaborone\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '072', 'BWA', 'Motswana, Botswanan', 'Gaborone', '.bw', 'Botswana', 'Africa', 'BWP', 'Botswana pula', 'P', NULL, -22.00, 24.00, '🇧🇼', 'U+1F1E7 U+1F1FC', 1, 1), -(30, 'Bouvet Island', 'BV', '074', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bouvet Island\", \"cn\": \"布维岛\", \"de\": \"Bouvetinsel\", \"es\": \"Isla Bouvet\", \"fa\": \"جزیره بووه\", \"fr\": \"Île Bouvet\", \"hr\": \"Otok Bouvet\", \"it\": \"Isola Bouvet\", \"ja\": \"ブーベ島\", \"kr\": \"부벳 섬\", \"nl\": \"Bouveteiland\", \"pt\": \"Ilha Bouvet\", \"tr\": \"Bouvet Adasi\", \"pt-BR\": \"Ilha Bouvet\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Oslo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '074', 'BVT', 'Bouvet Island', '', '.bv', 'Bouvetøya', '', 'NOK', 'Norwegian Krone', 'kr', NULL, -54.43, 3.40, '🇧🇻', 'U+1F1E7 U+1F1FB', 1, 1), -(31, 'Brazil', 'BR', '076', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Brazil\", \"cn\": \"巴西\", \"de\": \"Brasilien\", \"es\": \"Brasil\", \"fa\": \"برزیل\", \"fr\": \"Brésil\", \"hr\": \"Brazil\", \"it\": \"Brasile\", \"ja\": \"ブラジル\", \"kr\": \"브라질\", \"nl\": \"Brazilië\", \"pt\": \"Brasil\", \"tr\": \"Brezilya\", \"pt-BR\": \"Brasil\"}', '[{\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Araguaina\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Bahia\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Belem\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America/Boa_Vista\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America/Campo_Grande\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Brasilia Time\", \"zoneName\": \"America/Cuiaba\", \"gmtOffset\": -14400, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Acre Time\", \"zoneName\": \"America/Eirunepe\", \"gmtOffset\": -18000, \"abbreviation\": \"ACT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Fortaleza\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Maceio\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Amazon Time (Brazil)\", \"zoneName\": \"America/Manaus\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Fernando de Noronha Time\", \"zoneName\": \"America/Noronha\", \"gmtOffset\": -7200, \"abbreviation\": \"FNT\", \"gmtOffsetName\": \"UTC-02:00\"}, {\"tzName\": \"Amazon Time (Brazil)[3\", \"zoneName\": \"America/Porto_Velho\", \"gmtOffset\": -14400, \"abbreviation\": \"AMT\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Recife\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Acre Time\", \"zoneName\": \"America/Rio_Branco\", \"gmtOffset\": -18000, \"abbreviation\": \"ACT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Santarem\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Brasília Time\", \"zoneName\": \"America/Sao_Paulo\", \"gmtOffset\": -10800, \"abbreviation\": \"BRT\", \"gmtOffsetName\": \"UTC-03:00\"}]', '076', 'BRA', 'Brazilian', 'Brasilia', '.br', 'Brasil', 'Americas', 'BRL', 'Brazilian real', 'R$', NULL, -10.00, -55.00, '🇧🇷', 'U+1F1E7 U+1F1F7', 1, 1), -(32, 'British Indian Ocean Territory', 'IO', '086', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"British Indian Ocean Territory\", \"cn\": \"英属印度洋领地\", \"de\": \"Britisches Territorium im Indischen Ozean\", \"es\": \"Territorio Británico del Océano Índico\", \"fa\": \"قلمرو بریتانیا در اقیانوس هند\", \"fr\": \"Territoire britannique de locéan Indien\", \"hr\": \"Britanski Indijskooceanski teritorij\", \"it\": \"Territorio britannico dell oceano indiano\", \"ja\": \"イギリス領インド洋地域\", \"kr\": \"영국령 인도양 지역\", \"nl\": \"Britse Gebieden in de Indische Oceaan\", \"pt\": \"Território Britânico do Oceano Índico\", \"tr\": \"Britanya Hint Okyanusu Topraklari\", \"pt-BR\": \"Território Britânico do Oceano íÍdico\"}', '[{\"tzName\": \"Indian Ocean Time\", \"zoneName\": \"Indian/Chagos\", \"gmtOffset\": 21600, \"abbreviation\": \"IOT\", \"gmtOffsetName\": \"UTC+06:00\"}]', '086', 'IOT', 'BIOT', 'Diego Garcia', '.io', 'British Indian Ocean Territory', 'Africa', 'USD', 'United States dollar', '$', NULL, -6.00, 71.50, '🇮🇴', 'U+1F1EE U+1F1F4', 1, 1), -(33, 'Brunei', 'BN', '096', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Brunei\", \"cn\": \"文莱\", \"de\": \"Brunei\", \"es\": \"Brunei\", \"fa\": \"برونئی\", \"fr\": \"Brunei\", \"hr\": \"Brunej\", \"it\": \"Brunei\", \"ja\": \"ブルネイ・ダルサラーム\", \"kr\": \"브루나이\", \"nl\": \"Brunei\", \"pt\": \"Brunei\", \"tr\": \"Brunei\", \"pt-BR\": \"Brunei\"}', '[{\"tzName\": \"Brunei Darussalam Time\", \"zoneName\": \"Asia/Brunei\", \"gmtOffset\": 28800, \"abbreviation\": \"BNT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '096', 'BRN', 'Bruneian', 'Bandar Seri Begawan', '.bn', 'Negara Brunei Darussalam', 'Asia', 'BND', 'Brunei dollar', 'B$', NULL, 4.50, 114.67, '🇧🇳', 'U+1F1E7 U+1F1F3', 1, 1), -(34, 'Bulgaria', 'BG', '100', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Bulgaria\", \"cn\": \"保加利亚\", \"de\": \"Bulgarien\", \"es\": \"Bulgaria\", \"fa\": \"بلغارستان\", \"fr\": \"Bulgarie\", \"hr\": \"Bugarska\", \"it\": \"Bulgaria\", \"ja\": \"ブルガリア\", \"kr\": \"불가리아\", \"nl\": \"Bulgarije\", \"pt\": \"Bulgária\", \"tr\": \"Bulgaristan\", \"pt-BR\": \"Bulgária\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Sofia\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '100', 'BGR', 'Bulgarian', 'Sofia', '.bg', 'България', 'Europe', 'BGN', 'Bulgarian lev', 'Лв.', NULL, 43.00, 25.00, '🇧🇬', 'U+1F1E7 U+1F1EC', 1, 1), -(35, 'Burkina Faso', 'BF', '854', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Burkina Faso\", \"cn\": \"布基纳法索\", \"de\": \"Burkina Faso\", \"es\": \"Burkina Faso\", \"fa\": \"بورکینافاسو\", \"fr\": \"Burkina Faso\", \"hr\": \"Burkina Faso\", \"it\": \"Burkina Faso\", \"ja\": \"ブルキナファソ\", \"kr\": \"부르키나 파소\", \"nl\": \"Burkina Faso\", \"pt\": \"Burquina Faso\", \"tr\": \"Burkina Faso\", \"pt-BR\": \"Burkina Faso\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Ouagadougou\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '854', 'BFA', 'Burkinabe', 'Ouagadougou', '.bf', 'Burkina Faso', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 13.00, -2.00, '🇧🇫', 'U+1F1E7 U+1F1EB', 1, 1), -(36, 'Burundi', 'BI', '108', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Burundi\", \"cn\": \"布隆迪\", \"de\": \"Burundi\", \"es\": \"Burundi\", \"fa\": \"بوروندی\", \"fr\": \"Burundi\", \"hr\": \"Burundi\", \"it\": \"Burundi\", \"ja\": \"ブルンジ\", \"kr\": \"부룬디\", \"nl\": \"Burundi\", \"pt\": \"Burúndi\", \"tr\": \"Burundi\", \"pt-BR\": \"Burundi\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Bujumbura\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '108', 'BDI', 'Burundian', 'Bujumbura', '.bi', 'Burundi', 'Africa', 'BIF', 'Burundian franc', 'FBu', NULL, -3.50, 30.00, '🇧🇮', 'U+1F1E7 U+1F1EE', 1, 1), -(37, 'Cambodia', 'KH', '116', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cambodia\", \"cn\": \"柬埔寨\", \"de\": \"Kambodscha\", \"es\": \"Camboya\", \"fa\": \"کامبوج\", \"fr\": \"Cambodge\", \"hr\": \"Kambodža\", \"it\": \"Cambogia\", \"ja\": \"カンボジア\", \"kr\": \"캄보디아\", \"nl\": \"Cambodja\", \"pt\": \"Camboja\", \"tr\": \"Kamboçya\", \"pt-BR\": \"Camboja\"}', '[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia/Phnom_Penh\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]', '116', 'KHM', 'Cambodian', 'Phnom Penh', '.kh', 'Kâmpŭchéa', 'Asia', 'KHR', 'Cambodian riel', 'KHR', NULL, 13.00, 105.00, '🇰🇭', 'U+1F1F0 U+1F1ED', 1, 1), -(38, 'Cameroon', 'CM', '120', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cameroon\", \"cn\": \"喀麦隆\", \"de\": \"Kamerun\", \"es\": \"Camerún\", \"fa\": \"کامرون\", \"fr\": \"Cameroun\", \"hr\": \"Kamerun\", \"it\": \"Camerun\", \"ja\": \"カメルーン\", \"kr\": \"카메룬\", \"nl\": \"Kameroen\", \"pt\": \"Camarões\", \"tr\": \"Kamerun\", \"pt-BR\": \"Camarões\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Douala\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '120', 'CMR', 'Cameroonian', 'Yaounde', '.cm', 'Cameroon', 'Africa', 'XAF', 'Central African CFA franc', 'FCFA', NULL, 6.00, 12.00, '🇨🇲', 'U+1F1E8 U+1F1F2', 1, 1), -(39, 'Canada', 'CA', '124', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Canada\", \"cn\": \"加拿大\", \"de\": \"Kanada\", \"es\": \"Canadá\", \"fa\": \"کانادا\", \"fr\": \"Canada\", \"hr\": \"Kanada\", \"it\": \"Canada\", \"ja\": \"カナダ\", \"kr\": \"캐나다\", \"nl\": \"Canada\", \"pt\": \"Canadá\", \"tr\": \"Kanada\", \"pt-BR\": \"Canadá\"}', '[{\"tzName\": \"Eastern Standard Time (North America)\", \"zoneName\": \"America/Atikokan\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Blanc-Sablon\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Cambridge_Bay\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Creston\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Dawson\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Dawson_Creek\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Edmonton\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America)\", \"zoneName\": \"America/Fort_Nelson\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Glace_Bay\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Goose_Bay\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Halifax\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Inuvik\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Iqaluit\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Moncton\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Nipigon\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Pangnirtung\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Rainy_River\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Rankin_Inlet\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Regina\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Resolute\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Newfoundland Standard Time\", \"zoneName\": \"America/St_Johns\", \"gmtOffset\": -12600, \"abbreviation\": \"NST\", \"gmtOffsetName\": \"UTC-03:30\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Swift_Current\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Thunder_Bay\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Toronto\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America/Vancouver\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Whitehorse\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Winnipeg\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Yellowknife\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}]', '124', 'CAN', 'Canadian', 'Ottawa', '.ca', 'Canada', 'Americas', 'CAD', 'Canadian dollar', '$', NULL, 60.00, -95.00, '🇨🇦', 'U+1F1E8 U+1F1E6', 1, 1), -(40, 'Cape Verde', 'CV', '132', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cape Verde\", \"cn\": \"佛得角\", \"de\": \"Kap Verde\", \"es\": \"Cabo Verde\", \"fa\": \"کیپ ورد\", \"fr\": \"Cap Vert\", \"hr\": \"Zelenortska Republika\", \"it\": \"Capo Verde\", \"ja\": \"カーボベルデ\", \"kr\": \"카보베르데\", \"nl\": \"Kaapverdië\", \"pt\": \"Cabo Verde\", \"tr\": \"Cabo Verde\", \"pt-BR\": \"Cabo Verde\"}', '[{\"tzName\": \"Cape Verde Time\", \"zoneName\": \"Atlantic/Cape_Verde\", \"gmtOffset\": -3600, \"abbreviation\": \"CVT\", \"gmtOffsetName\": \"UTC-01:00\"}]', '132', 'CPV', 'Verdean', 'Praia', '.cv', 'Cabo Verde', 'Africa', 'CVE', 'Cape Verdean escudo', '$', NULL, 16.00, -24.00, '🇨🇻', 'U+1F1E8 U+1F1FB', 1, 1), -(41, 'Cayman Islands', 'KY', '136', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cayman Islands\", \"cn\": \"开曼群岛\", \"de\": \"Kaimaninseln\", \"es\": \"Islas Caimán\", \"fa\": \"جزایر کیمن\", \"fr\": \"Îles Caïmans\", \"hr\": \"Kajmanski otoci\", \"it\": \"Isole Cayman\", \"ja\": \"ケイマン諸島\", \"kr\": \"케이먼 제도\", \"nl\": \"Caymaneilanden\", \"pt\": \"Ilhas Caimão\", \"tr\": \"Cayman Adalari\", \"pt-BR\": \"Ilhas Cayman\"}', '[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Cayman\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '136', 'CYM', 'Caymanian', 'George Town', '.ky', 'Cayman Islands', 'Americas', 'KYD', 'Cayman Islands dollar', '$', NULL, 19.50, -80.50, '🇰🇾', 'U+1F1F0 U+1F1FE', 1, 1), -(42, 'Central African Republic', 'CF', '140', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Central African Republic\", \"cn\": \"中非\", \"de\": \"Zentralafrikanische Republik\", \"es\": \"República Centroafricana\", \"fa\": \"جمهوری آفریقای مرکزی\", \"fr\": \"République centrafricaine\", \"hr\": \"Srednjoafrička Republika\", \"it\": \"Repubblica Centrafricana\", \"ja\": \"中央アフリカ共和国\", \"kr\": \"중앙아프리카 공화국\", \"nl\": \"Centraal-Afrikaanse Republiek\", \"pt\": \"República Centro-Africana\", \"tr\": \"Orta Afrika Cumhuriyeti\", \"pt-BR\": \"República Centro-Africana\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Bangui\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '140', 'CAF', 'Central African', 'Bangui', '.cf', 'Ködörösêse tî Bêafrîka', 'Africa', 'XAF', 'Central African CFA franc', 'FCFA', NULL, 7.00, 21.00, '🇨🇫', 'U+1F1E8 U+1F1EB', 1, 1), -(43, 'Chad', 'TD', '148', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Chad\", \"cn\": \"乍得\", \"de\": \"Tschad\", \"es\": \"Chad\", \"fa\": \"چاد\", \"fr\": \"Tchad\", \"hr\": \"Čad\", \"it\": \"Ciad\", \"ja\": \"チャド\", \"kr\": \"차드\", \"nl\": \"Tsjaad\", \"pt\": \"Chade\", \"tr\": \"Çad\", \"pt-BR\": \"Chade\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Ndjamena\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '148', 'TCD', 'Chadian', 'NDjamena', '.td', 'Tchad', 'Africa', 'XAF', 'Central African CFA franc', 'FCFA', NULL, 15.00, 19.00, '🇹🇩', 'U+1F1F9 U+1F1E9', 1, 1), -(44, 'Chile', 'CL', '152', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Chile\", \"cn\": \"智利\", \"de\": \"Chile\", \"es\": \"Chile\", \"fa\": \"شیلی\", \"fr\": \"Chili\", \"hr\": \"Čile\", \"it\": \"Cile\", \"ja\": \"チリ\", \"kr\": \"칠리\", \"nl\": \"Chili\", \"pt\": \"Chile\", \"tr\": \"Şili\", \"pt-BR\": \"Chile\"}', '[{\"tzName\": \"Chile Summer Time\", \"zoneName\": \"America/Punta_Arenas\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Chile Summer Time\", \"zoneName\": \"America/Santiago\", \"gmtOffset\": -10800, \"abbreviation\": \"CLST\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Easter Island Summer Time\", \"zoneName\": \"Pacific/Easter\", \"gmtOffset\": -18000, \"abbreviation\": \"EASST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '152', 'CHL', 'Chilean', 'Santiago', '.cl', 'Chile', 'Americas', 'CLP', 'Chilean peso', '$', NULL, -30.00, -71.00, '🇨🇱', 'U+1F1E8 U+1F1F1', 1, 1), -(45, 'China', 'CN', '156', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"China\", \"cn\": \"中国\", \"de\": \"China\", \"es\": \"China\", \"fa\": \"چین\", \"fr\": \"Chine\", \"hr\": \"Kina\", \"it\": \"Cina\", \"ja\": \"中国\", \"kr\": \"중국\", \"nl\": \"China\", \"pt\": \"China\", \"tr\": \"Çin\", \"pt-BR\": \"China\"}', '[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia/Shanghai\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia/Urumqi\", \"gmtOffset\": 21600, \"abbreviation\": \"XJT\", \"gmtOffsetName\": \"UTC+06:00\"}]', '156', 'CHN', 'Chinese', 'Beijing', '.cn', '中国', 'Asia', 'CNY', 'Chinese yuan', '¥', NULL, 35.00, 105.00, '🇨🇳', 'U+1F1E8 U+1F1F3', 1, 1), -(46, 'Christmas Island', 'CX', '162', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Christmas Island\", \"cn\": \"圣诞岛\", \"de\": \"Weihnachtsinsel\", \"es\": \"Isla de Navidad\", \"fa\": \"جزیره کریسمس\", \"fr\": \"Île Christmas\", \"hr\": \"Božićni otok\", \"it\": \"Isola di Natale\", \"ja\": \"クリスマス島\", \"kr\": \"크리스마스 섬\", \"nl\": \"Christmaseiland\", \"pt\": \"Ilha do Natal\", \"tr\": \"Christmas Adasi\", \"pt-BR\": \"Ilha Christmas\"}', '[{\"tzName\": \"Christmas Island Time\", \"zoneName\": \"Indian/Christmas\", \"gmtOffset\": 25200, \"abbreviation\": \"CXT\", \"gmtOffsetName\": \"UTC+07:00\"}]', '162', 'CXR', 'Christmas Island', 'Flying Fish Cove', '.cx', 'Christmas Island', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -10.50, 105.67, '🇨🇽', 'U+1F1E8 U+1F1FD', 1, 1), -(47, 'Cocos (Keeling) Islands', 'CC', '166', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cocos (Keeling) Islands\", \"cn\": \"科科斯(基林)群岛\", \"de\": \"Kokosinseln\", \"es\": \"Islas Cocos o Islas Keeling\", \"fa\": \"جزایر کوکوس\", \"fr\": \"Îles Cocos\", \"hr\": \"Kokosovi Otoci\", \"it\": \"Isole Cocos e Keeling\", \"ja\": \"ココス(キーリング)諸島\", \"kr\": \"코코스 제도\", \"nl\": \"Cocoseilanden\", \"pt\": \"Ilhas dos Cocos\", \"tr\": \"Cocos Adalari\", \"pt-BR\": \"Ilhas Cocos\"}', '[{\"tzName\": \"Cocos Islands Time\", \"zoneName\": \"Indian/Cocos\", \"gmtOffset\": 23400, \"abbreviation\": \"CCT\", \"gmtOffsetName\": \"UTC+06:30\"}]', '166', 'CCK', 'Cocos Island', 'West Island', '.cc', 'Cocos (Keeling) Islands', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -12.50, 96.83, '🇨🇨', 'U+1F1E8 U+1F1E8', 1, 1), -(48, 'Colombia', 'CO', '170', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Colombia\", \"cn\": \"哥伦比亚\", \"de\": \"Kolumbien\", \"es\": \"Colombia\", \"fa\": \"کلمبیا\", \"fr\": \"Colombie\", \"hr\": \"Kolumbija\", \"it\": \"Colombia\", \"ja\": \"コロンビア\", \"kr\": \"콜롬비아\", \"nl\": \"Colombia\", \"pt\": \"Colômbia\", \"tr\": \"Kolombiya\", \"pt-BR\": \"Colômbia\"}', '[{\"tzName\": \"Colombia Time\", \"zoneName\": \"America/Bogota\", \"gmtOffset\": -18000, \"abbreviation\": \"COT\", \"gmtOffsetName\": \"UTC-05:00\"}]', '170', 'COL', 'Colombian', 'Bogotá', '.co', 'Colombia', 'Americas', 'COP', 'Colombian peso', '$', NULL, 4.00, -72.00, '🇨🇴', 'U+1F1E8 U+1F1F4', 1, 1), -(49, 'Comoros', 'KM', '174', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Comoros\", \"cn\": \"科摩罗\", \"de\": \"Union der Komoren\", \"es\": \"Comoras\", \"fa\": \"کومور\", \"fr\": \"Comores\", \"hr\": \"Komori\", \"it\": \"Comore\", \"ja\": \"コモロ\", \"kr\": \"코모로\", \"nl\": \"Comoren\", \"pt\": \"Comores\", \"tr\": \"Komorlar\", \"pt-BR\": \"Comores\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian/Comoro\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '174', 'COM', 'Comoran, Comorian', 'Moroni', '.km', 'Komori', 'Africa', 'KMF', 'Comorian franc', 'CF', NULL, -12.17, 44.25, '🇰🇲', 'U+1F1F0 U+1F1F2', 1, 1), -(50, 'Congo', 'CG', '178', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Congo\", \"cn\": \"刚果\", \"de\": \"Kongo\", \"es\": \"Congo\", \"fa\": \"کنگو\", \"fr\": \"Congo\", \"hr\": \"Kongo\", \"it\": \"Congo\", \"ja\": \"コンゴ共和国\", \"kr\": \"콩고\", \"nl\": \"Congo [Republiek]\", \"pt\": \"Congo\", \"tr\": \"Kongo\", \"pt-BR\": \"Congo\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Brazzaville\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '178', 'COG', 'Congolese', 'Brazzaville', '.cg', 'République du Congo', 'Africa', 'XAF', 'Central African CFA franc', 'FC', NULL, -1.00, 15.00, '🇨🇬', 'U+1F1E8 U+1F1EC', 1, 1); -INSERT INTO `countries` (`id`, `name`, `code`, `phone`, `created_at`, `updated_at`, `translations`, `timezones`, `numeric_code`, `iso3`, `nationality`, `capital`, `tld`, `native`, `region`, `currency`, `currency_name`, `currency_symbol`, `wikiDataId`, `lat`, `lng`, `emoji`, `emojiU`, `flag`, `is_activated`) VALUES -(51, 'Democratic Republic of the Congo', 'CD', '180', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Democratic Republic of the Congo\", \"cn\": \"刚果(金)\", \"de\": \"Kongo (Dem. Rep.)\", \"es\": \"Congo (Rep. Dem.)\", \"fa\": \"جمهوری کنگو\", \"fr\": \"Congo (Rép. dém.)\", \"hr\": \"Kongo, Demokratska Republika\", \"it\": \"Congo (Rep. Dem.)\", \"ja\": \"コンゴ民主共和国\", \"kr\": \"콩고 민주 공화국\", \"nl\": \"Congo [DRC]\", \"pt\": \"RD Congo\", \"tr\": \"Kongo Demokratik Cumhuriyeti\", \"pt-BR\": \"RD Congo\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Kinshasa\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Lubumbashi\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '180', 'COD', 'Congolese', 'Kinshasa', '.cd', 'République démocratique du Congo', 'Africa', 'CDF', 'Congolese Franc', 'FC', NULL, 0.00, 25.00, '🇨🇩', 'U+1F1E8 U+1F1E9', 1, 1), -(52, 'Cook Islands', 'CK', '184', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cook Islands\", \"cn\": \"库克群岛\", \"de\": \"Cookinseln\", \"es\": \"Islas Cook\", \"fa\": \"جزایر کوک\", \"fr\": \"Îles Cook\", \"hr\": \"Cookovo Otočje\", \"it\": \"Isole Cook\", \"ja\": \"クック諸島\", \"kr\": \"쿡 제도\", \"nl\": \"Cookeilanden\", \"pt\": \"Ilhas Cook\", \"tr\": \"Cook Adalari\", \"pt-BR\": \"Ilhas Cook\"}', '[{\"tzName\": \"Cook Island Time\", \"zoneName\": \"Pacific/Rarotonga\", \"gmtOffset\": -36000, \"abbreviation\": \"CKT\", \"gmtOffsetName\": \"UTC-10:00\"}]', '184', 'COK', 'Cook Island', 'Avarua', '.ck', 'Cook Islands', 'Oceania', 'NZD', 'Cook Islands dollar', '$', NULL, -21.23, -159.77, '🇨🇰', 'U+1F1E8 U+1F1F0', 1, 1), -(53, 'Costa Rica', 'CR', '188', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Costa Rica\", \"cn\": \"哥斯达黎加\", \"de\": \"Costa Rica\", \"es\": \"Costa Rica\", \"fa\": \"کاستاریکا\", \"fr\": \"Costa Rica\", \"hr\": \"Kostarika\", \"it\": \"Costa Rica\", \"ja\": \"コスタリカ\", \"kr\": \"코스타리카\", \"nl\": \"Costa Rica\", \"pt\": \"Costa Rica\", \"tr\": \"Kosta Rika\", \"pt-BR\": \"Costa Rica\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Costa_Rica\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '188', 'CRI', 'Costa Rican', 'San Jose', '.cr', 'Costa Rica', 'Americas', 'CRC', 'Costa Rican colón', '₡', NULL, 10.00, -84.00, '🇨🇷', 'U+1F1E8 U+1F1F7', 1, 1), -(54, 'Cote DIvoire (Ivory Coast)', 'CI', '384', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cote DIvoire (Ivory Coast)\", \"cn\": \"科特迪瓦\", \"de\": \"Elfenbeinküste\", \"es\": \"Costa de Marfil\", \"fa\": \"ساحل عاج\", \"fr\": \"Côte dIvoire\", \"hr\": \"Obala Bjelokosti\", \"it\": \"Costa DAvorio\", \"ja\": \"コートジボワール\", \"kr\": \"코트디부아르\", \"nl\": \"Ivoorkust\", \"pt\": \"Costa do Marfim\", \"tr\": \"Kotdivuar\", \"pt-BR\": \"Costa do Marfim\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Abidjan\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '384', 'CIV', 'Ivorian', 'Yamoussoukro', '.ci', NULL, 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 8.00, -5.00, '🇨🇮', 'U+1F1E8 U+1F1EE', 1, 1), -(55, 'Croatia', 'HR', '191', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Croatia\", \"cn\": \"克罗地亚\", \"de\": \"Kroatien\", \"es\": \"Croacia\", \"fa\": \"کرواسی\", \"fr\": \"Croatie\", \"hr\": \"Hrvatska\", \"it\": \"Croazia\", \"ja\": \"クロアチア\", \"kr\": \"크로아티아\", \"nl\": \"Kroatië\", \"pt\": \"Croácia\", \"tr\": \"Hirvatistan\", \"pt-BR\": \"Croácia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Zagreb\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '191', 'HRV', 'Croatian', 'Zagreb', '.hr', 'Hrvatska', 'Europe', 'HRK', 'Croatian kuna', 'kn', NULL, 45.17, 15.50, '🇭🇷', 'U+1F1ED U+1F1F7', 1, 1), -(56, 'Cuba', 'CU', '192', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cuba\", \"cn\": \"古巴\", \"de\": \"Kuba\", \"es\": \"Cuba\", \"fa\": \"کوبا\", \"fr\": \"Cuba\", \"hr\": \"Kuba\", \"it\": \"Cuba\", \"ja\": \"キューバ\", \"kr\": \"쿠바\", \"nl\": \"Cuba\", \"pt\": \"Cuba\", \"tr\": \"Küba\", \"pt-BR\": \"Cuba\"}', '[{\"tzName\": \"Cuba Standard Time\", \"zoneName\": \"America/Havana\", \"gmtOffset\": -18000, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '192', 'CUB', 'Cuban', 'Havana', '.cu', 'Cuba', 'Americas', 'CUP', 'Cuban peso', '$', NULL, 21.50, -80.00, '🇨🇺', 'U+1F1E8 U+1F1FA', 1, 1), -(57, 'Curaçao', 'CW', '531', '2020-06-17 10:37:04', '2024-01-21 12:54:30', '{\"ar\": \"Curaçao\", \"cn\": \"库拉索\", \"de\": \"Curaçao\", \"fa\": \"کوراسائو\", \"fr\": \"Curaçao\", \"it\": \"Curaçao\", \"kr\": \"퀴라소\", \"nl\": \"Curaçao\", \"pt\": \"Curaçao\", \"tr\": \"Curaçao\", \"pt-BR\": \"Curaçao\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Curacao\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '531', 'CUW', 'Curacaoan', 'Willemstad', '.cw', 'Curaçao', 'Americas', 'ANG', 'Netherlands Antillean guilder', 'ƒ', NULL, 12.12, -68.93, '🇨🇼', 'U+1F1E8 U+1F1FC', 1, 1), -(58, 'Cyprus', 'CY', '196', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Cyprus\", \"cn\": \"塞浦路斯\", \"de\": \"Zypern\", \"es\": \"Chipre\", \"fa\": \"قبرس\", \"fr\": \"Chypre\", \"hr\": \"Cipar\", \"it\": \"Cipro\", \"ja\": \"キプロス\", \"kr\": \"키프로스\", \"nl\": \"Cyprus\", \"pt\": \"Chipre\", \"tr\": \"Kuzey Kıbrıs Türk Cumhuriyeti\", \"pt-BR\": \"Chipre\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Famagusta\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Nicosia\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '196', 'CYP', 'Cypriot', 'Nicosia', '.cy', 'Κύπρος', 'Europe', 'EUR', 'Euro', '€', NULL, 35.00, 33.00, '🇨🇾', 'U+1F1E8 U+1F1FE', 1, 1), -(59, 'Czech Republic', 'CZ', '203', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Czech Republic\", \"cn\": \"捷克\", \"de\": \"Tschechische Republik\", \"es\": \"República Checa\", \"fa\": \"جمهوری چک\", \"fr\": \"République tchèque\", \"hr\": \"Češka\", \"it\": \"Repubblica Ceca\", \"ja\": \"チェコ\", \"kr\": \"체코\", \"nl\": \"Tsjechië\", \"pt\": \"República Checa\", \"tr\": \"Çekya\", \"pt-BR\": \"República Tcheca\"}', NULL, '203', 'CZE', 'Czech', 'Prague', '.cz', 'Česká republika', 'Europe', 'CZK', 'Czech koruna', 'Kč', NULL, 49.75, 15.50, '🇨🇿', 'U+1F1E8 U+1F1FF', 1, 1), -(60, 'Denmark', 'DK', '208', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Denmark\", \"cn\": \"丹麦\", \"de\": \"Dänemark\", \"es\": \"Dinamarca\", \"fa\": \"دانمارک\", \"fr\": \"Danemark\", \"hr\": \"Danska\", \"it\": \"Danimarca\", \"ja\": \"デンマーク\", \"kr\": \"덴마크\", \"nl\": \"Denemarken\", \"pt\": \"Dinamarca\", \"tr\": \"Danimarka\", \"pt-BR\": \"Dinamarca\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Copenhagen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '208', 'DNK', 'Danish', 'Copenhagen', '.dk', 'Danmark', 'Europe', 'DKK', 'Danish krone', 'Kr.', NULL, 56.00, 10.00, '🇩🇰', 'U+1F1E9 U+1F1F0', 1, 1), -(61, 'Djibouti', 'DJ', '262', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Djibouti\", \"cn\": \"吉布提\", \"de\": \"Dschibuti\", \"es\": \"Yibuti\", \"fa\": \"جیبوتی\", \"fr\": \"Djibouti\", \"hr\": \"Džibuti\", \"it\": \"Gibuti\", \"ja\": \"ジブチ\", \"kr\": \"지부티\", \"nl\": \"Djibouti\", \"pt\": \"Djibuti\", \"tr\": \"Cibuti\", \"pt-BR\": \"Djibuti\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Djibouti\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '262', 'DJI', 'Djiboutian', 'Djibouti', '.dj', 'Djibouti', 'Africa', 'DJF', 'Djiboutian franc', 'Fdj', NULL, 11.50, 43.00, '🇩🇯', 'U+1F1E9 U+1F1EF', 1, 1), -(62, 'Dominica', 'DM', '212', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Dominica\", \"cn\": \"多米尼加\", \"de\": \"Dominica\", \"es\": \"Dominica\", \"fa\": \"دومینیکا\", \"fr\": \"Dominique\", \"hr\": \"Dominika\", \"it\": \"Dominica\", \"ja\": \"ドミニカ国\", \"kr\": \"도미니카 연방\", \"nl\": \"Dominica\", \"pt\": \"Dominica\", \"tr\": \"Dominika\", \"pt-BR\": \"Dominica\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Dominica\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '212', 'DMA', 'Dominican', 'Roseau', '.dm', 'Dominica', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 15.42, -61.33, '🇩🇲', 'U+1F1E9 U+1F1F2', 1, 1), -(63, 'Dominican Republic', 'DO', '214', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Dominican Republic\", \"cn\": \"多明尼加共和国\", \"de\": \"Dominikanische Republik\", \"es\": \"República Dominicana\", \"fa\": \"جمهوری دومینیکن\", \"fr\": \"République dominicaine\", \"hr\": \"Dominikanska Republika\", \"it\": \"Repubblica Dominicana\", \"ja\": \"ドミニカ共和国\", \"kr\": \"도미니카 공화국\", \"nl\": \"Dominicaanse Republiek\", \"pt\": \"República Dominicana\", \"tr\": \"Dominik Cumhuriyeti\", \"pt-BR\": \"República Dominicana\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Santo_Domingo\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '214', 'DOM', 'Dominican', 'Santo Domingo', '.do', 'República Dominicana', 'Americas', 'DOP', 'Dominican peso', '$', NULL, 19.00, -70.67, '🇩🇴', 'U+1F1E9 U+1F1F4', 1, 1), -(64, 'Ecuador', 'EC', '218', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Ecuador\", \"cn\": \"厄瓜多尔\", \"de\": \"Ecuador\", \"es\": \"Ecuador\", \"fa\": \"اکوادور\", \"fr\": \"Équateur\", \"hr\": \"Ekvador\", \"it\": \"Ecuador\", \"ja\": \"エクアドル\", \"kr\": \"에콰도르\", \"nl\": \"Ecuador\", \"pt\": \"Equador\", \"tr\": \"Ekvator\", \"pt-BR\": \"Equador\"}', '[{\"tzName\": \"Ecuador Time\", \"zoneName\": \"America/Guayaquil\", \"gmtOffset\": -18000, \"abbreviation\": \"ECT\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Galápagos Time\", \"zoneName\": \"Pacific/Galapagos\", \"gmtOffset\": -21600, \"abbreviation\": \"GALT\", \"gmtOffsetName\": \"UTC-06:00\"}]', '218', 'ECU', 'Ecuadorian', 'Quito', '.ec', 'Ecuador', 'Americas', 'USD', 'United States dollar', '$', NULL, -2.00, -77.50, '🇪🇨', 'U+1F1EA U+1F1E8', 1, 1), -(65, 'Egypt', 'EG', '818', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Egypt\", \"cn\": \"埃及\", \"de\": \"Ägypten\", \"es\": \"Egipto\", \"fa\": \"مصر\", \"fr\": \"Égypte\", \"hr\": \"Egipat\", \"it\": \"Egitto\", \"ja\": \"エジプト\", \"kr\": \"이집트\", \"nl\": \"Egypte\", \"pt\": \"Egipto\", \"tr\": \"Mısır\", \"pt-BR\": \"Egito\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Africa/Cairo\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '818', 'EGY', 'Egyptian', 'Cairo', '.eg', 'مصر‎', 'Africa', 'EGP', 'Egyptian pound', 'ج.م', NULL, 27.00, 30.00, '🇪🇬', 'U+1F1EA U+1F1EC', 1, 1), -(66, 'El Salvador', 'SV', '222', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"El Salvador\", \"cn\": \"萨尔瓦多\", \"de\": \"El Salvador\", \"es\": \"El Salvador\", \"fa\": \"السالوادور\", \"fr\": \"Salvador\", \"hr\": \"Salvador\", \"it\": \"El Salvador\", \"ja\": \"エルサルバドル\", \"kr\": \"엘살바도르\", \"nl\": \"El Salvador\", \"pt\": \"El Salvador\", \"tr\": \"El Salvador\", \"pt-BR\": \"El Salvador\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/El_Salvador\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '222', 'SLV', 'Salvadoran', 'San Salvador', '.sv', 'El Salvador', 'Americas', 'USD', 'United States dollar', '$', NULL, 13.83, -88.92, '🇸🇻', 'U+1F1F8 U+1F1FB', 1, 1), -(67, 'Equatorial Guinea', 'GQ', '226', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Equatorial Guinea\", \"cn\": \"赤道几内亚\", \"de\": \"Äquatorial-Guinea\", \"es\": \"Guinea Ecuatorial\", \"fa\": \"گینه استوایی\", \"fr\": \"Guinée-Équatoriale\", \"hr\": \"Ekvatorijalna Gvineja\", \"it\": \"Guinea Equatoriale\", \"ja\": \"赤道ギニア\", \"kr\": \"적도 기니\", \"nl\": \"Equatoriaal-Guinea\", \"pt\": \"Guiné Equatorial\", \"tr\": \"Ekvator Ginesi\", \"pt-BR\": \"Guiné Equatorial\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Malabo\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '226', 'GNQ', 'Equatorial Guinean, Equatoguinean', 'Malabo', '.gq', 'Guinea Ecuatorial', 'Africa', 'XAF', 'Central African CFA franc', 'FCFA', NULL, 2.00, 10.00, '🇬🇶', 'U+1F1EC U+1F1F6', 1, 1), -(68, 'Eritrea', 'ER', '232', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Eritrea\", \"cn\": \"厄立特里亚\", \"de\": \"Eritrea\", \"es\": \"Eritrea\", \"fa\": \"اریتره\", \"fr\": \"Érythrée\", \"hr\": \"Eritreja\", \"it\": \"Eritrea\", \"ja\": \"エリトリア\", \"kr\": \"에리트레아\", \"nl\": \"Eritrea\", \"pt\": \"Eritreia\", \"tr\": \"Eritre\", \"pt-BR\": \"Eritreia\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Asmara\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '232', 'ERI', 'Eritrean', 'Asmara', '.er', 'ኤርትራ', 'Africa', 'ERN', 'Eritrean nakfa', 'Nfk', NULL, 15.00, 39.00, '🇪🇷', 'U+1F1EA U+1F1F7', 1, 1), -(69, 'Estonia', 'EE', '233', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Estonia\", \"cn\": \"爱沙尼亚\", \"de\": \"Estland\", \"es\": \"Estonia\", \"fa\": \"استونی\", \"fr\": \"Estonie\", \"hr\": \"Estonija\", \"it\": \"Estonia\", \"ja\": \"エストニア\", \"kr\": \"에스토니아\", \"nl\": \"Estland\", \"pt\": \"Estónia\", \"tr\": \"Estonya\", \"pt-BR\": \"Estônia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Tallinn\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '233', 'EST', 'Estonian', 'Tallinn', '.ee', 'Eesti', 'Europe', 'EUR', 'Euro', '€', NULL, 59.00, 26.00, '🇪🇪', 'U+1F1EA U+1F1EA', 1, 1), -(70, 'Ethiopia', 'ET', '231', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Ethiopia\", \"cn\": \"埃塞俄比亚\", \"de\": \"Äthiopien\", \"es\": \"Etiopía\", \"fa\": \"اتیوپی\", \"fr\": \"Éthiopie\", \"hr\": \"Etiopija\", \"it\": \"Etiopia\", \"ja\": \"エチオピア\", \"kr\": \"에티오피아\", \"nl\": \"Ethiopië\", \"pt\": \"Etiópia\", \"tr\": \"Etiyopya\", \"pt-BR\": \"Etiópia\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Addis_Ababa\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '231', 'ETH', 'Ethiopian', 'Addis Ababa', '.et', 'ኢትዮጵያ', 'Africa', 'ETB', 'Ethiopian birr', 'Nkf', NULL, 8.00, 38.00, '🇪🇹', 'U+1F1EA U+1F1F9', 1, 1), -(71, 'Falkland Islands', 'FK', '238', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Falkland Islands\", \"cn\": \"福克兰群岛\", \"de\": \"Falklandinseln\", \"es\": \"Islas Malvinas\", \"fa\": \"جزایر فالکلند\", \"fr\": \"Îles Malouines\", \"hr\": \"Falklandski Otoci\", \"it\": \"Isole Falkland o Isole Malvine\", \"ja\": \"フォークランド(マルビナス)諸島\", \"kr\": \"포클랜드 제도\", \"nl\": \"Falklandeilanden [Islas Malvinas]\", \"pt\": \"Ilhas Falkland\", \"tr\": \"Falkland Adalari\", \"pt-BR\": \"Ilhas Malvinas\"}', '[{\"tzName\": \"Falkland Islands Summer Time\", \"zoneName\": \"Atlantic/Stanley\", \"gmtOffset\": -10800, \"abbreviation\": \"FKST\", \"gmtOffsetName\": \"UTC-03:00\"}]', '238', 'FLK', 'Falkland Island', 'Stanley', '.fk', 'Falkland Islands', 'Americas', 'FKP', 'Falkland Islands pound', '£', NULL, -51.75, -59.00, '🇫🇰', 'U+1F1EB U+1F1F0', 1, 1), -(72, 'Faroe Islands', 'FO', '234', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Faroe Islands\", \"cn\": \"法罗群岛\", \"de\": \"Färöer-Inseln\", \"es\": \"Islas Faroe\", \"fa\": \"جزایر فارو\", \"fr\": \"Îles Féroé\", \"hr\": \"Farski Otoci\", \"it\": \"Isole Far Oer\", \"ja\": \"フェロー諸島\", \"kr\": \"페로 제도\", \"nl\": \"Faeröer\", \"pt\": \"Ilhas Faroé\", \"tr\": \"Faroe Adalari\", \"pt-BR\": \"Ilhas Faroé\"}', '[{\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic/Faroe\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}]', '234', 'FRO', 'Faroese', 'Torshavn', '.fo', 'Føroyar', 'Europe', 'DKK', 'Danish krone', 'Kr.', NULL, 62.00, -7.00, '🇫🇴', 'U+1F1EB U+1F1F4', 1, 1), -(73, 'Fiji Islands', 'FJ', '242', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Fiji Islands\", \"cn\": \"斐济\", \"de\": \"Fidschi\", \"es\": \"Fiyi\", \"fa\": \"فیجی\", \"fr\": \"Fidji\", \"hr\": \"Fiđi\", \"it\": \"Figi\", \"ja\": \"フィジー\", \"kr\": \"피지\", \"nl\": \"Fiji\", \"pt\": \"Fiji\", \"tr\": \"Fiji\", \"pt-BR\": \"Fiji\"}', '[{\"tzName\": \"Fiji Time\", \"zoneName\": \"Pacific/Fiji\", \"gmtOffset\": 43200, \"abbreviation\": \"FJT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '242', 'FJI', 'Fijian', 'Suva', '.fj', 'Fiji', 'Oceania', 'FJD', 'Fijian dollar', 'FJ$', NULL, -18.00, 175.00, '🇫🇯', 'U+1F1EB U+1F1EF', 1, 1), -(74, 'Finland', 'FI', '246', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Finland\", \"cn\": \"芬兰\", \"de\": \"Finnland\", \"es\": \"Finlandia\", \"fa\": \"فنلاند\", \"fr\": \"Finlande\", \"hr\": \"Finska\", \"it\": \"Finlandia\", \"ja\": \"フィンランド\", \"kr\": \"핀란드\", \"nl\": \"Finland\", \"pt\": \"Finlândia\", \"tr\": \"Finlandiya\", \"pt-BR\": \"Finlândia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Helsinki\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '246', 'FIN', 'Finnish', 'Helsinki', '.fi', 'Suomi', 'Europe', 'EUR', 'Euro', '€', NULL, 64.00, 26.00, '🇫🇮', 'U+1F1EB U+1F1EE', 1, 1), -(75, 'France', 'FR', '250', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"France\", \"cn\": \"法国\", \"de\": \"Frankreich\", \"es\": \"Francia\", \"fa\": \"فرانسه\", \"fr\": \"France\", \"hr\": \"Francuska\", \"it\": \"Francia\", \"ja\": \"フランス\", \"kr\": \"프랑스\", \"nl\": \"Frankrijk\", \"pt\": \"França\", \"tr\": \"Fransa\", \"pt-BR\": \"França\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Paris\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '250', 'FRA', 'French', 'Paris', '.fr', 'France', 'Europe', 'EUR', 'Euro', '€', NULL, 46.00, 2.00, '🇫🇷', 'U+1F1EB U+1F1F7', 1, 1), -(76, 'French Guiana', 'GF', '254', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"French Guiana\", \"cn\": \"法属圭亚那\", \"de\": \"Französisch Guyana\", \"es\": \"Guayana Francesa\", \"fa\": \"گویان فرانسه\", \"fr\": \"Guayane\", \"hr\": \"Francuska Gvajana\", \"it\": \"Guyana francese\", \"ja\": \"フランス領ギアナ\", \"kr\": \"프랑스령 기아나\", \"nl\": \"Frans-Guyana\", \"pt\": \"Guiana Francesa\", \"tr\": \"Fransiz Guyanasi\", \"pt-BR\": \"Guiana Francesa\"}', '[{\"tzName\": \"French Guiana Time\", \"zoneName\": \"America/Cayenne\", \"gmtOffset\": -10800, \"abbreviation\": \"GFT\", \"gmtOffsetName\": \"UTC-03:00\"}]', '254', 'GUF', 'French Guianese', 'Cayenne', '.gf', 'Guyane française', 'Americas', 'EUR', 'Euro', '€', NULL, 4.00, -53.00, '🇬🇫', 'U+1F1EC U+1F1EB', 1, 1), -(77, 'French Polynesia', 'PF', '258', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"French Polynesia\", \"cn\": \"法属波利尼西亚\", \"de\": \"Französisch-Polynesien\", \"es\": \"Polinesia Francesa\", \"fa\": \"پلی‌نزی فرانسه\", \"fr\": \"Polynésie française\", \"hr\": \"Francuska Polinezija\", \"it\": \"Polinesia Francese\", \"ja\": \"フランス領ポリネシア\", \"kr\": \"프랑스령 폴리네시아\", \"nl\": \"Frans-Polynesië\", \"pt\": \"Polinésia Francesa\", \"tr\": \"Fransiz Polinezyasi\", \"pt-BR\": \"Polinésia Francesa\"}', '[{\"tzName\": \"Gambier Islands Time\", \"zoneName\": \"Pacific/Gambier\", \"gmtOffset\": -32400, \"abbreviation\": \"GAMT\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Marquesas Islands Time\", \"zoneName\": \"Pacific/Marquesas\", \"gmtOffset\": -34200, \"abbreviation\": \"MART\", \"gmtOffsetName\": \"UTC-09:30\"}, {\"tzName\": \"Tahiti Time\", \"zoneName\": \"Pacific/Tahiti\", \"gmtOffset\": -36000, \"abbreviation\": \"TAHT\", \"gmtOffsetName\": \"UTC-10:00\"}]', '258', 'PYF', 'French Polynesia', 'Papeete', '.pf', 'Polynésie française', 'Oceania', 'XPF', 'CFP franc', '₣', NULL, -15.00, -140.00, '🇵🇫', 'U+1F1F5 U+1F1EB', 1, 1), -(78, 'French Southern Territories', 'TF', '260', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"French Southern Territories\", \"cn\": \"法属南部领地\", \"de\": \"Französische Süd- und Antarktisgebiete\", \"es\": \"Tierras Australes y Antárticas Francesas\", \"fa\": \"سرزمین‌های جنوبی و جنوبگانی فرانسه\", \"fr\": \"Terres australes et antarctiques françaises\", \"hr\": \"Francuski južni i antarktički teritoriji\", \"it\": \"Territori Francesi del Sud\", \"ja\": \"フランス領南方・南極地域\", \"kr\": \"프랑스령 남방 및 남극\", \"nl\": \"Franse Gebieden in de zuidelijke Indische Oceaan\", \"pt\": \"Terras Austrais e Antárticas Francesas\", \"tr\": \"Fransiz Güney Topraklari\", \"pt-BR\": \"Terras Austrais e Antárticas Francesas\"}', '[{\"tzName\": \"French Southern and Antarctic Time\", \"zoneName\": \"Indian/Kerguelen\", \"gmtOffset\": 18000, \"abbreviation\": \"TFT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '260', 'ATF', 'French Southern Territories', 'Port-aux-Francais', '.tf', 'Territoire des Terres australes et antarctiques fr', 'Africa', 'EUR', 'Euro', '€', NULL, -49.25, 69.17, '🇹🇫', 'U+1F1F9 U+1F1EB', 1, 1), -(79, 'Gabon', 'GA', '266', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Gabon\", \"cn\": \"加蓬\", \"de\": \"Gabun\", \"es\": \"Gabón\", \"fa\": \"گابن\", \"fr\": \"Gabon\", \"hr\": \"Gabon\", \"it\": \"Gabon\", \"ja\": \"ガボン\", \"kr\": \"가봉\", \"nl\": \"Gabon\", \"pt\": \"Gabão\", \"tr\": \"Gabon\", \"pt-BR\": \"Gabão\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Libreville\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '266', 'GAB', 'Gabonese', 'Libreville', '.ga', 'Gabon', 'Africa', 'XAF', 'Central African CFA franc', 'FCFA', NULL, -1.00, 11.75, '🇬🇦', 'U+1F1EC U+1F1E6', 1, 1), -(80, 'Gambia The', 'GM', '270', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Gambia The\", \"cn\": \"冈比亚\", \"de\": \"Gambia\", \"es\": \"Gambia\", \"fa\": \"گامبیا\", \"fr\": \"Gambie\", \"hr\": \"Gambija\", \"it\": \"Gambia\", \"ja\": \"ガンビア\", \"kr\": \"감비아\", \"nl\": \"Gambia\", \"pt\": \"Gâmbia\", \"tr\": \"Gambiya\", \"pt-BR\": \"Gâmbia\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Banjul\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '270', 'GMB', 'Gambian', 'Banjul', '.gm', 'Gambia', 'Africa', 'GMD', 'Gambian dalasi', 'D', NULL, 13.47, -16.57, '🇬🇲', 'U+1F1EC U+1F1F2', 1, 1), -(81, 'Georgia', 'GE', '268', '2020-06-17 10:37:04', '2024-01-21 12:54:28', '{\"ar\": \"Georgia\", \"cn\": \"格鲁吉亚\", \"de\": \"Georgien\", \"es\": \"Georgia\", \"fa\": \"گرجستان\", \"fr\": \"Géorgie\", \"hr\": \"Gruzija\", \"it\": \"Georgia\", \"ja\": \"グルジア\", \"kr\": \"조지아\", \"nl\": \"Georgië\", \"pt\": \"Geórgia\", \"tr\": \"Gürcistan\", \"pt-BR\": \"Geórgia\"}', '[{\"tzName\": \"Georgia Standard Time\", \"zoneName\": \"Asia/Tbilisi\", \"gmtOffset\": 14400, \"abbreviation\": \"GET\", \"gmtOffsetName\": \"UTC+04:00\"}]', '268', 'GEO', 'Georgian', 'Tbilisi', '.ge', 'საქართველო', 'Asia', 'GEL', 'Georgian lari', 'ლ', NULL, 42.00, 43.50, '🇬🇪', 'U+1F1EC U+1F1EA', 1, 1), -(82, 'Germany', 'DE', '276', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Germany\", \"cn\": \"德国\", \"de\": \"Deutschland\", \"es\": \"Alemania\", \"fa\": \"آلمان\", \"fr\": \"Allemagne\", \"hr\": \"Njemačka\", \"it\": \"Germania\", \"ja\": \"ドイツ\", \"kr\": \"독일\", \"nl\": \"Duitsland\", \"pt\": \"Alemanha\", \"tr\": \"Almanya\", \"pt-BR\": \"Alemanha\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Berlin\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Busingen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '276', 'DEU', 'German', 'Berlin', '.de', 'Deutschland', 'Europe', 'EUR', 'Euro', '€', NULL, 51.00, 9.00, '🇩🇪', 'U+1F1E9 U+1F1EA', 1, 1), -(83, 'Ghana', 'GH', '288', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Ghana\", \"cn\": \"加纳\", \"de\": \"Ghana\", \"es\": \"Ghana\", \"fa\": \"غنا\", \"fr\": \"Ghana\", \"hr\": \"Gana\", \"it\": \"Ghana\", \"ja\": \"ガーナ\", \"kr\": \"가나\", \"nl\": \"Ghana\", \"pt\": \"Gana\", \"tr\": \"Gana\", \"pt-BR\": \"Gana\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Accra\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '288', 'GHA', 'Ghanaian', 'Accra', '.gh', 'Ghana', 'Africa', 'GHS', 'Ghanaian cedi', 'GH₵', NULL, 8.00, -2.00, '🇬🇭', 'U+1F1EC U+1F1ED', 1, 1), -(84, 'Gibraltar', 'GI', '292', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Gibraltar\", \"cn\": \"直布罗陀\", \"de\": \"Gibraltar\", \"es\": \"Gibraltar\", \"fa\": \"جبل‌طارق\", \"fr\": \"Gibraltar\", \"hr\": \"Gibraltar\", \"it\": \"Gibilterra\", \"ja\": \"ジブラルタル\", \"kr\": \"지브롤터\", \"nl\": \"Gibraltar\", \"pt\": \"Gibraltar\", \"tr\": \"Cebelitarik\", \"pt-BR\": \"Gibraltar\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Gibraltar\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '292', 'GIB', 'Gibraltar', 'Gibraltar', '.gi', 'Gibraltar', 'Europe', 'GIP', 'Gibraltar pound', '£', NULL, 36.13, -5.35, '🇬🇮', 'U+1F1EC U+1F1EE', 1, 1), -(85, 'Greece', 'GR', '300', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Greece\", \"cn\": \"希腊\", \"de\": \"Griechenland\", \"es\": \"Grecia\", \"fa\": \"یونان\", \"fr\": \"Grèce\", \"hr\": \"Grčka\", \"it\": \"Grecia\", \"ja\": \"ギリシャ\", \"kr\": \"그리스\", \"nl\": \"Griekenland\", \"pt\": \"Grécia\", \"tr\": \"Yunanistan\", \"pt-BR\": \"Grécia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Athens\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '300', 'GRC', 'Greek, Hellenic', 'Athens', '.gr', 'Ελλάδα', 'Europe', 'EUR', 'Euro', '€', NULL, 39.00, 22.00, '🇬🇷', 'U+1F1EC U+1F1F7', 1, 1), -(86, 'Greenland', 'GL', '304', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Greenland\", \"cn\": \"格陵兰岛\", \"de\": \"Grönland\", \"es\": \"Groenlandia\", \"fa\": \"گرینلند\", \"fr\": \"Groenland\", \"hr\": \"Grenland\", \"it\": \"Groenlandia\", \"ja\": \"グリーンランド\", \"kr\": \"그린란드\", \"nl\": \"Groenland\", \"pt\": \"Gronelândia\", \"tr\": \"Grönland\", \"pt-BR\": \"Groelândia\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"America/Danmarkshavn\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"West Greenland Time\", \"zoneName\": \"America/Nuuk\", \"gmtOffset\": -10800, \"abbreviation\": \"WGT\", \"gmtOffsetName\": \"UTC-03:00\"}, {\"tzName\": \"Eastern Greenland Time\", \"zoneName\": \"America/Scoresbysund\", \"gmtOffset\": -3600, \"abbreviation\": \"EGT\", \"gmtOffsetName\": \"UTC-01:00\"}, {\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Thule\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '304', 'GRL', 'Greenlandic', 'Nuuk', '.gl', 'Kalaallit Nunaat', 'Americas', 'DKK', 'Danish krone', 'Kr.', NULL, 72.00, -40.00, '🇬🇱', 'U+1F1EC U+1F1F1', 1, 1), -(87, 'Grenada', 'GD', '308', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Grenada\", \"cn\": \"格林纳达\", \"de\": \"Grenada\", \"es\": \"Grenada\", \"fa\": \"گرنادا\", \"fr\": \"Grenade\", \"hr\": \"Grenada\", \"it\": \"Grenada\", \"ja\": \"グレナダ\", \"kr\": \"그레나다\", \"nl\": \"Grenada\", \"pt\": \"Granada\", \"tr\": \"Grenada\", \"pt-BR\": \"Granada\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Grenada\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '308', 'GRD', 'Grenadian', 'St. Georges', '.gd', 'Grenada', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 12.12, -61.67, '🇬🇩', 'U+1F1EC U+1F1E9', 1, 1), -(88, 'Guadeloupe', 'GP', '312', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guadeloupe\", \"cn\": \"瓜德罗普岛\", \"de\": \"Guadeloupe\", \"es\": \"Guadalupe\", \"fa\": \"جزیره گوادلوپ\", \"fr\": \"Guadeloupe\", \"hr\": \"Gvadalupa\", \"it\": \"Guadeloupa\", \"ja\": \"グアドループ\", \"kr\": \"과들루프\", \"nl\": \"Guadeloupe\", \"pt\": \"Guadalupe\", \"tr\": \"Guadeloupe\", \"pt-BR\": \"Guadalupe\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Guadeloupe\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '312', 'GLP', 'Guadeloupe', 'Basse-Terre', '.gp', 'Guadeloupe', 'Americas', 'EUR', 'Euro', '€', NULL, 16.25, -61.58, '🇬🇵', 'U+1F1EC U+1F1F5', 1, 1), -(89, 'Guam', 'GU', '316', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guam\", \"cn\": \"关岛\", \"de\": \"Guam\", \"es\": \"Guam\", \"fa\": \"گوام\", \"fr\": \"Guam\", \"hr\": \"Guam\", \"it\": \"Guam\", \"ja\": \"グアム\", \"kr\": \"괌\", \"nl\": \"Guam\", \"pt\": \"Guame\", \"tr\": \"Guam\", \"pt-BR\": \"Guam\"}', '[{\"tzName\": \"Chamorro Standard Time\", \"zoneName\": \"Pacific/Guam\", \"gmtOffset\": 36000, \"abbreviation\": \"CHST\", \"gmtOffsetName\": \"UTC+10:00\"}]', '316', 'GUM', 'Guamanian, Guambat', 'Hagatna', '.gu', 'Guam', 'Oceania', 'USD', 'US Dollar', '$', NULL, 13.47, 144.78, '🇬🇺', 'U+1F1EC U+1F1FA', 1, 1), -(90, 'Guatemala', 'GT', '320', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guatemala\", \"cn\": \"危地马拉\", \"de\": \"Guatemala\", \"es\": \"Guatemala\", \"fa\": \"گواتمالا\", \"fr\": \"Guatemala\", \"hr\": \"Gvatemala\", \"it\": \"Guatemala\", \"ja\": \"グアテマラ\", \"kr\": \"과테말라\", \"nl\": \"Guatemala\", \"pt\": \"Guatemala\", \"tr\": \"Guatemala\", \"pt-BR\": \"Guatemala\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Guatemala\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '320', 'GTM', 'Guatemalan', 'Guatemala City', '.gt', 'Guatemala', 'Americas', 'GTQ', 'Guatemalan quetzal', 'Q', NULL, 15.50, -90.25, '🇬🇹', 'U+1F1EC U+1F1F9', 1, 1), -(91, 'Guernsey and Alderney', 'GG', '831', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guernsey and Alderney\", \"cn\": \"根西岛\", \"de\": \"Guernsey\", \"es\": \"Guernsey\", \"fa\": \"گرنزی\", \"fr\": \"Guernesey\", \"hr\": \"Guernsey\", \"it\": \"Guernsey\", \"ja\": \"ガーンジー\", \"kr\": \"건지, 올더니\", \"nl\": \"Guernsey\", \"pt\": \"Guernsey\", \"tr\": \"Alderney\", \"pt-BR\": \"Guernsey\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe/Guernsey\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '831', 'GGY', 'Channel Island', 'St Peter Port', '.gg', 'Guernsey', 'Europe', 'GBP', 'British pound', '£', NULL, 49.47, -2.58, '🇬🇬', 'U+1F1EC U+1F1EC', 1, 1), -(92, 'Guinea', 'GN', '324', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guinea\", \"cn\": \"几内亚\", \"de\": \"Guinea\", \"es\": \"Guinea\", \"fa\": \"گینه\", \"fr\": \"Guinée\", \"hr\": \"Gvineja\", \"it\": \"Guinea\", \"ja\": \"ギニア\", \"kr\": \"기니\", \"nl\": \"Guinee\", \"pt\": \"Guiné\", \"tr\": \"Gine\", \"pt-BR\": \"Guiné\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Conakry\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '324', 'GIN', 'Guinean', 'Conakry', '.gn', 'Guinée', 'Africa', 'GNF', 'Guinean franc', 'FG', NULL, 11.00, -10.00, '🇬🇳', 'U+1F1EC U+1F1F3', 1, 1), -(93, 'Guinea-Bissau', 'GW', '624', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guinea-Bissau\", \"cn\": \"几内亚比绍\", \"de\": \"Guinea-Bissau\", \"es\": \"Guinea-Bisáu\", \"fa\": \"گینه بیسائو\", \"fr\": \"Guinée-Bissau\", \"hr\": \"Gvineja Bisau\", \"it\": \"Guinea-Bissau\", \"ja\": \"ギニアビサウ\", \"kr\": \"기니비사우\", \"nl\": \"Guinee-Bissau\", \"pt\": \"Guiné-Bissau\", \"tr\": \"Gine-bissau\", \"pt-BR\": \"Guiné-Bissau\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Bissau\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '624', 'GNB', 'Bissau-Guinean', 'Bissau', '.gw', 'Guiné-Bissau', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 12.00, -15.00, '🇬🇼', 'U+1F1EC U+1F1FC', 1, 1), -(94, 'Guyana', 'GY', '328', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Guyana\", \"cn\": \"圭亚那\", \"de\": \"Guyana\", \"es\": \"Guyana\", \"fa\": \"گویان\", \"fr\": \"Guyane\", \"hr\": \"Gvajana\", \"it\": \"Guyana\", \"ja\": \"ガイアナ\", \"kr\": \"가이아나\", \"nl\": \"Guyana\", \"pt\": \"Guiana\", \"tr\": \"Guyana\", \"pt-BR\": \"Guiana\"}', '[{\"tzName\": \"Guyana Time\", \"zoneName\": \"America/Guyana\", \"gmtOffset\": -14400, \"abbreviation\": \"GYT\", \"gmtOffsetName\": \"UTC-04:00\"}]', '328', 'GUY', 'Guyanese', 'Georgetown', '.gy', 'Guyana', 'Americas', 'GYD', 'Guyanese dollar', '$', NULL, 5.00, -59.00, '🇬🇾', 'U+1F1EC U+1F1FE', 1, 1), -(95, 'Haiti', 'HT', '332', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Haiti\", \"cn\": \"海地\", \"de\": \"Haiti\", \"es\": \"Haiti\", \"fa\": \"هائیتی\", \"fr\": \"Haïti\", \"hr\": \"Haiti\", \"it\": \"Haiti\", \"ja\": \"ハイチ\", \"kr\": \"아이티\", \"nl\": \"Haïti\", \"pt\": \"Haiti\", \"tr\": \"Haiti\", \"pt-BR\": \"Haiti\"}', '[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Port-au-Prince\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '332', 'HTI', 'Haitian', 'Port-au-Prince', '.ht', 'Haïti', 'Americas', 'HTG', 'Haitian gourde', 'G', NULL, 19.00, -72.42, '🇭🇹', 'U+1F1ED U+1F1F9', 1, 1), -(96, 'Heard Island and McDonald Islands', 'HM', '334', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Heard Island and McDonald Islands\", \"cn\": \"赫德·唐纳岛及麦唐纳岛\", \"de\": \"Heard und die McDonaldinseln\", \"es\": \"Islas Heard y McDonald\", \"fa\": \"جزیره هرد و جزایر مک‌دونالد\", \"fr\": \"Îles Heard-et-MacDonald\", \"hr\": \"Otok Heard i otočje McDonald\", \"it\": \"Isole Heard e McDonald\", \"ja\": \"ハード島とマクドナルド諸島\", \"kr\": \"허드 맥도날드 제도\", \"nl\": \"Heard- en McDonaldeilanden\", \"pt\": \"Ilha Heard e Ilhas McDonald\", \"tr\": \"Heard Adasi Ve Mcdonald Adalari\", \"pt-BR\": \"Ilha Heard e Ilhas McDonald\"}', '[{\"tzName\": \"French Southern and Antarctic Time\", \"zoneName\": \"Indian/Kerguelen\", \"gmtOffset\": 18000, \"abbreviation\": \"TFT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '334', 'HMD', 'Heard Island or McDonald Islands', '', '.hm', 'Heard Island and McDonald Islands', '', 'AUD', 'Australian dollar', '$', NULL, -53.10, 72.52, '🇭🇲', 'U+1F1ED U+1F1F2', 1, 1), -(97, 'Vatican City State (Holy See)', 'VA', '336', '2020-06-17 10:37:04', '2024-01-21 12:54:30', '{\"ar\": \"Vatican City State (Holy See)\", \"cn\": \"梵蒂冈\", \"de\": \"Heiliger Stuhl\", \"es\": \"Santa Sede\", \"fa\": \"سریر مقدس\", \"fr\": \"voir Saint\", \"hr\": \"Sveta Stolica\", \"it\": \"Santa Sede\", \"ja\": \"聖座\", \"kr\": \"바티칸 시국\", \"nl\": \"Heilige Stoel\", \"pt\": \"Vaticano\", \"tr\": \"Vatikan\", \"pt-BR\": \"Vaticano\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Vatican\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '336', 'VAT', 'Vatican', 'Vatican City', '.va', 'Vaticano', 'Europe', 'EUR', 'Euro', '€', NULL, 41.90, 12.45, '🇻🇦', 'U+1F1FB U+1F1E6', 1, 1), -(98, 'Honduras', 'HN', '340', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Honduras\", \"cn\": \"洪都拉斯\", \"de\": \"Honduras\", \"es\": \"Honduras\", \"fa\": \"هندوراس\", \"fr\": \"Honduras\", \"hr\": \"Honduras\", \"it\": \"Honduras\", \"ja\": \"ホンジュラス\", \"kr\": \"온두라스\", \"nl\": \"Honduras\", \"pt\": \"Honduras\", \"tr\": \"Honduras\", \"pt-BR\": \"Honduras\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Tegucigalpa\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '340', 'HND', 'Honduran', 'Tegucigalpa', '.hn', 'Honduras', 'Americas', 'HNL', 'Honduran lempira', 'L', NULL, 15.00, -86.50, '🇭🇳', 'U+1F1ED U+1F1F3', 1, 1), -(99, 'Hong Kong S.A.R.', 'HK', '344', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Hong Kong S.A.R.\", \"cn\": \"中国香港\", \"de\": \"Hong Kong\", \"es\": \"Hong Kong\", \"fa\": \"هنگ‌کنگ\", \"fr\": \"Hong Kong\", \"hr\": \"Hong Kong\", \"it\": \"Hong Kong\", \"ja\": \"香港\", \"kr\": \"홍콩\", \"nl\": \"Hongkong\", \"pt\": \"Hong Kong\", \"tr\": \"Hong Kong\", \"pt-BR\": \"Hong Kong\"}', '[{\"tzName\": \"Hong Kong Time\", \"zoneName\": \"Asia/Hong_Kong\", \"gmtOffset\": 28800, \"abbreviation\": \"HKT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '344', 'HKG', 'Hong Kong, Hong Kongese', 'Hong Kong', '.hk', '香港', 'Asia', 'HKD', 'Hong Kong dollar', '$', NULL, 22.25, 114.17, '🇭🇰', 'U+1F1ED U+1F1F0', 1, 1), -(100, 'Hungary', 'HU', '348', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Hungary\", \"cn\": \"匈牙利\", \"de\": \"Ungarn\", \"es\": \"Hungría\", \"fa\": \"مجارستان\", \"fr\": \"Hongrie\", \"hr\": \"Mađarska\", \"it\": \"Ungheria\", \"ja\": \"ハンガリー\", \"kr\": \"헝가리\", \"nl\": \"Hongarije\", \"pt\": \"Hungria\", \"tr\": \"Macaristan\", \"pt-BR\": \"Hungria\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Budapest\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '348', 'HUN', 'Hungarian, Magyar', 'Budapest', '.hu', 'Magyarország', 'Europe', 'HUF', 'Hungarian forint', 'Ft', NULL, 47.00, 20.00, '🇭🇺', 'U+1F1ED U+1F1FA', 1, 1), -(101, 'Iceland', 'IS', '352', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Iceland\", \"cn\": \"冰岛\", \"de\": \"Island\", \"es\": \"Islandia\", \"fa\": \"ایسلند\", \"fr\": \"Islande\", \"hr\": \"Island\", \"it\": \"Islanda\", \"ja\": \"アイスランド\", \"kr\": \"아이슬란드\", \"nl\": \"IJsland\", \"pt\": \"Islândia\", \"tr\": \"İzlanda\", \"pt-BR\": \"Islândia\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Atlantic/Reykjavik\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '352', 'ISL', 'Icelandic', 'Reykjavik', '.is', 'Ísland', 'Europe', 'ISK', 'Icelandic króna', 'kr', NULL, 65.00, -18.00, '🇮🇸', 'U+1F1EE U+1F1F8', 1, 1), -(102, 'India', 'IN', '356', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"India\", \"cn\": \"印度\", \"de\": \"Indien\", \"es\": \"India\", \"fa\": \"هند\", \"fr\": \"Inde\", \"hr\": \"Indija\", \"it\": \"India\", \"ja\": \"インド\", \"kr\": \"인도\", \"nl\": \"India\", \"pt\": \"Índia\", \"tr\": \"Hindistan\", \"pt-BR\": \"Índia\"}', '[{\"tzName\": \"Indian Standard Time\", \"zoneName\": \"Asia/Kolkata\", \"gmtOffset\": 19800, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+05:30\"}]', '356', 'IND', 'Indian', 'New Delhi', '.in', 'भारत', 'Asia', 'INR', 'Indian rupee', '₹', NULL, 20.00, 77.00, '🇮🇳', 'U+1F1EE U+1F1F3', 1, 1), -(103, 'Indonesia', 'ID', '360', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Indonesia\", \"cn\": \"印度尼西亚\", \"de\": \"Indonesien\", \"es\": \"Indonesia\", \"fa\": \"اندونزی\", \"fr\": \"Indonésie\", \"hr\": \"Indonezija\", \"it\": \"Indonesia\", \"ja\": \"インドネシア\", \"kr\": \"인도네시아\", \"nl\": \"Indonesië\", \"pt\": \"Indonésia\", \"tr\": \"Endonezya\", \"pt-BR\": \"Indonésia\"}', '[{\"tzName\": \"Western Indonesian Time\", \"zoneName\": \"Asia/Jakarta\", \"gmtOffset\": 25200, \"abbreviation\": \"WIB\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Eastern Indonesian Time\", \"zoneName\": \"Asia/Jayapura\", \"gmtOffset\": 32400, \"abbreviation\": \"WIT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Central Indonesia Time\", \"zoneName\": \"Asia/Makassar\", \"gmtOffset\": 28800, \"abbreviation\": \"WITA\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Western Indonesian Time\", \"zoneName\": \"Asia/Pontianak\", \"gmtOffset\": 25200, \"abbreviation\": \"WIB\", \"gmtOffsetName\": \"UTC+07:00\"}]', '360', 'IDN', 'Indonesian', 'Jakarta', '.id', 'Indonesia', 'Asia', 'IDR', 'Indonesian rupiah', 'Rp', NULL, -5.00, 120.00, '🇮🇩', 'U+1F1EE U+1F1E9', 1, 1), -(104, 'Iran', 'IR', '364', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Iran\", \"cn\": \"伊朗\", \"de\": \"Iran\", \"es\": \"Iran\", \"fa\": \"ایران\", \"fr\": \"Iran\", \"hr\": \"Iran\", \"ja\": \"イラン・イスラム共和国\", \"kr\": \"이란\", \"nl\": \"Iran\", \"pt\": \"Irão\", \"tr\": \"İran\", \"pt-BR\": \"Irã\"}', '[{\"tzName\": \"Iran Daylight Time\", \"zoneName\": \"Asia/Tehran\", \"gmtOffset\": 12600, \"abbreviation\": \"IRDT\", \"gmtOffsetName\": \"UTC+03:30\"}]', '364', 'IRN', 'Iranian, Persian', 'Tehran', '.ir', 'ایران', 'Asia', 'IRR', 'Iranian rial', '﷼', NULL, 32.00, 53.00, '🇮🇷', 'U+1F1EE U+1F1F7', 1, 1), -(105, 'Iraq', 'IQ', '368', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Iraq\", \"cn\": \"伊拉克\", \"de\": \"Irak\", \"es\": \"Irak\", \"fa\": \"عراق\", \"fr\": \"Irak\", \"hr\": \"Irak\", \"it\": \"Iraq\", \"ja\": \"イラク\", \"kr\": \"이라크\", \"nl\": \"Irak\", \"pt\": \"Iraque\", \"tr\": \"Irak\", \"pt-BR\": \"Iraque\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Baghdad\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '368', 'IRQ', 'Iraqi', 'Baghdad', '.iq', 'العراق', 'Asia', 'IQD', 'Iraqi dinar', 'د.ع', NULL, 33.00, 44.00, '🇮🇶', 'U+1F1EE U+1F1F6', 1, 1), -(106, 'Ireland', 'IE', '372', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Ireland\", \"cn\": \"爱尔兰\", \"de\": \"Irland\", \"es\": \"Irlanda\", \"fa\": \"ایرلند\", \"fr\": \"Irlande\", \"hr\": \"Irska\", \"it\": \"Irlanda\", \"ja\": \"アイルランド\", \"kr\": \"아일랜드\", \"nl\": \"Ierland\", \"pt\": \"Irlanda\", \"tr\": \"İrlanda\", \"pt-BR\": \"Irlanda\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe/Dublin\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '372', 'IRL', 'Irish', 'Dublin', '.ie', 'Éire', 'Europe', 'EUR', 'Euro', '€', NULL, 53.00, -8.00, '🇮🇪', 'U+1F1EE U+1F1EA', 1, 1), -(107, 'Man (Isle of)', 'IM', '833', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Man (Isle of)\", \"cn\": \"马恩岛\", \"de\": \"Insel Man\", \"es\": \"Isla de Man\", \"fa\": \"جزیره من\", \"fr\": \"Île de Man\", \"hr\": \"Otok Man\", \"it\": \"Isola di Man\", \"ja\": \"マン島\", \"kr\": \"맨 섬\", \"nl\": \"Isle of Man\", \"pt\": \"Ilha de Man\", \"tr\": \"Man Adasi\", \"pt-BR\": \"Ilha de Man\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe/Isle_of_Man\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '833', 'IMN', 'Manx', 'Douglas, Isle of Man', '.im', 'Isle of Man', 'Europe', 'GBP', 'British pound', '£', NULL, 54.25, -4.50, '🇮🇲', 'U+1F1EE U+1F1F2', 1, 1), -(108, 'Israel', 'IL', '376', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Israel\", \"cn\": \"以色列\", \"de\": \"Israel\", \"es\": \"Israel\", \"fa\": \"اسرائیل\", \"fr\": \"Israël\", \"hr\": \"Izrael\", \"it\": \"Israele\", \"ja\": \"イスラエル\", \"kr\": \"이스라엘\", \"nl\": \"Israël\", \"pt\": \"Israel\", \"tr\": \"İsrail\", \"pt-BR\": \"Israel\"}', '[{\"tzName\": \"Israel Standard Time\", \"zoneName\": \"Asia/Jerusalem\", \"gmtOffset\": 7200, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+02:00\"}]', '376', 'ISR', 'Israeli', 'Jerusalem', '.il', 'יִשְׂרָאֵל', 'Asia', 'ILS', 'Israeli new shekel', '₪', NULL, 31.50, 34.75, '🇮🇱', 'U+1F1EE U+1F1F1', 1, 1), -(109, 'Italy', 'IT', '380', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Italy\", \"cn\": \"意大利\", \"de\": \"Italien\", \"es\": \"Italia\", \"fa\": \"ایتالیا\", \"fr\": \"Italie\", \"hr\": \"Italija\", \"it\": \"Italia\", \"ja\": \"イタリア\", \"kr\": \"이탈리아\", \"nl\": \"Italië\", \"pt\": \"Itália\", \"tr\": \"İtalya\", \"pt-BR\": \"Itália\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Rome\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '380', 'ITA', 'Italian', 'Rome', '.it', 'Italia', 'Europe', 'EUR', 'Euro', '€', NULL, 42.83, 12.83, '🇮🇹', 'U+1F1EE U+1F1F9', 1, 1), -(110, 'Jamaica', 'JM', '388', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Jamaica\", \"cn\": \"牙买加\", \"de\": \"Jamaika\", \"es\": \"Jamaica\", \"fa\": \"جامائیکا\", \"fr\": \"Jamaïque\", \"hr\": \"Jamajka\", \"it\": \"Giamaica\", \"ja\": \"ジャマイカ\", \"kr\": \"자메이카\", \"nl\": \"Jamaica\", \"pt\": \"Jamaica\", \"tr\": \"Jamaika\", \"pt-BR\": \"Jamaica\"}', '[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Jamaica\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '388', 'JAM', 'Jamaican', 'Kingston', '.jm', 'Jamaica', 'Americas', 'JMD', 'Jamaican dollar', 'J$', NULL, 18.25, -77.50, '🇯🇲', 'U+1F1EF U+1F1F2', 1, 1), -(111, 'Japan', 'JP', '392', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Japan\", \"cn\": \"日本\", \"de\": \"Japan\", \"es\": \"Japón\", \"fa\": \"ژاپن\", \"fr\": \"Japon\", \"hr\": \"Japan\", \"it\": \"Giappone\", \"ja\": \"日本\", \"kr\": \"일본\", \"nl\": \"Japan\", \"pt\": \"Japão\", \"tr\": \"Japonya\", \"pt-BR\": \"Japão\"}', '[{\"tzName\": \"Japan Standard Time\", \"zoneName\": \"Asia/Tokyo\", \"gmtOffset\": 32400, \"abbreviation\": \"JST\", \"gmtOffsetName\": \"UTC+09:00\"}]', '392', 'JPN', 'Japanese', 'Tokyo', '.jp', '日本', 'Asia', 'JPY', 'Japanese yen', '¥', NULL, 36.00, 138.00, '🇯🇵', 'U+1F1EF U+1F1F5', 1, 1), -(112, 'Jersey', 'JE', '832', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Jersey\", \"cn\": \"泽西岛\", \"de\": \"Jersey\", \"es\": \"Jersey\", \"fa\": \"جرزی\", \"fr\": \"Jersey\", \"hr\": \"Jersey\", \"it\": \"Isola di Jersey\", \"ja\": \"ジャージー\", \"kr\": \"저지 섬\", \"nl\": \"Jersey\", \"pt\": \"Jersey\", \"tr\": \"Jersey\", \"pt-BR\": \"Jersey\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe/Jersey\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '832', 'JEY', 'Channel Island', 'Saint Helier', '.je', 'Jersey', 'Europe', 'GBP', 'British pound', '£', NULL, 49.25, -2.17, '🇯🇪', 'U+1F1EF U+1F1EA', 1, 1), -(113, 'Jordan', 'JO', '400', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Jordan\", \"cn\": \"约旦\", \"de\": \"Jordanien\", \"es\": \"Jordania\", \"fa\": \"اردن\", \"fr\": \"Jordanie\", \"hr\": \"Jordan\", \"it\": \"Giordania\", \"ja\": \"ヨルダン\", \"kr\": \"요르단\", \"nl\": \"Jordanië\", \"pt\": \"Jordânia\", \"tr\": \"Ürdün\", \"pt-BR\": \"Jordânia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Amman\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '400', 'JOR', 'Jordanian', 'Amman', '.jo', 'الأردن', 'Asia', 'JOD', 'Jordanian dinar', 'ا.د', NULL, 31.00, 36.00, '🇯🇴', 'U+1F1EF U+1F1F4', 1, 1), -(114, 'Kazakhstan', 'KZ', '398', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Kazakhstan\", \"cn\": \"哈萨克斯坦\", \"de\": \"Kasachstan\", \"es\": \"Kazajistán\", \"fa\": \"قزاقستان\", \"fr\": \"Kazakhstan\", \"hr\": \"Kazahstan\", \"it\": \"Kazakistan\", \"ja\": \"カザフスタン\", \"kr\": \"카자흐스탄\", \"nl\": \"Kazachstan\", \"pt\": \"Cazaquistão\", \"tr\": \"Kazakistan\", \"pt-BR\": \"Cazaquistão\"}', '[{\"tzName\": \"Alma-Ata Time[1\", \"zoneName\": \"Asia/Almaty\", \"gmtOffset\": 21600, \"abbreviation\": \"ALMT\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Aqtobe Time\", \"zoneName\": \"Asia/Aqtau\", \"gmtOffset\": 18000, \"abbreviation\": \"AQTT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Aqtobe Time\", \"zoneName\": \"Asia/Aqtobe\", \"gmtOffset\": 18000, \"abbreviation\": \"AQTT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Moscow Daylight Time+1\", \"zoneName\": \"Asia/Atyrau\", \"gmtOffset\": 18000, \"abbreviation\": \"MSD+1\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Oral Time\", \"zoneName\": \"Asia/Oral\", \"gmtOffset\": 18000, \"abbreviation\": \"ORAT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Qyzylorda Summer Time\", \"zoneName\": \"Asia/Qostanay\", \"gmtOffset\": 21600, \"abbreviation\": \"QYZST\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Qyzylorda Summer Time\", \"zoneName\": \"Asia/Qyzylorda\", \"gmtOffset\": 18000, \"abbreviation\": \"QYZT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '398', 'KAZ', 'Kazakhstani, Kazakh', 'Astana', '.kz', 'Қазақстан', 'Asia', 'KZT', 'Kazakhstani tenge', 'лв', NULL, 48.00, 68.00, '🇰🇿', 'U+1F1F0 U+1F1FF', 1, 1), -(115, 'Kenya', 'KE', '404', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Kenya\", \"cn\": \"肯尼亚\", \"de\": \"Kenia\", \"es\": \"Kenia\", \"fa\": \"کنیا\", \"fr\": \"Kenya\", \"hr\": \"Kenija\", \"it\": \"Kenya\", \"ja\": \"ケニア\", \"kr\": \"케냐\", \"nl\": \"Kenia\", \"pt\": \"Quénia\", \"tr\": \"Kenya\", \"pt-BR\": \"Quênia\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Nairobi\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '404', 'KEN', 'Kenyan', 'Nairobi', '.ke', 'Kenya', 'Africa', 'KES', 'Kenyan shilling', 'KSh', NULL, 1.00, 38.00, '🇰🇪', 'U+1F1F0 U+1F1EA', 1, 1); -INSERT INTO `countries` (`id`, `name`, `code`, `phone`, `created_at`, `updated_at`, `translations`, `timezones`, `numeric_code`, `iso3`, `nationality`, `capital`, `tld`, `native`, `region`, `currency`, `currency_name`, `currency_symbol`, `wikiDataId`, `lat`, `lng`, `emoji`, `emojiU`, `flag`, `is_activated`) VALUES -(116, 'Kiribati', 'KI', '296', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Kiribati\", \"cn\": \"基里巴斯\", \"de\": \"Kiribati\", \"es\": \"Kiribati\", \"fa\": \"کیریباتی\", \"fr\": \"Kiribati\", \"hr\": \"Kiribati\", \"it\": \"Kiribati\", \"ja\": \"キリバス\", \"kr\": \"키리바시\", \"nl\": \"Kiribati\", \"pt\": \"Quiribáti\", \"tr\": \"Kiribati\", \"pt-BR\": \"Kiribati\"}', '[{\"tzName\": \"Phoenix Island Time\", \"zoneName\": \"Pacific/Enderbury\", \"gmtOffset\": 46800, \"abbreviation\": \"PHOT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Line Islands Time\", \"zoneName\": \"Pacific/Kiritimati\", \"gmtOffset\": 50400, \"abbreviation\": \"LINT\", \"gmtOffsetName\": \"UTC+14:00\"}, {\"tzName\": \"Gilbert Island Time\", \"zoneName\": \"Pacific/Tarawa\", \"gmtOffset\": 43200, \"abbreviation\": \"GILT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '296', 'KIR', 'I-Kiribati', 'Tarawa', '.ki', 'Kiribati', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, 1.42, 173.00, '🇰🇮', 'U+1F1F0 U+1F1EE', 1, 1), -(117, 'North Korea', 'KP', '408', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"North Korea\", \"cn\": \"朝鲜\", \"de\": \"Nordkorea\", \"es\": \"Corea del Norte\", \"fa\": \"کره جنوبی\", \"fr\": \"Corée du Nord\", \"hr\": \"Sjeverna Koreja\", \"it\": \"Corea del Nord\", \"ja\": \"朝鮮民主主義人民共和国\", \"kr\": \"조선민주주의인민공화국\", \"nl\": \"Noord-Korea\", \"pt\": \"Coreia do Norte\", \"tr\": \"Kuzey Kore\", \"pt-BR\": \"Coreia do Norte\"}', '[{\"tzName\": \"Korea Standard Time\", \"zoneName\": \"Asia/Pyongyang\", \"gmtOffset\": 32400, \"abbreviation\": \"KST\", \"gmtOffsetName\": \"UTC+09:00\"}]', '408', 'PRK', 'North Korean', 'Pyongyang', '.kp', '북한', 'Asia', 'KPW', 'North Korean Won', '₩', NULL, 40.00, 127.00, '🇰🇵', 'U+1F1F0 U+1F1F5', 1, 1), -(118, 'South Korea', 'KR', '410', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"South Korea\", \"cn\": \"韩国\", \"de\": \"Südkorea\", \"es\": \"Corea del Sur\", \"fa\": \"کره شمالی\", \"fr\": \"Corée du Sud\", \"hr\": \"Južna Koreja\", \"it\": \"Corea del Sud\", \"ja\": \"大韓民国\", \"kr\": \"대한민국\", \"nl\": \"Zuid-Korea\", \"pt\": \"Coreia do Sul\", \"tr\": \"Güney Kore\", \"pt-BR\": \"Coreia do Sul\"}', '[{\"tzName\": \"Korea Standard Time\", \"zoneName\": \"Asia/Seoul\", \"gmtOffset\": 32400, \"abbreviation\": \"KST\", \"gmtOffsetName\": \"UTC+09:00\"}]', '410', 'KOR', 'South Korean', 'Seoul', '.kr', '대한민국', 'Asia', 'KRW', 'Won', '₩', NULL, 37.00, 127.50, '🇰🇷', 'U+1F1F0 U+1F1F7', 1, 1), -(119, 'Kuwait', 'KW', '414', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Kuwait\", \"cn\": \"科威特\", \"de\": \"Kuwait\", \"es\": \"Kuwait\", \"fa\": \"کویت\", \"fr\": \"Koweït\", \"hr\": \"Kuvajt\", \"it\": \"Kuwait\", \"ja\": \"クウェート\", \"kr\": \"쿠웨이트\", \"nl\": \"Koeweit\", \"pt\": \"Kuwait\", \"tr\": \"Kuveyt\", \"pt-BR\": \"Kuwait\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Kuwait\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '414', 'KWT', 'Kuwaiti', 'Kuwait City', '.kw', 'الكويت', 'Asia', 'KWD', 'Kuwaiti dinar', 'ك.د', NULL, 29.50, 45.75, '🇰🇼', 'U+1F1F0 U+1F1FC', 1, 1), -(120, 'Kyrgyzstan', 'KG', '417', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Kyrgyzstan\", \"cn\": \"吉尔吉斯斯坦\", \"de\": \"Kirgisistan\", \"es\": \"Kirguizistán\", \"fa\": \"قرقیزستان\", \"fr\": \"Kirghizistan\", \"hr\": \"Kirgistan\", \"it\": \"Kirghizistan\", \"ja\": \"キルギス\", \"kr\": \"키르기스스탄\", \"nl\": \"Kirgizië\", \"pt\": \"Quirguizistão\", \"tr\": \"Kirgizistan\", \"pt-BR\": \"Quirguistão\"}', '[{\"tzName\": \"Kyrgyzstan Time\", \"zoneName\": \"Asia/Bishkek\", \"gmtOffset\": 21600, \"abbreviation\": \"KGT\", \"gmtOffsetName\": \"UTC+06:00\"}]', '417', 'KGZ', 'Kyrgyzstani, Kyrgyz, Kirgiz, Kirghiz', 'Bishkek', '.kg', 'Кыргызстан', 'Asia', 'KGS', 'Kyrgyzstani som', 'лв', NULL, 41.00, 75.00, '🇰🇬', 'U+1F1F0 U+1F1EC', 1, 1), -(121, 'Laos', 'LA', '418', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Laos\", \"cn\": \"寮人民民主共和国\", \"de\": \"Laos\", \"es\": \"Laos\", \"fa\": \"لائوس\", \"fr\": \"Laos\", \"hr\": \"Laos\", \"it\": \"Laos\", \"ja\": \"ラオス人民民主共和国\", \"kr\": \"라오스\", \"nl\": \"Laos\", \"pt\": \"Laos\", \"tr\": \"Laos\", \"pt-BR\": \"Laos\"}', '[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia/Vientiane\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]', '418', 'LAO', 'Lao, Laotian', 'Vientiane', '.la', 'ສປປລາວ', 'Asia', 'LAK', 'Lao kip', '₭', NULL, 18.00, 105.00, '🇱🇦', 'U+1F1F1 U+1F1E6', 1, 1), -(122, 'Latvia', 'LV', '428', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Latvia\", \"cn\": \"拉脱维亚\", \"de\": \"Lettland\", \"es\": \"Letonia\", \"fa\": \"لتونی\", \"fr\": \"Lettonie\", \"hr\": \"Latvija\", \"it\": \"Lettonia\", \"ja\": \"ラトビア\", \"kr\": \"라트비아\", \"nl\": \"Letland\", \"pt\": \"Letónia\", \"tr\": \"Letonya\", \"pt-BR\": \"Letônia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Riga\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '428', 'LVA', 'Latvian', 'Riga', '.lv', 'Latvija', 'Europe', 'EUR', 'Euro', '€', NULL, 57.00, 25.00, '🇱🇻', 'U+1F1F1 U+1F1FB', 1, 1), -(123, 'Lebanon', 'LB', '422', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Lebanon\", \"cn\": \"黎巴嫩\", \"de\": \"Libanon\", \"es\": \"Líbano\", \"fa\": \"لبنان\", \"fr\": \"Liban\", \"hr\": \"Libanon\", \"it\": \"Libano\", \"ja\": \"レバノン\", \"kr\": \"레바논\", \"nl\": \"Libanon\", \"pt\": \"Líbano\", \"tr\": \"Lübnan\", \"pt-BR\": \"Líbano\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Beirut\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '422', 'LBN', 'Lebanese', 'Beirut', '.lb', 'لبنان', 'Asia', 'LBP', 'Lebanese pound', '£', NULL, 33.83, 35.83, '🇱🇧', 'U+1F1F1 U+1F1E7', 1, 1), -(124, 'Lesotho', 'LS', '426', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Lesotho\", \"cn\": \"莱索托\", \"de\": \"Lesotho\", \"es\": \"Lesotho\", \"fa\": \"لسوتو\", \"fr\": \"Lesotho\", \"hr\": \"Lesoto\", \"it\": \"Lesotho\", \"ja\": \"レソト\", \"kr\": \"레소토\", \"nl\": \"Lesotho\", \"pt\": \"Lesoto\", \"tr\": \"Lesotho\", \"pt-BR\": \"Lesoto\"}', '[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa/Maseru\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]', '426', 'LSO', 'Basotho', 'Maseru', '.ls', 'Lesotho', 'Africa', 'LSL', 'Lesotho loti', 'L', NULL, -29.50, 28.50, '🇱🇸', 'U+1F1F1 U+1F1F8', 1, 1), -(125, 'Liberia', 'LR', '430', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Liberia\", \"cn\": \"利比里亚\", \"de\": \"Liberia\", \"es\": \"Liberia\", \"fa\": \"لیبریا\", \"fr\": \"Liberia\", \"hr\": \"Liberija\", \"it\": \"Liberia\", \"ja\": \"リベリア\", \"kr\": \"라이베리아\", \"nl\": \"Liberia\", \"pt\": \"Libéria\", \"tr\": \"Liberya\", \"pt-BR\": \"Libéria\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Monrovia\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '430', 'LBR', 'Liberian', 'Monrovia', '.lr', 'Liberia', 'Africa', 'LRD', 'Liberian dollar', '$', NULL, 6.50, -9.50, '🇱🇷', 'U+1F1F1 U+1F1F7', 1, 1), -(126, 'Libya', 'LY', '434', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Libya\", \"cn\": \"利比亚\", \"de\": \"Libyen\", \"es\": \"Libia\", \"fa\": \"لیبی\", \"fr\": \"Libye\", \"hr\": \"Libija\", \"it\": \"Libia\", \"ja\": \"リビア\", \"kr\": \"리비아\", \"nl\": \"Libië\", \"pt\": \"Líbia\", \"tr\": \"Libya\", \"pt-BR\": \"Líbia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Africa/Tripoli\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '434', 'LBY', 'Libyan', 'Tripolis', '.ly', '‏ليبيا', 'Africa', 'LYD', 'Libyan dinar', 'د.ل', NULL, 25.00, 17.00, '🇱🇾', 'U+1F1F1 U+1F1FE', 1, 1), -(127, 'Liechtenstein', 'LI', '438', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Liechtenstein\", \"cn\": \"列支敦士登\", \"de\": \"Liechtenstein\", \"es\": \"Liechtenstein\", \"fa\": \"لیختن‌اشتاین\", \"fr\": \"Liechtenstein\", \"hr\": \"Lihtenštajn\", \"it\": \"Liechtenstein\", \"ja\": \"リヒテンシュタイン\", \"kr\": \"리히텐슈타인\", \"nl\": \"Liechtenstein\", \"pt\": \"Listenstaine\", \"tr\": \"Lihtenştayn\", \"pt-BR\": \"Liechtenstein\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Vaduz\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '438', 'LIE', 'Liechtenstein', 'Vaduz', '.li', 'Liechtenstein', 'Europe', 'CHF', 'Swiss franc', 'CHf', NULL, 47.27, 9.53, '🇱🇮', 'U+1F1F1 U+1F1EE', 1, 1), -(128, 'Lithuania', 'LT', '440', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Lithuania\", \"cn\": \"立陶宛\", \"de\": \"Litauen\", \"es\": \"Lituania\", \"fa\": \"لیتوانی\", \"fr\": \"Lituanie\", \"hr\": \"Litva\", \"it\": \"Lituania\", \"ja\": \"リトアニア\", \"kr\": \"리투아니아\", \"nl\": \"Litouwen\", \"pt\": \"Lituânia\", \"tr\": \"Litvanya\", \"pt-BR\": \"Lituânia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Vilnius\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '440', 'LTU', 'Lithuanian', 'Vilnius', '.lt', 'Lietuva', 'Europe', 'EUR', 'Euro', '€', NULL, 56.00, 24.00, '🇱🇹', 'U+1F1F1 U+1F1F9', 1, 1), -(129, 'Luxembourg', 'LU', '442', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Luxembourg\", \"cn\": \"卢森堡\", \"de\": \"Luxemburg\", \"es\": \"Luxemburgo\", \"fa\": \"لوکزامبورگ\", \"fr\": \"Luxembourg\", \"hr\": \"Luksemburg\", \"it\": \"Lussemburgo\", \"ja\": \"ルクセンブルク\", \"kr\": \"룩셈부르크\", \"nl\": \"Luxemburg\", \"pt\": \"Luxemburgo\", \"tr\": \"Lüksemburg\", \"pt-BR\": \"Luxemburgo\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Luxembourg\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '442', 'LUX', 'Luxembourg, Luxembourgish', 'Luxembourg', '.lu', 'Luxembourg', 'Europe', 'EUR', 'Euro', '€', NULL, 49.75, 6.17, '🇱🇺', 'U+1F1F1 U+1F1FA', 1, 1), -(130, 'Macau S.A.R.', 'MO', '446', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Macau S.A.R.\", \"cn\": \"中国澳门\", \"de\": \"Macao\", \"es\": \"Macao\", \"fa\": \"مکائو\", \"fr\": \"Macao\", \"hr\": \"Makao\", \"it\": \"Macao\", \"ja\": \"マカオ\", \"kr\": \"마카오\", \"nl\": \"Macao\", \"pt\": \"Macau\", \"tr\": \"Makao\", \"pt-BR\": \"Macau\"}', '[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia/Macau\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}]', '446', 'MAC', 'Macanese, Chinese', 'Macao', '.mo', '澳門', 'Asia', 'MOP', 'Macanese pataca', '$', NULL, 22.17, 113.55, '🇲🇴', 'U+1F1F2 U+1F1F4', 1, 1), -(131, 'North Macedonia', 'MK', '807', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"North Macedonia\", \"cn\": \"北馬其頓\", \"de\": \"Nordmazedonien\", \"es\": \"Macedonia del Norte\", \"fa\": \"ﻢﻗﺩﻮﻨﯿﻫ ﺶﻣﺎﻠﯾ\", \"fr\": \"Macédoine du Nord\", \"hr\": \"Sjeverna Makedonija\", \"it\": \"Macedonia del Nord\", \"ja\": \"北マケドニア\", \"kr\": \"북마케도니아\", \"nl\": \"Noord-Macedonië\", \"pt\": \"Macedónia do Norte\", \"tr\": \"Kuzey Makedonya\", \"pt-BR\": \"Macedônia do Norte\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Skopje\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '807', 'MKD', 'Macedonian', 'Skopje', '.mk', 'Северна Македонија', 'Europe', 'MKD', 'Denar', 'ден', NULL, 41.83, 22.00, '🇲🇰', 'U+1F1F2 U+1F1F0', 1, 1), -(132, 'Madagascar', 'MG', '450', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Madagascar\", \"cn\": \"马达加斯加\", \"de\": \"Madagaskar\", \"es\": \"Madagascar\", \"fa\": \"ماداگاسکار\", \"fr\": \"Madagascar\", \"hr\": \"Madagaskar\", \"it\": \"Madagascar\", \"ja\": \"マダガスカル\", \"kr\": \"마다가스카르\", \"nl\": \"Madagaskar\", \"pt\": \"Madagáscar\", \"tr\": \"Madagaskar\", \"pt-BR\": \"Madagascar\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian/Antananarivo\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '450', 'MDG', 'Malagasy', 'Antananarivo', '.mg', 'Madagasikara', 'Africa', 'MGA', 'Malagasy ariary', 'Ar', NULL, -20.00, 47.00, '🇲🇬', 'U+1F1F2 U+1F1EC', 1, 1), -(133, 'Malawi', 'MW', '454', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Malawi\", \"cn\": \"马拉维\", \"de\": \"Malawi\", \"es\": \"Malawi\", \"fa\": \"مالاوی\", \"fr\": \"Malawi\", \"hr\": \"Malavi\", \"it\": \"Malawi\", \"ja\": \"マラウイ\", \"kr\": \"말라위\", \"nl\": \"Malawi\", \"pt\": \"Malávi\", \"tr\": \"Malavi\", \"pt-BR\": \"Malawi\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Blantyre\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '454', 'MWI', 'Malawian', 'Lilongwe', '.mw', 'Malawi', 'Africa', 'MWK', 'Malawian kwacha', 'MK', NULL, -13.50, 34.00, '🇲🇼', 'U+1F1F2 U+1F1FC', 1, 1), -(134, 'Malaysia', 'MY', '458', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Malaysia\", \"cn\": \"马来西亚\", \"de\": \"Malaysia\", \"es\": \"Malasia\", \"fa\": \"مالزی\", \"fr\": \"Malaisie\", \"hr\": \"Malezija\", \"it\": \"Malesia\", \"ja\": \"マレーシア\", \"kr\": \"말레이시아\", \"nl\": \"Maleisië\", \"pt\": \"Malásia\", \"tr\": \"Malezya\", \"pt-BR\": \"Malásia\"}', '[{\"tzName\": \"Malaysia Time\", \"zoneName\": \"Asia/Kuala_Lumpur\", \"gmtOffset\": 28800, \"abbreviation\": \"MYT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Malaysia Time\", \"zoneName\": \"Asia/Kuching\", \"gmtOffset\": 28800, \"abbreviation\": \"MYT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '458', 'MYS', 'Malaysian', 'Kuala Lumpur', '.my', 'Malaysia', 'Asia', 'MYR', 'Malaysian ringgit', 'RM', NULL, 2.50, 112.50, '🇲🇾', 'U+1F1F2 U+1F1FE', 1, 1), -(135, 'Maldives', 'MV', '462', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Maldives\", \"cn\": \"马尔代夫\", \"de\": \"Malediven\", \"es\": \"Maldivas\", \"fa\": \"مالدیو\", \"fr\": \"Maldives\", \"hr\": \"Maldivi\", \"it\": \"Maldive\", \"ja\": \"モルディブ\", \"kr\": \"몰디브\", \"nl\": \"Maldiven\", \"pt\": \"Maldivas\", \"tr\": \"Maldivler\", \"pt-BR\": \"Maldivas\"}', '[{\"tzName\": \"Maldives Time\", \"zoneName\": \"Indian/Maldives\", \"gmtOffset\": 18000, \"abbreviation\": \"MVT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '462', 'MDV', 'Maldivian', 'Male', '.mv', 'Maldives', 'Asia', 'MVR', 'Maldivian rufiyaa', 'Rf', NULL, 3.25, 73.00, '🇲🇻', 'U+1F1F2 U+1F1FB', 1, 1), -(136, 'Mali', 'ML', '466', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mali\", \"cn\": \"马里\", \"de\": \"Mali\", \"es\": \"Mali\", \"fa\": \"مالی\", \"fr\": \"Mali\", \"hr\": \"Mali\", \"it\": \"Mali\", \"ja\": \"マリ\", \"kr\": \"말리\", \"nl\": \"Mali\", \"pt\": \"Mali\", \"tr\": \"Mali\", \"pt-BR\": \"Mali\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Bamako\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '466', 'MLI', 'Malian, Malinese', 'Bamako', '.ml', 'Mali', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 17.00, -4.00, '🇲🇱', 'U+1F1F2 U+1F1F1', 1, 1), -(137, 'Malta', 'MT', '470', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Malta\", \"cn\": \"马耳他\", \"de\": \"Malta\", \"es\": \"Malta\", \"fa\": \"مالت\", \"fr\": \"Malte\", \"hr\": \"Malta\", \"it\": \"Malta\", \"ja\": \"マルタ\", \"kr\": \"몰타\", \"nl\": \"Malta\", \"pt\": \"Malta\", \"tr\": \"Malta\", \"pt-BR\": \"Malta\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Malta\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '470', 'MLT', 'Maltese', 'Valletta', '.mt', 'Malta', 'Europe', 'EUR', 'Euro', '€', NULL, 35.83, 14.58, '🇲🇹', 'U+1F1F2 U+1F1F9', 1, 1), -(138, 'Marshall Islands', 'MH', '584', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Marshall Islands\", \"cn\": \"马绍尔群岛\", \"de\": \"Marshallinseln\", \"es\": \"Islas Marshall\", \"fa\": \"جزایر مارشال\", \"fr\": \"Îles Marshall\", \"hr\": \"Maršalovi Otoci\", \"it\": \"Isole Marshall\", \"ja\": \"マーシャル諸島\", \"kr\": \"마셜 제도\", \"nl\": \"Marshalleilanden\", \"pt\": \"Ilhas Marshall\", \"tr\": \"Marşal Adalari\", \"pt-BR\": \"Ilhas Marshall\"}', '[{\"tzName\": \"Marshall Islands Time\", \"zoneName\": \"Pacific/Kwajalein\", \"gmtOffset\": 43200, \"abbreviation\": \"MHT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Marshall Islands Time\", \"zoneName\": \"Pacific/Majuro\", \"gmtOffset\": 43200, \"abbreviation\": \"MHT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '584', 'MHL', 'Marshallese', 'Majuro', '.mh', 'M̧ajeļ', 'Oceania', 'USD', 'United States dollar', '$', NULL, 9.00, 168.00, '🇲🇭', 'U+1F1F2 U+1F1ED', 1, 1), -(139, 'Martinique', 'MQ', '474', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Martinique\", \"cn\": \"马提尼克岛\", \"de\": \"Martinique\", \"es\": \"Martinica\", \"fa\": \"مونتسرات\", \"fr\": \"Martinique\", \"hr\": \"Martinique\", \"it\": \"Martinica\", \"ja\": \"マルティニーク\", \"kr\": \"마르티니크\", \"nl\": \"Martinique\", \"pt\": \"Martinica\", \"tr\": \"Martinik\", \"pt-BR\": \"Martinica\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Martinique\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '474', 'MTQ', 'Martiniquais, Martinican', 'Fort-de-France', '.mq', 'Martinique', 'Americas', 'EUR', 'Euro', '€', NULL, 14.67, -61.00, '🇲🇶', 'U+1F1F2 U+1F1F6', 1, 1), -(140, 'Mauritania', 'MR', '478', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mauritania\", \"cn\": \"毛里塔尼亚\", \"de\": \"Mauretanien\", \"es\": \"Mauritania\", \"fa\": \"موریتانی\", \"fr\": \"Mauritanie\", \"hr\": \"Mauritanija\", \"it\": \"Mauritania\", \"ja\": \"モーリタニア\", \"kr\": \"모리타니\", \"nl\": \"Mauritanië\", \"pt\": \"Mauritânia\", \"tr\": \"Moritanya\", \"pt-BR\": \"Mauritânia\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Nouakchott\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '478', 'MRT', 'Mauritanian', 'Nouakchott', '.mr', 'موريتانيا', 'Africa', 'MRO', 'Mauritanian ouguiya', 'MRU', NULL, 20.00, -12.00, '🇲🇷', 'U+1F1F2 U+1F1F7', 1, 1), -(141, 'Mauritius', 'MU', '480', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mauritius\", \"cn\": \"毛里求斯\", \"de\": \"Mauritius\", \"es\": \"Mauricio\", \"fa\": \"موریس\", \"fr\": \"Île Maurice\", \"hr\": \"Mauricijus\", \"it\": \"Mauritius\", \"ja\": \"モーリシャス\", \"kr\": \"모리셔스\", \"nl\": \"Mauritius\", \"pt\": \"Maurícia\", \"tr\": \"Morityus\", \"pt-BR\": \"Maurício\"}', '[{\"tzName\": \"Mauritius Time\", \"zoneName\": \"Indian/Mauritius\", \"gmtOffset\": 14400, \"abbreviation\": \"MUT\", \"gmtOffsetName\": \"UTC+04:00\"}]', '480', 'MUS', 'Mauritian', 'Port Louis', '.mu', 'Maurice', 'Africa', 'MUR', 'Mauritian rupee', '₨', NULL, -20.28, 57.55, '🇲🇺', 'U+1F1F2 U+1F1FA', 1, 1), -(142, 'Mayotte', 'YT', '175', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mayotte\", \"cn\": \"马约特\", \"de\": \"Mayotte\", \"es\": \"Mayotte\", \"fa\": \"مایوت\", \"fr\": \"Mayotte\", \"hr\": \"Mayotte\", \"it\": \"Mayotte\", \"ja\": \"マヨット\", \"kr\": \"마요트\", \"nl\": \"Mayotte\", \"pt\": \"Mayotte\", \"tr\": \"Mayotte\", \"pt-BR\": \"Mayotte\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Indian/Mayotte\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '175', 'MYT', 'Mahoran', 'Mamoudzou', '.yt', 'Mayotte', 'Africa', 'EUR', 'Euro', '€', NULL, -12.83, 45.17, '🇾🇹', 'U+1F1FE U+1F1F9', 1, 1), -(143, 'Mexico', 'MX', '484', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mexico\", \"cn\": \"墨西哥\", \"de\": \"Mexiko\", \"es\": \"México\", \"fa\": \"مکزیک\", \"fr\": \"Mexique\", \"hr\": \"Meksiko\", \"it\": \"Messico\", \"ja\": \"メキシコ\", \"kr\": \"멕시코\", \"nl\": \"Mexico\", \"pt\": \"México\", \"tr\": \"Meksika\", \"pt-BR\": \"México\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Bahia_Banderas\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Cancun\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Chihuahua\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Hermosillo\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Matamoros\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Mazatlan\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Merida\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Mexico_City\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Monterrey\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Ojinaga\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America/Tijuana\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}]', '484', 'MEX', 'Mexican', 'Ciudad de México', '.mx', 'México', 'Americas', 'MXN', 'Mexican peso', '$', NULL, 23.00, -102.00, '🇲🇽', 'U+1F1F2 U+1F1FD', 1, 1), -(144, 'Micronesia', 'FM', '583', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Micronesia\", \"cn\": \"密克罗尼西亚\", \"de\": \"Mikronesien\", \"es\": \"Micronesia\", \"fa\": \"ایالات فدرال میکرونزی\", \"fr\": \"Micronésie\", \"hr\": \"Mikronezija\", \"it\": \"Micronesia\", \"ja\": \"ミクロネシア連邦\", \"kr\": \"미크로네시아 연방\", \"nl\": \"Micronesië\", \"pt\": \"Micronésia\", \"tr\": \"Mikronezya\", \"pt-BR\": \"Micronésia\"}', '[{\"tzName\": \"Chuuk Time\", \"zoneName\": \"Pacific/Chuuk\", \"gmtOffset\": 36000, \"abbreviation\": \"CHUT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Kosrae Time\", \"zoneName\": \"Pacific/Kosrae\", \"gmtOffset\": 39600, \"abbreviation\": \"KOST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Pohnpei Standard Time\", \"zoneName\": \"Pacific/Pohnpei\", \"gmtOffset\": 39600, \"abbreviation\": \"PONT\", \"gmtOffsetName\": \"UTC+11:00\"}]', '583', 'FSM', 'Micronesian', 'Palikir', '.fm', 'Micronesia', 'Oceania', 'USD', 'United States dollar', '$', NULL, 6.92, 158.25, '🇫🇲', 'U+1F1EB U+1F1F2', 1, 1), -(145, 'Moldova', 'MD', '498', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Moldova\", \"cn\": \"摩尔多瓦\", \"de\": \"Moldawie\", \"es\": \"Moldavia\", \"fa\": \"مولداوی\", \"fr\": \"Moldavie\", \"hr\": \"Moldova\", \"it\": \"Moldavia\", \"ja\": \"モルドバ共和国\", \"kr\": \"몰도바\", \"nl\": \"Moldavië\", \"pt\": \"Moldávia\", \"tr\": \"Moldova\", \"pt-BR\": \"Moldávia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Chisinau\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '498', 'MDA', 'Moldovan', 'Chisinau', '.md', 'Moldova', 'Europe', 'MDL', 'Moldovan leu', 'L', NULL, 47.00, 29.00, '🇲🇩', 'U+1F1F2 U+1F1E9', 1, 1), -(146, 'Monaco', 'MC', '492', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Monaco\", \"cn\": \"摩纳哥\", \"de\": \"Monaco\", \"es\": \"Mónaco\", \"fa\": \"موناکو\", \"fr\": \"Monaco\", \"hr\": \"Monako\", \"it\": \"Principato di Monaco\", \"ja\": \"モナコ\", \"kr\": \"모나코\", \"nl\": \"Monaco\", \"pt\": \"Mónaco\", \"tr\": \"Monako\", \"pt-BR\": \"Mônaco\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Monaco\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '492', 'MCO', 'Monegasque, Monacan', 'Monaco', '.mc', 'Monaco', 'Europe', 'EUR', 'Euro', '€', NULL, 43.73, 7.40, '🇲🇨', 'U+1F1F2 U+1F1E8', 1, 1), -(147, 'Mongolia', 'MN', '496', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mongolia\", \"cn\": \"蒙古\", \"de\": \"Mongolei\", \"es\": \"Mongolia\", \"fa\": \"مغولستان\", \"fr\": \"Mongolie\", \"hr\": \"Mongolija\", \"it\": \"Mongolia\", \"ja\": \"モンゴル\", \"kr\": \"몽골\", \"nl\": \"Mongolië\", \"pt\": \"Mongólia\", \"tr\": \"Moğolistan\", \"pt-BR\": \"Mongólia\"}', '[{\"tzName\": \"Choibalsan Standard Time\", \"zoneName\": \"Asia/Choibalsan\", \"gmtOffset\": 28800, \"abbreviation\": \"CHOT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Hovd Time\", \"zoneName\": \"Asia/Hovd\", \"gmtOffset\": 25200, \"abbreviation\": \"HOVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Ulaanbaatar Standard Time\", \"zoneName\": \"Asia/Ulaanbaatar\", \"gmtOffset\": 28800, \"abbreviation\": \"ULAT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '496', 'MNG', 'Mongolian', 'Ulan Bator', '.mn', 'Монгол улс', 'Asia', 'MNT', 'Mongolian tögrög', '₮', NULL, 46.00, 105.00, '🇲🇳', 'U+1F1F2 U+1F1F3', 1, 1), -(148, 'Montenegro', 'ME', '499', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Montenegro\", \"cn\": \"黑山\", \"de\": \"Montenegro\", \"es\": \"Montenegro\", \"fa\": \"مونته‌نگرو\", \"fr\": \"Monténégro\", \"hr\": \"Crna Gora\", \"it\": \"Montenegro\", \"ja\": \"モンテネグロ\", \"kr\": \"몬테네그로\", \"nl\": \"Montenegro\", \"pt\": \"Montenegro\", \"tr\": \"Karadağ\", \"pt-BR\": \"Montenegro\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Podgorica\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '499', 'MNE', 'Montenegrin', 'Podgorica', '.me', 'Црна Гора', 'Europe', 'EUR', 'Euro', '€', NULL, 42.50, 19.30, '🇲🇪', 'U+1F1F2 U+1F1EA', 1, 1), -(149, 'Montserrat', 'MS', '500', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Montserrat\", \"cn\": \"蒙特塞拉特\", \"de\": \"Montserrat\", \"es\": \"Montserrat\", \"fa\": \"مایوت\", \"fr\": \"Montserrat\", \"hr\": \"Montserrat\", \"it\": \"Montserrat\", \"ja\": \"モントセラト\", \"kr\": \"몬트세랫\", \"nl\": \"Montserrat\", \"pt\": \"Monserrate\", \"tr\": \"Montserrat\", \"pt-BR\": \"Montserrat\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Montserrat\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '500', 'MSR', 'Montserratian', 'Plymouth', '.ms', 'Montserrat', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 16.75, -62.20, '🇲🇸', 'U+1F1F2 U+1F1F8', 1, 1), -(150, 'Morocco', 'MA', '504', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Morocco\", \"cn\": \"摩洛哥\", \"de\": \"Marokko\", \"es\": \"Marruecos\", \"fa\": \"مراکش\", \"fr\": \"Maroc\", \"hr\": \"Maroko\", \"it\": \"Marocco\", \"ja\": \"モロッコ\", \"kr\": \"모로코\", \"nl\": \"Marokko\", \"pt\": \"Marrocos\", \"tr\": \"Fas\", \"pt-BR\": \"Marrocos\"}', '[{\"tzName\": \"Western European Summer Time\", \"zoneName\": \"Africa/Casablanca\", \"gmtOffset\": 3600, \"abbreviation\": \"WEST\", \"gmtOffsetName\": \"UTC+01:00\"}]', '504', 'MAR', 'Moroccan', 'Rabat', '.ma', 'المغرب', 'Africa', 'MAD', 'Moroccan dirham', 'DH', NULL, 32.00, -5.00, '🇲🇦', 'U+1F1F2 U+1F1E6', 1, 1), -(151, 'Mozambique', 'MZ', '508', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Mozambique\", \"cn\": \"莫桑比克\", \"de\": \"Mosambik\", \"es\": \"Mozambique\", \"fa\": \"موزامبیک\", \"fr\": \"Mozambique\", \"hr\": \"Mozambik\", \"it\": \"Mozambico\", \"ja\": \"モザンビーク\", \"kr\": \"모잠비크\", \"nl\": \"Mozambique\", \"pt\": \"Moçambique\", \"tr\": \"Mozambik\", \"pt-BR\": \"Moçambique\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Maputo\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '508', 'MOZ', 'Mozambican', 'Maputo', '.mz', 'Moçambique', 'Africa', 'MZN', 'Mozambican metical', 'MT', NULL, -18.25, 35.00, '🇲🇿', 'U+1F1F2 U+1F1FF', 1, 1), -(152, 'Myanmar', 'MM', '104', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Myanmar\", \"cn\": \"缅甸\", \"de\": \"Myanmar\", \"es\": \"Myanmar\", \"fa\": \"میانمار\", \"fr\": \"Myanmar\", \"hr\": \"Mijanmar\", \"it\": \"Birmania\", \"ja\": \"ミャンマー\", \"kr\": \"미얀마\", \"nl\": \"Myanmar\", \"pt\": \"Myanmar\", \"tr\": \"Myanmar\", \"pt-BR\": \"Myanmar\"}', '[{\"tzName\": \"Myanmar Standard Time\", \"zoneName\": \"Asia/Yangon\", \"gmtOffset\": 23400, \"abbreviation\": \"MMT\", \"gmtOffsetName\": \"UTC+06:30\"}]', '104', 'MMR', 'Burmese', 'Nay Pyi Taw', '.mm', 'မြန်မာ', 'Asia', 'MMK', 'Burmese kyat', 'K', NULL, 22.00, 98.00, '🇲🇲', 'U+1F1F2 U+1F1F2', 1, 1), -(153, 'Namibia', 'NA', '516', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Namibia\", \"cn\": \"纳米比亚\", \"de\": \"Namibia\", \"es\": \"Namibia\", \"fa\": \"نامیبیا\", \"fr\": \"Namibie\", \"hr\": \"Namibija\", \"it\": \"Namibia\", \"ja\": \"ナミビア\", \"kr\": \"나미비아\", \"nl\": \"Namibië\", \"pt\": \"Namíbia\", \"tr\": \"Namibya\", \"pt-BR\": \"Namíbia\"}', '[{\"tzName\": \"West Africa Summer Time\", \"zoneName\": \"Africa/Windhoek\", \"gmtOffset\": 7200, \"abbreviation\": \"WAST\", \"gmtOffsetName\": \"UTC+02:00\"}]', '516', 'NAM', 'Namibian', 'Windhoek', '.na', 'Namibia', 'Africa', 'NAD', 'Namibian dollar', '$', NULL, -22.00, 17.00, '🇳🇦', 'U+1F1F3 U+1F1E6', 1, 1), -(154, 'Nauru', 'NR', '520', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Nauru\", \"cn\": \"瑙鲁\", \"de\": \"Nauru\", \"es\": \"Nauru\", \"fa\": \"نائورو\", \"fr\": \"Nauru\", \"hr\": \"Nauru\", \"it\": \"Nauru\", \"ja\": \"ナウル\", \"kr\": \"나우루\", \"nl\": \"Nauru\", \"pt\": \"Nauru\", \"tr\": \"Nauru\", \"pt-BR\": \"Nauru\"}', '[{\"tzName\": \"Nauru Time\", \"zoneName\": \"Pacific/Nauru\", \"gmtOffset\": 43200, \"abbreviation\": \"NRT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '520', 'NRU', 'Nauruan', 'Yaren', '.nr', 'Nauru', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -0.53, 166.92, '🇳🇷', 'U+1F1F3 U+1F1F7', 1, 1), -(155, 'Nepal', 'NP', '524', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Nepal\", \"cn\": \"尼泊尔\", \"de\": \"Népal\", \"es\": \"Nepal\", \"fa\": \"نپال\", \"fr\": \"Népal\", \"hr\": \"Nepal\", \"it\": \"Nepal\", \"ja\": \"ネパール\", \"kr\": \"네팔\", \"nl\": \"Nepal\", \"pt\": \"Nepal\", \"tr\": \"Nepal\", \"pt-BR\": \"Nepal\"}', '[{\"tzName\": \"Nepal Time\", \"zoneName\": \"Asia/Kathmandu\", \"gmtOffset\": 20700, \"abbreviation\": \"NPT\", \"gmtOffsetName\": \"UTC+05:45\"}]', '524', 'NPL', 'Nepali, Nepalese', 'Kathmandu', '.np', 'नपल', 'Asia', 'NPR', 'Nepalese rupee', '₨', NULL, 28.00, 84.00, '🇳🇵', 'U+1F1F3 U+1F1F5', 1, 1), -(156, 'Netherlands', 'NL', '528', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Netherlands\", \"cn\": \"荷兰\", \"de\": \"Niederlande\", \"es\": \"Países Bajos\", \"fa\": \"پادشاهی هلند\", \"fr\": \"Pays-Bas\", \"hr\": \"Nizozemska\", \"it\": \"Paesi Bassi\", \"ja\": \"オランダ\", \"kr\": \"네덜란드 \", \"nl\": \"Nederland\", \"pt\": \"Países Baixos\", \"tr\": \"Hollanda\", \"pt-BR\": \"Holanda\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Amsterdam\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '528', 'NLD', 'Dutch, Netherlandic', 'Amsterdam', '.nl', 'Nederland', 'Europe', 'EUR', 'Euro', '€', NULL, 52.50, 5.75, '🇳🇱', 'U+1F1F3 U+1F1F1', 1, 1), -(157, 'New Caledonia', 'NC', '540', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"New Caledonia\", \"cn\": \"新喀里多尼亚\", \"de\": \"Neukaledonien\", \"es\": \"Nueva Caledonia\", \"fa\": \"کالدونیای جدید\", \"fr\": \"Nouvelle-Calédonie\", \"hr\": \"Nova Kaledonija\", \"it\": \"Nuova Caledonia\", \"ja\": \"ニューカレドニア\", \"kr\": \"누벨칼레도니\", \"nl\": \"Nieuw-Caledonië\", \"pt\": \"Nova Caledónia\", \"tr\": \"Yeni Kaledonya\", \"pt-BR\": \"Nova Caledônia\"}', '[{\"tzName\": \"New Caledonia Time\", \"zoneName\": \"Pacific/Noumea\", \"gmtOffset\": 39600, \"abbreviation\": \"NCT\", \"gmtOffsetName\": \"UTC+11:00\"}]', '540', 'NCL', 'New Caledonian', 'Noumea', '.nc', 'Nouvelle-Calédonie', 'Oceania', 'XPF', 'CFP franc', '₣', NULL, -21.50, 165.50, '🇳🇨', 'U+1F1F3 U+1F1E8', 1, 1), -(158, 'New Zealand', 'NZ', '554', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"New Zealand\", \"cn\": \"新西兰\", \"de\": \"Neuseeland\", \"es\": \"Nueva Zelanda\", \"fa\": \"نیوزیلند\", \"fr\": \"Nouvelle-Zélande\", \"hr\": \"Novi Zeland\", \"it\": \"Nuova Zelanda\", \"ja\": \"ニュージーランド\", \"kr\": \"뉴질랜드\", \"nl\": \"Nieuw-Zeeland\", \"pt\": \"Nova Zelândia\", \"tr\": \"Yeni Zelanda\", \"pt-BR\": \"Nova Zelândia\"}', '[{\"tzName\": \"New Zealand Daylight Time\", \"zoneName\": \"Pacific/Auckland\", \"gmtOffset\": 46800, \"abbreviation\": \"NZDT\", \"gmtOffsetName\": \"UTC+13:00\"}, {\"tzName\": \"Chatham Standard Time\", \"zoneName\": \"Pacific/Chatham\", \"gmtOffset\": 49500, \"abbreviation\": \"CHAST\", \"gmtOffsetName\": \"UTC+13:45\"}]', '554', 'NZL', 'New Zealand, NZ', 'Wellington', '.nz', 'New Zealand', 'Oceania', 'NZD', 'New Zealand dollar', '$', NULL, -41.00, 174.00, '🇳🇿', 'U+1F1F3 U+1F1FF', 1, 1), -(159, 'Nicaragua', 'NI', '558', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Nicaragua\", \"cn\": \"尼加拉瓜\", \"de\": \"Nicaragua\", \"es\": \"Nicaragua\", \"fa\": \"نیکاراگوئه\", \"fr\": \"Nicaragua\", \"hr\": \"Nikaragva\", \"it\": \"Nicaragua\", \"ja\": \"ニカラグア\", \"kr\": \"니카라과\", \"nl\": \"Nicaragua\", \"pt\": \"Nicarágua\", \"tr\": \"Nikaragua\", \"pt-BR\": \"Nicarágua\"}', '[{\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Managua\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}]', '558', 'NIC', 'Nicaraguan', 'Managua', '.ni', 'Nicaragua', 'Americas', 'NIO', 'Nicaraguan córdoba', 'C$', NULL, 13.00, -85.00, '🇳🇮', 'U+1F1F3 U+1F1EE', 1, 1), -(160, 'Niger', 'NE', '562', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Niger\", \"cn\": \"尼日尔\", \"de\": \"Niger\", \"es\": \"Níger\", \"fa\": \"نیجر\", \"fr\": \"Niger\", \"hr\": \"Niger\", \"it\": \"Niger\", \"ja\": \"ニジェール\", \"kr\": \"니제르\", \"nl\": \"Niger\", \"pt\": \"Níger\", \"tr\": \"Nijer\", \"pt-BR\": \"Níger\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Niamey\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '562', 'NER', 'Nigerien', 'Niamey', '.ne', 'Niger', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 16.00, 8.00, '🇳🇪', 'U+1F1F3 U+1F1EA', 1, 1), -(161, 'Nigeria', 'NG', '566', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Nigeria\", \"cn\": \"尼日利亚\", \"de\": \"Nigeria\", \"es\": \"Nigeria\", \"fa\": \"نیجریه\", \"fr\": \"Nigéria\", \"hr\": \"Nigerija\", \"it\": \"Nigeria\", \"ja\": \"ナイジェリア\", \"kr\": \"나이지리아\", \"nl\": \"Nigeria\", \"pt\": \"Nigéria\", \"tr\": \"Nijerya\", \"pt-BR\": \"Nigéria\"}', '[{\"tzName\": \"West Africa Time\", \"zoneName\": \"Africa/Lagos\", \"gmtOffset\": 3600, \"abbreviation\": \"WAT\", \"gmtOffsetName\": \"UTC+01:00\"}]', '566', 'NGA', 'Nigerian', 'Abuja', '.ng', 'Nigeria', 'Africa', 'NGN', 'Nigerian naira', '₦', NULL, 10.00, 8.00, '🇳🇬', 'U+1F1F3 U+1F1EC', 1, 1), -(162, 'Niue', 'NU', '570', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Niue\", \"cn\": \"纽埃\", \"de\": \"Niue\", \"es\": \"Niue\", \"fa\": \"نیووی\", \"fr\": \"Niue\", \"hr\": \"Niue\", \"it\": \"Niue\", \"ja\": \"ニウエ\", \"kr\": \"니우에\", \"nl\": \"Niue\", \"pt\": \"Niue\", \"tr\": \"Niue\", \"pt-BR\": \"Niue\"}', '[{\"tzName\": \"Niue Time\", \"zoneName\": \"Pacific/Niue\", \"gmtOffset\": -39600, \"abbreviation\": \"NUT\", \"gmtOffsetName\": \"UTC-11:00\"}]', '570', 'NIU', 'Niuean', 'Alofi', '.nu', 'Niuē', 'Oceania', 'NZD', 'New Zealand dollar', '$', NULL, -19.03, -169.87, '🇳🇺', 'U+1F1F3 U+1F1FA', 1, 1), -(163, 'Norfolk Island', 'NF', '574', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Norfolk Island\", \"cn\": \"诺福克岛\", \"de\": \"Norfolkinsel\", \"es\": \"Isla de Norfolk\", \"fa\": \"جزیره نورفک\", \"fr\": \"Île de Norfolk\", \"hr\": \"Otok Norfolk\", \"it\": \"Isola Norfolk\", \"ja\": \"ノーフォーク島\", \"kr\": \"노퍽 섬\", \"nl\": \"Norfolkeiland\", \"pt\": \"Ilha Norfolk\", \"tr\": \"Norfolk Adasi\", \"pt-BR\": \"Ilha Norfolk\"}', '[{\"tzName\": \"Norfolk Time\", \"zoneName\": \"Pacific/Norfolk\", \"gmtOffset\": 43200, \"abbreviation\": \"NFT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '574', 'NFK', 'Norfolk Island', 'Kingston', '.nf', 'Norfolk Island', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -29.03, 167.95, '🇳🇫', 'U+1F1F3 U+1F1EB', 1, 1), -(164, 'Northern Mariana Islands', 'MP', '580', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Northern Mariana Islands\", \"cn\": \"北马里亚纳群岛\", \"de\": \"Nördliche Marianen\", \"es\": \"Islas Marianas del Norte\", \"fa\": \"جزایر ماریانای شمالی\", \"fr\": \"Îles Mariannes du Nord\", \"hr\": \"Sjevernomarijanski otoci\", \"it\": \"Isole Marianne Settentrionali\", \"ja\": \"北マリアナ諸島\", \"kr\": \"북마리아나 제도\", \"nl\": \"Noordelijke Marianeneilanden\", \"pt\": \"Ilhas Marianas\", \"tr\": \"Kuzey Mariana Adalari\", \"pt-BR\": \"Ilhas Marianas\"}', '[{\"tzName\": \"Chamorro Standard Time\", \"zoneName\": \"Pacific/Saipan\", \"gmtOffset\": 36000, \"abbreviation\": \"ChST\", \"gmtOffsetName\": \"UTC+10:00\"}]', '580', 'MNP', 'Northern Marianan', 'Saipan', '.mp', 'Northern Mariana Islands', 'Oceania', 'USD', 'United States dollar', '$', NULL, 15.20, 145.75, '🇲🇵', 'U+1F1F2 U+1F1F5', 1, 1), -(165, 'Norway', 'NO', '578', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Norway\", \"cn\": \"挪威\", \"de\": \"Norwegen\", \"es\": \"Noruega\", \"fa\": \"نروژ\", \"fr\": \"Norvège\", \"hr\": \"Norveška\", \"it\": \"Norvegia\", \"ja\": \"ノルウェー\", \"kr\": \"노르웨이\", \"nl\": \"Noorwegen\", \"pt\": \"Noruega\", \"tr\": \"Norveç\", \"pt-BR\": \"Noruega\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Oslo\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '578', 'NOR', 'Norwegian', 'Oslo', '.no', 'Norge', 'Europe', 'NOK', 'Norwegian krone', 'kr', NULL, 62.00, 10.00, '🇳🇴', 'U+1F1F3 U+1F1F4', 1, 1), -(166, 'Oman', 'OM', '512', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Oman\", \"cn\": \"阿曼\", \"de\": \"Oman\", \"es\": \"Omán\", \"fa\": \"عمان\", \"fr\": \"Oman\", \"hr\": \"Oman\", \"it\": \"oman\", \"ja\": \"オマーン\", \"kr\": \"오만\", \"nl\": \"Oman\", \"pt\": \"Omã\", \"tr\": \"Umman\", \"pt-BR\": \"Omã\"}', '[{\"tzName\": \"Gulf Standard Time\", \"zoneName\": \"Asia/Muscat\", \"gmtOffset\": 14400, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC+04:00\"}]', '512', 'OMN', 'Omani', 'Muscat', '.om', 'عمان', 'Asia', 'OMR', 'Omani rial', '.ع.ر', NULL, 21.00, 57.00, '🇴🇲', 'U+1F1F4 U+1F1F2', 1, 1), -(167, 'Pakistan', 'PK', '586', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Pakistan\", \"cn\": \"巴基斯坦\", \"de\": \"Pakistan\", \"es\": \"Pakistán\", \"fa\": \"پاکستان\", \"fr\": \"Pakistan\", \"hr\": \"Pakistan\", \"it\": \"Pakistan\", \"ja\": \"パキスタン\", \"kr\": \"파키스탄\", \"nl\": \"Pakistan\", \"pt\": \"Paquistão\", \"tr\": \"Pakistan\", \"pt-BR\": \"Paquistão\"}', '[{\"tzName\": \"Pakistan Standard Time\", \"zoneName\": \"Asia/Karachi\", \"gmtOffset\": 18000, \"abbreviation\": \"PKT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '586', 'PAK', 'Pakistani', 'Islamabad', '.pk', 'Pakistan', 'Asia', 'PKR', 'Pakistani rupee', '₨', NULL, 30.00, 70.00, '🇵🇰', 'U+1F1F5 U+1F1F0', 1, 1), -(168, 'Palau', 'PW', '585', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Palau\", \"cn\": \"帕劳\", \"de\": \"Palau\", \"es\": \"Palau\", \"fa\": \"پالائو\", \"fr\": \"Palaos\", \"hr\": \"Palau\", \"it\": \"Palau\", \"ja\": \"パラオ\", \"kr\": \"팔라우\", \"nl\": \"Palau\", \"pt\": \"Palau\", \"tr\": \"Palau\", \"pt-BR\": \"Palau\"}', '[{\"tzName\": \"Palau Time\", \"zoneName\": \"Pacific/Palau\", \"gmtOffset\": 32400, \"abbreviation\": \"PWT\", \"gmtOffsetName\": \"UTC+09:00\"}]', '585', 'PLW', 'Palauan', 'Melekeok', '.pw', 'Palau', 'Oceania', 'USD', 'United States dollar', '$', NULL, 7.50, 134.50, '🇵🇼', 'U+1F1F5 U+1F1FC', 1, 1), -(169, 'Palestinian Territory Occupied', 'PS', '275', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Palestinian Territory Occupied\", \"cn\": \"巴勒斯坦\", \"de\": \"Palästina\", \"es\": \"Palestina\", \"fa\": \"فلسطین\", \"fr\": \"Palestine\", \"hr\": \"Palestina\", \"it\": \"Palestina\", \"ja\": \"パレスチナ\", \"kr\": \"팔레스타인 영토\", \"nl\": \"Palestijnse gebieden\", \"pt\": \"Palestina\", \"tr\": \"Filistin\", \"pt-BR\": \"Palestina\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Gaza\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Hebron\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '275', 'PSE', 'Palestinian', 'East Jerusalem', '.ps', 'فلسطين', 'Asia', 'ILS', 'Israeli new shekel', '₪', NULL, 31.90, 35.20, '🇵🇸', 'U+1F1F5 U+1F1F8', 1, 1), -(170, 'Panama', 'PA', '591', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Panama\", \"cn\": \"巴拿马\", \"de\": \"Panama\", \"es\": \"Panamá\", \"fa\": \"پاناما\", \"fr\": \"Panama\", \"hr\": \"Panama\", \"it\": \"Panama\", \"ja\": \"パナマ\", \"kr\": \"파나마\", \"nl\": \"Panama\", \"pt\": \"Panamá\", \"tr\": \"Panama\", \"pt-BR\": \"Panamá\"}', '[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Panama\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '591', 'PAN', 'Panamanian', 'Panama City', '.pa', 'Panamá', 'Americas', 'PAB', 'Panamanian balboa', 'B/.', NULL, 9.00, -80.00, '🇵🇦', 'U+1F1F5 U+1F1E6', 1, 1), -(171, 'Papua new Guinea', 'PG', '598', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Papua new Guinea\", \"cn\": \"巴布亚新几内亚\", \"de\": \"Papua-Neuguinea\", \"es\": \"Papúa Nueva Guinea\", \"fa\": \"پاپوآ گینه نو\", \"fr\": \"Papouasie-Nouvelle-Guinée\", \"hr\": \"Papua Nova Gvineja\", \"it\": \"Papua Nuova Guinea\", \"ja\": \"パプアニューギニア\", \"kr\": \"파푸아뉴기니\", \"nl\": \"Papoea-Nieuw-Guinea\", \"pt\": \"Papua Nova Guiné\", \"tr\": \"Papua Yeni Gine\", \"pt-BR\": \"Papua Nova Guiné\"}', '[{\"tzName\": \"Bougainville Standard Time[6\", \"zoneName\": \"Pacific/Bougainville\", \"gmtOffset\": 39600, \"abbreviation\": \"BST\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Papua New Guinea Time\", \"zoneName\": \"Pacific/Port_Moresby\", \"gmtOffset\": 36000, \"abbreviation\": \"PGT\", \"gmtOffsetName\": \"UTC+10:00\"}]', '598', 'PNG', 'Papua New Guinean, Papuan', 'Port Moresby', '.pg', 'Papua Niugini', 'Oceania', 'PGK', 'Papua New Guinean kina', 'K', NULL, -6.00, 147.00, '🇵🇬', 'U+1F1F5 U+1F1EC', 1, 1), -(172, 'Paraguay', 'PY', '600', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Paraguay\", \"cn\": \"巴拉圭\", \"de\": \"Paraguay\", \"es\": \"Paraguay\", \"fa\": \"پاراگوئه\", \"fr\": \"Paraguay\", \"hr\": \"Paragvaj\", \"it\": \"Paraguay\", \"ja\": \"パラグアイ\", \"kr\": \"파라과이\", \"nl\": \"Paraguay\", \"pt\": \"Paraguai\", \"tr\": \"Paraguay\", \"pt-BR\": \"Paraguai\"}', '[{\"tzName\": \"Paraguay Summer Time\", \"zoneName\": \"America/Asuncion\", \"gmtOffset\": -10800, \"abbreviation\": \"PYST\", \"gmtOffsetName\": \"UTC-03:00\"}]', '600', 'PRY', 'Paraguayan', 'Asuncion', '.py', 'Paraguay', 'Americas', 'PYG', 'Paraguayan guarani', '₲', NULL, -23.00, -58.00, '🇵🇾', 'U+1F1F5 U+1F1FE', 1, 1), -(173, 'Peru', 'PE', '604', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Peru\", \"cn\": \"秘鲁\", \"de\": \"Peru\", \"es\": \"Perú\", \"fa\": \"پرو\", \"fr\": \"Pérou\", \"hr\": \"Peru\", \"it\": \"Perù\", \"ja\": \"ペルー\", \"kr\": \"페루\", \"nl\": \"Peru\", \"pt\": \"Peru\", \"tr\": \"Peru\", \"pt-BR\": \"Peru\"}', '[{\"tzName\": \"Peru Time\", \"zoneName\": \"America/Lima\", \"gmtOffset\": -18000, \"abbreviation\": \"PET\", \"gmtOffsetName\": \"UTC-05:00\"}]', '604', 'PER', 'Peruvian', 'Lima', '.pe', 'Perú', 'Americas', 'PEN', 'Peruvian sol', 'S/.', NULL, -10.00, -76.00, '🇵🇪', 'U+1F1F5 U+1F1EA', 1, 1), -(174, 'Philippines', 'PH', '608', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Philippines\", \"cn\": \"菲律宾\", \"de\": \"Philippinen\", \"es\": \"Filipinas\", \"fa\": \"جزایر الندفیلیپین\", \"fr\": \"Philippines\", \"hr\": \"Filipini\", \"it\": \"Filippine\", \"ja\": \"フィリピン\", \"kr\": \"필리핀\", \"nl\": \"Filipijnen\", \"pt\": \"Filipinas\", \"tr\": \"Filipinler\", \"pt-BR\": \"Filipinas\"}', '[{\"tzName\": \"Philippine Time\", \"zoneName\": \"Asia/Manila\", \"gmtOffset\": 28800, \"abbreviation\": \"PHT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '608', 'PHL', 'Philippine, Filipino', 'Manila', '.ph', 'Pilipinas', 'Asia', 'PHP', 'Philippine peso', '₱', NULL, 13.00, 122.00, '🇵🇭', 'U+1F1F5 U+1F1ED', 1, 1), -(175, 'Pitcairn Island', 'PN', '612', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Pitcairn Island\", \"cn\": \"皮特凯恩群岛\", \"de\": \"Pitcairn\", \"es\": \"Islas Pitcairn\", \"fa\": \"پیتکرن\", \"fr\": \"Îles Pitcairn\", \"hr\": \"Pitcairnovo otočje\", \"it\": \"Isole Pitcairn\", \"ja\": \"ピトケアン\", \"kr\": \"핏케언 제도\", \"nl\": \"Pitcairneilanden\", \"pt\": \"Ilhas Picárnia\", \"tr\": \"Pitcairn Adalari\", \"pt-BR\": \"Ilhas Pitcairn\"}', '[{\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"Pacific/Pitcairn\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}]', '612', 'PCN', 'Pitcairn Island', 'Adamstown', '.pn', 'Pitcairn Islands', 'Oceania', 'NZD', 'New Zealand dollar', '$', NULL, -25.07, -130.10, '🇵🇳', 'U+1F1F5 U+1F1F3', 1, 1), -(176, 'Poland', 'PL', '616', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Poland\", \"cn\": \"波兰\", \"de\": \"Polen\", \"es\": \"Polonia\", \"fa\": \"لهستان\", \"fr\": \"Pologne\", \"hr\": \"Poljska\", \"it\": \"Polonia\", \"ja\": \"ポーランド\", \"kr\": \"폴란드\", \"nl\": \"Polen\", \"pt\": \"Polónia\", \"tr\": \"Polonya\", \"pt-BR\": \"Polônia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Warsaw\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '616', 'POL', 'Polish', 'Warsaw', '.pl', 'Polska', 'Europe', 'PLN', 'Polish złoty', 'zł', NULL, 52.00, 20.00, '🇵🇱', 'U+1F1F5 U+1F1F1', 1, 1), -(177, 'Portugal', 'PT', '620', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Portugal\", \"cn\": \"葡萄牙\", \"de\": \"Portugal\", \"es\": \"Portugal\", \"fa\": \"پرتغال\", \"fr\": \"Portugal\", \"hr\": \"Portugal\", \"it\": \"Portogallo\", \"ja\": \"ポルトガル\", \"kr\": \"포르투갈\", \"nl\": \"Portugal\", \"pt\": \"Portugal\", \"tr\": \"Portekiz\", \"pt-BR\": \"Portugal\"}', '[{\"tzName\": \"Azores Standard Time\", \"zoneName\": \"Atlantic/Azores\", \"gmtOffset\": -3600, \"abbreviation\": \"AZOT\", \"gmtOffsetName\": \"UTC-01:00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic/Madeira\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Europe/Lisbon\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}]', '620', 'PRT', 'Portuguese', 'Lisbon', '.pt', 'Portugal', 'Europe', 'EUR', 'Euro', '€', NULL, 39.50, -8.00, '🇵🇹', 'U+1F1F5 U+1F1F9', 1, 1), -(178, 'Puerto Rico', 'PR', '630', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Puerto Rico\", \"cn\": \"波多黎各\", \"de\": \"Puerto Rico\", \"es\": \"Puerto Rico\", \"fa\": \"پورتو ریکو\", \"fr\": \"Porto Rico\", \"hr\": \"Portoriko\", \"it\": \"Porto Rico\", \"ja\": \"プエルトリコ\", \"kr\": \"푸에르토리코\", \"nl\": \"Puerto Rico\", \"pt\": \"Porto Rico\", \"tr\": \"Porto Riko\", \"pt-BR\": \"Porto Rico\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Puerto_Rico\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '630', 'PRI', 'Puerto Rican', 'San Juan', '.pr', 'Puerto Rico', 'Americas', 'USD', 'United States dollar', '$', NULL, 18.25, -66.50, '🇵🇷', 'U+1F1F5 U+1F1F7', 1, 1), -(179, 'Qatar', 'QA', '634', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Qatar\", \"cn\": \"卡塔尔\", \"de\": \"Katar\", \"es\": \"Catar\", \"fa\": \"قطر\", \"fr\": \"Qatar\", \"hr\": \"Katar\", \"it\": \"Qatar\", \"ja\": \"カタール\", \"kr\": \"카타르\", \"nl\": \"Qatar\", \"pt\": \"Catar\", \"tr\": \"Katar\", \"pt-BR\": \"Catar\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Qatar\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '634', 'QAT', 'Qatari', 'Doha', '.qa', 'قطر', 'Asia', 'QAR', 'Qatari riyal', 'ق.ر', NULL, 25.50, 51.25, '🇶🇦', 'U+1F1F6 U+1F1E6', 1, 1), -(180, 'Reunion', 'RE', '638', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Reunion\", \"cn\": \"留尼汪岛\", \"de\": \"Réunion\", \"es\": \"Reunión\", \"fa\": \"رئونیون\", \"fr\": \"Réunion\", \"hr\": \"Réunion\", \"it\": \"Riunione\", \"ja\": \"レユニオン\", \"kr\": \"레위니옹\", \"nl\": \"Réunion\", \"pt\": \"Reunião\", \"tr\": \"Réunion\", \"pt-BR\": \"Reunião\"}', '[{\"tzName\": \"Réunion Time\", \"zoneName\": \"Indian/Reunion\", \"gmtOffset\": 14400, \"abbreviation\": \"RET\", \"gmtOffsetName\": \"UTC+04:00\"}]', '638', 'REU', 'Reunionese, Reunionnais', 'Saint-Denis', '.re', 'La Réunion', 'Africa', 'EUR', 'Euro', '€', NULL, -21.15, 55.50, '🇷🇪', 'U+1F1F7 U+1F1EA', 1, 1); -INSERT INTO `countries` (`id`, `name`, `code`, `phone`, `created_at`, `updated_at`, `translations`, `timezones`, `numeric_code`, `iso3`, `nationality`, `capital`, `tld`, `native`, `region`, `currency`, `currency_name`, `currency_symbol`, `wikiDataId`, `lat`, `lng`, `emoji`, `emojiU`, `flag`, `is_activated`) VALUES -(181, 'Romania', 'RO', '642', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Romania\", \"cn\": \"罗马尼亚\", \"de\": \"Rumänien\", \"es\": \"Rumania\", \"fa\": \"رومانی\", \"fr\": \"Roumanie\", \"hr\": \"Rumunjska\", \"it\": \"Romania\", \"ja\": \"ルーマニア\", \"kr\": \"루마니아\", \"nl\": \"Roemenië\", \"pt\": \"Roménia\", \"tr\": \"Romanya\", \"pt-BR\": \"Romênia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Bucharest\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '642', 'ROU', 'Romanian', 'Bucharest', '.ro', 'România', 'Europe', 'RON', 'Romanian leu', 'lei', NULL, 46.00, 25.00, '🇷🇴', 'U+1F1F7 U+1F1F4', 1, 1), -(182, 'Russia', 'RU', '643', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Russia\", \"cn\": \"俄罗斯联邦\", \"de\": \"Russland\", \"es\": \"Rusia\", \"fa\": \"روسیه\", \"fr\": \"Russie\", \"hr\": \"Rusija\", \"it\": \"Russia\", \"ja\": \"ロシア連邦\", \"kr\": \"러시아\", \"nl\": \"Rusland\", \"pt\": \"Rússia\", \"tr\": \"Rusya\", \"pt-BR\": \"Rússia\"}', '[{\"tzName\": \"Anadyr Time[4\", \"zoneName\": \"Asia/Anadyr\", \"gmtOffset\": 43200, \"abbreviation\": \"ANAT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia/Barnaul\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia/Chita\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Irkutsk Time\", \"zoneName\": \"Asia/Irkutsk\", \"gmtOffset\": 28800, \"abbreviation\": \"IRKT\", \"gmtOffsetName\": \"UTC+08:00\"}, {\"tzName\": \"Kamchatka Time\", \"zoneName\": \"Asia/Kamchatka\", \"gmtOffset\": 43200, \"abbreviation\": \"PETT\", \"gmtOffsetName\": \"UTC+12:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia/Khandyga\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia/Krasnoyarsk\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Magadan Time\", \"zoneName\": \"Asia/Magadan\", \"gmtOffset\": 39600, \"abbreviation\": \"MAGT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Krasnoyarsk Time\", \"zoneName\": \"Asia/Novokuznetsk\", \"gmtOffset\": 25200, \"abbreviation\": \"KRAT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Novosibirsk Time\", \"zoneName\": \"Asia/Novosibirsk\", \"gmtOffset\": 25200, \"abbreviation\": \"NOVT\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Omsk Time\", \"zoneName\": \"Asia/Omsk\", \"gmtOffset\": 21600, \"abbreviation\": \"OMST\", \"gmtOffsetName\": \"UTC+06:00\"}, {\"tzName\": \"Sakhalin Island Time\", \"zoneName\": \"Asia/Sakhalin\", \"gmtOffset\": 39600, \"abbreviation\": \"SAKT\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Srednekolymsk Time\", \"zoneName\": \"Asia/Srednekolymsk\", \"gmtOffset\": 39600, \"abbreviation\": \"SRET\", \"gmtOffsetName\": \"UTC+11:00\"}, {\"tzName\": \"Moscow Daylight Time+3\", \"zoneName\": \"Asia/Tomsk\", \"gmtOffset\": 25200, \"abbreviation\": \"MSD+3\", \"gmtOffsetName\": \"UTC+07:00\"}, {\"tzName\": \"Vladivostok Time\", \"zoneName\": \"Asia/Ust-Nera\", \"gmtOffset\": 36000, \"abbreviation\": \"VLAT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Vladivostok Time\", \"zoneName\": \"Asia/Vladivostok\", \"gmtOffset\": 36000, \"abbreviation\": \"VLAT\", \"gmtOffsetName\": \"UTC+10:00\"}, {\"tzName\": \"Yakutsk Time\", \"zoneName\": \"Asia/Yakutsk\", \"gmtOffset\": 32400, \"abbreviation\": \"YAKT\", \"gmtOffsetName\": \"UTC+09:00\"}, {\"tzName\": \"Yekaterinburg Time\", \"zoneName\": \"Asia/Yekaterinburg\", \"gmtOffset\": 18000, \"abbreviation\": \"YEKT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe/Astrakhan\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Kaliningrad\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe/Kirov\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe/Moscow\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe/Samara\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Moscow Daylight Time+4\", \"zoneName\": \"Europe/Saratov\", \"gmtOffset\": 14400, \"abbreviation\": \"MSD\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Samara Time\", \"zoneName\": \"Europe/Ulyanovsk\", \"gmtOffset\": 14400, \"abbreviation\": \"SAMT\", \"gmtOffsetName\": \"UTC+04:00\"}, {\"tzName\": \"Moscow Standard Time\", \"zoneName\": \"Europe/Volgograd\", \"gmtOffset\": 14400, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+04:00\"}]', '643', 'RUS', 'Russian', 'Moscow', '.ru', 'Россия', 'Europe', 'RUB', 'Russian ruble', '₽', NULL, 60.00, 100.00, '🇷🇺', 'U+1F1F7 U+1F1FA', 1, 1), -(183, 'Rwanda', 'RW', '646', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Rwanda\", \"cn\": \"卢旺达\", \"de\": \"Ruanda\", \"es\": \"Ruanda\", \"fa\": \"رواندا\", \"fr\": \"Rwanda\", \"hr\": \"Ruanda\", \"it\": \"Ruanda\", \"ja\": \"ルワンダ\", \"kr\": \"르완다\", \"nl\": \"Rwanda\", \"pt\": \"Ruanda\", \"tr\": \"Ruanda\", \"pt-BR\": \"Ruanda\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Kigali\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '646', 'RWA', 'Rwandan', 'Kigali', '.rw', 'Rwanda', 'Africa', 'RWF', 'Rwandan franc', 'FRw', NULL, -2.00, 30.00, '🇷🇼', 'U+1F1F7 U+1F1FC', 1, 1), -(184, 'Saint-Barthelemy', 'BL', '652', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint-Barthelemy\", \"cn\": \"圣巴泰勒米\", \"de\": \"Saint-Barthélemy\", \"es\": \"San Bartolomé\", \"fa\": \"سن-بارتلمی\", \"fr\": \"Saint-Barthélemy\", \"hr\": \"Saint Barthélemy\", \"it\": \"Antille Francesi\", \"ja\": \"サン・バルテルミー\", \"kr\": \"생바르텔레미\", \"nl\": \"Saint Barthélemy\", \"pt\": \"São Bartolomeu\", \"tr\": \"Saint Barthélemy\", \"pt-BR\": \"São Bartolomeu\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/St_Barthelemy\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '652', 'BLM', 'Barthelemois', 'Gustavia', '.bl', 'Saint-Barthélemy', 'Americas', 'EUR', 'Euro', '€', NULL, 18.50, -63.42, '🇧🇱', 'U+1F1E7 U+1F1F1', 1, 1), -(185, 'Saint Helena', 'SH', '654', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint Helena\", \"cn\": \"圣赫勒拿\", \"de\": \"Sankt Helena\", \"es\": \"Santa Helena\", \"fa\": \"سنت هلنا، اسنشن و تریستان دا کونا\", \"fr\": \"Sainte-Hélène\", \"hr\": \"Sveta Helena\", \"it\": \"Sant Elena\", \"ja\": \"セントヘレナ・アセンションおよびトリスタンダクーニャ\", \"kr\": \"세인트헬레나\", \"nl\": \"Sint-Helena\", \"pt\": \"Santa Helena\", \"tr\": \"Saint Helena\", \"pt-BR\": \"Santa Helena\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Atlantic/St_Helena\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '654', 'SHN', 'Saint Helenian', 'Jamestown', '.sh', 'Saint Helena', 'Africa', 'SHP', 'Saint Helena pound', '£', NULL, -15.95, -5.70, '🇸🇭', 'U+1F1F8 U+1F1ED', 1, 1), -(186, 'Saint Kitts And Nevis', 'KN', '659', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint Kitts And Nevis\", \"cn\": \"圣基茨和尼维斯\", \"de\": \"St. Kitts und Nevis\", \"es\": \"San Cristóbal y Nieves\", \"fa\": \"سنت کیتس و نویس\", \"fr\": \"Saint-Christophe-et-Niévès\", \"hr\": \"Sveti Kristof i Nevis\", \"it\": \"Saint Kitts e Nevis\", \"ja\": \"セントクリストファー・ネイビス\", \"kr\": \"세인트키츠 네비스\", \"nl\": \"Saint Kitts en Nevis\", \"pt\": \"São Cristóvão e Neves\", \"tr\": \"Saint Kitts Ve Nevis\", \"pt-BR\": \"São Cristóvão e Neves\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/St_Kitts\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '659', 'KNA', 'Kittitian or Nevisian', 'Basseterre', '.kn', 'Saint Kitts and Nevis', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 17.33, -62.75, '🇰🇳', 'U+1F1F0 U+1F1F3', 1, 1), -(187, 'Saint Lucia', 'LC', '662', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint Lucia\", \"cn\": \"圣卢西亚\", \"de\": \"Saint Lucia\", \"es\": \"Santa Lucía\", \"fa\": \"سنت لوسیا\", \"fr\": \"Saint-Lucie\", \"hr\": \"Sveta Lucija\", \"it\": \"Santa Lucia\", \"ja\": \"セントルシア\", \"kr\": \"세인트루시아\", \"nl\": \"Saint Lucia\", \"pt\": \"Santa Lúcia\", \"tr\": \"Saint Lucia\", \"pt-BR\": \"Santa Lúcia\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/St_Lucia\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '662', 'LCA', 'Saint Lucian', 'Castries', '.lc', 'Saint Lucia', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 13.88, -60.97, '🇱🇨', 'U+1F1F1 U+1F1E8', 1, 1), -(188, 'Saint-Martin (French part)', 'MF', '663', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint-Martin (French part)\", \"cn\": \"密克罗尼西亚\", \"de\": \"Saint Martin\", \"es\": \"Saint Martin\", \"fa\": \"سینت مارتن\", \"fr\": \"Saint-Martin\", \"hr\": \"Sveti Martin\", \"it\": \"Saint Martin\", \"ja\": \"サン・マルタン(フランス領)\", \"kr\": \"세인트마틴 섬\", \"nl\": \"Saint-Martin\", \"pt\": \"Ilha São Martinho\", \"tr\": \"Saint Martin\", \"pt-BR\": \"Saint Martin\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Marigot\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '663', 'MAF', 'Saint-Martinoise', 'Marigot', '.mf', 'Saint-Martin', 'Americas', 'EUR', 'Euro', '€', NULL, 18.08, -63.95, '🇲🇫', 'U+1F1F2 U+1F1EB', 1, 1), -(189, 'Saint Pierre and Miquelon', 'PM', '666', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint Pierre and Miquelon\", \"cn\": \"圣皮埃尔和密克隆\", \"de\": \"Saint-Pierre und Miquelon\", \"es\": \"San Pedro y Miquelón\", \"fa\": \"سن پیر و میکلن\", \"fr\": \"Saint-Pierre-et-Miquelon\", \"hr\": \"Sveti Petar i Mikelon\", \"it\": \"Saint-Pierre e Miquelon\", \"ja\": \"サンピエール島・ミクロン島\", \"kr\": \"생피에르 미클롱\", \"nl\": \"Saint Pierre en Miquelon\", \"pt\": \"São Pedro e Miquelon\", \"tr\": \"Saint Pierre Ve Miquelon\", \"pt-BR\": \"Saint-Pierre e Miquelon\"}', '[{\"tzName\": \"Pierre & Miquelon Daylight Time\", \"zoneName\": \"America/Miquelon\", \"gmtOffset\": -10800, \"abbreviation\": \"PMDT\", \"gmtOffsetName\": \"UTC-03:00\"}]', '666', 'SPM', 'Saint-Pierrais or Miquelonnais', 'Saint-Pierre', '.pm', 'Saint-Pierre-et-Miquelon', 'Americas', 'EUR', 'Euro', '€', NULL, 46.83, -56.33, '🇵🇲', 'U+1F1F5 U+1F1F2', 1, 1), -(190, 'Saint Vincent And The Grenadines', 'VC', '670', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Saint Vincent And The Grenadines\", \"cn\": \"圣文森特和格林纳丁斯\", \"de\": \"Saint Vincent und die Grenadinen\", \"es\": \"San Vicente y Granadinas\", \"fa\": \"سنت وینسنت و گرنادین‌ها\", \"fr\": \"Saint-Vincent-et-les-Grenadines\", \"hr\": \"Sveti Vincent i Grenadini\", \"it\": \"Saint Vincent e Grenadine\", \"ja\": \"セントビンセントおよびグレナディーン諸島\", \"kr\": \"세인트빈센트 그레나딘\", \"nl\": \"Saint Vincent en de Grenadines\", \"pt\": \"São Vicente e Granadinas\", \"tr\": \"Saint Vincent Ve Grenadinler\", \"pt-BR\": \"São Vicente e Granadinas\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/St_Vincent\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '670', 'VCT', 'Saint Vincentian, Vincentian', 'Kingstown', '.vc', 'Saint Vincent and the Grenadines', 'Americas', 'XCD', 'Eastern Caribbean dollar', '$', NULL, 13.25, -61.20, '🇻🇨', 'U+1F1FB U+1F1E8', 1, 1), -(191, 'Samoa', 'WS', '882', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"Samoa\", \"cn\": \"萨摩亚\", \"de\": \"Samoa\", \"es\": \"Samoa\", \"fa\": \"ساموآ\", \"fr\": \"Samoa\", \"hr\": \"Samoa\", \"it\": \"Samoa\", \"ja\": \"サモア\", \"kr\": \"사모아\", \"nl\": \"Samoa\", \"pt\": \"Samoa\", \"tr\": \"Samoa\", \"pt-BR\": \"Samoa\"}', '[{\"tzName\": \"West Samoa Time\", \"zoneName\": \"Pacific/Apia\", \"gmtOffset\": 50400, \"abbreviation\": \"WST\", \"gmtOffsetName\": \"UTC+14:00\"}]', '882', 'WSM', 'Samoan', 'Apia', '.ws', 'Samoa', 'Oceania', 'WST', 'Samoan tālā', 'SAT', NULL, -13.58, -172.33, '🇼🇸', 'U+1F1FC U+1F1F8', 1, 1), -(192, 'San Marino', 'SM', '674', '2020-06-17 10:37:04', '2024-01-21 12:54:29', '{\"ar\": \"San Marino\", \"cn\": \"圣马力诺\", \"de\": \"San Marino\", \"es\": \"San Marino\", \"fa\": \"سان مارینو\", \"fr\": \"Saint-Marin\", \"hr\": \"San Marino\", \"it\": \"San Marino\", \"ja\": \"サンマリノ\", \"kr\": \"산마리노\", \"nl\": \"San Marino\", \"pt\": \"São Marinho\", \"tr\": \"San Marino\", \"pt-BR\": \"San Marino\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/San_Marino\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '674', 'SMR', 'Sammarinese', 'San Marino', '.sm', 'San Marino', 'Europe', 'EUR', 'Euro', '€', NULL, 43.77, 12.42, '🇸🇲', 'U+1F1F8 U+1F1F2', 1, 1), -(193, 'Sao Tome and Principe', 'ST', '678', '2020-06-17 10:37:04', '2024-01-21 12:54:30', '{\"ar\": \"Sao Tome and Principe\", \"cn\": \"圣多美和普林西比\", \"de\": \"São Tomé und Príncipe\", \"es\": \"Santo Tomé y Príncipe\", \"fa\": \"کواترو دو فرویرو\", \"fr\": \"Sao Tomé-et-Principe\", \"hr\": \"Sveti Toma i Princip\", \"it\": \"São Tomé e Príncipe\", \"ja\": \"サントメ・プリンシペ\", \"kr\": \"상투메 프린시페\", \"nl\": \"Sao Tomé en Principe\", \"pt\": \"São Tomé e Príncipe\", \"tr\": \"Sao Tome Ve Prinsipe\", \"pt-BR\": \"São Tomé e Príncipe\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Sao_Tome\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '678', 'STP', 'Sao Tomean', 'Sao Tome', '.st', 'São Tomé e Príncipe', 'Africa', 'STD', 'Dobra', 'Db', NULL, 1.00, 7.00, '🇸🇹', 'U+1F1F8 U+1F1F9', 1, 1), -(194, 'Saudi Arabia', 'SA', '682', '2020-06-17 10:37:04', '2024-01-21 12:54:30', '{\"ar\": \"Saudi Arabia\", \"cn\": \"沙特阿拉伯\", \"de\": \"Saudi-Arabien\", \"es\": \"Arabia Saudí\", \"fa\": \"عربستان سعودی\", \"fr\": \"Arabie Saoudite\", \"hr\": \"Saudijska Arabija\", \"it\": \"Arabia Saudita\", \"ja\": \"サウジアラビア\", \"kr\": \"사우디아라비아\", \"nl\": \"Saoedi-Arabië\", \"pt\": \"Arábia Saudita\", \"tr\": \"Suudi Arabistan\", \"pt-BR\": \"Arábia Saudita\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Riyadh\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '682', 'SAU', 'Saudi, Saudi Arabian', 'Riyadh', '.sa', 'المملكة العربية السعودية', 'Asia', 'SAR', 'Saudi riyal', '﷼', NULL, 25.00, 45.00, '🇸🇦', 'U+1F1F8 U+1F1E6', 1, 1), -(195, 'Senegal', 'SN', '686', '2020-06-17 10:37:04', '2024-01-21 12:54:30', '{\"ar\": \"Senegal\", \"cn\": \"塞内加尔\", \"de\": \"Senegal\", \"es\": \"Senegal\", \"fa\": \"سنگال\", \"fr\": \"Sénégal\", \"hr\": \"Senegal\", \"it\": \"Senegal\", \"ja\": \"セネガル\", \"kr\": \"세네갈\", \"nl\": \"Senegal\", \"pt\": \"Senegal\", \"tr\": \"Senegal\", \"pt-BR\": \"Senegal\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Dakar\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '686', 'SEN', 'Senegalese', 'Dakar', '.sn', 'Sénégal', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 14.00, -14.00, '🇸🇳', 'U+1F1F8 U+1F1F3', 1, 1), -(196, 'Serbia', 'RS', '688', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Serbia\", \"cn\": \"塞尔维亚\", \"de\": \"Serbien\", \"es\": \"Serbia\", \"fa\": \"صربستان\", \"fr\": \"Serbie\", \"hr\": \"Srbija\", \"it\": \"Serbia\", \"ja\": \"セルビア\", \"kr\": \"세르비아\", \"nl\": \"Servië\", \"pt\": \"Sérvia\", \"tr\": \"Sirbistan\", \"pt-BR\": \"Sérvia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Belgrade\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '688', 'SRB', 'Serbian', 'Belgrade', '.rs', 'Србија', 'Europe', 'RSD', 'Serbian dinar', 'din', NULL, 44.00, 21.00, '🇷🇸', 'U+1F1F7 U+1F1F8', 1, 1), -(197, 'Seychelles', 'SC', '690', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Seychelles\", \"cn\": \"塞舌尔\", \"de\": \"Seychellen\", \"es\": \"Seychelles\", \"fa\": \"سیشل\", \"fr\": \"Seychelles\", \"hr\": \"Sejšeli\", \"it\": \"Seychelles\", \"ja\": \"セーシェル\", \"kr\": \"세이셸\", \"nl\": \"Seychellen\", \"pt\": \"Seicheles\", \"tr\": \"Seyşeller\", \"pt-BR\": \"Seicheles\"}', '[{\"tzName\": \"Seychelles Time\", \"zoneName\": \"Indian/Mahe\", \"gmtOffset\": 14400, \"abbreviation\": \"SCT\", \"gmtOffsetName\": \"UTC+04:00\"}]', '690', 'SYC', 'Seychellois', 'Victoria', '.sc', 'Seychelles', 'Africa', 'SCR', 'Seychellois rupee', 'SRe', NULL, -4.58, 55.67, '🇸🇨', 'U+1F1F8 U+1F1E8', 1, 1), -(198, 'Sierra Leone', 'SL', '694', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Sierra Leone\", \"cn\": \"塞拉利昂\", \"de\": \"Sierra Leone\", \"es\": \"Sierra Leone\", \"fa\": \"سیرالئون\", \"fr\": \"Sierra Leone\", \"hr\": \"Sijera Leone\", \"it\": \"Sierra Leone\", \"ja\": \"シエラレオネ\", \"kr\": \"시에라리온\", \"nl\": \"Sierra Leone\", \"pt\": \"Serra Leoa\", \"tr\": \"Sierra Leone\", \"pt-BR\": \"Serra Leoa\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Freetown\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '694', 'SLE', 'Sierra Leonean', 'Freetown', '.sl', 'Sierra Leone', 'Africa', 'SLL', 'Sierra Leonean leone', 'Le', NULL, 8.50, -11.50, '🇸🇱', 'U+1F1F8 U+1F1F1', 1, 1), -(199, 'Singapore', 'SG', '702', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Singapore\", \"cn\": \"新加坡\", \"de\": \"Singapur\", \"es\": \"Singapur\", \"fa\": \"سنگاپور\", \"fr\": \"Singapour\", \"hr\": \"Singapur\", \"it\": \"Singapore\", \"ja\": \"シンガポール\", \"kr\": \"싱가포르\", \"nl\": \"Singapore\", \"pt\": \"Singapura\", \"tr\": \"Singapur\", \"pt-BR\": \"Singapura\"}', '[{\"tzName\": \"Singapore Time\", \"zoneName\": \"Asia/Singapore\", \"gmtOffset\": 28800, \"abbreviation\": \"SGT\", \"gmtOffsetName\": \"UTC+08:00\"}]', '702', 'SGP', 'Singaporean', 'Singapur', '.sg', 'Singapore', 'Asia', 'SGD', 'Singapore dollar', '$', NULL, 1.37, 103.80, '🇸🇬', 'U+1F1F8 U+1F1EC', 1, 1), -(200, 'Sint Maarten (Dutch part)', 'SX', '534', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Sint Maarten (Dutch part)\", \"cn\": \"圣马丁岛(荷兰部分)\", \"de\": \"Sint Maarten (niederl. Teil)\", \"fa\": \"سینت مارتن\", \"fr\": \"Saint Martin (partie néerlandaise)\", \"it\": \"Saint Martin (parte olandese)\", \"kr\": \"신트마르턴\", \"nl\": \"Sint Maarten\", \"pt\": \"São Martinho\", \"tr\": \"Sint Maarten\", \"pt-BR\": \"Sint Maarten\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Anguilla\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '534', 'SXM', 'Sint Maarten', 'Philipsburg', '.sx', 'Sint Maarten', 'Americas', 'ANG', 'Netherlands Antillean guilder', 'ƒ', NULL, 18.03, -63.05, '🇸🇽', 'U+1F1F8 U+1F1FD', 1, 1), -(201, 'Slovakia', 'SK', '703', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Slovakia\", \"cn\": \"斯洛伐克\", \"de\": \"Slowakei\", \"es\": \"República Eslovaca\", \"fa\": \"اسلواکی\", \"fr\": \"Slovaquie\", \"hr\": \"Slovačka\", \"it\": \"Slovacchia\", \"ja\": \"スロバキア\", \"kr\": \"슬로바키아\", \"nl\": \"Slowakije\", \"pt\": \"Eslováquia\", \"tr\": \"Slovakya\", \"pt-BR\": \"Eslováquia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Bratislava\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '703', 'SVK', 'Slovak', 'Bratislava', '.sk', 'Slovensko', 'Europe', 'EUR', 'Euro', '€', NULL, 48.67, 19.50, '🇸🇰', 'U+1F1F8 U+1F1F0', 1, 1), -(202, 'Slovenia', 'SI', '705', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Slovenia\", \"cn\": \"斯洛文尼亚\", \"de\": \"Slowenien\", \"es\": \"Eslovenia\", \"fa\": \"اسلوونی\", \"fr\": \"Slovénie\", \"hr\": \"Slovenija\", \"it\": \"Slovenia\", \"ja\": \"スロベニア\", \"kr\": \"슬로베니아\", \"nl\": \"Slovenië\", \"pt\": \"Eslovénia\", \"tr\": \"Slovenya\", \"pt-BR\": \"Eslovênia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Ljubljana\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '705', 'SVN', 'Slovenian, Slovene', 'Ljubljana', '.si', 'Slovenija', 'Europe', 'EUR', 'Euro', '€', NULL, 46.12, 14.82, '🇸🇮', 'U+1F1F8 U+1F1EE', 1, 1), -(203, 'Solomon Islands', 'SB', '090', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Solomon Islands\", \"cn\": \"所罗门群岛\", \"de\": \"Salomonen\", \"es\": \"Islas Salomón\", \"fa\": \"جزایر سلیمان\", \"fr\": \"Îles Salomon\", \"hr\": \"Solomonski Otoci\", \"it\": \"Isole Salomone\", \"ja\": \"ソロモン諸島\", \"kr\": \"솔로몬 제도\", \"nl\": \"Salomonseilanden\", \"pt\": \"Ilhas Salomão\", \"tr\": \"Solomon Adalari\", \"pt-BR\": \"Ilhas Salomão\"}', '[{\"tzName\": \"Solomon Islands Time\", \"zoneName\": \"Pacific/Guadalcanal\", \"gmtOffset\": 39600, \"abbreviation\": \"SBT\", \"gmtOffsetName\": \"UTC+11:00\"}]', '090', 'SLB', 'Solomon Island', 'Honiara', '.sb', 'Solomon Islands', 'Oceania', 'SBD', 'Solomon Islands dollar', 'Si$', NULL, -8.00, 159.00, '🇸🇧', 'U+1F1F8 U+1F1E7', 1, 1), -(204, 'Somalia', 'SO', '706', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Somalia\", \"cn\": \"索马里\", \"de\": \"Somalia\", \"es\": \"Somalia\", \"fa\": \"سومالی\", \"fr\": \"Somalie\", \"hr\": \"Somalija\", \"it\": \"Somalia\", \"ja\": \"ソマリア\", \"kr\": \"소말리아\", \"nl\": \"Somalië\", \"pt\": \"Somália\", \"tr\": \"Somali\", \"pt-BR\": \"Somália\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Mogadishu\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '706', 'SOM', 'Somali, Somalian', 'Mogadishu', '.so', 'Soomaaliya', 'Africa', 'SOS', 'Somali shilling', 'Sh.so.', NULL, 10.00, 49.00, '🇸🇴', 'U+1F1F8 U+1F1F4', 1, 1), -(205, 'South Africa', 'ZA', '710', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"South Africa\", \"cn\": \"南非\", \"de\": \"Republik Südafrika\", \"es\": \"República de Sudáfrica\", \"fa\": \"آفریقای جنوبی\", \"fr\": \"Afrique du Sud\", \"hr\": \"Južnoafrička Republika\", \"it\": \"Sud Africa\", \"ja\": \"南アフリカ\", \"kr\": \"남아프리카 공화국\", \"nl\": \"Zuid-Afrika\", \"pt\": \"República Sul-Africana\", \"tr\": \"Güney Afrika Cumhuriyeti\", \"pt-BR\": \"República Sul-Africana\"}', '[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa/Johannesburg\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]', '710', 'ZAF', 'South African', 'Pretoria', '.za', 'South Africa', 'Africa', 'ZAR', 'South African rand', 'R', NULL, -29.00, 24.00, '🇿🇦', 'U+1F1FF U+1F1E6', 1, 1), -(206, 'South Georgia', 'GS', '239', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"South Georgia\", \"cn\": \"南乔治亚\", \"de\": \"Südgeorgien und die Südlichen Sandwichinseln\", \"es\": \"Islas Georgias del Sur y Sandwich del Sur\", \"fa\": \"جزایر جورجیای جنوبی و ساندویچ جنوبی\", \"fr\": \"Géorgie du Sud-et-les Îles Sandwich du Sud\", \"hr\": \"Južna Georgija i otočje Južni Sandwich\", \"it\": \"Georgia del Sud e Isole Sandwich Meridionali\", \"ja\": \"サウスジョージア・サウスサンドウィッチ諸島\", \"kr\": \"사우스조지아\", \"nl\": \"Zuid-Georgia en Zuidelijke Sandwicheilanden\", \"pt\": \"Ilhas Geórgia do Sul e Sanduíche do Sul\", \"tr\": \"Güney Georgia\", \"pt-BR\": \"Ilhas Geórgias do Sul e Sandwich do Sul\"}', '[{\"tzName\": \"South Georgia and the South Sandwich Islands Time\", \"zoneName\": \"Atlantic/South_Georgia\", \"gmtOffset\": -7200, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC-02:00\"}]', '239', 'SGS', 'South Georgia or South Sandwich Islands', 'Grytviken', '.gs', 'South Georgia', 'Americas', 'GBP', 'British pound', '£', NULL, -54.50, -37.00, '🇬🇸', 'U+1F1EC U+1F1F8', 1, 1), -(207, 'South Sudan', 'SS', '728', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"South Sudan\", \"cn\": \"南苏丹\", \"de\": \"Südsudan\", \"es\": \"Sudán del Sur\", \"fa\": \"سودان جنوبی\", \"fr\": \"Soudan du Sud\", \"hr\": \"Južni Sudan\", \"it\": \"Sudan del sud\", \"ja\": \"南スーダン\", \"kr\": \"남수단\", \"nl\": \"Zuid-Soedan\", \"pt\": \"Sudão do Sul\", \"tr\": \"Güney Sudan\", \"pt-BR\": \"Sudão do Sul\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Juba\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '728', 'SSD', 'South Sudanese', 'Juba', '.ss', 'South Sudan', 'Africa', 'SSP', 'South Sudanese pound', '£', NULL, 7.00, 30.00, '🇸🇸', 'U+1F1F8 U+1F1F8', 1, 1), -(208, 'Spain', 'ES', '724', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Spain\", \"cn\": \"西班牙\", \"de\": \"Spanien\", \"es\": \"España\", \"fa\": \"اسپانیا\", \"fr\": \"Espagne\", \"hr\": \"Španjolska\", \"it\": \"Spagna\", \"ja\": \"スペイン\", \"kr\": \"스페인\", \"nl\": \"Spanje\", \"pt\": \"Espanha\", \"tr\": \"İspanya\", \"pt-BR\": \"Espanha\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa/Ceuta\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}, {\"tzName\": \"Western European Time\", \"zoneName\": \"Atlantic/Canary\", \"gmtOffset\": 0, \"abbreviation\": \"WET\", \"gmtOffsetName\": \"UTC±00\"}, {\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Madrid\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '724', 'ESP', 'Spanish', 'Madrid', '.es', 'España', 'Europe', 'EUR', 'Euro', '€', NULL, 40.00, -4.00, '🇪🇸', 'U+1F1EA U+1F1F8', 1, 1), -(209, 'Sri Lanka', 'LK', '144', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Sri Lanka\", \"cn\": \"斯里兰卡\", \"de\": \"Sri Lanka\", \"es\": \"Sri Lanka\", \"fa\": \"سری‌لانکا\", \"fr\": \"Sri Lanka\", \"hr\": \"Šri Lanka\", \"it\": \"Sri Lanka\", \"ja\": \"スリランカ\", \"kr\": \"스리랑카\", \"nl\": \"Sri Lanka\", \"pt\": \"Sri Lanka\", \"tr\": \"Sri Lanka\", \"pt-BR\": \"Sri Lanka\"}', '[{\"tzName\": \"Indian Standard Time\", \"zoneName\": \"Asia/Colombo\", \"gmtOffset\": 19800, \"abbreviation\": \"IST\", \"gmtOffsetName\": \"UTC+05:30\"}]', '144', 'LKA', 'Sri Lankan', 'Colombo', '.lk', 'śrī laṃkāva', 'Asia', 'LKR', 'Sri Lankan rupee', 'Rs', NULL, 7.00, 81.00, '🇱🇰', 'U+1F1F1 U+1F1F0', 1, 1), -(210, 'Sudan', 'SD', '729', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Sudan\", \"cn\": \"苏丹\", \"de\": \"Sudan\", \"es\": \"Sudán\", \"fa\": \"سودان\", \"fr\": \"Soudan\", \"hr\": \"Sudan\", \"it\": \"Sudan\", \"ja\": \"スーダン\", \"kr\": \"수단\", \"nl\": \"Soedan\", \"pt\": \"Sudão\", \"tr\": \"Sudan\", \"pt-BR\": \"Sudão\"}', '[{\"tzName\": \"Eastern African Time\", \"zoneName\": \"Africa/Khartoum\", \"gmtOffset\": 7200, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '729', 'SDN', 'Sudanese', 'Khartoum', '.sd', 'السودان', 'Africa', 'SDG', 'Sudanese pound', '.س.ج', NULL, 15.00, 30.00, '🇸🇩', 'U+1F1F8 U+1F1E9', 1, 1), -(211, 'Suriname', 'SR', '740', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Suriname\", \"cn\": \"苏里南\", \"de\": \"Suriname\", \"es\": \"Surinam\", \"fa\": \"سورینام\", \"fr\": \"Surinam\", \"hr\": \"Surinam\", \"it\": \"Suriname\", \"ja\": \"スリナム\", \"kr\": \"수리남\", \"nl\": \"Suriname\", \"pt\": \"Suriname\", \"tr\": \"Surinam\", \"pt-BR\": \"Suriname\"}', '[{\"tzName\": \"Suriname Time\", \"zoneName\": \"America/Paramaribo\", \"gmtOffset\": -10800, \"abbreviation\": \"SRT\", \"gmtOffsetName\": \"UTC-03:00\"}]', '740', 'SUR', 'Surinamese', 'Paramaribo', '.sr', 'Suriname', 'Americas', 'SRD', 'Surinamese dollar', '$', NULL, 4.00, -56.00, '🇸🇷', 'U+1F1F8 U+1F1F7', 1, 1), -(212, 'Svalbard And Jan Mayen Islands', 'SJ', '744', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Svalbard And Jan Mayen Islands\", \"cn\": \"斯瓦尔巴和扬马延群岛\", \"de\": \"Svalbard und Jan Mayen\", \"es\": \"Islas Svalbard y Jan Mayen\", \"fa\": \"سوالبارد و یان ماین\", \"fr\": \"Svalbard et Jan Mayen\", \"hr\": \"Svalbard i Jan Mayen\", \"it\": \"Svalbard e Jan Mayen\", \"ja\": \"スヴァールバル諸島およびヤンマイエン島\", \"kr\": \"스발바르 얀마옌 제도\", \"nl\": \"Svalbard en Jan Mayen\", \"pt\": \"Svalbard\", \"tr\": \"Svalbard Ve Jan Mayen\", \"pt-BR\": \"Svalbard\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Arctic/Longyearbyen\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '744', 'SJM', 'Svalbard', 'Longyearbyen', '.sj', 'Svalbard og Jan Mayen', 'Europe', 'NOK', 'Norwegian Krone', 'kr', NULL, 78.00, 20.00, '🇸🇯', 'U+1F1F8 U+1F1EF', 1, 1), -(213, 'Swaziland', 'SZ', '748', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Swaziland\", \"cn\": \"斯威士兰\", \"de\": \"Swasiland\", \"es\": \"Suazilandia\", \"fa\": \"سوازیلند\", \"fr\": \"Swaziland\", \"hr\": \"Svazi\", \"it\": \"Swaziland\", \"ja\": \"スワジランド\", \"kr\": \"에스와티니\", \"nl\": \"Swaziland\", \"pt\": \"Suazilândia\", \"tr\": \"Esvatini\", \"pt-BR\": \"Suazilândia\"}', '[{\"tzName\": \"South African Standard Time\", \"zoneName\": \"Africa/Mbabane\", \"gmtOffset\": 7200, \"abbreviation\": \"SAST\", \"gmtOffsetName\": \"UTC+02:00\"}]', '748', 'SWZ', 'Swazi', 'Mbabane', '.sz', 'Swaziland', 'Africa', 'SZL', 'Lilangeni', 'E', NULL, -26.50, 31.50, '🇸🇿', 'U+1F1F8 U+1F1FF', 1, 1), -(214, 'Sweden', 'SE', '752', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Sweden\", \"cn\": \"瑞典\", \"de\": \"Schweden\", \"es\": \"Suecia\", \"fa\": \"سوئد\", \"fr\": \"Suède\", \"hr\": \"Švedska\", \"it\": \"Svezia\", \"ja\": \"スウェーデン\", \"kr\": \"스웨덴\", \"nl\": \"Zweden\", \"pt\": \"Suécia\", \"tr\": \"İsveç\", \"pt-BR\": \"Suécia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Stockholm\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '752', 'SWE', 'Swedish', 'Stockholm', '.se', 'Sverige', 'Europe', 'SEK', 'Swedish krona', 'kr', NULL, 62.00, 15.00, '🇸🇪', 'U+1F1F8 U+1F1EA', 1, 1), -(215, 'Switzerland', 'CH', '756', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Switzerland\", \"cn\": \"瑞士\", \"de\": \"Schweiz\", \"es\": \"Suiza\", \"fa\": \"سوئیس\", \"fr\": \"Suisse\", \"hr\": \"Švicarska\", \"it\": \"Svizzera\", \"ja\": \"スイス\", \"kr\": \"스위스\", \"nl\": \"Zwitserland\", \"pt\": \"Suíça\", \"tr\": \"İsviçre\", \"pt-BR\": \"Suíça\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Zurich\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '756', 'CHE', 'Swiss', 'Bern', '.ch', 'Schweiz', 'Europe', 'CHF', 'Swiss franc', 'CHf', NULL, 47.00, 8.00, '🇨🇭', 'U+1F1E8 U+1F1ED', 1, 1), -(216, 'Syria', 'SY', '760', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Syria\", \"cn\": \"叙利亚\", \"de\": \"Syrien\", \"es\": \"Siria\", \"fa\": \"سوریه\", \"fr\": \"Syrie\", \"hr\": \"Sirija\", \"it\": \"Siria\", \"ja\": \"シリア・アラブ共和国\", \"kr\": \"시리아\", \"nl\": \"Syrië\", \"pt\": \"Síria\", \"tr\": \"Suriye\", \"pt-BR\": \"Síria\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Asia/Damascus\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '760', 'SYR', 'Syrian', 'Damascus', '.sy', 'سوريا', 'Asia', 'SYP', 'Syrian pound', 'LS', NULL, 35.00, 38.00, '🇸🇾', 'U+1F1F8 U+1F1FE', 1, 1), -(217, 'Taiwan', 'TW', '158', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Taiwan\", \"cn\": \"中国台湾\", \"de\": \"Taiwan\", \"es\": \"Taiwán\", \"fa\": \"تایوان\", \"fr\": \"Taïwan\", \"hr\": \"Tajvan\", \"it\": \"Taiwan\", \"ja\": \"台湾(中華民国)\", \"kr\": \"대만\", \"nl\": \"Taiwan\", \"pt\": \"Taiwan\", \"tr\": \"Tayvan\", \"pt-BR\": \"Taiwan\"}', '[{\"tzName\": \"China Standard Time\", \"zoneName\": \"Asia/Taipei\", \"gmtOffset\": 28800, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC+08:00\"}]', '158', 'TWN', 'Chinese, Taiwanese', 'Taipei', '.tw', '臺灣', 'Asia', 'TWD', 'New Taiwan dollar', '$', NULL, 23.50, 121.00, '🇹🇼', 'U+1F1F9 U+1F1FC', 1, 1), -(218, 'Tajikistan', 'TJ', '762', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tajikistan\", \"cn\": \"塔吉克斯坦\", \"de\": \"Tadschikistan\", \"es\": \"Tayikistán\", \"fa\": \"تاجیکستان\", \"fr\": \"Tadjikistan\", \"hr\": \"Tađikistan\", \"it\": \"Tagikistan\", \"ja\": \"タジキスタン\", \"kr\": \"타지키스탄\", \"nl\": \"Tadzjikistan\", \"pt\": \"Tajiquistão\", \"tr\": \"Tacikistan\", \"pt-BR\": \"Tajiquistão\"}', '[{\"tzName\": \"Tajikistan Time\", \"zoneName\": \"Asia/Dushanbe\", \"gmtOffset\": 18000, \"abbreviation\": \"TJT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '762', 'TJK', 'Tajikistani', 'Dushanbe', '.tj', 'Тоҷикистон', 'Asia', 'TJS', 'Tajikistani somoni', 'SM', NULL, 39.00, 71.00, '🇹🇯', 'U+1F1F9 U+1F1EF', 1, 1), -(219, 'Tanzania', 'TZ', '834', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tanzania\", \"cn\": \"坦桑尼亚\", \"de\": \"Tansania\", \"es\": \"Tanzania\", \"fa\": \"تانزانیا\", \"fr\": \"Tanzanie\", \"hr\": \"Tanzanija\", \"it\": \"Tanzania\", \"ja\": \"タンザニア\", \"kr\": \"탄자니아\", \"nl\": \"Tanzania\", \"pt\": \"Tanzânia\", \"tr\": \"Tanzanya\", \"pt-BR\": \"Tanzânia\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Dar_es_Salaam\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '834', 'TZA', 'Tanzanian', 'Dodoma', '.tz', 'Tanzania', 'Africa', 'TZS', 'Tanzanian shilling', 'TSh', NULL, -6.00, 35.00, '🇹🇿', 'U+1F1F9 U+1F1FF', 1, 1), -(220, 'Thailand', 'TH', '764', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Thailand\", \"cn\": \"泰国\", \"de\": \"Thailand\", \"es\": \"Tailandia\", \"fa\": \"تایلند\", \"fr\": \"Thaïlande\", \"hr\": \"Tajland\", \"it\": \"Tailandia\", \"ja\": \"タイ\", \"kr\": \"태국\", \"nl\": \"Thailand\", \"pt\": \"Tailândia\", \"tr\": \"Tayland\", \"pt-BR\": \"Tailândia\"}', '[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia/Bangkok\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]', '764', 'THA', 'Thai', 'Bangkok', '.th', 'ประเทศไทย', 'Asia', 'THB', 'Thai baht', '฿', NULL, 15.00, 100.00, '🇹🇭', 'U+1F1F9 U+1F1ED', 1, 1), -(221, 'East Timor', 'TL', '626', '2020-06-17 10:37:05', '2024-01-21 12:54:28', '{\"ar\": \"East Timor\", \"cn\": \"东帝汶\", \"de\": \"Timor-Leste\", \"es\": \"Timor Oriental\", \"fa\": \"تیمور شرقی\", \"fr\": \"Timor oriental\", \"hr\": \"Istočni Timor\", \"it\": \"Timor Est\", \"ja\": \"東ティモール\", \"kr\": \"동티모르\", \"nl\": \"Oost-Timor\", \"pt\": \"Timor Leste\", \"tr\": \"Doğu Timor\", \"pt-BR\": \"Timor Leste\"}', '[{\"tzName\": \"Timor Leste Time\", \"zoneName\": \"Asia/Dili\", \"gmtOffset\": 32400, \"abbreviation\": \"TLT\", \"gmtOffsetName\": \"UTC+09:00\"}]', '626', 'TLS', 'Timorese', 'Dili', '.tl', 'Timor-Leste', 'Asia', 'USD', 'United States dollar', '$', NULL, -8.83, 125.92, '🇹🇱', 'U+1F1F9 U+1F1F1', 1, 1), -(222, 'Togo', 'TG', '768', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Togo\", \"cn\": \"多哥\", \"de\": \"Togo\", \"es\": \"Togo\", \"fa\": \"توگو\", \"fr\": \"Togo\", \"hr\": \"Togo\", \"it\": \"Togo\", \"ja\": \"トーゴ\", \"kr\": \"토고\", \"nl\": \"Togo\", \"pt\": \"Togo\", \"tr\": \"Togo\", \"pt-BR\": \"Togo\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Africa/Lome\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '768', 'TGO', 'Togolese', 'Lome', '.tg', 'Togo', 'Africa', 'XOF', 'West African CFA franc', 'CFA', NULL, 8.00, 1.17, '🇹🇬', 'U+1F1F9 U+1F1EC', 1, 1), -(223, 'Tokelau', 'TK', '772', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tokelau\", \"cn\": \"托克劳\", \"de\": \"Tokelau\", \"es\": \"Islas Tokelau\", \"fa\": \"توکلائو\", \"fr\": \"Tokelau\", \"hr\": \"Tokelau\", \"it\": \"Isole Tokelau\", \"ja\": \"トケラウ\", \"kr\": \"토켈라우\", \"nl\": \"Tokelau\", \"pt\": \"Toquelau\", \"tr\": \"Tokelau\", \"pt-BR\": \"Tokelau\"}', '[{\"tzName\": \"Tokelau Time\", \"zoneName\": \"Pacific/Fakaofo\", \"gmtOffset\": 46800, \"abbreviation\": \"TKT\", \"gmtOffsetName\": \"UTC+13:00\"}]', '772', 'TKL', 'Tokelauan', '', '.tk', 'Tokelau', 'Oceania', 'NZD', 'New Zealand dollar', '$', NULL, -9.00, -172.00, '🇹🇰', 'U+1F1F9 U+1F1F0', 1, 1), -(224, 'Tonga', 'TO', '776', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tonga\", \"cn\": \"汤加\", \"de\": \"Tonga\", \"es\": \"Tonga\", \"fa\": \"تونگا\", \"fr\": \"Tonga\", \"hr\": \"Tonga\", \"it\": \"Tonga\", \"ja\": \"トンガ\", \"kr\": \"통가\", \"nl\": \"Tonga\", \"pt\": \"Tonga\", \"tr\": \"Tonga\", \"pt-BR\": \"Tonga\"}', '[{\"tzName\": \"Tonga Time\", \"zoneName\": \"Pacific/Tongatapu\", \"gmtOffset\": 46800, \"abbreviation\": \"TOT\", \"gmtOffsetName\": \"UTC+13:00\"}]', '776', 'TON', 'Tongan', 'Nuku alofa', '.to', 'Tonga', 'Oceania', 'TOP', 'Tongan paʻanga', '$', NULL, -20.00, -175.00, '🇹🇴', 'U+1F1F9 U+1F1F4', 1, 1), -(225, 'Trinidad And Tobago', 'TT', '780', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Trinidad And Tobago\", \"cn\": \"特立尼达和多巴哥\", \"de\": \"Trinidad und Tobago\", \"es\": \"Trinidad y Tobago\", \"fa\": \"ترینیداد و توباگو\", \"fr\": \"Trinité et Tobago\", \"hr\": \"Trinidad i Tobago\", \"it\": \"Trinidad e Tobago\", \"ja\": \"トリニダード・トバゴ\", \"kr\": \"트리니다드 토바고\", \"nl\": \"Trinidad en Tobago\", \"pt\": \"Trindade e Tobago\", \"tr\": \"Trinidad Ve Tobago\", \"pt-BR\": \"Trinidad e Tobago\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Port_of_Spain\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '780', 'TTO', 'Trinidadian or Tobagonian', 'Port of Spain', '.tt', 'Trinidad and Tobago', 'Americas', 'TTD', 'Trinidad and Tobago dollar', '$', NULL, 11.00, -61.00, '🇹🇹', 'U+1F1F9 U+1F1F9', 1, 1), -(226, 'Tunisia', 'TN', '788', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tunisia\", \"cn\": \"突尼斯\", \"de\": \"Tunesien\", \"es\": \"Túnez\", \"fa\": \"تونس\", \"fr\": \"Tunisie\", \"hr\": \"Tunis\", \"it\": \"Tunisia\", \"ja\": \"チュニジア\", \"kr\": \"튀니지\", \"nl\": \"Tunesië\", \"pt\": \"Tunísia\", \"tr\": \"Tunus\", \"pt-BR\": \"Tunísia\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Africa/Tunis\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '788', 'TUN', 'Tunisian', 'Tunis', '.tn', 'تونس', 'Africa', 'TND', 'Tunisian dinar', 'ت.د', NULL, 34.00, 9.00, '🇹🇳', 'U+1F1F9 U+1F1F3', 1, 1), -(227, 'Turkey', 'TR', '792', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Turkey\", \"cn\": \"土耳其\", \"de\": \"Türkei\", \"es\": \"Turquía\", \"fa\": \"ترکیه\", \"fr\": \"Turquie\", \"hr\": \"Turska\", \"it\": \"Turchia\", \"ja\": \"トルコ\", \"kr\": \"터키\", \"nl\": \"Turkije\", \"pt\": \"Turquia\", \"tr\": \"Türkiye\", \"pt-BR\": \"Turquia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Istanbul\", \"gmtOffset\": 10800, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+03:00\"}]', '792', 'TUR', 'Turkish', 'Ankara', '.tr', 'Türkiye', 'Asia', 'TRY', 'Turkish lira', '₺', NULL, 39.00, 35.00, '🇹🇷', 'U+1F1F9 U+1F1F7', 1, 1), -(228, 'Turkmenistan', 'TM', '795', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Turkmenistan\", \"cn\": \"土库曼斯坦\", \"de\": \"Turkmenistan\", \"es\": \"Turkmenistán\", \"fa\": \"ترکمنستان\", \"fr\": \"Turkménistan\", \"hr\": \"Turkmenistan\", \"it\": \"Turkmenistan\", \"ja\": \"トルクメニスタン\", \"kr\": \"투르크메니스탄\", \"nl\": \"Turkmenistan\", \"pt\": \"Turquemenistão\", \"tr\": \"Türkmenistan\", \"pt-BR\": \"Turcomenistão\"}', '[{\"tzName\": \"Turkmenistan Time\", \"zoneName\": \"Asia/Ashgabat\", \"gmtOffset\": 18000, \"abbreviation\": \"TMT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '795', 'TKM', 'Turkmen', 'Ashgabat', '.tm', 'Türkmenistan', 'Asia', 'TMT', 'Turkmenistan manat', 'T', NULL, 40.00, 60.00, '🇹🇲', 'U+1F1F9 U+1F1F2', 1, 1), -(229, 'Turks And Caicos Islands', 'TC', '796', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Turks And Caicos Islands\", \"cn\": \"特克斯和凯科斯群岛\", \"de\": \"Turks- und Caicosinseln\", \"es\": \"Islas Turks y Caicos\", \"fa\": \"جزایر تورکس و کایکوس\", \"fr\": \"Îles Turques-et-Caïques\", \"hr\": \"Otoci Turks i Caicos\", \"it\": \"Isole Turks e Caicos\", \"ja\": \"タークス・カイコス諸島\", \"kr\": \"터크스 케이커스 제도\", \"nl\": \"Turks- en Caicoseilanden\", \"pt\": \"Ilhas Turcas e Caicos\", \"tr\": \"Turks Ve Caicos Adalari\", \"pt-BR\": \"Ilhas Turcas e Caicos\"}', '[{\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Grand_Turk\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}]', '796', 'TCA', 'Turks and Caicos Island', 'Cockburn Town', '.tc', 'Turks and Caicos Islands', 'Americas', 'USD', 'United States dollar', '$', NULL, 21.75, -71.58, '🇹🇨', 'U+1F1F9 U+1F1E8', 1, 1), -(230, 'Tuvalu', 'TV', '798', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Tuvalu\", \"cn\": \"图瓦卢\", \"de\": \"Tuvalu\", \"es\": \"Tuvalu\", \"fa\": \"تووالو\", \"fr\": \"Tuvalu\", \"hr\": \"Tuvalu\", \"it\": \"Tuvalu\", \"ja\": \"ツバル\", \"kr\": \"투발루\", \"nl\": \"Tuvalu\", \"pt\": \"Tuvalu\", \"tr\": \"Tuvalu\", \"pt-BR\": \"Tuvalu\"}', '[{\"tzName\": \"Tuvalu Time\", \"zoneName\": \"Pacific/Funafuti\", \"gmtOffset\": 43200, \"abbreviation\": \"TVT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '798', 'TUV', 'Tuvaluan', 'Funafuti', '.tv', 'Tuvalu', 'Oceania', 'AUD', 'Australian dollar', '$', NULL, -8.00, 178.00, '🇹🇻', 'U+1F1F9 U+1F1FB', 1, 1), -(231, 'Uganda', 'UG', '800', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Uganda\", \"cn\": \"乌干达\", \"de\": \"Uganda\", \"es\": \"Uganda\", \"fa\": \"اوگاندا\", \"fr\": \"Uganda\", \"hr\": \"Uganda\", \"it\": \"Uganda\", \"ja\": \"ウガンダ\", \"kr\": \"우간다\", \"nl\": \"Oeganda\", \"pt\": \"Uganda\", \"tr\": \"Uganda\", \"pt-BR\":\"Uganda\"}', '[{\"tzName\": \"East Africa Time\", \"zoneName\": \"Africa/Kampala\", \"gmtOffset\": 10800, \"abbreviation\": \"EAT\", \"gmtOffsetName\": \"UTC+03:00\"}]', '800', 'UGA', 'Ugandan', 'Kampala', '.ug', 'Uganda', 'Africa', 'UGX', 'Ugandan shilling', 'USh', NULL, 1.00, 32.00, '🇺🇬', 'U+1F1FA U+1F1EC', 1, 1), -(232, 'Ukraine', 'UA', '804', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Ukraine\", \"cn\": \"乌克兰\", \"de\": \"Ukraine\", \"es\": \"Ucrania\", \"fa\": \"وکراین\", \"fr\": \"Ukraine\", \"hr\": \"Ukrajina\", \"it\": \"Ucraina\", \"ja\": \"ウクライナ\", \"kr\": \"우크라이나\", \"nl\": \"Oekraïne\", \"pt\": \"Ucrânia\", \"tr\": \"Ukrayna\", \"pt-BR\": \"Ucrânia\"}', '[{\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Kiev\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Moscow Time\", \"zoneName\": \"Europe/Simferopol\", \"gmtOffset\": 10800, \"abbreviation\": \"MSK\", \"gmtOffsetName\": \"UTC+03:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Uzhgorod\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}, {\"tzName\": \"Eastern European Time\", \"zoneName\": \"Europe/Zaporozhye\", \"gmtOffset\": 7200, \"abbreviation\": \"EET\", \"gmtOffsetName\": \"UTC+02:00\"}]', '804', 'UKR', 'Ukrainian', 'Kyiv', '.ua', 'Україна', 'Europe', 'UAH', 'Ukrainian hryvnia', '₴', NULL, 49.00, 32.00, '🇺🇦', 'U+1F1FA U+1F1E6', 1, 1), -(233, 'United Arab Emirates', 'AE', '784', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"United Arab Emirates\", \"cn\": \"阿拉伯联合酋长国\", \"de\": \"Vereinigte Arabische Emirate\", \"es\": \"Emiratos Árabes Unidos\", \"fa\": \"امارات متحده عربی\", \"fr\": \"Émirats arabes unis\", \"hr\": \"Ujedinjeni Arapski Emirati\", \"it\": \"Emirati Arabi Uniti\", \"ja\": \"アラブ首長国連邦\", \"kr\": \"아랍에미리트\", \"nl\": \"Verenigde Arabische Emiraten\", \"pt\": \"Emirados árabes Unidos\", \"tr\": \"Birleşik Arap Emirlikleri\", \"pt-BR\": \"Emirados árabes Unidos\"}', '[{\"tzName\": \"Gulf Standard Time\", \"zoneName\": \"Asia/Dubai\", \"gmtOffset\": 14400, \"abbreviation\": \"GST\", \"gmtOffsetName\": \"UTC+04:00\"}]', '784', 'ARE', 'Emirati, Emirian, Emiri', 'Abu Dhabi', '.ae', 'دولة الإمارات العربية المتحدة', 'Asia', 'AED', 'United Arab Emirates dirham', 'إ.د', NULL, 24.00, 54.00, '🇦🇪', 'U+1F1E6 U+1F1EA', 1, 1), -(234, 'United Kingdom', 'GB', '826', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"United Kingdom\", \"cn\": \"英国\", \"de\": \"Vereinigtes Königreich\", \"es\": \"Reino Unido\", \"fa\": \"بریتانیای کبیر و ایرلند شمالی\", \"fr\": \"Royaume-Uni\", \"hr\": \"Ujedinjeno Kraljevstvo\", \"it\": \"Regno Unito\", \"ja\": \"イギリス\", \"kr\": \"영국\", \"nl\": \"Verenigd Koninkrijk\", \"pt\": \"Reino Unido\", \"tr\": \"Birleşik Krallik\", \"pt-BR\": \"Reino Unido\"}', '[{\"tzName\": \"Greenwich Mean Time\", \"zoneName\": \"Europe/London\", \"gmtOffset\": 0, \"abbreviation\": \"GMT\", \"gmtOffsetName\": \"UTC±00\"}]', '826', 'GBR', 'British, UK', 'London', '.uk', 'United Kingdom', 'Europe', 'GBP', 'British pound', '£', NULL, 54.00, -2.00, '🇬🇧', 'U+1F1EC U+1F1E7', 1, 1); -INSERT INTO `countries` (`id`, `name`, `code`, `phone`, `created_at`, `updated_at`, `translations`, `timezones`, `numeric_code`, `iso3`, `nationality`, `capital`, `tld`, `native`, `region`, `currency`, `currency_name`, `currency_symbol`, `wikiDataId`, `lat`, `lng`, `emoji`, `emojiU`, `flag`, `is_activated`) VALUES -(235, 'United States', 'US', '840', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"United States\", \"cn\": \"美国\", \"de\": \"Vereinigte Staaten von Amerika\", \"es\": \"Estados Unidos\", \"fa\": \"ایالات متحده آمریکا\", \"fr\": \"États-Unis\", \"hr\": \"Sjedinjene Američke Države\", \"it\": \"Stati Uniti D America\", \"ja\": \"アメリカ合衆国\", \"kr\": \"미국\", \"nl\": \"Verenigde Staten\", \"pt\": \"Estados Unidos\", \"tr\": \"Amerika\", \"pt-BR\": \"Estados Unidos\"}', '[{\"tzName\": \"Hawaii–Aleutian Standard Time\", \"zoneName\": \"America/Adak\", \"gmtOffset\": -36000, \"abbreviation\": \"HST\", \"gmtOffsetName\": \"UTC-10:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Anchorage\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Boise\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Chicago\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Denver\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Detroit\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Indianapolis\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Indiana/Knox\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Marengo\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Petersburg\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Indiana/Tell_City\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Vevay\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Vincennes\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Indiana/Winamac\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Juneau\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Kentucky/Louisville\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/Kentucky/Monticello\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Pacific Standard Time (North America\", \"zoneName\": \"America/Los_Angeles\", \"gmtOffset\": -28800, \"abbreviation\": \"PST\", \"gmtOffsetName\": \"UTC-08:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/Menominee\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Metlakatla\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Eastern Standard Time (North America\", \"zoneName\": \"America/New_York\", \"gmtOffset\": -18000, \"abbreviation\": \"EST\", \"gmtOffsetName\": \"UTC-05:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Nome\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/North_Dakota/Beulah\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/North_Dakota/Center\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Central Standard Time (North America\", \"zoneName\": \"America/North_Dakota/New_Salem\", \"gmtOffset\": -21600, \"abbreviation\": \"CST\", \"gmtOffsetName\": \"UTC-06:00\"}, {\"tzName\": \"Mountain Standard Time (North America\", \"zoneName\": \"America/Phoenix\", \"gmtOffset\": -25200, \"abbreviation\": \"MST\", \"gmtOffsetName\": \"UTC-07:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Sitka\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Alaska Standard Time\", \"zoneName\": \"America/Yakutat\", \"gmtOffset\": -32400, \"abbreviation\": \"AKST\", \"gmtOffsetName\": \"UTC-09:00\"}, {\"tzName\": \"Hawaii–Aleutian Standard Time\", \"zoneName\": \"Pacific/Honolulu\", \"gmtOffset\": -36000, \"abbreviation\": \"HST\", \"gmtOffsetName\": \"UTC-10:00\"}]', '840', 'USA', 'American', 'Washington', '.us', 'United States', 'Americas', 'USD', 'United States dollar', '$', NULL, 38.00, -97.00, '🇺🇸', 'U+1F1FA U+1F1F8', 1, 1), -(236, 'United States Minor Outlying Islands', 'UM', '581', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"United States Minor Outlying Islands\", \"cn\": \"美国本土外小岛屿\", \"de\": \"Kleinere Inselbesitzungen der Vereinigten Staaten\", \"es\": \"Islas Ultramarinas Menores de Estados Unidos\", \"fa\": \"جزایر کوچک حاشیه‌ای ایالات متحده آمریکا\", \"fr\": \"Îles mineures éloignées des États-Unis\", \"hr\": \"Mali udaljeni otoci SAD-a\", \"it\": \"Isole minori esterne degli Stati Uniti d America\", \"ja\": \"合衆国領有小離島\", \"kr\": \"미국령 군소 제도\", \"nl\": \"Kleine afgelegen eilanden van de Verenigde Staten\", \"pt\": \"Ilhas Menores Distantes dos Estados Unidos\", \"tr\": \"Abd Küçük Harici Adalari\", \"pt-BR\": \"Ilhas Menores Distantes dos Estados Unidos\"}', '[{\"tzName\": \"Samoa Standard Time\", \"zoneName\": \"Pacific/Midway\", \"gmtOffset\": -39600, \"abbreviation\": \"SST\", \"gmtOffsetName\": \"UTC-11:00\"}, {\"tzName\": \"Wake Island Time\", \"zoneName\": \"Pacific/Wake\", \"gmtOffset\": 43200, \"abbreviation\": \"WAKT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '581', 'UMI', 'American', '', '.us', 'United States Minor Outlying Islands', 'Americas', 'USD', 'United States dollar', '$', NULL, 0.00, 0.00, '🇺🇲', 'U+1F1FA U+1F1F2', 1, 1), -(237, 'Uruguay', 'UY', '858', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Uruguay\", \"cn\": \"乌拉圭\", \"de\": \"Uruguay\", \"es\": \"Uruguay\", \"fa\": \"اروگوئه\", \"fr\": \"Uruguay\", \"hr\": \"Urugvaj\", \"it\": \"Uruguay\", \"ja\": \"ウルグアイ\", \"kr\": \"우루과이\", \"nl\": \"Uruguay\", \"pt\": \"Uruguai\", \"tr\": \"Uruguay\", \"pt-BR\": \"Uruguai\"}', '[{\"tzName\": \"Uruguay Standard Time\", \"zoneName\": \"America/Montevideo\", \"gmtOffset\": -10800, \"abbreviation\": \"UYT\", \"gmtOffsetName\": \"UTC-03:00\"}]', '858', 'URY', 'Uruguayan', 'Montevideo', '.uy', 'Uruguay', 'Americas', 'UYU', 'Uruguayan peso', '$', NULL, -33.00, -56.00, '🇺🇾', 'U+1F1FA U+1F1FE', 1, 1), -(238, 'Uzbekistan', 'UZ', '860', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Uzbekistan\", \"cn\": \"乌兹别克斯坦\", \"de\": \"Usbekistan\", \"es\": \"Uzbekistán\", \"fa\": \"ازبکستان\", \"fr\": \"Ouzbékistan\", \"hr\": \"Uzbekistan\", \"it\": \"Uzbekistan\", \"ja\": \"ウズベキスタン\", \"kr\": \"우즈베키스탄\", \"nl\": \"Oezbekistan\", \"pt\": \"Usbequistão\", \"tr\": \"Özbekistan\", \"pt-BR\": \"Uzbequistão\"}', '[{\"tzName\": \"Uzbekistan Time\", \"zoneName\": \"Asia/Samarkand\", \"gmtOffset\": 18000, \"abbreviation\": \"UZT\", \"gmtOffsetName\": \"UTC+05:00\"}, {\"tzName\": \"Uzbekistan Time\", \"zoneName\": \"Asia/Tashkent\", \"gmtOffset\": 18000, \"abbreviation\": \"UZT\", \"gmtOffsetName\": \"UTC+05:00\"}]', '860', 'UZB', 'Uzbekistani, Uzbek', 'Tashkent', '.uz', 'O‘zbekiston', 'Asia', 'UZS', 'Uzbekistani soʻm', 'лв', NULL, 41.00, 64.00, '🇺🇿', 'U+1F1FA U+1F1FF', 1, 1), -(239, 'Vanuatu', 'VU', '548', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Vanuatu\", \"cn\": \"瓦努阿图\", \"de\": \"Vanuatu\", \"es\": \"Vanuatu\", \"fa\": \"وانواتو\", \"fr\": \"Vanuatu\", \"hr\": \"Vanuatu\", \"it\": \"Vanuatu\", \"ja\": \"バヌアツ\", \"kr\": \"바누아투\", \"nl\": \"Vanuatu\", \"pt\": \"Vanuatu\", \"tr\": \"Vanuatu\", \"pt-BR\": \"Vanuatu\"}', '[{\"tzName\": \"Vanuatu Time\", \"zoneName\": \"Pacific/Efate\", \"gmtOffset\": 39600, \"abbreviation\": \"VUT\", \"gmtOffsetName\": \"UTC+11:00\"}]', '548', 'VUT', 'Ni-Vanuatu, Vanuatuan', 'Port Vila', '.vu', 'Vanuatu', 'Oceania', 'VUV', 'Vanuatu vatu', 'VT', NULL, -16.00, 167.00, '🇻🇺', 'U+1F1FB U+1F1FA', 1, 1), -(240, 'Venezuela', 'VE', '862', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Venezuela\", \"cn\": \"委内瑞拉\", \"de\": \"Venezuela\", \"es\": \"Venezuela\", \"fa\": \"ونزوئلا\", \"fr\": \"Venezuela\", \"hr\": \"Venezuela\", \"it\": \"Venezuela\", \"ja\": \"ベネズエラ・ボリバル共和国\", \"kr\": \"베네수엘라\", \"nl\": \"Venezuela\", \"pt\": \"Venezuela\", \"tr\": \"Venezuela\", \"pt-BR\": \"Venezuela\"}', '[{\"tzName\": \"Venezuelan Standard Time\", \"zoneName\": \"America/Caracas\", \"gmtOffset\": -14400, \"abbreviation\": \"VET\", \"gmtOffsetName\": \"UTC-04:00\"}]', '862', 'VEN', 'Venezuelan', 'Caracas', '.ve', 'Venezuela', 'Americas', 'VES', 'Bolívar', 'Bs', NULL, 8.00, -66.00, '🇻🇪', 'U+1F1FB U+1F1EA', 1, 1), -(241, 'Vietnam', 'VN', '704', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Vietnam\", \"cn\": \"越南\", \"de\": \"Vietnam\", \"es\": \"Vietnam\", \"fa\": \"ویتنام\", \"fr\": \"Viêt Nam\", \"hr\": \"Vijetnam\", \"it\": \"Vietnam\", \"ja\": \"ベトナム\", \"kr\": \"베트남\", \"nl\": \"Vietnam\", \"pt\": \"Vietname\", \"tr\": \"Vietnam\", \"pt-BR\": \"Vietnã\"}', '[{\"tzName\": \"Indochina Time\", \"zoneName\": \"Asia/Ho_Chi_Minh\", \"gmtOffset\": 25200, \"abbreviation\": \"ICT\", \"gmtOffsetName\": \"UTC+07:00\"}]', '704', 'VNM', 'Vietnamese', 'Hanoi', '.vn', 'Việt Nam', 'Asia', 'VND', 'Vietnamese đồng', '₫', NULL, 16.17, 107.83, '🇻🇳', 'U+1F1FB U+1F1F3', 1, 1), -(242, 'Virgin Islands (British)', 'VG', '092', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Virgin Islands (British)\", \"cn\": \"圣文森特和格林纳丁斯\", \"de\": \"Britische Jungferninseln\", \"es\": \"Islas Vírgenes del Reino Unido\", \"fa\": \"جزایر ویرجین بریتانیا\", \"fr\": \"Îles Vierges britanniques\", \"hr\": \"Britanski Djevičanski Otoci\", \"it\": \"Isole Vergini Britanniche\", \"ja\": \"イギリス領ヴァージン諸島\", \"kr\": \"영국령 버진아일랜드\", \"nl\": \"Britse Maagdeneilanden\", \"pt\": \"Ilhas Virgens Britânicas\", \"tr\": \"Britanya Virjin Adalari\", \"pt-BR\": \"Ilhas Virgens Britânicas\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/Tortola\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '092', 'VGB', 'British Virgin Island', 'Road Town', '.vg', 'British Virgin Islands', 'Americas', 'USD', 'United States dollar', '$', NULL, 18.43, -64.62, '🇻🇬', 'U+1F1FB U+1F1EC', 1, 1), -(243, 'Virgin Islands (US)', 'VI', '850', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Virgin Islands (US)\", \"cn\": \"维尔京群岛(美国)\", \"de\": \"Amerikanische Jungferninseln\", \"es\": \"Islas Vírgenes de los Estados Unidos\", \"fa\": \"جزایر ویرجین آمریکا\", \"fr\": \"Îles Vierges des États-Unis\", \"it\": \"Isole Vergini americane\", \"ja\": \"アメリカ領ヴァージン諸島\", \"kr\": \"미국령 버진아일랜드\", \"nl\": \"Verenigde Staten Maagdeneilanden\", \"pt\": \"Ilhas Virgens Americanas\", \"tr\": \"Abd Virjin Adalari\", \"pt-BR\": \"Ilhas Virgens Americanas\"}', '[{\"tzName\": \"Atlantic Standard Time\", \"zoneName\": \"America/St_Thomas\", \"gmtOffset\": -14400, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC-04:00\"}]', '850', 'VIR', 'U.S. Virgin Island', 'Charlotte Amalie', '.vi', 'United States Virgin Islands', 'Americas', 'USD', 'United States dollar', '$', NULL, 18.34, -64.93, '🇻🇮', 'U+1F1FB U+1F1EE', 1, 1), -(244, 'Wallis And Futuna Islands', 'WF', '876', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Wallis And Futuna Islands\", \"cn\": \"瓦利斯群岛和富图纳群岛\", \"de\": \"Wallis und Futuna\", \"es\": \"Wallis y Futuna\", \"fa\": \"والیس و فوتونا\", \"fr\": \"Wallis-et-Futuna\", \"hr\": \"Wallis i Fortuna\", \"it\": \"Wallis e Futuna\", \"ja\": \"ウォリス・フツナ\", \"kr\": \"왈리스 푸투나\", \"nl\": \"Wallis en Futuna\", \"pt\": \"Wallis e Futuna\", \"tr\": \"Wallis Ve Futuna\", \"pt-BR\": \"Wallis e Futuna\"}', '[{\"tzName\": \"Wallis & Futuna Time\", \"zoneName\": \"Pacific/Wallis\", \"gmtOffset\": 43200, \"abbreviation\": \"WFT\", \"gmtOffsetName\": \"UTC+12:00\"}]', '876', 'WLF', 'Wallis and Futuna, Wallisian or Futunan', 'Mata Utu', '.wf', 'Wallis et Futuna', 'Oceania', 'XPF', 'CFP franc', '₣', NULL, -13.30, -176.20, '🇼🇫', 'U+1F1FC U+1F1EB', 1, 1), -(246, 'Yemen', 'YE', '887', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Yemen\", \"cn\": \"也门\", \"de\": \"Jemen\", \"es\": \"Yemen\", \"fa\": \"یمن\", \"fr\": \"Yémen\", \"hr\": \"Jemen\", \"it\": \"Yemen\", \"ja\": \"イエメン\", \"kr\": \"예멘\", \"nl\": \"Jemen\", \"pt\": \"Iémen\", \"tr\": \"Yemen\", \"pt-BR\": \"Iêmen\"}', '[{\"tzName\": \"Arabia Standard Time\", \"zoneName\": \"Asia/Aden\", \"gmtOffset\": 10800, \"abbreviation\": \"AST\", \"gmtOffsetName\": \"UTC+03:00\"}]', '887', 'YEM', 'Yemeni', 'Sanaa', '.ye', 'اليَمَن', 'Asia', 'YER', 'Yemeni rial', '﷼', NULL, 15.00, 48.00, '🇾🇪', 'U+1F1FE U+1F1EA', 1, 1), -(247, 'Zambia', 'ZM', '894', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Zambia\", \"cn\": \"赞比亚\", \"de\": \"Sambia\", \"es\": \"Zambia\", \"fa\": \"زامبیا\", \"fr\": \"Zambie\", \"hr\": \"Zambija\", \"it\": \"Zambia\", \"ja\": \"ザンビア\", \"kr\": \"잠비아\", \"nl\": \"Zambia\", \"pt\": \"Zâmbia\", \"tr\": \"Zambiya\", \"pt-BR\": \"Zâmbia\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Lusaka\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '894', 'ZMB', 'Zambian', 'Lusaka', '.zm', 'Zambia', 'Africa', 'ZMW', 'Zambian kwacha', 'ZK', NULL, -15.00, 30.00, '🇿🇲', 'U+1F1FF U+1F1F2', 1, 1), -(248, 'Zimbabwe', 'ZW', '716', '2020-06-17 10:37:05', '2024-01-21 12:54:30', '{\"ar\": \"Zimbabwe\", \"cn\": \"津巴布韦\", \"de\": \"Simbabwe\", \"es\": \"Zimbabue\", \"fa\": \"زیمباوه\", \"fr\": \"Zimbabwe\", \"hr\": \"Zimbabve\", \"it\": \"Zimbabwe\", \"ja\": \"ジンバブエ\", \"kr\": \"짐바브웨\", \"nl\": \"Zimbabwe\", \"pt\": \"Zimbabué\", \"tr\": \"Zimbabve\", \"pt-BR\": \"Zimbabwe\"}', '[{\"tzName\": \"Central Africa Time\", \"zoneName\": \"Africa/Harare\", \"gmtOffset\": 7200, \"abbreviation\": \"CAT\", \"gmtOffsetName\": \"UTC+02:00\"}]', '716', 'ZWE', 'Zimbabwean', 'Harare', '.zw', 'Zimbabwe', 'Africa', 'ZWL', 'Zimbabwe Dollar', '$', NULL, -20.00, 30.00, '🇿🇼', 'U+1F1FF U+1F1FC', 1, 1), -(249, 'Afghanistan', 'AF', '004', '2024-01-21 11:39:22', '2024-01-21 12:54:28', '{\"ar\": \"Afghanistan\", \"cn\": \"阿富汗\", \"de\": \"Afghanistan\", \"es\": \"Afganistán\", \"fa\": \"افغانستان\", \"fr\": \"Afghanistan\", \"hr\": \"Afganistan\", \"it\": \"Afghanistan\", \"ja\": \"アフガニスタン\", \"kr\": \"아프가니스탄\", \"nl\": \"Afghanistan\", \"pt\": \"Afeganistão\", \"tr\": \"Afganistan\", \"pt-BR\": \"Afeganistão\"}', '[{\"tzName\": \"Afghanistan Time\", \"zoneName\": \"Asia/Kabul\", \"gmtOffset\": 16200, \"abbreviation\": \"AFT\", \"gmtOffsetName\": \"UTC+04:30\"}]', '004', 'AFG', 'Afghan', 'Kabul', '.af', 'افغانستان', 'Asia', 'AFN', 'Afghan afghani', '؋', NULL, 33.00, 65.00, '🇦🇫', 'U+1F1E6 U+1F1EB', 1, 1), -(250, 'Kosovo', 'XK', '926', '2024-01-21 11:39:24', '2024-01-21 12:54:30', '{\"ar\": \"Kosovo\", \"cn\": \"科索沃\", \"kr\": \"코소보\", \"tr\": \"Kosova\"}', '[{\"tzName\": \"Central European Time\", \"zoneName\": \"Europe/Belgrade\", \"gmtOffset\": 3600, \"abbreviation\": \"CET\", \"gmtOffsetName\": \"UTC+01:00\"}]', '926', 'XKX', 'Kosovar, Kosovan', 'Pristina', '.xk', 'Republika e Kosovës', 'Europe', 'EUR', 'Euro', '€', NULL, 42.56, 20.34, '🇽🇰', 'U+1F1FD U+1F1F0', 1, 1); diff --git a/database/data/currencies.json b/database/data/currencies.json new file mode 100644 index 0000000..2853170 --- /dev/null +++ b/database/data/currencies.json @@ -0,0 +1,159 @@ +[ +{"id":"1","arabic":null,"name":"(South) Korean Won","iso":"KRW","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"2","arabic":null,"name":"Afghanistan Afghani","iso":"AFA","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"3","arabic":null,"name":"Albanian Lek","iso":"ALL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"4","arabic":null,"name":"Algerian Dinar","iso":"DZD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"5","arabic":null,"name":"Andorran Peseta","iso":"ADP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"6","arabic":null,"name":"Angolan Kwanza","iso":"AOK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"7","arabic":null,"name":"Argentine Peso","iso":"ARS","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"8","arabic":null,"name":"Armenian Dram","iso":"AMD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"9","arabic":null,"name":"Aruban Florin","iso":"AWG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"10","arabic":null,"name":"Australian Dollar","iso":"AUD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"1.28","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"11","arabic":null,"name":"Bahamian Dollar","iso":"BSD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"12","arabic":null,"name":"Bahraini Dinar","iso":"BHD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"13","arabic":null,"name":"Taka","iso":"BDT","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"84","symbol":"৳","translations":null,"is_activated":"1"}, +{"id":"14","arabic":null,"name":"Barbados Dollar","iso":"BBD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"15","arabic":null,"name":"Belize Dollar","iso":"BZD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"16","arabic":null,"name":"Bermudian Dollar","iso":"BMD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"17","arabic":null,"name":"Bhutan Ngultrum","iso":"BTN","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"18","arabic":null,"name":"Bolivian Boliviano","iso":"BOB","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"19","arabic":null,"name":"Botswanian Pula","iso":"BWP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"20","arabic":null,"name":"Brazilian Real","iso":"BRL","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"3.25","symbol":"R$","translations":null,"is_activated":"1"}, +{"id":"21","arabic":null,"name":"Pound Sterling","iso":"GBP","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"0.72","symbol":"£","translations":null,"is_activated":"1"}, +{"id":"22","arabic":null,"name":"Brunei Dollar","iso":"BND","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"23","arabic":null,"name":"Bulgarian Lev","iso":"BGN","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"24","arabic":null,"name":"Burma Kyat","iso":"BUK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"25","arabic":null,"name":"Burundi Franc","iso":"BIF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"26","arabic":null,"name":"Canadian Dollar","iso":"CAD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"1.27","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"27","arabic":null,"name":"Cape Verde Escudo","iso":"CVE","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"28","arabic":null,"name":"Cayman Islands Dollar","iso":"KYD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"29","arabic":null,"name":"Chilean Peso","iso":"CLP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"30","arabic":null,"name":"Chilean Unidades de Fomento","iso":"CLF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"31","arabic":null,"name":"Colombian Peso","iso":"COP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"32","arabic":null,"name":"Communauté Financière Africaine BCEAO - Francs","iso":"XOF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"33","arabic":null,"name":"Communauté Financière Africaine BEAC, Francs","iso":"XAF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"34","arabic":null,"name":"Comoros Franc","iso":"KMF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"35","arabic":null,"name":"Comptoirs Français du Pacifique Francs","iso":"XPF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"36","arabic":null,"name":"Costa Rican Colon","iso":"CRC","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"37","arabic":null,"name":"Cuban Peso","iso":"CUP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"38","arabic":null,"name":"Cyprus Pound","iso":"CYP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"39","arabic":null,"name":"Czech Koruna","iso":"CZK","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"20.65","symbol":"Kč","translations":null,"is_activated":"1"}, +{"id":"40","arabic":null,"name":"Danish Krone","iso":"DKK","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"6.05","symbol":"kr","translations":null,"is_activated":"1"}, +{"id":"41","arabic":null,"name":"Democratic Yemeni Dinar","iso":"YDD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"42","arabic":null,"name":"Dominican Peso","iso":"DOP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"43","arabic":null,"name":"East Caribbean Dollar","iso":"XCD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"44","arabic":null,"name":"East Timor Escudo","iso":"TPE","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"45","arabic":null,"name":"Ecuador Sucre","iso":"ECS","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"46","arabic":"جنيه مصري","name":"Egyptian Pound","iso":"EGP","created_at":null,"updated_at":"2021-04-14 09:52:26","exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"47","arabic":null,"name":"El Salvador Colon","iso":"SVC","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"48","arabic":null,"name":"Estonian Kroon (EEK)","iso":"EEK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"49","arabic":null,"name":"Ethiopian Birr","iso":"ETB","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"50","arabic":null,"name":"Euro","iso":"EUR","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"0.85","symbol":"€","translations":null,"is_activated":"1"}, +{"id":"51","arabic":null,"name":"Falkland Islands Pound","iso":"FKP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"52","arabic":null,"name":"Fiji Dollar","iso":"FJD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"53","arabic":null,"name":"Gambian Dalasi","iso":"GMD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"54","arabic":null,"name":"Ghanaian Cedi","iso":"GHC","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"55","arabic":null,"name":"Gibraltar Pound","iso":"GIP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"56","arabic":null,"name":"Gold, Ounces","iso":"XAU","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"57","arabic":null,"name":"Guatemalan Quetzal","iso":"GTQ","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"58","arabic":null,"name":"Guinea Franc","iso":"GNF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"59","arabic":null,"name":"Guinea-Bissau Peso","iso":"GWP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"60","arabic":null,"name":"Guyanan Dollar","iso":"GYD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"61","arabic":null,"name":"Haitian Gourde","iso":"HTG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"62","arabic":null,"name":"Honduran Lempira","iso":"HNL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"63","arabic":null,"name":"Hong Kong Dollar","iso":"HKD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"7.83","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"64","arabic":null,"name":"Hungarian Forint","iso":"HUF","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"255.24","symbol":"Ft","translations":null,"is_activated":"1"}, +{"id":"65","arabic":null,"name":"Indian Rupee","iso":"INR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"66","arabic":null,"name":"Indonesian Rupiah","iso":"IDR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"67","arabic":null,"name":"International Monetary Fund (IMF) Special Drawing Rights","iso":"XDR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"68","arabic":null,"name":"Iranian Rial","iso":"IRR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"69","arabic":null,"name":"Iraqi Dinar","iso":"IQD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"70","arabic":null,"name":"Irish Punt","iso":"IEP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"71","arabic":null,"name":"Israeli New Sheqel","iso":"ILS","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"3.48","symbol":"₪","translations":null,"is_activated":"1"}, +{"id":"72","arabic":null,"name":"Jamaican Dollar","iso":"JMD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"73","arabic":null,"name":"Japanese Yen","iso":"JPY","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"107.12","symbol":"¥","translations":null,"is_activated":"1"}, +{"id":"74","arabic":null,"name":"Jordanian Dinar","iso":"JOD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"75","arabic":null,"name":"Kampuchean (Cambodian) Riel","iso":"KHR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"76","arabic":null,"name":"Kenyan Schilling","iso":"KES","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"77","arabic":null,"name":"Kuwaiti Dinar","iso":"KWD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"78","arabic":null,"name":"Lao Kip","iso":"LAK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"79","arabic":null,"name":"Lebanese Pound","iso":"LBP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"80","arabic":null,"name":"Lesotho Loti","iso":"LSL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"81","arabic":null,"name":"Liberian Dollar","iso":"LRD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"82","arabic":null,"name":"Libyan Dinar","iso":"LYD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"83","arabic":null,"name":"Macau Pataca","iso":"MOP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"84","arabic":null,"name":"Malagasy Franc","iso":"MGF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"85","arabic":null,"name":"Malawi Kwacha","iso":"MWK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"86","arabic":null,"name":"Malaysian Ringgit","iso":"MYR","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"3.91","symbol":"RM","translations":null,"is_activated":"1"}, +{"id":"87","arabic":null,"name":"Maldive Rufiyaa","iso":"MVR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"88","arabic":null,"name":"Maltese Lira","iso":"MTL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"89","arabic":null,"name":"Mauritanian Ouguiya","iso":"MRO","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"90","arabic":null,"name":"Mauritius Rupee","iso":"MUR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"91","arabic":null,"name":"Mexican Peso","iso":"MXP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"92","arabic":null,"name":"Mongolian Tugrik","iso":"MNT","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"93","arabic":null,"name":"Moroccan Dirham","iso":"MAD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"94","arabic":null,"name":"Mozambique Metical","iso":"MZM","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"95","arabic":null,"name":"Namibian Dollar","iso":"NAD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"96","arabic":null,"name":"Nepalese Rupee","iso":"NPR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"97","arabic":null,"name":"Netherlands Antillian Guilder","iso":"ANG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"98","arabic":null,"name":"New Yugoslavia Dinar","iso":"YUD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"99","arabic":null,"name":"New Zealand Dollar","iso":"NZD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"1.38","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"100","arabic":null,"name":"Nicaraguan Cordoba","iso":"NIO","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"101","arabic":null,"name":"Nigerian Naira","iso":"NGN","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"102","arabic":null,"name":"North Korean Won","iso":"KPW","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"103","arabic":null,"name":"Norwegian Krone","iso":"NOK","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"7.83","symbol":"kr","translations":null,"is_activated":"1"}, +{"id":"104","arabic":null,"name":"Omani Rial","iso":"OMR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"105","arabic":null,"name":"Pakistan Rupee","iso":"PKR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"106","arabic":null,"name":"Palladium Ounces","iso":"XPD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"107","arabic":null,"name":"Panamanian Balboa","iso":"PAB","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"108","arabic":null,"name":"Papua New Guinea Kina","iso":"PGK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"109","arabic":null,"name":"Paraguay Guarani","iso":"PYG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"110","arabic":null,"name":"Peruvian Nuevo Sol","iso":"PEN","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"111","arabic":null,"name":"Philippine Peso","iso":"PHP","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"52.26","symbol":"₱","translations":null,"is_activated":"1"}, +{"id":"112","arabic":null,"name":"Platinum, Ounces","iso":"XPT","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"113","arabic":null,"name":"Polish Zloty","iso":"PLN","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"3.39","symbol":"zł","translations":null,"is_activated":"1"}, +{"id":"114","arabic":null,"name":"Qatari Rial","iso":"QAR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"115","arabic":null,"name":"Romanian Leu","iso":"RON","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"116","arabic":null,"name":"Russian Ruble","iso":"RUB","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"55.93","symbol":"руб","translations":null,"is_activated":"1"}, +{"id":"117","arabic":null,"name":"Rwanda Franc","iso":"RWF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"118","arabic":null,"name":"Samoan Tala","iso":"WST","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"119","arabic":null,"name":"Sao Tome and Principe Dobra","iso":"STD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"120","arabic":"ريال سعودي","name":"Saudi Arabian Riyal","iso":"SAR","created_at":null,"updated_at":"2021-04-14 09:52:38","exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"121","arabic":null,"name":"Seychelles Rupee","iso":"SCR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"122","arabic":null,"name":"Sierra Leone Leone","iso":"SLL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"123","arabic":null,"name":"Silver, Ounces","iso":"XAG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"124","arabic":null,"name":"Singapore Dollar","iso":"SGD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"1.32","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"125","arabic":null,"name":"Slovak Koruna","iso":"SKK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"126","arabic":null,"name":"Solomon Islands Dollar","iso":"SBD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"127","arabic":null,"name":"Somali Schilling","iso":"SOS","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"128","arabic":null,"name":"South African Rand","iso":"ZAR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"129","arabic":null,"name":"Sri Lanka Rupee","iso":"LKR","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"130","arabic":null,"name":"St. Helena Pound","iso":"SHP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"131","arabic":null,"name":"Sudanese Pound","iso":"SDP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"132","arabic":null,"name":"Suriname Guilder","iso":"SRG","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"133","arabic":null,"name":"Swaziland Lilangeni","iso":"SZL","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"134","arabic":null,"name":"Swedish Krona","iso":"SEK","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"8.19","symbol":"kr","translations":null,"is_activated":"1"}, +{"id":"135","arabic":null,"name":"Swiss Franc","iso":"CHF","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"0.94","symbol":"CHF","translations":null,"is_activated":"1"}, +{"id":"136","arabic":null,"name":"Syrian Potmd","iso":"SYP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"137","arabic":null,"name":"Taiwan Dollar","iso":"TWD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"138","arabic":null,"name":"Tanzanian Schilling","iso":"TZS","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"139","arabic":null,"name":"Thai Baht","iso":"THB","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"31.39","symbol":"฿","translations":null,"is_activated":"1"}, +{"id":"140","arabic":null,"name":"Tongan Paanga","iso":"TOP","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"141","arabic":null,"name":"Trinidad and Tobago Dollar","iso":"TTD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"142","arabic":null,"name":"Tunisian Dinar","iso":"TND","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"143","arabic":null,"name":"Turkish Lira","iso":"TRY","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"144","arabic":null,"name":"Uganda Shilling","iso":"UGX","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"145","arabic":null,"name":"United Arab Emirates Dirham","iso":"AED","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"146","arabic":null,"name":"Uruguayan Peso","iso":"UYU","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"147","arabic":null,"name":"U.S. Dollar","iso":"USD","created_at":null,"updated_at":"2024-01-21 12:28:05","exchange_rate":"1","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"148","arabic":null,"name":"Vanuatu Vatu","iso":"VUV","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"149","arabic":null,"name":"Venezualan Bolivar","iso":"VEF","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"150","arabic":null,"name":"Vietnamese Dong","iso":"VND","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"151","arabic":null,"name":"Yemeni Rial","iso":"YER","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"152","arabic":null,"name":"Yuan (Chinese) Renminbi","iso":"CNY","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"153","arabic":null,"name":"Zaire Zaire","iso":"ZRZ","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"154","arabic":null,"name":"Zambian Kwacha","iso":"ZMK","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"155","arabic":null,"name":"Zimbabwe Dollar","iso":"ZWD","created_at":null,"updated_at":null,"exchange_rate":null,"symbol":null,"translations":null,"is_activated":"1"}, +{"id":"156","arabic":null,"name":"Mexican Peso","iso":"MXN","created_at":"2024-01-21 12:24:46","updated_at":"2024-01-21 12:28:05","exchange_rate":"18.72","symbol":"$","translations":null,"is_activated":"1"}, +{"id":"157","arabic":null,"name":"Indian Rupee","iso":"Rupee","created_at":"2024-01-21 12:24:46","updated_at":"2024-01-21 12:28:05","exchange_rate":"68.45","symbol":"Rs","translations":null,"is_activated":"1"} +] diff --git a/database/data/currencies.sql b/database/data/currencies.sql deleted file mode 100644 index 7fd15ce..0000000 --- a/database/data/currencies.sql +++ /dev/null @@ -1,158 +0,0 @@ -INSERT INTO `currencies` (`id`, `arabic`, `name`, `iso`, `created_at`, `updated_at`, `exchange_rate`, `symbol`, `translations`, `is_activated`) VALUES - (1, NULL, '(South) Korean Won', 'KRW', NULL, NULL, NULL, NULL, NULL, 1), - (2, NULL, 'Afghanistan Afghani', 'AFA', NULL, NULL, NULL, NULL, NULL, 1), - (3, NULL, 'Albanian Lek', 'ALL', NULL, NULL, NULL, NULL, NULL, 1), - (4, NULL, 'Algerian Dinar', 'DZD', NULL, NULL, NULL, NULL, NULL, 1), - (5, NULL, 'Andorran Peseta', 'ADP', NULL, NULL, NULL, NULL, NULL, 1), - (6, NULL, 'Angolan Kwanza', 'AOK', NULL, NULL, NULL, NULL, NULL, 1), - (7, NULL, 'Argentine Peso', 'ARS', NULL, NULL, NULL, NULL, NULL, 1), - (8, NULL, 'Armenian Dram', 'AMD', NULL, NULL, NULL, NULL, NULL, 1), - (9, NULL, 'Aruban Florin', 'AWG', NULL, NULL, NULL, NULL, NULL, 1), - (10, NULL, 'Australian Dollar', 'AUD', NULL, '2024-01-21 12:28:05', 1.28, '$', NULL, 1), - (11, NULL, 'Bahamian Dollar', 'BSD', NULL, NULL, NULL, NULL, NULL, 1), - (12, NULL, 'Bahraini Dinar', 'BHD', NULL, NULL, NULL, NULL, NULL, 1), - (13, NULL, 'Taka', 'BDT', NULL, '2024-01-21 12:28:05', 84, '৳', NULL, 1), - (14, NULL, 'Barbados Dollar', 'BBD', NULL, NULL, NULL, NULL, NULL, 1), - (15, NULL, 'Belize Dollar', 'BZD', NULL, NULL, NULL, NULL, NULL, 1), - (16, NULL, 'Bermudian Dollar', 'BMD', NULL, NULL, NULL, NULL, NULL, 1), - (17, NULL, 'Bhutan Ngultrum', 'BTN', NULL, NULL, NULL, NULL, NULL, 1), - (18, NULL, 'Bolivian Boliviano', 'BOB', NULL, NULL, NULL, NULL, NULL, 1), - (19, NULL, 'Botswanian Pula', 'BWP', NULL, NULL, NULL, NULL, NULL, 1), - (20, NULL, 'Brazilian Real', 'BRL', NULL, '2024-01-21 12:28:05', 3.25, 'R$', NULL, 1), - (21, NULL, 'Pound Sterling', 'GBP', NULL, '2024-01-21 12:28:05', 0.72, '£', NULL, 1), - (22, NULL, 'Brunei Dollar', 'BND', NULL, NULL, NULL, NULL, NULL, 1), - (23, NULL, 'Bulgarian Lev', 'BGN', NULL, NULL, NULL, NULL, NULL, 1), - (24, NULL, 'Burma Kyat', 'BUK', NULL, NULL, NULL, NULL, NULL, 1), - (25, NULL, 'Burundi Franc', 'BIF', NULL, NULL, NULL, NULL, NULL, 1), - (26, NULL, 'Canadian Dollar', 'CAD', NULL, '2024-01-21 12:28:05', 1.27, '$', NULL, 1), - (27, NULL, 'Cape Verde Escudo', 'CVE', NULL, NULL, NULL, NULL, NULL, 1), - (28, NULL, 'Cayman Islands Dollar', 'KYD', NULL, NULL, NULL, NULL, NULL, 1), - (29, NULL, 'Chilean Peso', 'CLP', NULL, NULL, NULL, NULL, NULL, 1), - (30, NULL, 'Chilean Unidades de Fomento', 'CLF', NULL, NULL, NULL, NULL, NULL, 1), - (31, NULL, 'Colombian Peso', 'COP', NULL, NULL, NULL, NULL, NULL, 1), - (32, NULL, 'Communauté Financière Africaine BCEAO - Francs', 'XOF', NULL, NULL, NULL, NULL, NULL, 1), - (33, NULL, 'Communauté Financière Africaine BEAC, Francs', 'XAF', NULL, NULL, NULL, NULL, NULL, 1), - (34, NULL, 'Comoros Franc', 'KMF', NULL, NULL, NULL, NULL, NULL, 1), - (35, NULL, 'Comptoirs Français du Pacifique Francs', 'XPF', NULL, NULL, NULL, NULL, NULL, 1), - (36, NULL, 'Costa Rican Colon', 'CRC', NULL, NULL, NULL, NULL, NULL, 1), - (37, NULL, 'Cuban Peso', 'CUP', NULL, NULL, NULL, NULL, NULL, 1), - (38, NULL, 'Cyprus Pound', 'CYP', NULL, NULL, NULL, NULL, NULL, 1), - (39, NULL, 'Czech Koruna', 'CZK', NULL, '2024-01-21 12:28:05', 20.65, 'Kč', NULL, 1), - (40, NULL, 'Danish Krone', 'DKK', NULL, '2024-01-21 12:28:05', 6.05, 'kr', NULL, 1), - (41, NULL, 'Democratic Yemeni Dinar', 'YDD', NULL, NULL, NULL, NULL, NULL, 1), - (42, NULL, 'Dominican Peso', 'DOP', NULL, NULL, NULL, NULL, NULL, 1), - (43, NULL, 'East Caribbean Dollar', 'XCD', NULL, NULL, NULL, NULL, NULL, 1), - (44, NULL, 'East Timor Escudo', 'TPE', NULL, NULL, NULL, NULL, NULL, 1), - (45, NULL, 'Ecuador Sucre', 'ECS', NULL, NULL, NULL, NULL, NULL, 1), - (46, 'جنيه مصري', 'Egyptian Pound', 'EGP', NULL, '2021-04-14 09:52:26', NULL, NULL, NULL, 1), - (47, NULL, 'El Salvador Colon', 'SVC', NULL, NULL, NULL, NULL, NULL, 1), - (48, NULL, 'Estonian Kroon (EEK)', 'EEK', NULL, NULL, NULL, NULL, NULL, 1), - (49, NULL, 'Ethiopian Birr', 'ETB', NULL, NULL, NULL, NULL, NULL, 1), - (50, NULL, 'Euro', 'EUR', NULL, '2024-01-21 12:28:05', 0.85, '€', NULL, 1), - (51, NULL, 'Falkland Islands Pound', 'FKP', NULL, NULL, NULL, NULL, NULL, 1), - (52, NULL, 'Fiji Dollar', 'FJD', NULL, NULL, NULL, NULL, NULL, 1), - (53, NULL, 'Gambian Dalasi', 'GMD', NULL, NULL, NULL, NULL, NULL, 1), - (54, NULL, 'Ghanaian Cedi', 'GHC', NULL, NULL, NULL, NULL, NULL, 1), - (55, NULL, 'Gibraltar Pound', 'GIP', NULL, NULL, NULL, NULL, NULL, 1), - (56, NULL, 'Gold, Ounces', 'XAU', NULL, NULL, NULL, NULL, NULL, 1), - (57, NULL, 'Guatemalan Quetzal', 'GTQ', NULL, NULL, NULL, NULL, NULL, 1), - (58, NULL, 'Guinea Franc', 'GNF', NULL, NULL, NULL, NULL, NULL, 1), - (59, NULL, 'Guinea-Bissau Peso', 'GWP', NULL, NULL, NULL, NULL, NULL, 1), - (60, NULL, 'Guyanan Dollar', 'GYD', NULL, NULL, NULL, NULL, NULL, 1), - (61, NULL, 'Haitian Gourde', 'HTG', NULL, NULL, NULL, NULL, NULL, 1), - (62, NULL, 'Honduran Lempira', 'HNL', NULL, NULL, NULL, NULL, NULL, 1), - (63, NULL, 'Hong Kong Dollar', 'HKD', NULL, '2024-01-21 12:28:05', 7.83, '$', NULL, 1), - (64, NULL, 'Hungarian Forint', 'HUF', NULL, '2024-01-21 12:28:05', 255.24, 'Ft', NULL, 1), - (65, NULL, 'Indian Rupee', 'INR', NULL, NULL, NULL, NULL, NULL, 1), - (66, NULL, 'Indonesian Rupiah', 'IDR', NULL, NULL, NULL, NULL, NULL, 1), - (67, NULL, 'International Monetary Fund (IMF) Special Drawing Rights', 'XDR', NULL, NULL, NULL, NULL, NULL, 1), - (68, NULL, 'Iranian Rial', 'IRR', NULL, NULL, NULL, NULL, NULL, 1), - (69, NULL, 'Iraqi Dinar', 'IQD', NULL, NULL, NULL, NULL, NULL, 1), - (70, NULL, 'Irish Punt', 'IEP', NULL, NULL, NULL, NULL, NULL, 1), - (71, NULL, 'Israeli New Sheqel', 'ILS', NULL, '2024-01-21 12:28:05', 3.48, '₪', NULL, 1), - (72, NULL, 'Jamaican Dollar', 'JMD', NULL, NULL, NULL, NULL, NULL, 1), - (73, NULL, 'Japanese Yen', 'JPY', NULL, '2024-01-21 12:28:05', 107.12, '¥', NULL, 1), - (74, NULL, 'Jordanian Dinar', 'JOD', NULL, NULL, NULL, NULL, NULL, 1), - (75, NULL, 'Kampuchean (Cambodian) Riel', 'KHR', NULL, NULL, NULL, NULL, NULL, 1), - (76, NULL, 'Kenyan Schilling', 'KES', NULL, NULL, NULL, NULL, NULL, 1), - (77, NULL, 'Kuwaiti Dinar', 'KWD', NULL, NULL, NULL, NULL, NULL, 1), - (78, NULL, 'Lao Kip', 'LAK', NULL, NULL, NULL, NULL, NULL, 1), - (79, NULL, 'Lebanese Pound', 'LBP', NULL, NULL, NULL, NULL, NULL, 1), - (80, NULL, 'Lesotho Loti', 'LSL', NULL, NULL, NULL, NULL, NULL, 1), - (81, NULL, 'Liberian Dollar', 'LRD', NULL, NULL, NULL, NULL, NULL, 1), - (82, NULL, 'Libyan Dinar', 'LYD', NULL, NULL, NULL, NULL, NULL, 1), - (83, NULL, 'Macau Pataca', 'MOP', NULL, NULL, NULL, NULL, NULL, 1), - (84, NULL, 'Malagasy Franc', 'MGF', NULL, NULL, NULL, NULL, NULL, 1), - (85, NULL, 'Malawi Kwacha', 'MWK', NULL, NULL, NULL, NULL, NULL, 1), - (86, NULL, 'Malaysian Ringgit', 'MYR', NULL, '2024-01-21 12:28:05', 3.91, 'RM', NULL, 1), - (87, NULL, 'Maldive Rufiyaa', 'MVR', NULL, NULL, NULL, NULL, NULL, 1), - (88, NULL, 'Maltese Lira', 'MTL', NULL, NULL, NULL, NULL, NULL, 1), - (89, NULL, 'Mauritanian Ouguiya', 'MRO', NULL, NULL, NULL, NULL, NULL, 1), - (90, NULL, 'Mauritius Rupee', 'MUR', NULL, NULL, NULL, NULL, NULL, 1), - (91, NULL, 'Mexican Peso', 'MXP', NULL, NULL, NULL, NULL, NULL, 1), - (92, NULL, 'Mongolian Tugrik', 'MNT', NULL, NULL, NULL, NULL, NULL, 1), - (93, NULL, 'Moroccan Dirham', 'MAD', NULL, NULL, NULL, NULL, NULL, 1), - (94, NULL, 'Mozambique Metical', 'MZM', NULL, NULL, NULL, NULL, NULL, 1), - (95, NULL, 'Namibian Dollar', 'NAD', NULL, NULL, NULL, NULL, NULL, 1), - (96, NULL, 'Nepalese Rupee', 'NPR', NULL, NULL, NULL, NULL, NULL, 1), - (97, NULL, 'Netherlands Antillian Guilder', 'ANG', NULL, NULL, NULL, NULL, NULL, 1), - (98, NULL, 'New Yugoslavia Dinar', 'YUD', NULL, NULL, NULL, NULL, NULL, 1), - (99, NULL, 'New Zealand Dollar', 'NZD', NULL, '2024-01-21 12:28:05', 1.38, '$', NULL, 1), - (100, NULL, 'Nicaraguan Cordoba', 'NIO', NULL, NULL, NULL, NULL, NULL, 1), - (101, NULL, 'Nigerian Naira', 'NGN', NULL, NULL, NULL, NULL, NULL, 1), - (102, NULL, 'North Korean Won', 'KPW', NULL, NULL, NULL, NULL, NULL, 1), - (103, NULL, 'Norwegian Krone', 'NOK', NULL, '2024-01-21 12:28:05', 7.83, 'kr', NULL, 1), - (104, NULL, 'Omani Rial', 'OMR', NULL, NULL, NULL, NULL, NULL, 1), - (105, NULL, 'Pakistan Rupee', 'PKR', NULL, NULL, NULL, NULL, NULL, 1), - (106, NULL, 'Palladium Ounces', 'XPD', NULL, NULL, NULL, NULL, NULL, 1), - (107, NULL, 'Panamanian Balboa', 'PAB', NULL, NULL, NULL, NULL, NULL, 1), - (108, NULL, 'Papua New Guinea Kina', 'PGK', NULL, NULL, NULL, NULL, NULL, 1), - (109, NULL, 'Paraguay Guarani', 'PYG', NULL, NULL, NULL, NULL, NULL, 1), - (110, NULL, 'Peruvian Nuevo Sol', 'PEN', NULL, NULL, NULL, NULL, NULL, 1), - (111, NULL, 'Philippine Peso', 'PHP', NULL, '2024-01-21 12:28:05', 52.26, '₱', NULL, 1), - (112, NULL, 'Platinum, Ounces', 'XPT', NULL, NULL, NULL, NULL, NULL, 1), - (113, NULL, 'Polish Zloty', 'PLN', NULL, '2024-01-21 12:28:05', 3.39, 'zł', NULL, 1), - (114, NULL, 'Qatari Rial', 'QAR', NULL, NULL, NULL, NULL, NULL, 1), - (115, NULL, 'Romanian Leu', 'RON', NULL, NULL, NULL, NULL, NULL, 1), - (116, NULL, 'Russian Ruble', 'RUB', NULL, '2024-01-21 12:28:05', 55.93, 'руб', NULL, 1), - (117, NULL, 'Rwanda Franc', 'RWF', NULL, NULL, NULL, NULL, NULL, 1), - (118, NULL, 'Samoan Tala', 'WST', NULL, NULL, NULL, NULL, NULL, 1), - (119, NULL, 'Sao Tome and Principe Dobra', 'STD', NULL, NULL, NULL, NULL, NULL, 1), - (120, 'ريال سعودي', 'Saudi Arabian Riyal', 'SAR', NULL, '2021-04-14 09:52:38', NULL, NULL, NULL, 1), - (121, NULL, 'Seychelles Rupee', 'SCR', NULL, NULL, NULL, NULL, NULL, 1), - (122, NULL, 'Sierra Leone Leone', 'SLL', NULL, NULL, NULL, NULL, NULL, 1), - (123, NULL, 'Silver, Ounces', 'XAG', NULL, NULL, NULL, NULL, NULL, 1), - (124, NULL, 'Singapore Dollar', 'SGD', NULL, '2024-01-21 12:28:05', 1.32, '$', NULL, 1), - (125, NULL, 'Slovak Koruna', 'SKK', NULL, NULL, NULL, NULL, NULL, 1), - (126, NULL, 'Solomon Islands Dollar', 'SBD', NULL, NULL, NULL, NULL, NULL, 1), - (127, NULL, 'Somali Schilling', 'SOS', NULL, NULL, NULL, NULL, NULL, 1), - (128, NULL, 'South African Rand', 'ZAR', NULL, NULL, NULL, NULL, NULL, 1), - (129, NULL, 'Sri Lanka Rupee', 'LKR', NULL, NULL, NULL, NULL, NULL, 1), - (130, NULL, 'St. Helena Pound', 'SHP', NULL, NULL, NULL, NULL, NULL, 1), - (131, NULL, 'Sudanese Pound', 'SDP', NULL, NULL, NULL, NULL, NULL, 1), - (132, NULL, 'Suriname Guilder', 'SRG', NULL, NULL, NULL, NULL, NULL, 1), - (133, NULL, 'Swaziland Lilangeni', 'SZL', NULL, NULL, NULL, NULL, NULL, 1), - (134, NULL, 'Swedish Krona', 'SEK', NULL, '2024-01-21 12:28:05', 8.19, 'kr', NULL, 1), - (135, NULL, 'Swiss Franc', 'CHF', NULL, '2024-01-21 12:28:05', 0.94, 'CHF', NULL, 1), - (136, NULL, 'Syrian Potmd', 'SYP', NULL, NULL, NULL, NULL, NULL, 1), - (137, NULL, 'Taiwan Dollar', 'TWD', NULL, NULL, NULL, NULL, NULL, 1), - (138, NULL, 'Tanzanian Schilling', 'TZS', NULL, NULL, NULL, NULL, NULL, 1), - (139, NULL, 'Thai Baht', 'THB', NULL, '2024-01-21 12:28:05', 31.39, '฿', NULL, 1), - (140, NULL, 'Tongan Paanga', 'TOP', NULL, NULL, NULL, NULL, NULL, 1), - (141, NULL, 'Trinidad and Tobago Dollar', 'TTD', NULL, NULL, NULL, NULL, NULL, 1), - (142, NULL, 'Tunisian Dinar', 'TND', NULL, NULL, NULL, NULL, NULL, 1), - (143, NULL, 'Turkish Lira', 'TRY', NULL, NULL, NULL, NULL, NULL, 1), - (144, NULL, 'Uganda Shilling', 'UGX', NULL, NULL, NULL, NULL, NULL, 1), - (145, NULL, 'United Arab Emirates Dirham', 'AED', NULL, NULL, NULL, NULL, NULL, 1), - (146, NULL, 'Uruguayan Peso', 'UYU', NULL, NULL, NULL, NULL, NULL, 1), - (147, NULL, 'U.S. Dollar', 'USD', NULL, '2024-01-21 12:28:05', 1, '$', NULL, 1), - (148, NULL, 'Vanuatu Vatu', 'VUV', NULL, NULL, NULL, NULL, NULL, 1), - (149, NULL, 'Venezualan Bolivar', 'VEF', NULL, NULL, NULL, NULL, NULL, 1), - (150, NULL, 'Vietnamese Dong', 'VND', NULL, NULL, NULL, NULL, NULL, 1), - (151, NULL, 'Yemeni Rial', 'YER', NULL, NULL, NULL, NULL, NULL, 1), - (152, NULL, 'Yuan (Chinese) Renminbi', 'CNY', NULL, NULL, NULL, NULL, NULL, 1), - (153, NULL, 'Zaire Zaire', 'ZRZ', NULL, NULL, NULL, NULL, NULL, 1), - (154, NULL, 'Zambian Kwacha', 'ZMK', NULL, NULL, NULL, NULL, NULL, 1), - (155, NULL, 'Zimbabwe Dollar', 'ZWD', NULL, NULL, NULL, NULL, NULL, 1), - (156, NULL, 'Mexican Peso', 'MXN', '2024-01-21 12:24:46', '2024-01-21 12:28:05', 18.72, '$', NULL, 1), - (157, NULL, 'Indian Rupee', 'Rupee', '2024-01-21 12:24:46', '2024-01-21 12:28:05', 68.45, 'Rs', NULL, 1); diff --git a/database/data/languages.json b/database/data/languages.json new file mode 100644 index 0000000..80986b0 --- /dev/null +++ b/database/data/languages.json @@ -0,0 +1,611 @@ +[ +{"id":"1","iso":"ab","name":"Abkhazian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"2","iso":"ace","name":"Achinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"3","iso":"ach","name":"Acoli","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"4","iso":"ada","name":"Adangme","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"5","iso":"ady","name":"Adyghe","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"6","iso":"aa","name":"Afar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"7","iso":"afh","name":"Afrihili","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"8","iso":"af","name":"Afrikaans","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"9","iso":"agq","name":"Aghem","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"10","iso":"ain","name":"Ainu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"11","iso":"ak","name":"Akan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"12","iso":"akk","name":"Akkadian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"13","iso":"bss","name":"Akoose","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"14","iso":"akz","name":"Alabama","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"15","iso":"sq","name":"Albanian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"16","iso":"ale","name":"Aleut","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"17","iso":"arq","name":"Algerian Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"18","iso":"am","name":"Amarik","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"19","iso":"en_US","name":"American English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"20","iso":"ase","name":"American Sign Language","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"21","iso":"egy","name":"Ancient Egyptian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"22","iso":"grc","name":"Ancient Greek","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"23","iso":"anp","name":"Angika","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"24","iso":"njo","name":"Ao Naga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"25","iso":"ar","name":"Arabik","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"26","iso":"an","name":"Aragonese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"27","iso":"arc","name":"Aramaic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"28","iso":"aro","name":"Araona","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"29","iso":"arp","name":"Arapaho","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"30","iso":"arw","name":"Arawak","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"31","iso":"hy","name":"Armenian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"32","iso":"rup","name":"Aromanian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"33","iso":"frp","name":"Arpitan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"34","iso":"as","name":"Assamese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"35","iso":"ast","name":"Asturian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"36","iso":"asa","name":"Asu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"37","iso":"cch","name":"Atsam","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"38","iso":"en_AU","name":"Australian English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"39","iso":"de_AT","name":"Austrian German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"40","iso":"av","name":"Avaric","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"41","iso":"ae","name":"Avestan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"42","iso":"awa","name":"Awadhi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"43","iso":"ay","name":"Aymara","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"44","iso":"az","name":"Azerbaijani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"45","iso":"bfq","name":"Badaga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"46","iso":"ksf","name":"Bafia","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"47","iso":"bfd","name":"Bafut","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"48","iso":"bqi","name":"Bakhtiari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"49","iso":"ban","name":"Balinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"50","iso":"bal","name":"Baluchi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"51","iso":"bm","name":"Bambara","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"52","iso":"bax","name":"Bamun","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"53","iso":"bjn","name":"Banjar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"54","iso":"bas","name":"Basaa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"55","iso":"ba","name":"Bashkir","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"56","iso":"eu","name":"Basque","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"57","iso":"bbc","name":"Batak Toba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"58","iso":"bar","name":"Bavarian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"59","iso":"bej","name":"Beja","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"60","iso":"be","name":"Belarus kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"61","iso":"bem","name":"Bemba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"62","iso":"bez","name":"Bena","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"63","iso":"bn","name":"Bengali kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"64","iso":"bew","name":"Betawi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"65","iso":"my","name":"Bɛɛmis kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"66","iso":"bho","name":"Bhojpuri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"67","iso":"bik","name":"Bikol","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"68","iso":"bin","name":"Bini","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"69","iso":"bpy","name":"Bishnupriya","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"70","iso":"bi","name":"Bislama","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"71","iso":"byn","name":"Blin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"72","iso":"zbl","name":"Blissymbols","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"73","iso":"brx","name":"Bodo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"74","iso":"en","name":"Borɔfo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"75","iso":"bs","name":"Bosnian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"76","iso":"bg","name":"Bɔlgeria kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"77","iso":"brh","name":"Brahui","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"78","iso":"bra","name":"Braj","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"79","iso":"pt_BR","name":"Brazilian Portuguese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"80","iso":"br","name":"Breton","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"81","iso":"en_GB","name":"British English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"82","iso":"bug","name":"Buginese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"83","iso":"bum","name":"Bulu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"84","iso":"bua","name":"Buriat","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"85","iso":"cad","name":"Caddo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"86","iso":"frc","name":"Cajun French","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"87","iso":"en_CA","name":"Canadian English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"88","iso":"fr_CA","name":"Canadian French","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"89","iso":"yue","name":"Cantonese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"90","iso":"cps","name":"Capiznon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"91","iso":"car","name":"Carib","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"92","iso":"ca","name":"Catalan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"93","iso":"cay","name":"Cayuga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"94","iso":"ceb","name":"Cebuano","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"95","iso":"tzm","name":"Central Atlas Tamazight","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"96","iso":"dtp","name":"Central Dusun","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"97","iso":"ckb","name":"Central Kurdish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"98","iso":"esu","name":"Central Yupik","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"99","iso":"shu","name":"Chadian Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"100","iso":"chg","name":"Chagatai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"101","iso":"ch","name":"Chamorro","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"102","iso":"ce","name":"Chechen","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"103","iso":"chr","name":"Cherokee","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"104","iso":"chy","name":"Cheyenne","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"105","iso":"chb","name":"Chibcha","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"106","iso":"cgg","name":"Chiga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"107","iso":"qug","name":"Chimborazo Highland Quichua","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"108","iso":"chn","name":"Chinook Jargon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"109","iso":"chp","name":"Chipewyan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"110","iso":"cho","name":"Choctaw","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"111","iso":"cu","name":"Church Slavic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"112","iso":"chk","name":"Chuukese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"113","iso":"cv","name":"Chuvash","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"114","iso":"nwc","name":"Classical Newari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"115","iso":"syc","name":"Classical Syriac","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"116","iso":"ksh","name":"Colognian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"117","iso":"swb","name":"Comorian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"118","iso":"swc","name":"Congo Swahili","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"119","iso":"cop","name":"Coptic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"120","iso":"kw","name":"Cornish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"121","iso":"co","name":"Corsican","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"122","iso":"cr","name":"Cree","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"123","iso":"mus","name":"Creek","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"124","iso":"crh","name":"Crimean Turkish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"125","iso":"hr","name":"Croatian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"126","iso":"dak","name":"Dakota","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"127","iso":"da","name":"Danish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"128","iso":"dar","name":"Dargwa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"129","iso":"dzg","name":"Dazaga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"130","iso":"del","name":"Delaware","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"131","iso":"nl","name":"Dɛɛkye","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"132","iso":"din","name":"Dinka","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"133","iso":"dv","name":"Divehi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"134","iso":"doi","name":"Dogri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"135","iso":"dgr","name":"Dogrib","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"136","iso":"dua","name":"Duala","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"137","iso":"dyu","name":"Dyula","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"138","iso":"dz","name":"Dzongkha","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"139","iso":"frs","name":"Eastern Frisian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"140","iso":"efi","name":"Efik","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"141","iso":"arz","name":"Egyptian Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"142","iso":"eka","name":"Ekajuk","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"143","iso":"elx","name":"Elamite","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"144","iso":"ebu","name":"Embu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"145","iso":"egl","name":"Emilian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"146","iso":"myv","name":"Erzya","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"147","iso":"eo","name":"Esperanto","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"148","iso":"et","name":"Estonian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"149","iso":"pt_PT","name":"European Portuguese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"150","iso":"es_ES","name":"European Spanish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"151","iso":"ee","name":"Ewe","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"152","iso":"ewo","name":"Ewondo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"153","iso":"ext","name":"Extremaduran","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"154","iso":"fan","name":"Fang","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"155","iso":"fat","name":"Fanti","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"156","iso":"fo","name":"Faroese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"157","iso":"hif","name":"Fiji Hindi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"158","iso":"fj","name":"Fijian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"159","iso":"fil","name":"Filipino","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"160","iso":"fi","name":"Finnish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"161","iso":"nl_BE","name":"Flemish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"162","iso":"fon","name":"Fon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"163","iso":"gur","name":"Frafra","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"164","iso":"fr","name":"Frɛnkye","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"165","iso":"fur","name":"Friulian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"166","iso":"ff","name":"Fulah","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"167","iso":"gaa","name":"Ga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"168","iso":"gag","name":"Gagauz","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"169","iso":"gl","name":"Galician","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"170","iso":"gan","name":"Gan Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"171","iso":"lg","name":"Ganda","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"172","iso":"gay","name":"Gayo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"173","iso":"gba","name":"Gbaya","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"174","iso":"gez","name":"Geez","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"175","iso":"ka","name":"Georgian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"176","iso":"aln","name":"Gheg Albanian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"177","iso":"bbj","name":"Ghomala","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"178","iso":"glk","name":"Gilaki","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"179","iso":"gil","name":"Gilbertese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"180","iso":"gom","name":"Goan Konkani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"181","iso":"gon","name":"Gondi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"182","iso":"gor","name":"Gorontalo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"183","iso":"got","name":"Gothic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"184","iso":"grb","name":"Grebo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"185","iso":"el","name":"Greek kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"186","iso":"gn","name":"Guarani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"187","iso":"gu","name":"Gujarati","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"188","iso":"guz","name":"Gusii","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"189","iso":"gwi","name":"Gwichʼin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"190","iso":"de","name":"Gyaaman","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"191","iso":"jv","name":"Gyabanis kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"192","iso":"ja","name":"Gyapan kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"193","iso":"hai","name":"Haida","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"194","iso":"ht","name":"Haitian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"195","iso":"hak","name":"Hakka Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"196","iso":"hu","name":"Hangri kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"197","iso":"ha","name":"Hausa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"198","iso":"haw","name":"Hawaiian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"199","iso":"he","name":"Hebrew","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"200","iso":"hz","name":"Herero","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"201","iso":"hil","name":"Hiligaynon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"202","iso":"hi","name":"Hindi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"203","iso":"ho","name":"Hiri Motu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"204","iso":"hit","name":"Hittite","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"205","iso":"hmn","name":"Hmong","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"206","iso":"hup","name":"Hupa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"207","iso":"iba","name":"Iban","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"208","iso":"ibb","name":"Ibibio","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"209","iso":"is","name":"Icelandic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"210","iso":"io","name":"Ido","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"211","iso":"ig","name":"Igbo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"212","iso":"ilo","name":"Iloko","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"213","iso":"smn","name":"Inari Sami","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"214","iso":"id","name":"Indonihyia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"215","iso":"izh","name":"Ingrian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"216","iso":"inh","name":"Ingush","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"217","iso":"ia","name":"Interlingua","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"218","iso":"ie","name":"Interlingue","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"219","iso":"iu","name":"Inuktitut","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"220","iso":"ik","name":"Inupiaq","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"221","iso":"ga","name":"Irish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"222","iso":"it","name":"Italy kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"223","iso":"jam","name":"Jamaican Creole English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"224","iso":"kaj","name":"Jju","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"225","iso":"dyo","name":"Jola-Fonyi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"226","iso":"jrb","name":"Judeo-Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"227","iso":"jpr","name":"Judeo-Persian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"228","iso":"jut","name":"Jutish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"229","iso":"kbd","name":"Kabardian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"230","iso":"kea","name":"Kabuverdianu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"231","iso":"kab","name":"Kabyle","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"232","iso":"kac","name":"Kachin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"233","iso":"kgp","name":"Kaingang","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"234","iso":"kkj","name":"Kako","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"235","iso":"kl","name":"Kalaallisut","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"236","iso":"kln","name":"Kalenjin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"237","iso":"xal","name":"Kalmyk","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"238","iso":"kam","name":"Kamba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"239","iso":"km","name":"Kambodia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"240","iso":"kbl","name":"Kanembu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"241","iso":"kn","name":"Kannada","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"242","iso":"kr","name":"Kanuri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"243","iso":"kaa","name":"Kara-Kalpak","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"244","iso":"krc","name":"Karachay-Balkar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"245","iso":"krl","name":"Karelian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"246","iso":"ks","name":"Kashmiri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"247","iso":"csb","name":"Kashubian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"248","iso":"kaw","name":"Kawi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"249","iso":"kk","name":"Kazakh","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"250","iso":"ken","name":"Kenyang","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"251","iso":"kha","name":"Khasi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"252","iso":"kho","name":"Khotanese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"253","iso":"khw","name":"Khowar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"254","iso":"ki","name":"Kikuyu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"255","iso":"kmb","name":"Kimbundu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"256","iso":"krj","name":"Kinaray-a","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"257","iso":"kiu","name":"Kirmanjki","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"258","iso":"tlh","name":"Klingon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"259","iso":"bkm","name":"Kom","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"260","iso":"kv","name":"Komi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"261","iso":"koi","name":"Komi-Permyak","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"262","iso":"kg","name":"Kongo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"263","iso":"kok","name":"Konkani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"264","iso":"ko","name":"Korea kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"265","iso":"kfo","name":"Koro","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"266","iso":"kos","name":"Kosraean","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"267","iso":"avk","name":"Kotava","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"268","iso":"khq","name":"Koyra Chiini","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"269","iso":"ses","name":"Koyraboro Senni","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"270","iso":"kpe","name":"Kpelle","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"271","iso":"kri","name":"Krio","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"272","iso":"kj","name":"Kuanyama","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"273","iso":"kum","name":"Kumyk","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"274","iso":"ku","name":"Kurdish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"275","iso":"kru","name":"Kurukh","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"276","iso":"kut","name":"Kutenai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"277","iso":"nmg","name":"Kwasio","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"278","iso":"zh","name":"Kyaena kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"279","iso":"cs","name":"Kyɛk kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"280","iso":"ky","name":"Kyrgyz","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"281","iso":"quc","name":"Kʼicheʼ","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"282","iso":"lad","name":"Ladino","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"283","iso":"lah","name":"Lahnda","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"284","iso":"lkt","name":"Lakota","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"285","iso":"lam","name":"Lamba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"286","iso":"lag","name":"Langi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"287","iso":"lo","name":"Lao","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"288","iso":"ltg","name":"Latgalian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"289","iso":"la","name":"Latin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"290","iso":"es_419","name":"Latin American Spanish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"291","iso":"lv","name":"Latvian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"292","iso":"lzz","name":"Laz","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"293","iso":"lez","name":"Lezghian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"294","iso":"lij","name":"Ligurian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"295","iso":"li","name":"Limburgish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"296","iso":"ln","name":"Lingala","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"297","iso":"lfn","name":"Lingua Franca Nova","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"298","iso":"lzh","name":"Literary Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"299","iso":"lt","name":"Lithuanian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"300","iso":"liv","name":"Livonian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"301","iso":"jbo","name":"Lojban","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"302","iso":"lmo","name":"Lombard","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"303","iso":"nds","name":"Low German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"304","iso":"sli","name":"Lower Silesian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"305","iso":"dsb","name":"Lower Sorbian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"306","iso":"loz","name":"Lozi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"307","iso":"lu","name":"Luba-Katanga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"308","iso":"lua","name":"Luba-Lulua","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"309","iso":"lui","name":"Luiseno","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"310","iso":"smj","name":"Lule Sami","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"311","iso":"lun","name":"Lunda","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"312","iso":"luo","name":"Luo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"313","iso":"lb","name":"Luxembourgish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"314","iso":"luy","name":"Luyia","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"315","iso":"mde","name":"Maba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"316","iso":"mk","name":"Macedonian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"317","iso":"jmc","name":"Machame","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"318","iso":"mad","name":"Madurese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"319","iso":"maf","name":"Mafa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"320","iso":"mag","name":"Magahi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"321","iso":"vmf","name":"Main-Franconian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"322","iso":"mai","name":"Maithili","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"323","iso":"mak","name":"Makasar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"324","iso":"mgh","name":"Makhuwa-Meetto","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"325","iso":"kde","name":"Makonde","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"326","iso":"mg","name":"Malagasy","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"327","iso":"ms","name":"Malay kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"328","iso":"ml","name":"Malayalam","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"329","iso":"mt","name":"Maltese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"330","iso":"mnc","name":"Manchu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"331","iso":"mdr","name":"Mandar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"332","iso":"man","name":"Mandingo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"333","iso":"mni","name":"Manipuri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"334","iso":"gv","name":"Manx","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"335","iso":"mi","name":"Maori","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"336","iso":"arn","name":"Mapuche","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"337","iso":"mr","name":"Marathi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"338","iso":"chm","name":"Mari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"339","iso":"mh","name":"Marshallese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"340","iso":"mwr","name":"Marwari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"341","iso":"mas","name":"Masai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"342","iso":"mzn","name":"Mazanderani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"343","iso":"byv","name":"Medumba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"344","iso":"men","name":"Mende","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"345","iso":"mwv","name":"Mentawai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"346","iso":"mer","name":"Meru","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"347","iso":"mgo","name":"Metaʼ","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"348","iso":"es_MX","name":"Mexican Spanish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"349","iso":"mic","name":"Micmac","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"350","iso":"dum","name":"Middle Dutch","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"351","iso":"enm","name":"Middle English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"352","iso":"frm","name":"Middle French","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"353","iso":"gmh","name":"Middle High German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"354","iso":"mga","name":"Middle Irish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"355","iso":"nan","name":"Min Nan Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"356","iso":"min","name":"Minangkabau","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"357","iso":"xmf","name":"Mingrelian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"358","iso":"mwl","name":"Mirandese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"359","iso":"lus","name":"Mizo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"360","iso":"ar_001","name":"Modern Standard Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"361","iso":"moh","name":"Mohawk","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"362","iso":"mdf","name":"Moksha","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"363","iso":"ro_MD","name":"Moldavian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"364","iso":"lol","name":"Mongo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"365","iso":"mn","name":"Mongolian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"366","iso":"mfe","name":"Morisyen","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"367","iso":"ary","name":"Moroccan Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"368","iso":"mos","name":"Mossi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"369","iso":"mul","name":"Multiple Languages","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"370","iso":"mua","name":"Mundang","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"371","iso":"ttt","name":"Muslim Tat","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"372","iso":"mye","name":"Myene","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"373","iso":"naq","name":"Nama","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"374","iso":"na","name":"Nauru","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"375","iso":"nv","name":"Navajo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"376","iso":"ng","name":"Ndonga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"377","iso":"nap","name":"Neapolitan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"378","iso":"new","name":"Newari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"379","iso":"ne","name":"Nɛpal kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"380","iso":"sba","name":"Ngambay","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"381","iso":"nnh","name":"Ngiemboon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"382","iso":"jgo","name":"Ngomba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"383","iso":"yrl","name":"Nheengatu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"384","iso":"nia","name":"Nias","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"385","iso":"niu","name":"Niuean","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"386","iso":"zxx","name":"No linguistic content","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"387","iso":"nog","name":"Nogai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"388","iso":"nd","name":"North Ndebele","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"389","iso":"frr","name":"Northern Frisian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"390","iso":"se","name":"Northern Sami","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"391","iso":"nso","name":"Northern Sotho","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"392","iso":"no","name":"Norwegian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"393","iso":"nb","name":"Norwegian Bokmål","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"394","iso":"nn","name":"Norwegian Nynorsk","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"395","iso":"nov","name":"Novial","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"396","iso":"nus","name":"Nuer","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"397","iso":"nym","name":"Nyamwezi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"398","iso":"ny","name":"Nyanja","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"399","iso":"nyn","name":"Nyankole","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"400","iso":"tog","name":"Nyasa Tonga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"401","iso":"nyo","name":"Nyoro","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"402","iso":"nzi","name":"Nzima","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"403","iso":"nqo","name":"NʼKo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"404","iso":"oc","name":"Occitan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"405","iso":"oj","name":"Ojibwa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"406","iso":"ang","name":"Old English","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"407","iso":"fro","name":"Old French","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"408","iso":"goh","name":"Old High German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"409","iso":"sga","name":"Old Irish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"410","iso":"non","name":"Old Norse","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"411","iso":"peo","name":"Old Persian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"412","iso":"pro","name":"Old Provençal","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"413","iso":"or","name":"Oriya","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"414","iso":"om","name":"Oromo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"415","iso":"osa","name":"Osage","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"416","iso":"os","name":"Ossetic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"417","iso":"ota","name":"Ottoman Turkish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"418","iso":"pal","name":"Pahlavi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"419","iso":"pfl","name":"Palatine German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"420","iso":"pau","name":"Palauan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"421","iso":"pi","name":"Pali","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"422","iso":"pam","name":"Pampanga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"423","iso":"pag","name":"Pangasinan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"424","iso":"pap","name":"Papiamento","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"425","iso":"ps","name":"Pashto","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"426","iso":"pdc","name":"Pennsylvania German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"427","iso":"fa","name":"Pɛɛhyia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"428","iso":"phn","name":"Phoenician","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"429","iso":"pcd","name":"Picard","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"430","iso":"pms","name":"Piedmontese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"431","iso":"pdt","name":"Plautdietsch","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"432","iso":"pon","name":"Pohnpeian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"433","iso":"pnt","name":"Pontic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"434","iso":"pl","name":"Pɔland kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"435","iso":"pt","name":"Pɔɔtugal kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"436","iso":"prg","name":"Prussian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"437","iso":"pa","name":"Pungyabi kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"438","iso":"qu","name":"Quechua","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"439","iso":"ru","name":"Rahyia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"440","iso":"raj","name":"Rajasthani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"441","iso":"rap","name":"Rapanui","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"442","iso":"rar","name":"Rarotongan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"443","iso":"rw","name":"Rewanda kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"444","iso":"rif","name":"Riffian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"445","iso":"rgn","name":"Romagnol","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"446","iso":"rm","name":"Romansh","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"447","iso":"rom","name":"Romany","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"448","iso":"rof","name":"Rombo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"449","iso":"ro","name":"Romenia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"450","iso":"root","name":"Root","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"451","iso":"rtm","name":"Rotuman","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"452","iso":"rug","name":"Roviana","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"453","iso":"rn","name":"Rundi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"454","iso":"rue","name":"Rusyn","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"455","iso":"rwk","name":"Rwa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"456","iso":"ssy","name":"Saho","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"457","iso":"sah","name":"Sakha","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"458","iso":"sam","name":"Samaritan Aramaic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"459","iso":"saq","name":"Samburu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"460","iso":"sm","name":"Samoan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"461","iso":"sgs","name":"Samogitian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"462","iso":"sad","name":"Sandawe","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"463","iso":"sg","name":"Sango","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"464","iso":"sbp","name":"Sangu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"465","iso":"sa","name":"Sanskrit","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"466","iso":"sat","name":"Santali","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"467","iso":"sc","name":"Sardinian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"468","iso":"sas","name":"Sasak","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"469","iso":"sdc","name":"Sassarese Sardinian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"470","iso":"stq","name":"Saterland Frisian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"471","iso":"saz","name":"Saurashtra","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"472","iso":"sco","name":"Scots","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"473","iso":"gd","name":"Scottish Gaelic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"474","iso":"sly","name":"Selayar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"475","iso":"sel","name":"Selkup","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"476","iso":"seh","name":"Sena","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"477","iso":"see","name":"Seneca","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"478","iso":"sr","name":"Serbian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"479","iso":"sh","name":"Serbo-Croatian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"480","iso":"srr","name":"Serer","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"481","iso":"sei","name":"Seri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"482","iso":"ksb","name":"Shambala","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"483","iso":"shn","name":"Shan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"484","iso":"sn","name":"Shona","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"485","iso":"ii","name":"Sichuan Yi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"486","iso":"scn","name":"Sicilian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"487","iso":"sid","name":"Sidamo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"488","iso":"bla","name":"Siksika","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"489","iso":"szl","name":"Silesian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"490","iso":"zh_Hans","name":"Simplified Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"491","iso":"sd","name":"Sindhi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"492","iso":"si","name":"Sinhala","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"493","iso":"sms","name":"Skolt Sami","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"494","iso":"den","name":"Slave","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"495","iso":"sk","name":"Slovak","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"496","iso":"sl","name":"Slovenian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"497","iso":"xog","name":"Soga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"498","iso":"sog","name":"Sogdien","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"499","iso":"so","name":"Somalia kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"500","iso":"snk","name":"Soninke","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"501","iso":"azb","name":"South Azerbaijani","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"502","iso":"nr","name":"South Ndebele","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"503","iso":"alt","name":"Southern Altai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"504","iso":"sma","name":"Southern Sami","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"505","iso":"st","name":"Southern Sotho","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"506","iso":"es","name":"Spain kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"507","iso":"srn","name":"Sranan Tongo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"508","iso":"zgh","name":"Standard Moroccan Tamazight","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"509","iso":"suk","name":"Sukuma","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"510","iso":"sux","name":"Sumerian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"511","iso":"su","name":"Sundanese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"512","iso":"sus","name":"Susu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"513","iso":"sw","name":"Swahili","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"514","iso":"ss","name":"Swati","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"515","iso":"sv","name":"Sweden kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"516","iso":"fr_CH","name":"Swiss French","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"517","iso":"gsw","name":"Swiss German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"518","iso":"de_CH","name":"Swiss High German","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"519","iso":"syr","name":"Syriac","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"520","iso":"shi","name":"Tachelhit","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"521","iso":"th","name":"Taeland kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"522","iso":"tl","name":"Tagalog","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"523","iso":"ty","name":"Tahitian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"524","iso":"dav","name":"Taita","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"525","iso":"tg","name":"Tajik","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"526","iso":"tly","name":"Talysh","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"527","iso":"tmh","name":"Tamashek","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"528","iso":"ta","name":"Tamil kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"529","iso":"trv","name":"Taroko","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"530","iso":"twq","name":"Tasawaq","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"531","iso":"tt","name":"Tatar","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"532","iso":"te","name":"Telugu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"533","iso":"ter","name":"Tereno","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"534","iso":"teo","name":"Teso","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"535","iso":"tet","name":"Tetum","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"536","iso":"tr","name":"Tɛɛki kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"537","iso":"bo","name":"Tibetan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"538","iso":"tig","name":"Tigre","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"539","iso":"ti","name":"Tigrinya","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"540","iso":"tem","name":"Timne","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"541","iso":"tiv","name":"Tiv","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"542","iso":"tli","name":"Tlingit","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"543","iso":"tpi","name":"Tok Pisin","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"544","iso":"tkl","name":"Tokelau","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"545","iso":"to","name":"Tongan","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"546","iso":"fit","name":"Tornedalen Finnish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"547","iso":"zh_Hant","name":"Traditional Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"548","iso":"tkr","name":"Tsakhur","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"549","iso":"tsd","name":"Tsakonian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"550","iso":"tsi","name":"Tsimshian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"551","iso":"ts","name":"Tsonga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"552","iso":"tn","name":"Tswana","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"553","iso":"tcy","name":"Tulu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"554","iso":"tum","name":"Tumbuka","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"555","iso":"aeb","name":"Tunisian Arabic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"556","iso":"tk","name":"Turkmen","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"557","iso":"tru","name":"Turoyo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"558","iso":"tvl","name":"Tuvalu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"559","iso":"tyv","name":"Tuvinian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"560","iso":"tw","name":"Twi","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"561","iso":"kcg","name":"Tyap","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"562","iso":"udm","name":"Udmurt","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"563","iso":"uga","name":"Ugaritic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"564","iso":"uk","name":"Ukren kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"565","iso":"umb","name":"Umbundu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"566","iso":"und","name":"Unknown Language","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"567","iso":"hsb","name":"Upper Sorbian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"568","iso":"ur","name":"Urdu kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"569","iso":"ug","name":"Uyghur","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"570","iso":"uz","name":"Uzbek","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"571","iso":"vai","name":"Vai","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"572","iso":"ve","name":"Venda","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"573","iso":"vec","name":"Venetian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"574","iso":"vep","name":"Veps","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"575","iso":"vi","name":"Viɛtnam kasa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"576","iso":"vo","name":"Volapük","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"577","iso":"vro","name":"Võro","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"578","iso":"vot","name":"Votic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"579","iso":"vun","name":"Vunjo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"580","iso":"wa","name":"Walloon","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"581","iso":"wae","name":"Walser","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"582","iso":"war","name":"Waray","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"583","iso":"wbp","name":"Warlpiri","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"584","iso":"was","name":"Washo","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"585","iso":"guc","name":"Wayuu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"586","iso":"cy","name":"Welsh","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"587","iso":"vls","name":"West Flemish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"588","iso":"fy","name":"Western Frisian","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"589","iso":"mrj","name":"Western Mari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"590","iso":"wal","name":"Wolaytta","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"591","iso":"wo","name":"Wolof","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"592","iso":"wuu","name":"Wu Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"593","iso":"xh","name":"Xhosa","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"594","iso":"hsn","name":"Xiang Chinese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"595","iso":"yav","name":"Yangben","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"596","iso":"yao","name":"Yao","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"597","iso":"yap","name":"Yapese","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"598","iso":"ybb","name":"Yemba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"599","iso":"yi","name":"Yiddish","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"600","iso":"yo","name":"Yoruba","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"601","iso":"zap","name":"Zapotec","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"602","iso":"dje","name":"Zarma","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"603","iso":"zza","name":"Zaza","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"604","iso":"zea","name":"Zeelandic","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"605","iso":"zen","name":"Zenaga","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"606","iso":"za","name":"Zhuang","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"607","iso":"gbz","name":"Zoroastrian Dari","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"608","iso":"zu","name":"Zulu","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"}, +{"id":"609","iso":"zun","name":"Zuni","arabic":null,"created_at":null,"updated_at":null,"translations":null,"is_activated":"1"} +] diff --git a/database/data/languages.sql b/database/data/languages.sql deleted file mode 100644 index 7fcb846..0000000 --- a/database/data/languages.sql +++ /dev/null @@ -1,610 +0,0 @@ -INSERT INTO `languages` (`id`, `iso`, `name`, `arabic`, `created_at`, `updated_at`, `translations`, `is_activated`) VALUES - (1, 'ab', 'Abkhazian', NULL, NULL, NULL, NULL, 1), - (2, 'ace', 'Achinese', NULL, NULL, NULL, NULL, 1), - (3, 'ach', 'Acoli', NULL, NULL, NULL, NULL, 1), - (4, 'ada', 'Adangme', NULL, NULL, NULL, NULL, 1), - (5, 'ady', 'Adyghe', NULL, NULL, NULL, NULL, 1), - (6, 'aa', 'Afar', NULL, NULL, NULL, NULL, 1), - (7, 'afh', 'Afrihili', NULL, NULL, NULL, NULL, 1), - (8, 'af', 'Afrikaans', NULL, NULL, NULL, NULL, 1), - (9, 'agq', 'Aghem', NULL, NULL, NULL, NULL, 1), - (10, 'ain', 'Ainu', NULL, NULL, NULL, NULL, 1), - (11, 'ak', 'Akan', NULL, NULL, NULL, NULL, 1), - (12, 'akk', 'Akkadian', NULL, NULL, NULL, NULL, 1), - (13, 'bss', 'Akoose', NULL, NULL, NULL, NULL, 1), - (14, 'akz', 'Alabama', NULL, NULL, NULL, NULL, 1), - (15, 'sq', 'Albanian', NULL, NULL, NULL, NULL, 1), - (16, 'ale', 'Aleut', NULL, NULL, NULL, NULL, 1), - (17, 'arq', 'Algerian Arabic', NULL, NULL, NULL, NULL, 1), - (18, 'am', 'Amarik', NULL, NULL, NULL, NULL, 1), - (19, 'en_US', 'American English', NULL, NULL, NULL, NULL, 1), - (20, 'ase', 'American Sign Language', NULL, NULL, NULL, NULL, 1), - (21, 'egy', 'Ancient Egyptian', NULL, NULL, NULL, NULL, 1), - (22, 'grc', 'Ancient Greek', NULL, NULL, NULL, NULL, 1), - (23, 'anp', 'Angika', NULL, NULL, NULL, NULL, 1), - (24, 'njo', 'Ao Naga', NULL, NULL, NULL, NULL, 1), - (25, 'ar', 'Arabik', NULL, NULL, NULL, NULL, 1), - (26, 'an', 'Aragonese', NULL, NULL, NULL, NULL, 1), - (27, 'arc', 'Aramaic', NULL, NULL, NULL, NULL, 1), - (28, 'aro', 'Araona', NULL, NULL, NULL, NULL, 1), - (29, 'arp', 'Arapaho', NULL, NULL, NULL, NULL, 1), - (30, 'arw', 'Arawak', NULL, NULL, NULL, NULL, 1), - (31, 'hy', 'Armenian', NULL, NULL, NULL, NULL, 1), - (32, 'rup', 'Aromanian', NULL, NULL, NULL, NULL, 1), - (33, 'frp', 'Arpitan', NULL, NULL, NULL, NULL, 1), - (34, 'as', 'Assamese', NULL, NULL, NULL, NULL, 1), - (35, 'ast', 'Asturian', NULL, NULL, NULL, NULL, 1), - (36, 'asa', 'Asu', NULL, NULL, NULL, NULL, 1), - (37, 'cch', 'Atsam', NULL, NULL, NULL, NULL, 1), - (38, 'en_AU', 'Australian English', NULL, NULL, NULL, NULL, 1), - (39, 'de_AT', 'Austrian German', NULL, NULL, NULL, NULL, 1), - (40, 'av', 'Avaric', NULL, NULL, NULL, NULL, 1), - (41, 'ae', 'Avestan', NULL, NULL, NULL, NULL, 1), - (42, 'awa', 'Awadhi', NULL, NULL, NULL, NULL, 1), - (43, 'ay', 'Aymara', NULL, NULL, NULL, NULL, 1), - (44, 'az', 'Azerbaijani', NULL, NULL, NULL, NULL, 1), - (45, 'bfq', 'Badaga', NULL, NULL, NULL, NULL, 1), - (46, 'ksf', 'Bafia', NULL, NULL, NULL, NULL, 1), - (47, 'bfd', 'Bafut', NULL, NULL, NULL, NULL, 1), - (48, 'bqi', 'Bakhtiari', NULL, NULL, NULL, NULL, 1), - (49, 'ban', 'Balinese', NULL, NULL, NULL, NULL, 1), - (50, 'bal', 'Baluchi', NULL, NULL, NULL, NULL, 1), - (51, 'bm', 'Bambara', NULL, NULL, NULL, NULL, 1), - (52, 'bax', 'Bamun', NULL, NULL, NULL, NULL, 1), - (53, 'bjn', 'Banjar', NULL, NULL, NULL, NULL, 1), - (54, 'bas', 'Basaa', NULL, NULL, NULL, NULL, 1), - (55, 'ba', 'Bashkir', NULL, NULL, NULL, NULL, 1), - (56, 'eu', 'Basque', NULL, NULL, NULL, NULL, 1), - (57, 'bbc', 'Batak Toba', NULL, NULL, NULL, NULL, 1), - (58, 'bar', 'Bavarian', NULL, NULL, NULL, NULL, 1), - (59, 'bej', 'Beja', NULL, NULL, NULL, NULL, 1), - (60, 'be', 'Belarus kasa', NULL, NULL, NULL, NULL, 1), - (61, 'bem', 'Bemba', NULL, NULL, NULL, NULL, 1), - (62, 'bez', 'Bena', NULL, NULL, NULL, NULL, 1), - (63, 'bn', 'Bengali kasa', NULL, NULL, NULL, NULL, 1), - (64, 'bew', 'Betawi', NULL, NULL, NULL, NULL, 1), - (65, 'my', 'Bɛɛmis kasa', NULL, NULL, NULL, NULL, 1), - (66, 'bho', 'Bhojpuri', NULL, NULL, NULL, NULL, 1), - (67, 'bik', 'Bikol', NULL, NULL, NULL, NULL, 1), - (68, 'bin', 'Bini', NULL, NULL, NULL, NULL, 1), - (69, 'bpy', 'Bishnupriya', NULL, NULL, NULL, NULL, 1), - (70, 'bi', 'Bislama', NULL, NULL, NULL, NULL, 1), - (71, 'byn', 'Blin', NULL, NULL, NULL, NULL, 1), - (72, 'zbl', 'Blissymbols', NULL, NULL, NULL, NULL, 1), - (73, 'brx', 'Bodo', NULL, NULL, NULL, NULL, 1), - (74, 'en', 'Borɔfo', NULL, NULL, NULL, NULL, 1), - (75, 'bs', 'Bosnian', NULL, NULL, NULL, NULL, 1), - (76, 'bg', 'Bɔlgeria kasa', NULL, NULL, NULL, NULL, 1), - (77, 'brh', 'Brahui', NULL, NULL, NULL, NULL, 1), - (78, 'bra', 'Braj', NULL, NULL, NULL, NULL, 1), - (79, 'pt_BR', 'Brazilian Portuguese', NULL, NULL, NULL, NULL, 1), - (80, 'br', 'Breton', NULL, NULL, NULL, NULL, 1), - (81, 'en_GB', 'British English', NULL, NULL, NULL, NULL, 1), - (82, 'bug', 'Buginese', NULL, NULL, NULL, NULL, 1), - (83, 'bum', 'Bulu', NULL, NULL, NULL, NULL, 1), - (84, 'bua', 'Buriat', NULL, NULL, NULL, NULL, 1), - (85, 'cad', 'Caddo', NULL, NULL, NULL, NULL, 1), - (86, 'frc', 'Cajun French', NULL, NULL, NULL, NULL, 1), - (87, 'en_CA', 'Canadian English', NULL, NULL, NULL, NULL, 1), - (88, 'fr_CA', 'Canadian French', NULL, NULL, NULL, NULL, 1), - (89, 'yue', 'Cantonese', NULL, NULL, NULL, NULL, 1), - (90, 'cps', 'Capiznon', NULL, NULL, NULL, NULL, 1), - (91, 'car', 'Carib', NULL, NULL, NULL, NULL, 1), - (92, 'ca', 'Catalan', NULL, NULL, NULL, NULL, 1), - (93, 'cay', 'Cayuga', NULL, NULL, NULL, NULL, 1), - (94, 'ceb', 'Cebuano', NULL, NULL, NULL, NULL, 1), - (95, 'tzm', 'Central Atlas Tamazight', NULL, NULL, NULL, NULL, 1), - (96, 'dtp', 'Central Dusun', NULL, NULL, NULL, NULL, 1), - (97, 'ckb', 'Central Kurdish', NULL, NULL, NULL, NULL, 1), - (98, 'esu', 'Central Yupik', NULL, NULL, NULL, NULL, 1), - (99, 'shu', 'Chadian Arabic', NULL, NULL, NULL, NULL, 1), - (100, 'chg', 'Chagatai', NULL, NULL, NULL, NULL, 1), - (101, 'ch', 'Chamorro', NULL, NULL, NULL, NULL, 1), - (102, 'ce', 'Chechen', NULL, NULL, NULL, NULL, 1), - (103, 'chr', 'Cherokee', NULL, NULL, NULL, NULL, 1), - (104, 'chy', 'Cheyenne', NULL, NULL, NULL, NULL, 1), - (105, 'chb', 'Chibcha', NULL, NULL, NULL, NULL, 1), - (106, 'cgg', 'Chiga', NULL, NULL, NULL, NULL, 1), - (107, 'qug', 'Chimborazo Highland Quichua', NULL, NULL, NULL, NULL, 1), - (108, 'chn', 'Chinook Jargon', NULL, NULL, NULL, NULL, 1), - (109, 'chp', 'Chipewyan', NULL, NULL, NULL, NULL, 1), - (110, 'cho', 'Choctaw', NULL, NULL, NULL, NULL, 1), - (111, 'cu', 'Church Slavic', NULL, NULL, NULL, NULL, 1), - (112, 'chk', 'Chuukese', NULL, NULL, NULL, NULL, 1), - (113, 'cv', 'Chuvash', NULL, NULL, NULL, NULL, 1), - (114, 'nwc', 'Classical Newari', NULL, NULL, NULL, NULL, 1), - (115, 'syc', 'Classical Syriac', NULL, NULL, NULL, NULL, 1), - (116, 'ksh', 'Colognian', NULL, NULL, NULL, NULL, 1), - (117, 'swb', 'Comorian', NULL, NULL, NULL, NULL, 1), - (118, 'swc', 'Congo Swahili', NULL, NULL, NULL, NULL, 1), - (119, 'cop', 'Coptic', NULL, NULL, NULL, NULL, 1), - (120, 'kw', 'Cornish', NULL, NULL, NULL, NULL, 1), - (121, 'co', 'Corsican', NULL, NULL, NULL, NULL, 1), - (122, 'cr', 'Cree', NULL, NULL, NULL, NULL, 1), - (123, 'mus', 'Creek', NULL, NULL, NULL, NULL, 1), - (124, 'crh', 'Crimean Turkish', NULL, NULL, NULL, NULL, 1), - (125, 'hr', 'Croatian', NULL, NULL, NULL, NULL, 1), - (126, 'dak', 'Dakota', NULL, NULL, NULL, NULL, 1), - (127, 'da', 'Danish', NULL, NULL, NULL, NULL, 1), - (128, 'dar', 'Dargwa', NULL, NULL, NULL, NULL, 1), - (129, 'dzg', 'Dazaga', NULL, NULL, NULL, NULL, 1), - (130, 'del', 'Delaware', NULL, NULL, NULL, NULL, 1), - (131, 'nl', 'Dɛɛkye', NULL, NULL, NULL, NULL, 1), - (132, 'din', 'Dinka', NULL, NULL, NULL, NULL, 1), - (133, 'dv', 'Divehi', NULL, NULL, NULL, NULL, 1), - (134, 'doi', 'Dogri', NULL, NULL, NULL, NULL, 1), - (135, 'dgr', 'Dogrib', NULL, NULL, NULL, NULL, 1), - (136, 'dua', 'Duala', NULL, NULL, NULL, NULL, 1), - (137, 'dyu', 'Dyula', NULL, NULL, NULL, NULL, 1), - (138, 'dz', 'Dzongkha', NULL, NULL, NULL, NULL, 1), - (139, 'frs', 'Eastern Frisian', NULL, NULL, NULL, NULL, 1), - (140, 'efi', 'Efik', NULL, NULL, NULL, NULL, 1), - (141, 'arz', 'Egyptian Arabic', NULL, NULL, NULL, NULL, 1), - (142, 'eka', 'Ekajuk', NULL, NULL, NULL, NULL, 1), - (143, 'elx', 'Elamite', NULL, NULL, NULL, NULL, 1), - (144, 'ebu', 'Embu', NULL, NULL, NULL, NULL, 1), - (145, 'egl', 'Emilian', NULL, NULL, NULL, NULL, 1), - (146, 'myv', 'Erzya', NULL, NULL, NULL, NULL, 1), - (147, 'eo', 'Esperanto', NULL, NULL, NULL, NULL, 1), - (148, 'et', 'Estonian', NULL, NULL, NULL, NULL, 1), - (149, 'pt_PT', 'European Portuguese', NULL, NULL, NULL, NULL, 1), - (150, 'es_ES', 'European Spanish', NULL, NULL, NULL, NULL, 1), - (151, 'ee', 'Ewe', NULL, NULL, NULL, NULL, 1), - (152, 'ewo', 'Ewondo', NULL, NULL, NULL, NULL, 1), - (153, 'ext', 'Extremaduran', NULL, NULL, NULL, NULL, 1), - (154, 'fan', 'Fang', NULL, NULL, NULL, NULL, 1), - (155, 'fat', 'Fanti', NULL, NULL, NULL, NULL, 1), - (156, 'fo', 'Faroese', NULL, NULL, NULL, NULL, 1), - (157, 'hif', 'Fiji Hindi', NULL, NULL, NULL, NULL, 1), - (158, 'fj', 'Fijian', NULL, NULL, NULL, NULL, 1), - (159, 'fil', 'Filipino', NULL, NULL, NULL, NULL, 1), - (160, 'fi', 'Finnish', NULL, NULL, NULL, NULL, 1), - (161, 'nl_BE', 'Flemish', NULL, NULL, NULL, NULL, 1), - (162, 'fon', 'Fon', NULL, NULL, NULL, NULL, 1), - (163, 'gur', 'Frafra', NULL, NULL, NULL, NULL, 1), - (164, 'fr', 'Frɛnkye', NULL, NULL, NULL, NULL, 1), - (165, 'fur', 'Friulian', NULL, NULL, NULL, NULL, 1), - (166, 'ff', 'Fulah', NULL, NULL, NULL, NULL, 1), - (167, 'gaa', 'Ga', NULL, NULL, NULL, NULL, 1), - (168, 'gag', 'Gagauz', NULL, NULL, NULL, NULL, 1), - (169, 'gl', 'Galician', NULL, NULL, NULL, NULL, 1), - (170, 'gan', 'Gan Chinese', NULL, NULL, NULL, NULL, 1), - (171, 'lg', 'Ganda', NULL, NULL, NULL, NULL, 1), - (172, 'gay', 'Gayo', NULL, NULL, NULL, NULL, 1), - (173, 'gba', 'Gbaya', NULL, NULL, NULL, NULL, 1), - (174, 'gez', 'Geez', NULL, NULL, NULL, NULL, 1), - (175, 'ka', 'Georgian', NULL, NULL, NULL, NULL, 1), - (176, 'aln', 'Gheg Albanian', NULL, NULL, NULL, NULL, 1), - (177, 'bbj', 'Ghomala', NULL, NULL, NULL, NULL, 1), - (178, 'glk', 'Gilaki', NULL, NULL, NULL, NULL, 1), - (179, 'gil', 'Gilbertese', NULL, NULL, NULL, NULL, 1), - (180, 'gom', 'Goan Konkani', NULL, NULL, NULL, NULL, 1), - (181, 'gon', 'Gondi', NULL, NULL, NULL, NULL, 1), - (182, 'gor', 'Gorontalo', NULL, NULL, NULL, NULL, 1), - (183, 'got', 'Gothic', NULL, NULL, NULL, NULL, 1), - (184, 'grb', 'Grebo', NULL, NULL, NULL, NULL, 1), - (185, 'el', 'Greek kasa', NULL, NULL, NULL, NULL, 1), - (186, 'gn', 'Guarani', NULL, NULL, NULL, NULL, 1), - (187, 'gu', 'Gujarati', NULL, NULL, NULL, NULL, 1), - (188, 'guz', 'Gusii', NULL, NULL, NULL, NULL, 1), - (189, 'gwi', 'Gwichʼin', NULL, NULL, NULL, NULL, 1), - (190, 'de', 'Gyaaman', NULL, NULL, NULL, NULL, 1), - (191, 'jv', 'Gyabanis kasa', NULL, NULL, NULL, NULL, 1), - (192, 'ja', 'Gyapan kasa', NULL, NULL, NULL, NULL, 1), - (193, 'hai', 'Haida', NULL, NULL, NULL, NULL, 1), - (194, 'ht', 'Haitian', NULL, NULL, NULL, NULL, 1), - (195, 'hak', 'Hakka Chinese', NULL, NULL, NULL, NULL, 1), - (196, 'hu', 'Hangri kasa', NULL, NULL, NULL, NULL, 1), - (197, 'ha', 'Hausa', NULL, NULL, NULL, NULL, 1), - (198, 'haw', 'Hawaiian', NULL, NULL, NULL, NULL, 1), - (199, 'he', 'Hebrew', NULL, NULL, NULL, NULL, 1), - (200, 'hz', 'Herero', NULL, NULL, NULL, NULL, 1), - (201, 'hil', 'Hiligaynon', NULL, NULL, NULL, NULL, 1), - (202, 'hi', 'Hindi', NULL, NULL, NULL, NULL, 1), - (203, 'ho', 'Hiri Motu', NULL, NULL, NULL, NULL, 1), - (204, 'hit', 'Hittite', NULL, NULL, NULL, NULL, 1), - (205, 'hmn', 'Hmong', NULL, NULL, NULL, NULL, 1), - (206, 'hup', 'Hupa', NULL, NULL, NULL, NULL, 1), - (207, 'iba', 'Iban', NULL, NULL, NULL, NULL, 1), - (208, 'ibb', 'Ibibio', NULL, NULL, NULL, NULL, 1), - (209, 'is', 'Icelandic', NULL, NULL, NULL, NULL, 1), - (210, 'io', 'Ido', NULL, NULL, NULL, NULL, 1), - (211, 'ig', 'Igbo', NULL, NULL, NULL, NULL, 1), - (212, 'ilo', 'Iloko', NULL, NULL, NULL, NULL, 1), - (213, 'smn', 'Inari Sami', NULL, NULL, NULL, NULL, 1), - (214, 'id', 'Indonihyia kasa', NULL, NULL, NULL, NULL, 1), - (215, 'izh', 'Ingrian', NULL, NULL, NULL, NULL, 1), - (216, 'inh', 'Ingush', NULL, NULL, NULL, NULL, 1), - (217, 'ia', 'Interlingua', NULL, NULL, NULL, NULL, 1), - (218, 'ie', 'Interlingue', NULL, NULL, NULL, NULL, 1), - (219, 'iu', 'Inuktitut', NULL, NULL, NULL, NULL, 1), - (220, 'ik', 'Inupiaq', NULL, NULL, NULL, NULL, 1), - (221, 'ga', 'Irish', NULL, NULL, NULL, NULL, 1), - (222, 'it', 'Italy kasa', NULL, NULL, NULL, NULL, 1), - (223, 'jam', 'Jamaican Creole English', NULL, NULL, NULL, NULL, 1), - (224, 'kaj', 'Jju', NULL, NULL, NULL, NULL, 1), - (225, 'dyo', 'Jola-Fonyi', NULL, NULL, NULL, NULL, 1), - (226, 'jrb', 'Judeo-Arabic', NULL, NULL, NULL, NULL, 1), - (227, 'jpr', 'Judeo-Persian', NULL, NULL, NULL, NULL, 1), - (228, 'jut', 'Jutish', NULL, NULL, NULL, NULL, 1), - (229, 'kbd', 'Kabardian', NULL, NULL, NULL, NULL, 1), - (230, 'kea', 'Kabuverdianu', NULL, NULL, NULL, NULL, 1), - (231, 'kab', 'Kabyle', NULL, NULL, NULL, NULL, 1), - (232, 'kac', 'Kachin', NULL, NULL, NULL, NULL, 1), - (233, 'kgp', 'Kaingang', NULL, NULL, NULL, NULL, 1), - (234, 'kkj', 'Kako', NULL, NULL, NULL, NULL, 1), - (235, 'kl', 'Kalaallisut', NULL, NULL, NULL, NULL, 1), - (236, 'kln', 'Kalenjin', NULL, NULL, NULL, NULL, 1), - (237, 'xal', 'Kalmyk', NULL, NULL, NULL, NULL, 1), - (238, 'kam', 'Kamba', NULL, NULL, NULL, NULL, 1), - (239, 'km', 'Kambodia kasa', NULL, NULL, NULL, NULL, 1), - (240, 'kbl', 'Kanembu', NULL, NULL, NULL, NULL, 1), - (241, 'kn', 'Kannada', NULL, NULL, NULL, NULL, 1), - (242, 'kr', 'Kanuri', NULL, NULL, NULL, NULL, 1), - (243, 'kaa', 'Kara-Kalpak', NULL, NULL, NULL, NULL, 1), - (244, 'krc', 'Karachay-Balkar', NULL, NULL, NULL, NULL, 1), - (245, 'krl', 'Karelian', NULL, NULL, NULL, NULL, 1), - (246, 'ks', 'Kashmiri', NULL, NULL, NULL, NULL, 1), - (247, 'csb', 'Kashubian', NULL, NULL, NULL, NULL, 1), - (248, 'kaw', 'Kawi', NULL, NULL, NULL, NULL, 1), - (249, 'kk', 'Kazakh', NULL, NULL, NULL, NULL, 1), - (250, 'ken', 'Kenyang', NULL, NULL, NULL, NULL, 1), - (251, 'kha', 'Khasi', NULL, NULL, NULL, NULL, 1), - (252, 'kho', 'Khotanese', NULL, NULL, NULL, NULL, 1), - (253, 'khw', 'Khowar', NULL, NULL, NULL, NULL, 1), - (254, 'ki', 'Kikuyu', NULL, NULL, NULL, NULL, 1), - (255, 'kmb', 'Kimbundu', NULL, NULL, NULL, NULL, 1), - (256, 'krj', 'Kinaray-a', NULL, NULL, NULL, NULL, 1), - (257, 'kiu', 'Kirmanjki', NULL, NULL, NULL, NULL, 1), - (258, 'tlh', 'Klingon', NULL, NULL, NULL, NULL, 1), - (259, 'bkm', 'Kom', NULL, NULL, NULL, NULL, 1), - (260, 'kv', 'Komi', NULL, NULL, NULL, NULL, 1), - (261, 'koi', 'Komi-Permyak', NULL, NULL, NULL, NULL, 1), - (262, 'kg', 'Kongo', NULL, NULL, NULL, NULL, 1), - (263, 'kok', 'Konkani', NULL, NULL, NULL, NULL, 1), - (264, 'ko', 'Korea kasa', NULL, NULL, NULL, NULL, 1), - (265, 'kfo', 'Koro', NULL, NULL, NULL, NULL, 1), - (266, 'kos', 'Kosraean', NULL, NULL, NULL, NULL, 1), - (267, 'avk', 'Kotava', NULL, NULL, NULL, NULL, 1), - (268, 'khq', 'Koyra Chiini', NULL, NULL, NULL, NULL, 1), - (269, 'ses', 'Koyraboro Senni', NULL, NULL, NULL, NULL, 1), - (270, 'kpe', 'Kpelle', NULL, NULL, NULL, NULL, 1), - (271, 'kri', 'Krio', NULL, NULL, NULL, NULL, 1), - (272, 'kj', 'Kuanyama', NULL, NULL, NULL, NULL, 1), - (273, 'kum', 'Kumyk', NULL, NULL, NULL, NULL, 1), - (274, 'ku', 'Kurdish', NULL, NULL, NULL, NULL, 1), - (275, 'kru', 'Kurukh', NULL, NULL, NULL, NULL, 1), - (276, 'kut', 'Kutenai', NULL, NULL, NULL, NULL, 1), - (277, 'nmg', 'Kwasio', NULL, NULL, NULL, NULL, 1), - (278, 'zh', 'Kyaena kasa', NULL, NULL, NULL, NULL, 1), - (279, 'cs', 'Kyɛk kasa', NULL, NULL, NULL, NULL, 1), - (280, 'ky', 'Kyrgyz', NULL, NULL, NULL, NULL, 1), - (281, 'quc', 'Kʼicheʼ', NULL, NULL, NULL, NULL, 1), - (282, 'lad', 'Ladino', NULL, NULL, NULL, NULL, 1), - (283, 'lah', 'Lahnda', NULL, NULL, NULL, NULL, 1), - (284, 'lkt', 'Lakota', NULL, NULL, NULL, NULL, 1), - (285, 'lam', 'Lamba', NULL, NULL, NULL, NULL, 1), - (286, 'lag', 'Langi', NULL, NULL, NULL, NULL, 1), - (287, 'lo', 'Lao', NULL, NULL, NULL, NULL, 1), - (288, 'ltg', 'Latgalian', NULL, NULL, NULL, NULL, 1), - (289, 'la', 'Latin', NULL, NULL, NULL, NULL, 1), - (290, 'es_419', 'Latin American Spanish', NULL, NULL, NULL, NULL, 1), - (291, 'lv', 'Latvian', NULL, NULL, NULL, NULL, 1), - (292, 'lzz', 'Laz', NULL, NULL, NULL, NULL, 1), - (293, 'lez', 'Lezghian', NULL, NULL, NULL, NULL, 1), - (294, 'lij', 'Ligurian', NULL, NULL, NULL, NULL, 1), - (295, 'li', 'Limburgish', NULL, NULL, NULL, NULL, 1), - (296, 'ln', 'Lingala', NULL, NULL, NULL, NULL, 1), - (297, 'lfn', 'Lingua Franca Nova', NULL, NULL, NULL, NULL, 1), - (298, 'lzh', 'Literary Chinese', NULL, NULL, NULL, NULL, 1), - (299, 'lt', 'Lithuanian', NULL, NULL, NULL, NULL, 1), - (300, 'liv', 'Livonian', NULL, NULL, NULL, NULL, 1), - (301, 'jbo', 'Lojban', NULL, NULL, NULL, NULL, 1), - (302, 'lmo', 'Lombard', NULL, NULL, NULL, NULL, 1), - (303, 'nds', 'Low German', NULL, NULL, NULL, NULL, 1), - (304, 'sli', 'Lower Silesian', NULL, NULL, NULL, NULL, 1), - (305, 'dsb', 'Lower Sorbian', NULL, NULL, NULL, NULL, 1), - (306, 'loz', 'Lozi', NULL, NULL, NULL, NULL, 1), - (307, 'lu', 'Luba-Katanga', NULL, NULL, NULL, NULL, 1), - (308, 'lua', 'Luba-Lulua', NULL, NULL, NULL, NULL, 1), - (309, 'lui', 'Luiseno', NULL, NULL, NULL, NULL, 1), - (310, 'smj', 'Lule Sami', NULL, NULL, NULL, NULL, 1), - (311, 'lun', 'Lunda', NULL, NULL, NULL, NULL, 1), - (312, 'luo', 'Luo', NULL, NULL, NULL, NULL, 1), - (313, 'lb', 'Luxembourgish', NULL, NULL, NULL, NULL, 1), - (314, 'luy', 'Luyia', NULL, NULL, NULL, NULL, 1), - (315, 'mde', 'Maba', NULL, NULL, NULL, NULL, 1), - (316, 'mk', 'Macedonian', NULL, NULL, NULL, NULL, 1), - (317, 'jmc', 'Machame', NULL, NULL, NULL, NULL, 1), - (318, 'mad', 'Madurese', NULL, NULL, NULL, NULL, 1), - (319, 'maf', 'Mafa', NULL, NULL, NULL, NULL, 1), - (320, 'mag', 'Magahi', NULL, NULL, NULL, NULL, 1), - (321, 'vmf', 'Main-Franconian', NULL, NULL, NULL, NULL, 1), - (322, 'mai', 'Maithili', NULL, NULL, NULL, NULL, 1), - (323, 'mak', 'Makasar', NULL, NULL, NULL, NULL, 1), - (324, 'mgh', 'Makhuwa-Meetto', NULL, NULL, NULL, NULL, 1), - (325, 'kde', 'Makonde', NULL, NULL, NULL, NULL, 1), - (326, 'mg', 'Malagasy', NULL, NULL, NULL, NULL, 1), - (327, 'ms', 'Malay kasa', NULL, NULL, NULL, NULL, 1), - (328, 'ml', 'Malayalam', NULL, NULL, NULL, NULL, 1), - (329, 'mt', 'Maltese', NULL, NULL, NULL, NULL, 1), - (330, 'mnc', 'Manchu', NULL, NULL, NULL, NULL, 1), - (331, 'mdr', 'Mandar', NULL, NULL, NULL, NULL, 1), - (332, 'man', 'Mandingo', NULL, NULL, NULL, NULL, 1), - (333, 'mni', 'Manipuri', NULL, NULL, NULL, NULL, 1), - (334, 'gv', 'Manx', NULL, NULL, NULL, NULL, 1), - (335, 'mi', 'Maori', NULL, NULL, NULL, NULL, 1), - (336, 'arn', 'Mapuche', NULL, NULL, NULL, NULL, 1), - (337, 'mr', 'Marathi', NULL, NULL, NULL, NULL, 1), - (338, 'chm', 'Mari', NULL, NULL, NULL, NULL, 1), - (339, 'mh', 'Marshallese', NULL, NULL, NULL, NULL, 1), - (340, 'mwr', 'Marwari', NULL, NULL, NULL, NULL, 1), - (341, 'mas', 'Masai', NULL, NULL, NULL, NULL, 1), - (342, 'mzn', 'Mazanderani', NULL, NULL, NULL, NULL, 1), - (343, 'byv', 'Medumba', NULL, NULL, NULL, NULL, 1), - (344, 'men', 'Mende', NULL, NULL, NULL, NULL, 1), - (345, 'mwv', 'Mentawai', NULL, NULL, NULL, NULL, 1), - (346, 'mer', 'Meru', NULL, NULL, NULL, NULL, 1), - (347, 'mgo', 'Metaʼ', NULL, NULL, NULL, NULL, 1), - (348, 'es_MX', 'Mexican Spanish', NULL, NULL, NULL, NULL, 1), - (349, 'mic', 'Micmac', NULL, NULL, NULL, NULL, 1), - (350, 'dum', 'Middle Dutch', NULL, NULL, NULL, NULL, 1), - (351, 'enm', 'Middle English', NULL, NULL, NULL, NULL, 1), - (352, 'frm', 'Middle French', NULL, NULL, NULL, NULL, 1), - (353, 'gmh', 'Middle High German', NULL, NULL, NULL, NULL, 1), - (354, 'mga', 'Middle Irish', NULL, NULL, NULL, NULL, 1), - (355, 'nan', 'Min Nan Chinese', NULL, NULL, NULL, NULL, 1), - (356, 'min', 'Minangkabau', NULL, NULL, NULL, NULL, 1), - (357, 'xmf', 'Mingrelian', NULL, NULL, NULL, NULL, 1), - (358, 'mwl', 'Mirandese', NULL, NULL, NULL, NULL, 1), - (359, 'lus', 'Mizo', NULL, NULL, NULL, NULL, 1), - (360, 'ar_001', 'Modern Standard Arabic', NULL, NULL, NULL, NULL, 1), - (361, 'moh', 'Mohawk', NULL, NULL, NULL, NULL, 1), - (362, 'mdf', 'Moksha', NULL, NULL, NULL, NULL, 1), - (363, 'ro_MD', 'Moldavian', NULL, NULL, NULL, NULL, 1), - (364, 'lol', 'Mongo', NULL, NULL, NULL, NULL, 1), - (365, 'mn', 'Mongolian', NULL, NULL, NULL, NULL, 1), - (366, 'mfe', 'Morisyen', NULL, NULL, NULL, NULL, 1), - (367, 'ary', 'Moroccan Arabic', NULL, NULL, NULL, NULL, 1), - (368, 'mos', 'Mossi', NULL, NULL, NULL, NULL, 1), - (369, 'mul', 'Multiple Languages', NULL, NULL, NULL, NULL, 1), - (370, 'mua', 'Mundang', NULL, NULL, NULL, NULL, 1), - (371, 'ttt', 'Muslim Tat', NULL, NULL, NULL, NULL, 1), - (372, 'mye', 'Myene', NULL, NULL, NULL, NULL, 1), - (373, 'naq', 'Nama', NULL, NULL, NULL, NULL, 1), - (374, 'na', 'Nauru', NULL, NULL, NULL, NULL, 1), - (375, 'nv', 'Navajo', NULL, NULL, NULL, NULL, 1), - (376, 'ng', 'Ndonga', NULL, NULL, NULL, NULL, 1), - (377, 'nap', 'Neapolitan', NULL, NULL, NULL, NULL, 1), - (378, 'new', 'Newari', NULL, NULL, NULL, NULL, 1), - (379, 'ne', 'Nɛpal kasa', NULL, NULL, NULL, NULL, 1), - (380, 'sba', 'Ngambay', NULL, NULL, NULL, NULL, 1), - (381, 'nnh', 'Ngiemboon', NULL, NULL, NULL, NULL, 1), - (382, 'jgo', 'Ngomba', NULL, NULL, NULL, NULL, 1), - (383, 'yrl', 'Nheengatu', NULL, NULL, NULL, NULL, 1), - (384, 'nia', 'Nias', NULL, NULL, NULL, NULL, 1), - (385, 'niu', 'Niuean', NULL, NULL, NULL, NULL, 1), - (386, 'zxx', 'No linguistic content', NULL, NULL, NULL, NULL, 1), - (387, 'nog', 'Nogai', NULL, NULL, NULL, NULL, 1), - (388, 'nd', 'North Ndebele', NULL, NULL, NULL, NULL, 1), - (389, 'frr', 'Northern Frisian', NULL, NULL, NULL, NULL, 1), - (390, 'se', 'Northern Sami', NULL, NULL, NULL, NULL, 1), - (391, 'nso', 'Northern Sotho', NULL, NULL, NULL, NULL, 1), - (392, 'no', 'Norwegian', NULL, NULL, NULL, NULL, 1), - (393, 'nb', 'Norwegian Bokmål', NULL, NULL, NULL, NULL, 1), - (394, 'nn', 'Norwegian Nynorsk', NULL, NULL, NULL, NULL, 1), - (395, 'nov', 'Novial', NULL, NULL, NULL, NULL, 1), - (396, 'nus', 'Nuer', NULL, NULL, NULL, NULL, 1), - (397, 'nym', 'Nyamwezi', NULL, NULL, NULL, NULL, 1), - (398, 'ny', 'Nyanja', NULL, NULL, NULL, NULL, 1), - (399, 'nyn', 'Nyankole', NULL, NULL, NULL, NULL, 1), - (400, 'tog', 'Nyasa Tonga', NULL, NULL, NULL, NULL, 1), - (401, 'nyo', 'Nyoro', NULL, NULL, NULL, NULL, 1), - (402, 'nzi', 'Nzima', NULL, NULL, NULL, NULL, 1), - (403, 'nqo', 'NʼKo', NULL, NULL, NULL, NULL, 1), - (404, 'oc', 'Occitan', NULL, NULL, NULL, NULL, 1), - (405, 'oj', 'Ojibwa', NULL, NULL, NULL, NULL, 1), - (406, 'ang', 'Old English', NULL, NULL, NULL, NULL, 1), - (407, 'fro', 'Old French', NULL, NULL, NULL, NULL, 1), - (408, 'goh', 'Old High German', NULL, NULL, NULL, NULL, 1), - (409, 'sga', 'Old Irish', NULL, NULL, NULL, NULL, 1), - (410, 'non', 'Old Norse', NULL, NULL, NULL, NULL, 1), - (411, 'peo', 'Old Persian', NULL, NULL, NULL, NULL, 1), - (412, 'pro', 'Old Provençal', NULL, NULL, NULL, NULL, 1), - (413, 'or', 'Oriya', NULL, NULL, NULL, NULL, 1), - (414, 'om', 'Oromo', NULL, NULL, NULL, NULL, 1), - (415, 'osa', 'Osage', NULL, NULL, NULL, NULL, 1), - (416, 'os', 'Ossetic', NULL, NULL, NULL, NULL, 1), - (417, 'ota', 'Ottoman Turkish', NULL, NULL, NULL, NULL, 1), - (418, 'pal', 'Pahlavi', NULL, NULL, NULL, NULL, 1), - (419, 'pfl', 'Palatine German', NULL, NULL, NULL, NULL, 1), - (420, 'pau', 'Palauan', NULL, NULL, NULL, NULL, 1), - (421, 'pi', 'Pali', NULL, NULL, NULL, NULL, 1), - (422, 'pam', 'Pampanga', NULL, NULL, NULL, NULL, 1), - (423, 'pag', 'Pangasinan', NULL, NULL, NULL, NULL, 1), - (424, 'pap', 'Papiamento', NULL, NULL, NULL, NULL, 1), - (425, 'ps', 'Pashto', NULL, NULL, NULL, NULL, 1), - (426, 'pdc', 'Pennsylvania German', NULL, NULL, NULL, NULL, 1), - (427, 'fa', 'Pɛɛhyia kasa', NULL, NULL, NULL, NULL, 1), - (428, 'phn', 'Phoenician', NULL, NULL, NULL, NULL, 1), - (429, 'pcd', 'Picard', NULL, NULL, NULL, NULL, 1), - (430, 'pms', 'Piedmontese', NULL, NULL, NULL, NULL, 1), - (431, 'pdt', 'Plautdietsch', NULL, NULL, NULL, NULL, 1), - (432, 'pon', 'Pohnpeian', NULL, NULL, NULL, NULL, 1), - (433, 'pnt', 'Pontic', NULL, NULL, NULL, NULL, 1), - (434, 'pl', 'Pɔland kasa', NULL, NULL, NULL, NULL, 1), - (435, 'pt', 'Pɔɔtugal kasa', NULL, NULL, NULL, NULL, 1), - (436, 'prg', 'Prussian', NULL, NULL, NULL, NULL, 1), - (437, 'pa', 'Pungyabi kasa', NULL, NULL, NULL, NULL, 1), - (438, 'qu', 'Quechua', NULL, NULL, NULL, NULL, 1), - (439, 'ru', 'Rahyia kasa', NULL, NULL, NULL, NULL, 1), - (440, 'raj', 'Rajasthani', NULL, NULL, NULL, NULL, 1), - (441, 'rap', 'Rapanui', NULL, NULL, NULL, NULL, 1), - (442, 'rar', 'Rarotongan', NULL, NULL, NULL, NULL, 1), - (443, 'rw', 'Rewanda kasa', NULL, NULL, NULL, NULL, 1), - (444, 'rif', 'Riffian', NULL, NULL, NULL, NULL, 1), - (445, 'rgn', 'Romagnol', NULL, NULL, NULL, NULL, 1), - (446, 'rm', 'Romansh', NULL, NULL, NULL, NULL, 1), - (447, 'rom', 'Romany', NULL, NULL, NULL, NULL, 1), - (448, 'rof', 'Rombo', NULL, NULL, NULL, NULL, 1), - (449, 'ro', 'Romenia kasa', NULL, NULL, NULL, NULL, 1), - (450, 'root', 'Root', NULL, NULL, NULL, NULL, 1), - (451, 'rtm', 'Rotuman', NULL, NULL, NULL, NULL, 1), - (452, 'rug', 'Roviana', NULL, NULL, NULL, NULL, 1), - (453, 'rn', 'Rundi', NULL, NULL, NULL, NULL, 1), - (454, 'rue', 'Rusyn', NULL, NULL, NULL, NULL, 1), - (455, 'rwk', 'Rwa', NULL, NULL, NULL, NULL, 1), - (456, 'ssy', 'Saho', NULL, NULL, NULL, NULL, 1), - (457, 'sah', 'Sakha', NULL, NULL, NULL, NULL, 1), - (458, 'sam', 'Samaritan Aramaic', NULL, NULL, NULL, NULL, 1), - (459, 'saq', 'Samburu', NULL, NULL, NULL, NULL, 1), - (460, 'sm', 'Samoan', NULL, NULL, NULL, NULL, 1), - (461, 'sgs', 'Samogitian', NULL, NULL, NULL, NULL, 1), - (462, 'sad', 'Sandawe', NULL, NULL, NULL, NULL, 1), - (463, 'sg', 'Sango', NULL, NULL, NULL, NULL, 1), - (464, 'sbp', 'Sangu', NULL, NULL, NULL, NULL, 1), - (465, 'sa', 'Sanskrit', NULL, NULL, NULL, NULL, 1), - (466, 'sat', 'Santali', NULL, NULL, NULL, NULL, 1), - (467, 'sc', 'Sardinian', NULL, NULL, NULL, NULL, 1), - (468, 'sas', 'Sasak', NULL, NULL, NULL, NULL, 1), - (469, 'sdc', 'Sassarese Sardinian', NULL, NULL, NULL, NULL, 1), - (470, 'stq', 'Saterland Frisian', NULL, NULL, NULL, NULL, 1), - (471, 'saz', 'Saurashtra', NULL, NULL, NULL, NULL, 1), - (472, 'sco', 'Scots', NULL, NULL, NULL, NULL, 1), - (473, 'gd', 'Scottish Gaelic', NULL, NULL, NULL, NULL, 1), - (474, 'sly', 'Selayar', NULL, NULL, NULL, NULL, 1), - (475, 'sel', 'Selkup', NULL, NULL, NULL, NULL, 1), - (476, 'seh', 'Sena', NULL, NULL, NULL, NULL, 1), - (477, 'see', 'Seneca', NULL, NULL, NULL, NULL, 1), - (478, 'sr', 'Serbian', NULL, NULL, NULL, NULL, 1), - (479, 'sh', 'Serbo-Croatian', NULL, NULL, NULL, NULL, 1), - (480, 'srr', 'Serer', NULL, NULL, NULL, NULL, 1), - (481, 'sei', 'Seri', NULL, NULL, NULL, NULL, 1), - (482, 'ksb', 'Shambala', NULL, NULL, NULL, NULL, 1), - (483, 'shn', 'Shan', NULL, NULL, NULL, NULL, 1), - (484, 'sn', 'Shona', NULL, NULL, NULL, NULL, 1), - (485, 'ii', 'Sichuan Yi', NULL, NULL, NULL, NULL, 1), - (486, 'scn', 'Sicilian', NULL, NULL, NULL, NULL, 1), - (487, 'sid', 'Sidamo', NULL, NULL, NULL, NULL, 1), - (488, 'bla', 'Siksika', NULL, NULL, NULL, NULL, 1), - (489, 'szl', 'Silesian', NULL, NULL, NULL, NULL, 1), - (490, 'zh_Hans', 'Simplified Chinese', NULL, NULL, NULL, NULL, 1), - (491, 'sd', 'Sindhi', NULL, NULL, NULL, NULL, 1), - (492, 'si', 'Sinhala', NULL, NULL, NULL, NULL, 1), - (493, 'sms', 'Skolt Sami', NULL, NULL, NULL, NULL, 1), - (494, 'den', 'Slave', NULL, NULL, NULL, NULL, 1), - (495, 'sk', 'Slovak', NULL, NULL, NULL, NULL, 1), - (496, 'sl', 'Slovenian', NULL, NULL, NULL, NULL, 1), - (497, 'xog', 'Soga', NULL, NULL, NULL, NULL, 1), - (498, 'sog', 'Sogdien', NULL, NULL, NULL, NULL, 1), - (499, 'so', 'Somalia kasa', NULL, NULL, NULL, NULL, 1), - (500, 'snk', 'Soninke', NULL, NULL, NULL, NULL, 1), - (501, 'azb', 'South Azerbaijani', NULL, NULL, NULL, NULL, 1), - (502, 'nr', 'South Ndebele', NULL, NULL, NULL, NULL, 1), - (503, 'alt', 'Southern Altai', NULL, NULL, NULL, NULL, 1), - (504, 'sma', 'Southern Sami', NULL, NULL, NULL, NULL, 1), - (505, 'st', 'Southern Sotho', NULL, NULL, NULL, NULL, 1), - (506, 'es', 'Spain kasa', NULL, NULL, NULL, NULL, 1), - (507, 'srn', 'Sranan Tongo', NULL, NULL, NULL, NULL, 1), - (508, 'zgh', 'Standard Moroccan Tamazight', NULL, NULL, NULL, NULL, 1), - (509, 'suk', 'Sukuma', NULL, NULL, NULL, NULL, 1), - (510, 'sux', 'Sumerian', NULL, NULL, NULL, NULL, 1), - (511, 'su', 'Sundanese', NULL, NULL, NULL, NULL, 1), - (512, 'sus', 'Susu', NULL, NULL, NULL, NULL, 1), - (513, 'sw', 'Swahili', NULL, NULL, NULL, NULL, 1), - (514, 'ss', 'Swati', NULL, NULL, NULL, NULL, 1), - (515, 'sv', 'Sweden kasa', NULL, NULL, NULL, NULL, 1), - (516, 'fr_CH', 'Swiss French', NULL, NULL, NULL, NULL, 1), - (517, 'gsw', 'Swiss German', NULL, NULL, NULL, NULL, 1), - (518, 'de_CH', 'Swiss High German', NULL, NULL, NULL, NULL, 1), - (519, 'syr', 'Syriac', NULL, NULL, NULL, NULL, 1), - (520, 'shi', 'Tachelhit', NULL, NULL, NULL, NULL, 1), - (521, 'th', 'Taeland kasa', NULL, NULL, NULL, NULL, 1), - (522, 'tl', 'Tagalog', NULL, NULL, NULL, NULL, 1), - (523, 'ty', 'Tahitian', NULL, NULL, NULL, NULL, 1), - (524, 'dav', 'Taita', NULL, NULL, NULL, NULL, 1), - (525, 'tg', 'Tajik', NULL, NULL, NULL, NULL, 1), - (526, 'tly', 'Talysh', NULL, NULL, NULL, NULL, 1), - (527, 'tmh', 'Tamashek', NULL, NULL, NULL, NULL, 1), - (528, 'ta', 'Tamil kasa', NULL, NULL, NULL, NULL, 1), - (529, 'trv', 'Taroko', NULL, NULL, NULL, NULL, 1), - (530, 'twq', 'Tasawaq', NULL, NULL, NULL, NULL, 1), - (531, 'tt', 'Tatar', NULL, NULL, NULL, NULL, 1), - (532, 'te', 'Telugu', NULL, NULL, NULL, NULL, 1), - (533, 'ter', 'Tereno', NULL, NULL, NULL, NULL, 1), - (534, 'teo', 'Teso', NULL, NULL, NULL, NULL, 1), - (535, 'tet', 'Tetum', NULL, NULL, NULL, NULL, 1), - (536, 'tr', 'Tɛɛki kasa', NULL, NULL, NULL, NULL, 1), - (537, 'bo', 'Tibetan', NULL, NULL, NULL, NULL, 1), - (538, 'tig', 'Tigre', NULL, NULL, NULL, NULL, 1), - (539, 'ti', 'Tigrinya', NULL, NULL, NULL, NULL, 1), - (540, 'tem', 'Timne', NULL, NULL, NULL, NULL, 1), - (541, 'tiv', 'Tiv', NULL, NULL, NULL, NULL, 1), - (542, 'tli', 'Tlingit', NULL, NULL, NULL, NULL, 1), - (543, 'tpi', 'Tok Pisin', NULL, NULL, NULL, NULL, 1), - (544, 'tkl', 'Tokelau', NULL, NULL, NULL, NULL, 1), - (545, 'to', 'Tongan', NULL, NULL, NULL, NULL, 1), - (546, 'fit', 'Tornedalen Finnish', NULL, NULL, NULL, NULL, 1), - (547, 'zh_Hant', 'Traditional Chinese', NULL, NULL, NULL, NULL, 1), - (548, 'tkr', 'Tsakhur', NULL, NULL, NULL, NULL, 1), - (549, 'tsd', 'Tsakonian', NULL, NULL, NULL, NULL, 1), - (550, 'tsi', 'Tsimshian', NULL, NULL, NULL, NULL, 1), - (551, 'ts', 'Tsonga', NULL, NULL, NULL, NULL, 1), - (552, 'tn', 'Tswana', NULL, NULL, NULL, NULL, 1), - (553, 'tcy', 'Tulu', NULL, NULL, NULL, NULL, 1), - (554, 'tum', 'Tumbuka', NULL, NULL, NULL, NULL, 1), - (555, 'aeb', 'Tunisian Arabic', NULL, NULL, NULL, NULL, 1), - (556, 'tk', 'Turkmen', NULL, NULL, NULL, NULL, 1), - (557, 'tru', 'Turoyo', NULL, NULL, NULL, NULL, 1), - (558, 'tvl', 'Tuvalu', NULL, NULL, NULL, NULL, 1), - (559, 'tyv', 'Tuvinian', NULL, NULL, NULL, NULL, 1), - (560, 'tw', 'Twi', NULL, NULL, NULL, NULL, 1), - (561, 'kcg', 'Tyap', NULL, NULL, NULL, NULL, 1), - (562, 'udm', 'Udmurt', NULL, NULL, NULL, NULL, 1), - (563, 'uga', 'Ugaritic', NULL, NULL, NULL, NULL, 1), - (564, 'uk', 'Ukren kasa', NULL, NULL, NULL, NULL, 1), - (565, 'umb', 'Umbundu', NULL, NULL, NULL, NULL, 1), - (566, 'und', 'Unknown Language', NULL, NULL, NULL, NULL, 1), - (567, 'hsb', 'Upper Sorbian', NULL, NULL, NULL, NULL, 1), - (568, 'ur', 'Urdu kasa', NULL, NULL, NULL, NULL, 1), - (569, 'ug', 'Uyghur', NULL, NULL, NULL, NULL, 1), - (570, 'uz', 'Uzbek', NULL, NULL, NULL, NULL, 1), - (571, 'vai', 'Vai', NULL, NULL, NULL, NULL, 1), - (572, 've', 'Venda', NULL, NULL, NULL, NULL, 1), - (573, 'vec', 'Venetian', NULL, NULL, NULL, NULL, 1), - (574, 'vep', 'Veps', NULL, NULL, NULL, NULL, 1), - (575, 'vi', 'Viɛtnam kasa', NULL, NULL, NULL, NULL, 1), - (576, 'vo', 'Volapük', NULL, NULL, NULL, NULL, 1), - (577, 'vro', 'Võro', NULL, NULL, NULL, NULL, 1), - (578, 'vot', 'Votic', NULL, NULL, NULL, NULL, 1), - (579, 'vun', 'Vunjo', NULL, NULL, NULL, NULL, 1), - (580, 'wa', 'Walloon', NULL, NULL, NULL, NULL, 1), - (581, 'wae', 'Walser', NULL, NULL, NULL, NULL, 1), - (582, 'war', 'Waray', NULL, NULL, NULL, NULL, 1), - (583, 'wbp', 'Warlpiri', NULL, NULL, NULL, NULL, 1), - (584, 'was', 'Washo', NULL, NULL, NULL, NULL, 1), - (585, 'guc', 'Wayuu', NULL, NULL, NULL, NULL, 1), - (586, 'cy', 'Welsh', NULL, NULL, NULL, NULL, 1), - (587, 'vls', 'West Flemish', NULL, NULL, NULL, NULL, 1), - (588, 'fy', 'Western Frisian', NULL, NULL, NULL, NULL, 1), - (589, 'mrj', 'Western Mari', NULL, NULL, NULL, NULL, 1), - (590, 'wal', 'Wolaytta', NULL, NULL, NULL, NULL, 1), - (591, 'wo', 'Wolof', NULL, NULL, NULL, NULL, 1), - (592, 'wuu', 'Wu Chinese', NULL, NULL, NULL, NULL, 1), - (593, 'xh', 'Xhosa', NULL, NULL, NULL, NULL, 1), - (594, 'hsn', 'Xiang Chinese', NULL, NULL, NULL, NULL, 1), - (595, 'yav', 'Yangben', NULL, NULL, NULL, NULL, 1), - (596, 'yao', 'Yao', NULL, NULL, NULL, NULL, 1), - (597, 'yap', 'Yapese', NULL, NULL, NULL, NULL, 1), - (598, 'ybb', 'Yemba', NULL, NULL, NULL, NULL, 1), - (599, 'yi', 'Yiddish', NULL, NULL, NULL, NULL, 1), - (600, 'yo', 'Yoruba', NULL, NULL, NULL, NULL, 1), - (601, 'zap', 'Zapotec', NULL, NULL, NULL, NULL, 1), - (602, 'dje', 'Zarma', NULL, NULL, NULL, NULL, 1), - (603, 'zza', 'Zaza', NULL, NULL, NULL, NULL, 1), - (604, 'zea', 'Zeelandic', NULL, NULL, NULL, NULL, 1), - (605, 'zen', 'Zenaga', NULL, NULL, NULL, NULL, 1), - (606, 'za', 'Zhuang', NULL, NULL, NULL, NULL, 1), - (607, 'gbz', 'Zoroastrian Dari', NULL, NULL, NULL, NULL, 1), - (608, 'zu', 'Zulu', NULL, NULL, NULL, NULL, 1), - (609, 'zun', 'Zuni', NULL, NULL, NULL, NULL, 1); diff --git a/database/migrations/2021_04_14_182305_fill_all_vars.php b/database/migrations/2021_04_14_182305_fill_all_vars.php deleted file mode 100644 index fd7eca3..0000000 --- a/database/migrations/2021_04_14_182305_fill_all_vars.php +++ /dev/null @@ -1,42 +0,0 @@ -getPdo()->exec($countires); - - $citites = \Illuminate\Support\Facades\File::get(base_path('vendor/tomatophp/filament-locations/database/data/cities.sql')); - DB::connection()->getPdo()->exec($citites); - - $areas = \Illuminate\Support\Facades\File::get(base_path('vendor/tomatophp/filament-locations/database/data/areas.sql')); - DB::connection()->getPdo()->exec($areas); - - $currencies = \Illuminate\Support\Facades\File::get(base_path('vendor/tomatophp/filament-locations/database/data/currencies.sql')); - DB::connection()->getPdo()->exec($currencies); - - $languages = \Illuminate\Support\Facades\File::get(base_path('vendor/tomatophp/filament-locations/database/data/languages.sql')); - DB::connection()->getPdo()->exec($languages); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - // - } -}; diff --git a/database/migrations/2024_11_26_234403_locations_settings.php b/database/migrations/2024_11_26_234403_locations_settings.php new file mode 100644 index 0000000..8770c93 --- /dev/null +++ b/database/migrations/2024_11_26_234403_locations_settings.php @@ -0,0 +1,15 @@ +migrator->add('locations.site_address', 'Cairo, Egypt'); + $this->migrator->add('locations.site_phone_code', '02'); + $this->migrator->add('locations.site_location', 'EG'); + $this->migrator->add('locations.site_currency', 'EGP'); + $this->migrator->add('locations.site_language', 'ar'); + } +}; diff --git a/database/migrations/2021_04_14_141222_create_locations_table.php b/database/migrations/2024_11_27_141222_create_locations_table.php similarity index 75% rename from database/migrations/2021_04_14_141222_create_locations_table.php rename to database/migrations/2024_11_27_141222_create_locations_table.php index 4c1d1d0..cd40e00 100644 --- a/database/migrations/2021_04_14_141222_create_locations_table.php +++ b/database/migrations/2024_11_27_141222_create_locations_table.php @@ -11,19 +11,18 @@ */ public function up(): void { - if(!Schema::hasTable('locations')){ + if (! Schema::hasTable('locations')) { Schema::create('locations', function (Blueprint $table) { $table->id(); //Link To Table $table->string('model_type')->nullable(); - $table->unsignedInteger('model_id')->nullable(); - + $table->string('model_id')->nullable(); $table->string('street'); - $table->foreignId('area_id')->nullable()->constrained('areas')->onDelete('cascade'); - $table->foreignId('city_id')->nullable()->constrained('cities')->onDelete('cascade'); - $table->foreignId('country_id')->nullable()->constrained('countries')->onDelete('cascade'); + $table->unsignedBigInteger('area_id')->nullable(); + $table->unsignedBigInteger('city_id')->nullable(); + $table->unsignedBigInteger('country_id')->nullable(); $table->unsignedInteger('home_number')->nullable(); $table->unsignedInteger('flat_number')->nullable(); $table->unsignedInteger('floor_number')->nullable(); @@ -34,6 +33,7 @@ public function up(): void $table->string('lng')->nullable(); $table->string('zip')->nullable(); $table->boolean('is_main')->default(0)->nullable(); + $table->timestamps(); }); } diff --git a/database/migrations/2020_10_03_171807_create_countries_table.php b/database/sql-migrations/2020_10_03_171807_create_countries_table.php similarity index 100% rename from database/migrations/2020_10_03_171807_create_countries_table.php rename to database/sql-migrations/2020_10_03_171807_create_countries_table.php diff --git a/database/migrations/2020_10_03_171841_create_cities_table.php b/database/sql-migrations/2020_10_03_171841_create_cities_table.php similarity index 100% rename from database/migrations/2020_10_03_171841_create_cities_table.php rename to database/sql-migrations/2020_10_03_171841_create_cities_table.php diff --git a/database/migrations/2021_04_14_130712_create_areas_table.php b/database/sql-migrations/2021_04_14_130712_create_areas_table.php similarity index 100% rename from database/migrations/2021_04_14_130712_create_areas_table.php rename to database/sql-migrations/2021_04_14_130712_create_areas_table.php diff --git a/database/migrations/2021_04_14_132553_create_currencies_table.php b/database/sql-migrations/2021_04_14_132553_create_currencies_table.php similarity index 100% rename from database/migrations/2021_04_14_132553_create_currencies_table.php rename to database/sql-migrations/2021_04_14_132553_create_currencies_table.php diff --git a/database/migrations/2021_04_14_141210_create_languages_table.php b/database/sql-migrations/2021_04_14_141210_create_languages_table.php similarity index 99% rename from database/migrations/2021_04_14_141210_create_languages_table.php rename to database/sql-migrations/2021_04_14_141210_create_languages_table.php index 7bd93ed..82575e1 100644 --- a/database/migrations/2021_04_14_141210_create_languages_table.php +++ b/database/sql-migrations/2021_04_14_141210_create_languages_table.php @@ -32,6 +32,3 @@ public function down() Schema::dropIfExists('languages'); } }; - - - diff --git a/database/migrations/2021_04_14_141211_update_locations_tables.php b/database/sql-migrations/2021_04_14_141211_update_locations_tables.php similarity index 99% rename from database/migrations/2021_04_14_141211_update_locations_tables.php rename to database/sql-migrations/2021_04_14_141211_update_locations_tables.php index 9f95743..91a99fe 100644 --- a/database/migrations/2021_04_14_141211_update_locations_tables.php +++ b/database/sql-migrations/2021_04_14_141211_update_locations_tables.php @@ -165,6 +165,3 @@ public function down() }); } }; - - - diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..e542661 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,26 @@ + + + + + ./tests/ + + + + + ./src + + + + + + + diff --git a/pint.json b/pint.json new file mode 100644 index 0000000..c6ddb49 --- /dev/null +++ b/pint.json @@ -0,0 +1,14 @@ +{ + "preset": "laravel", + "rules": { + "blank_line_before_statement": true, + "concat_space": { + "spacing": "one" + }, + "method_argument_space": true, + "single_trait_insert_per_statement": true, + "types_spaces": { + "space": "single" + } + } +} diff --git a/resources/js/.gitkeep b/resources/js/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/resources/lang/ar.json b/resources/lang/ar.json deleted file mode 100644 index 0db3279..0000000 --- a/resources/lang/ar.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - -} diff --git a/resources/lang/ar/messages.php b/resources/lang/ar/messages.php index f5bc75b..b05216e 100644 --- a/resources/lang/ar/messages.php +++ b/resources/lang/ar/messages.php @@ -1,107 +1,121 @@ "المواقع", - "country" => [ - "title" => "الدول", - "edit" => "تعديل دولة", - "create" => "اضافة دولة", - "form" => [ - "title" => "الاسم", - "name" => "الاسم", - "translations" => "الترجمات", - "translations-key" => "اللغة", - "translations-value" => "الترجمة", - "is_activated" => "مفعلة؟", - "flag" => "لديها علم", - "created_at" => "تمت الاضافة في", - "updated_at" => "تم التعديل في", - "code" => "الكود", - "phone" => "كود الهاتف", - "capital" => "العاصمة", - "region" => "المنطقة", - "emoji" => "الايموجي", - "emojiU" => "الايموجي يو", - "currency" => "العملة", - "currency_code" => "كود العملة", - "currency_name" => "اسم العملة", - "currency_symbol" => "رمز العملة", - "timezones" => "المناطق الزمنية", - "tzName" => "الاسم", - "zoneName" => "المنقطة", - "gmtOffset" => "يضاف الي جي ام تي", - "abbreviation" => "Abbreviation", - "gmtOffsetName" => "اسم اضافة جي ام تي", - "numeric_code" => "الكود الرقمي", - "iso3" => "ISO3", - "nationality" => "الجنسية", - "tld" => "TLD", - "native" => "اللغة الام", - "wikiDataId" => "معرف ويكي بيانات", - "lat" => "خط العرض", - "lng" => "خط الطول", - ] + 'group' => 'المواقع', + 'back' => 'رجوع', + 'settings' => [ + 'location' => [ + 'title' => 'إعدادات الموقع الجغرافي', + 'description' => 'قم بإدارة موقعك الجعرافي واللغة والعملة', + 'form' => [ + 'site_address' => 'العنوان', + 'site_phone_code' => 'كود هاتف الدولة', + 'site_location' => 'الدولة', + 'site_currency' => 'العملة', + 'site_language' => 'اللغة', + ], + ], ], - "city" => [ - "title" => "المدن", - "edit" => "تعديل مدينة", - "create" => "اضافة مدينة", - "form" => [ - "name" => "الاسم", - "country_id" => "الدولة", - "translations" => "الترجمات", - "timezones" => "المناطق الزمنية", - "lat" => "خط العرض", - "lng" => "خط الطول", - "is_activated" => "مفعلة؟" - ] + 'country' => [ + 'title' => 'الدول', + 'edit' => 'تعديل دولة', + 'create' => 'اضافة دولة', + 'form' => [ + 'title' => 'الاسم', + 'name' => 'الاسم', + 'translations' => 'الترجمات', + 'translations-key' => 'اللغة', + 'translations-value' => 'الترجمة', + 'is_activated' => 'مفعلة؟', + 'flag' => 'لديها علم', + 'created_at' => 'تمت الاضافة في', + 'updated_at' => 'تم التعديل في', + 'code' => 'الكود', + 'phone' => 'كود الهاتف', + 'capital' => 'العاصمة', + 'region' => 'المنطقة', + 'emoji' => 'الايموجي', + 'emojiU' => 'الايموجي يو', + 'currency' => 'العملة', + 'currency_code' => 'كود العملة', + 'currency_name' => 'اسم العملة', + 'currency_symbol' => 'رمز العملة', + 'timezones' => 'المناطق الزمنية', + 'tzName' => 'الاسم', + 'zoneName' => 'المنقطة', + 'gmtOffset' => 'يضاف الي جي ام تي', + 'abbreviation' => 'Abbreviation', + 'gmtOffsetName' => 'اسم اضافة جي ام تي', + 'numeric_code' => 'الكود الرقمي', + 'iso3' => 'ISO3', + 'nationality' => 'الجنسية', + 'tld' => 'TLD', + 'native' => 'اللغة الام', + 'wikiDataId' => 'معرف ويكي بيانات', + 'lat' => 'خط العرض', + 'lng' => 'خط الطول', + ], ], - "areas" => [ - "title" => "المناطق", - "edit" => "تعديل منطقة", - "create" => "اضافة منطقة", - "form" => [ - "name" => "الاسم", - "city_id" => "المدينة", - "translations" => "الترجمات", - "is_activated" => "مفعلة؟", - "created_at" => "تمت الاضافة في", - "updated_at" => "تم التعديل في" - ] + 'city' => [ + 'title' => 'المدن', + 'edit' => 'تعديل مدينة', + 'create' => 'اضافة مدينة', + 'form' => [ + 'name' => 'الاسم', + 'country_id' => 'الدولة', + 'translations' => 'الترجمات', + 'timezones' => 'المناطق الزمنية', + 'lat' => 'خط العرض', + 'lng' => 'خط الطول', + 'is_activated' => 'مفعلة؟', + ], ], - "languages" => [ - "title" => "اللغات", - "edit" => "تعديل لغة", - "create" => "اضافة لغة", - "iso" => "ISO" + 'areas' => [ + 'title' => 'المناطق', + 'edit' => 'تعديل منطقة', + 'create' => 'اضافة منطقة', + 'form' => [ + 'name' => 'الاسم', + 'city_id' => 'المدينة', + 'translations' => 'الترجمات', + 'is_activated' => 'مفعلة؟', + 'created_at' => 'تمت الاضافة في', + 'updated_at' => 'تم التعديل في', + ], ], - "currency" => [ - "title" => "العملات", - "edit" => "تعديل عملة", - "create" => "اضافة عملة", - "exchange_rate" => "سعر الصرف", - "symbol" => "الرمز" + 'languages' => [ + 'title' => 'اللغات', + 'edit' => 'تعديل لغة', + 'create' => 'اضافة لغة', + 'iso' => 'ISO', + ], + 'currency' => [ + 'title' => 'العملات', + 'edit' => 'تعديل عملة', + 'create' => 'اضافة عملة', + 'exchange_rate' => 'سعر الصرف', + 'symbol' => 'الرمز', + ], + 'location' => [ + 'title' => 'المواقع', + 'create' => 'اضافة موقع', + 'form' => [ + 'area_id' => 'المنطقة', + 'city_id' => 'المدينة', + 'country_id' => 'الدولة', + 'street' => 'الشارع', + 'is_main' => 'الرئيسية؟', + 'home_number' => 'رقم المنزل', + 'flat_number' => 'رقم الشقة', + 'floor_number' => 'رقم الطابق', + 'mark' => 'العلامة', + 'map_url' => 'رابط الخريطة', + 'note' => 'ملاحظات', + 'lat' => 'خط العرض', + 'lng' => 'خط الطول', + 'zip' => 'الرمز البريدي', + 'created_at' => 'تمت الاضافة في', + 'updated_at' => 'تم التعديل في', + ], ], - "location" => [ - "title" => "المواقع", - "create" => "اضافة موقع", - "form" => [ - "area_id" => "المنطقة", - "city_id" => "المدينة", - "country_id" => "الدولة", - "street" => "الشارع", - "is_main" => "الرئيسية؟", - "home_number" => "رقم المنزل", - "flat_number" => "رقم الشقة", - "floor_number" => "رقم الطابق", - "mark" => "العلامة", - "map_url" => "رابط الخريطة", - "note" => "ملاحظات", - "lat" => "خط العرض", - "lng" => "خط الطول", - "zip" => "الرمز البريدي", - "created_at" => "تمت الاضافة في", - "updated_at" => "تم التعديل في" - ] - ] ]; diff --git a/resources/lang/en.json b/resources/lang/en.json deleted file mode 100644 index 0db3279..0000000 --- a/resources/lang/en.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - -} diff --git a/resources/lang/en/messages.php b/resources/lang/en/messages.php index c30c081..a8a0017 100644 --- a/resources/lang/en/messages.php +++ b/resources/lang/en/messages.php @@ -1,107 +1,121 @@ "Locations", - "country" => [ - "title" => "Countries", - "edit" => "Edit Country", - "create" => "Create Country", - "form" => [ - "title" => "Title", - "name" => "Name", - "translations" => "Translations", - "translations-key" => "Language", - "translations-value" => "Translation", - "is_activated" => "Is Activated", - "flag" => "Has Flag", - "created_at" => "Created At", - "updated_at" => "Updated At", - "code" => "Code", - "phone" => "Phone Code", - "capital" => "Capital", - "region" => "Region", - "emoji" => "Emoji", - "emojiU" => "EmojiU", - "currency" => "Currency", - "currency_code" => "Currency Code", - "currency_name" => "Currency Name", - "currency_symbol" => "Currency Symbol", - "timezones" => "Timezones", - "tzName" => "Name", - "zoneName" => "Zone", - "gmtOffset" => "GMT Offset", - "abbreviation" => "Abbreviation", - "gmtOffsetName" => "GMT Offset Name", - "numeric_code" => "Numeric Code", - "iso3" => "ISO3", - "nationality" => "Nationality", - "tld" => "TLD", - "native" => "Native", - "wikiDataId" => "WIKI Data Id", - "lat" => "Latitude", - "lng" => "Longitude", - ] + 'group' => 'Locations', + 'back' => 'Back', + 'settings' => [ + 'location' => [ + 'title' => 'Location Settings', + 'description' => 'Manage your location settings', + 'form' => [ + 'site_address' => 'Site Address', + 'site_phone_code' => 'Site Phone Code', + 'site_location' => 'Site Location', + 'site_currency' => 'Site Currency', + 'site_language' => 'Site Language', + ], + ], ], - "city" => [ - "title" => "Cities", - "edit" => "Edit City", - "create" => "Create City", - "form" => [ - "name" => "Name", - "country_id" => "Country", - "translations" => "Translations", - "timezones" => "Timezones", - "lat" => "Latitude", - "lng" => "Longitude", - "is_activated" => "Is Activated" - ] + 'country' => [ + 'title' => 'Countries', + 'edit' => 'Edit Country', + 'create' => 'Create Country', + 'form' => [ + 'title' => 'Title', + 'name' => 'Name', + 'translations' => 'Translations', + 'translations-key' => 'Language', + 'translations-value' => 'Translation', + 'is_activated' => 'Is Activated', + 'flag' => 'Has Flag', + 'created_at' => 'Created At', + 'updated_at' => 'Updated At', + 'code' => 'Code', + 'phone' => 'Phone Code', + 'capital' => 'Capital', + 'region' => 'Region', + 'emoji' => 'Emoji', + 'emojiU' => 'EmojiU', + 'currency' => 'Currency', + 'currency_code' => 'Currency Code', + 'currency_name' => 'Currency Name', + 'currency_symbol' => 'Currency Symbol', + 'timezones' => 'Timezones', + 'tzName' => 'Name', + 'zoneName' => 'Zone', + 'gmtOffset' => 'GMT Offset', + 'abbreviation' => 'Abbreviation', + 'gmtOffsetName' => 'GMT Offset Name', + 'numeric_code' => 'Numeric Code', + 'iso3' => 'ISO3', + 'nationality' => 'Nationality', + 'tld' => 'TLD', + 'native' => 'Native', + 'wikiDataId' => 'WIKI Data Id', + 'lat' => 'Latitude', + 'lng' => 'Longitude', + ], ], - "areas" => [ - "title" => "Areas", - "edit" => "Edit Area", - "create" => "Create Area", - "form" => [ - "name" => "Name", - "city_id" => "City", - "translations" => "Translations", - "is_activated" => "Is Activated", - "created_at" => "Created At", - "updated_at" => "Updated At" - ] + 'city' => [ + 'title' => 'Cities', + 'edit' => 'Edit City', + 'create' => 'Create City', + 'form' => [ + 'name' => 'Name', + 'country_id' => 'Country', + 'translations' => 'Translations', + 'timezones' => 'Timezones', + 'lat' => 'Latitude', + 'lng' => 'Longitude', + 'is_activated' => 'Is Activated', + ], ], - "languages" => [ - "title" => "Languages", - "edit" => "Edit Language", - "create" => "Create Language", - "iso" => "ISO" + 'areas' => [ + 'title' => 'Areas', + 'edit' => 'Edit Area', + 'create' => 'Create Area', + 'form' => [ + 'name' => 'Name', + 'city_id' => 'City', + 'translations' => 'Translations', + 'is_activated' => 'Is Activated', + 'created_at' => 'Created At', + 'updated_at' => 'Updated At', + ], ], - "currency" => [ - "title" => "Currencies", - "edit" => "Edit Currency", - "create" => "Create Currency", - "exchange_rate" => "Exchange Rate", - "symbol" => "Symbol" + 'languages' => [ + 'title' => 'Languages', + 'edit' => 'Edit Language', + 'create' => 'Create Language', + 'iso' => 'ISO', + ], + 'currency' => [ + 'title' => 'Currencies', + 'edit' => 'Edit Currency', + 'create' => 'Create Currency', + 'exchange_rate' => 'Exchange Rate', + 'symbol' => 'Symbol', + ], + 'location' => [ + 'title' => 'Locations', + 'create' => 'Create Location', + 'form' => [ + 'area_id' => 'Area', + 'city_id' => 'City', + 'country_id' => 'Country', + 'street' => 'Street', + 'is_main' => 'Is Main', + 'home_number' => 'Home Number', + 'flat_number' => 'Flat Number', + 'floor_number' => 'Floor Number', + 'mark' => 'Mark', + 'map_url' => 'Map URL', + 'note' => 'Notes', + 'lat' => 'Latitude', + 'lng' => 'Longitude', + 'zip' => 'ZIP', + 'created_at' => 'Created At', + 'updated_at' => 'Updated At', + ], ], - "location" => [ - "title" => "Locations", - "create" => "Create Location", - "form" => [ - "area_id" => "Area", - "city_id" => "City", - "country_id" => "Country", - "street" => "Street", - "is_main" => "Is Main", - "home_number" => "Home Number", - "flat_number" => "Flat Number", - "floor_number" => "Floor Number", - "mark" => "Mark", - "map_url" => "Map URL", - "note" => "Notes", - "lat" => "Latitude", - "lng" => "Longitude", - "zip" => "ZIP", - "created_at" => "Created At", - "updated_at" => "Updated At" - ] - ] ]; diff --git a/resources/views/.gitkeep b/resources/views/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/routes/web.php b/routes/web.php deleted file mode 100644 index 50cce95..0000000 --- a/routes/web.php +++ /dev/null @@ -1,3 +0,0 @@ -info('Publish Vendor Assets'); - $this->artisanCommand(["migrate"]); - $this->artisanCommand(["optimize:clear"]); + $this->artisanCommand(['migrate']); + $this->artisanCommand(['optimize']); + if (config('filament-locations.driver') === 'database') { + $this->artisanCommand(['filament-locations:seed']); + } $this->info('Filament Locations installed successfully.'); } } diff --git a/src/Console/FilamentLocationsLoad.php b/src/Console/FilamentLocationsLoad.php new file mode 100644 index 0000000..2fb76ea --- /dev/null +++ b/src/Console/FilamentLocationsLoad.php @@ -0,0 +1,90 @@ +info('Start seeding the database with locations data.'); + + $countryJson = config('filament-locations.json.countries') ?: __DIR__ . '/../../database/data/countries.json'; + $cityJson = config('filament-locations.json.cities') ?: __DIR__ . '/../../database/data/cities.json'; + $areaJson = config('filament-locations.json.areas') ?: __DIR__ . '/../../database/data/areas.json'; + $currencyJson = config('filament-locations.json.currencies') ?: __DIR__ . '/../../database/data/currencies.json'; + $languageJson = config('filament-locations.json.languages') ?: __DIR__ . '/../../database/data/languages.json'; + + $countryFileExists = file_exists($countryJson); + $cityFileExists = file_exists($cityJson); + $areaFileExists = file_exists($areaJson); + $currencyFileExists = file_exists($currencyJson); + $languageFileExists = file_exists($languageJson); + + if ($countryFileExists) { + $countries = json_decode(file_get_contents($countryJson), true); + foreach ($countries as $country) { + DB::table('countries')->insert($country); + } + } + + if ($cityFileExists) { + $cities = json_decode(file_get_contents($cityJson), true); + foreach ($cities as $city) { + DB::table('cities')->insert($city); + } + } + + if ($areaFileExists) { + $areas = json_decode(file_get_contents($areaJson), true); + foreach ($areas as $area) { + DB::table('areas')->insert($area); + } + } + + if ($currencyFileExists) { + $currencies = json_decode(file_get_contents($currencyJson), true); + foreach ($currencies as $currency) { + DB::table('currencies')->insert($currency); + } + } + + if ($languageFileExists) { + $languages = json_decode(file_get_contents($languageJson), true); + foreach ($languages as $language) { + DB::table('languages')->insert($language); + } + } + + $this->info('Seeding the database with locations data is completed.'); + } +} diff --git a/src/FilamentLocationsPlugin.php b/src/FilamentLocationsPlugin.php index 5a4f50a..7cfce15 100644 --- a/src/FilamentLocationsPlugin.php +++ b/src/FilamentLocationsPlugin.php @@ -4,83 +4,135 @@ use Filament\Contracts\Plugin; use Filament\Panel; -use Illuminate\View\View; -use Nwidart\Modules\Module; -use TomatoPHP\FilamentLocations\Resources\AreaResource; +use TomatoPHP\FilamentLocations\Pages\LocationSettings; use TomatoPHP\FilamentLocations\Resources\CityResource; use TomatoPHP\FilamentLocations\Resources\CountryResource; use TomatoPHP\FilamentLocations\Resources\CurrencyResource; use TomatoPHP\FilamentLocations\Resources\LanguageResource; use TomatoPHP\FilamentLocations\Resources\LocationResource; +use TomatoPHP\FilamentSettingsHub\Facades\FilamentSettingsHub; +use TomatoPHP\FilamentSettingsHub\Services\Contracts\SettingHold; class FilamentLocationsPlugin implements Plugin { - private bool $isActive = false; + private bool $useSettingsHub = true; + + private bool $countries = true; + + private bool $languages = true; + + private bool $currency = true; + + private bool $locations = true; public function getId(): string { return 'filament-locations'; } + public function settingsHub(bool $useSettingsHub = true): static + { + $this->useSettingsHub = $useSettingsHub; + + return $this; + } + + public function hasSettingsHub(): bool + { + return $this->useSettingsHub; + } + + public function countries(bool $countries = true): static + { + $this->countries = $countries; + + return $this; + } + + public function hasCountries(): bool + { + return $this->countries; + } + + public function languages(bool $languages = true): static + { + $this->languages = $languages; + + return $this; + } + + public function hasLanguages(): bool + { + return $this->languages; + } + + public function currency(bool $currency = true): static + { + $this->currency = $currency; + + return $this; + } + + public function hasCurrency(): bool + { + return $this->currency; + } + + public function locations(bool $locations = true): static + { + $this->locations = $locations; + + return $this; + } + + public function hasLocations(): bool + { + return $this->locations; + } + public function register(Panel $panel): void { - if(class_exists(Module::class) && \Nwidart\Modules\Facades\Module::find('FilamentLocations')?->isEnabled()){ - $this->isActive = true; + $resources = []; + if ($this->hasCountries()) { + $resources[] = CityResource::class; + $resources[] = CountryResource::class; } - else { - $this->isActive = true; + if ($this->hasLanguages()) { + $resources[] = LanguageResource::class; + } + if ($this->hasCurrency()) { + $resources[] = CurrencyResource::class; + } + if ($this->hasLocations()) { + $resources[] = LocationResource::class; } - if($this->isActive) { - $resources = []; - if (config('filament-locations.resources.city')) { - $resources[] = CityResource::class; - } - if (config('filament-locations.resources.country')) { - $resources[] = CountryResource::class; - } - if (config('filament-locations.resources.languages')) { - $resources[] = LanguageResource::class; - } - if (config('filament-locations.resources.currency')) { - $resources[] = CurrencyResource::class; - } - if (config('filament-locations.resources.locations')) { - $resources[] = LocationResource::class; - } - - $panel->resources($resources); + if ($this->hasSettingsHub()) { + $panel->pages([ + LocationSettings::class, + ]); } - } - public function boot(Panel $panel): void - { - // + $panel->resources($resources); } - public static function make(): static + public function boot(Panel $panel): void { - return new static(); + if ($this->hasSettingsHub()) { + FilamentSettingsHub::register([ + SettingHold::make() + ->page(LocationSettings::class) + ->order(0) + ->label('filament-locations::messages.settings.location.title') + ->icon('heroicon-o-map') + ->description('filament-locations::messages.settings.location.description') + ->group('filament-settings-hub::messages.group'), + ]); + } } - - /** - * Returns a View object that renders the language switcher component. - * - * @return \Illuminate\Contracts\View\View The View object that renders the language switcher component. - */ - private function getLanguageSwitcherView(): View + public static function make(): FilamentLocationsPlugin { - $locales = config('filament-translations.locals'); - $currentLocale = app()->getLocale(); - $currentLanguage = collect($locales)->firstWhere('code', $currentLocale); - $otherLanguages = $locales; - $showFlags = config('filament-translations.show_flags'); - - return view('filament-translations::language-switcher', compact( - 'otherLanguages', - 'currentLanguage', - 'showFlags', - )); + return new FilamentLocationsPlugin(); } } diff --git a/src/FilamentLocationsServiceProvider.php b/src/FilamentLocationsServiceProvider.php index 025c784..f0cb63f 100644 --- a/src/FilamentLocationsServiceProvider.php +++ b/src/FilamentLocationsServiceProvider.php @@ -4,6 +4,7 @@ use Illuminate\Support\ServiceProvider; +require_once __DIR__ . '/helpers.php'; class FilamentLocationsServiceProvider extends ServiceProvider { @@ -11,43 +12,33 @@ public function register(): void { //Register generate command $this->commands([ - \TomatoPHP\FilamentLocations\Console\FilamentLocationsInstall::class, + \TomatoPHP\FilamentLocations\Console\FilamentLocationsInstall::class, + \TomatoPHP\FilamentLocations\Console\FilamentLocationsLoad::class, ]); //Register Config file - $this->mergeConfigFrom(__DIR__.'/../config/filament-locations.php', 'filament-locations'); + $this->mergeConfigFrom(__DIR__ . '/../config/filament-locations.php', 'filament-locations'); //Publish Config $this->publishes([ - __DIR__.'/../config/filament-locations.php' => config_path('filament-locations.php'), + __DIR__ . '/../config/filament-locations.php' => config_path('filament-locations.php'), ], 'filament-locations-config'); //Register Migrations - $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); + $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); - //Publish Migrations - $this->publishes([ - __DIR__.'/../database/migrations' => database_path('migrations'), - ], 'filament-locations-migrations'); - //Register views - $this->loadViewsFrom(__DIR__.'/../resources/views', 'filament-locations'); - - //Publish Views - $this->publishes([ - __DIR__.'/../resources/views' => resource_path('views/vendor/filament-locations'), - ], 'filament-locations-views'); + if (config('filament-locations.driver') === 'database') { + $this->loadMigrationsFrom(__DIR__ . '/../database/sql-migrations'); + } //Register Langs - $this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'filament-locations'); + $this->loadTranslationsFrom(__DIR__ . '/../resources/lang', 'filament-locations'); //Publish Lang $this->publishes([ - __DIR__.'/../resources/lang' => base_path('lang/vendor/filament-locations'), + __DIR__ . '/../resources/lang' => base_path('lang/vendor/filament-locations'), ], 'filament-locations-lang'); - //Register Routes - $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); - } public function boot(): void diff --git a/src/Http/Controllers/.gitkeep b/src/Http/Controllers/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/Http/Middleware/.gitkeep b/src/Http/Middleware/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/Http/Requests/.gitkeep b/src/Http/Requests/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/Models/Area.php b/src/Models/Area.php index a706554..a4c307e 100644 --- a/src/Models/Area.php +++ b/src/Models/Area.php @@ -4,20 +4,24 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; +use Illuminate\Support\Facades\File; +use TomatoPHP\FilamentLocations\Traits\SwitchDriver; /** - * @property integer $id + * @property int $id * @property string $name - * @property integer $city_id + * @property int $city_id * @property string $lat * @property string $lng * @property array $translations - * @property boolean $is_activated + * @property bool $is_activated * @property string $created_at * @property string $updated_at */ class Area extends Model { + use SwitchDriver; + /** * The "type" of the auto-incrementing ID. * @@ -28,18 +32,41 @@ class Area extends Model /** * @var array */ - protected $fillable = ['name', 'translations','is_activated','city_id', 'lat', 'lng', 'created_at', 'updated_at']; + protected $fillable = ['name', 'translations', 'is_activated', 'city_id', 'lat', 'lng', 'created_at', 'updated_at']; protected $casts = [ 'translations' => 'json', - 'is_activated' => 'boolean' + 'is_activated' => 'boolean', ]; - /** - * @return BelongsTo - */ - public function city(): BelongsTo + public function city(): BelongsTo { return $this->belongsTo(City::class, 'city_id', 'id'); } + + public function getSchema() + { + return [ + 'name', + 'translations', + 'is_activated', + 'city_id', + 'lat', + 'lng', + 'created_at', + 'updated_at', + ]; + } + + public function getRows() + { + $areaJson = config('filament-locations.json.areas') ?: __DIR__ . '/../../database/data/areas.json'; + + $jsonFileExists = File::exists($areaJson); + if ($jsonFileExists) { + return json_decode(File::get($areaJson), true); + } else { + return []; + } + } } diff --git a/src/Models/City.php b/src/Models/City.php index 6620ecd..f15d87b 100644 --- a/src/Models/City.php +++ b/src/Models/City.php @@ -4,20 +4,24 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; +use Illuminate\Support\Facades\File; +use TomatoPHP\FilamentLocations\Traits\SwitchDriver; /** - * @property integer $id + * @property int $id * @property string $name - * @property integer $country_id + * @property int $country_id * @property string $lat * @property string $lng * @property array $translations - * @property boolean $is_activated + * @property bool $is_activated * @property string $created_at * @property string $updated_at */ class City extends Model { + use SwitchDriver; + /** * The "type" of the auto-incrementing ID. * @@ -28,17 +32,14 @@ class City extends Model /** * @var array */ - protected $fillable = ['name','translations','is_activated', 'country_id', 'lat', 'lng', 'created_at', 'updated_at']; + protected $fillable = ['name', 'translations', 'is_activated', 'country_id', 'lat', 'lng', 'created_at', 'updated_at']; protected $casts = [ 'translations' => 'json', - 'is_activated' => 'boolean' + 'is_activated' => 'boolean', ]; - /** - * @return BelongsTo - */ - public function country(): BelongsTo + public function country(): BelongsTo { return $this->belongsTo(Country::class, 'country_id', 'id'); } @@ -47,4 +48,30 @@ public function areas() { return $this->hasMany(Area::class); } + + public function getSchema() + { + return [ + 'name', + 'translations', + 'is_activated', + 'country_id', + 'lat', + 'lng', + 'created_at', + 'updated_at', + ]; + } + + public function getRows() + { + $cityJson = config('filament-locations.json.cities') ?: __DIR__ . '/../../database/data/cities.json'; + + $jsonFileExists = File::exists($cityJson); + if ($jsonFileExists) { + return json_decode(File::get($cityJson), true); + } else { + return []; + } + } } diff --git a/src/Models/Country.php b/src/Models/Country.php index 44f0c6d..c7ab006 100644 --- a/src/Models/Country.php +++ b/src/Models/Country.php @@ -3,9 +3,11 @@ namespace TomatoPHP\FilamentLocations\Models; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Facades\File; +use TomatoPHP\FilamentLocations\Traits\SwitchDriver; /** - * @property integer $id + * @property int $id * @property string $name * @property string $code * @property string $phone @@ -14,7 +16,7 @@ * @property string $numeric_code * @property array $translations * @property array $timezones - * @property boolean $is_activated + * @property bool $is_activated * @property string $created_at * @property string $updated_at * @property string $flag @@ -33,6 +35,8 @@ */ class Country extends Model { + use SwitchDriver; + /** * The "type" of the auto-incrementing ID. * @@ -73,12 +77,53 @@ class Country extends Model protected $casts = [ 'translations' => 'json', 'timezones' => 'json', - 'is_activated' => 'boolean' + 'is_activated' => 'boolean', ]; - public function cities() { return $this->hasMany(City::class); } + + public function getSchema() + { + return [ + 'name', + 'code', + 'phone', + 'lat', + 'lng', + 'created_at', + 'updated_at', + 'translations', + 'timezones', + 'numeric_code', + 'is_activated', + 'flag', + 'emojiU', + 'emoji', + 'wikiDataId', + 'currency_symbol', + 'currency_name', + 'currency', + 'region', + 'native', + 'tld', + 'capital', + 'nationality', + 'iso3', + ]; + } + + public function getRows() + { + $countryJson = config('filament-locations.json.countries') ?: __DIR__ . '/../../database/data/countries.json'; + + $jsonFileExists = File::exists($countryJson); + if ($jsonFileExists) { + return json_decode(File::get($countryJson), true); + } else { + return []; + } + } } diff --git a/src/Models/Currency.php b/src/Models/Currency.php index 1e618c1..1f32065 100644 --- a/src/Models/Currency.php +++ b/src/Models/Currency.php @@ -3,9 +3,11 @@ namespace TomatoPHP\FilamentLocations\Models; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Facades\File; +use TomatoPHP\FilamentLocations\Traits\SwitchDriver; /** - * @property integer $id + * @property int $id * @property string $arabic * @property string $name * @property string $iso @@ -14,6 +16,8 @@ */ class Currency extends Model { + use SwitchDriver; + /** * The "type" of the auto-incrementing ID. * @@ -24,11 +28,38 @@ class Currency extends Model /** * @var array */ - protected $fillable = ['translations','exchange_rate', 'symbol','is_activated','arabic', 'name', 'iso', 'created_at', 'updated_at']; + protected $fillable = ['translations', 'exchange_rate', 'symbol', 'is_activated', 'arabic', 'name', 'iso', 'created_at', 'updated_at']; protected $casts = [ 'translations' => 'json', - 'is_activated' => 'boolean' + 'is_activated' => 'boolean', ]; + public function getSchema() + { + return [ + 'translations', + 'exchange_rate', + 'symbol', + 'is_activated', + 'arabic', + 'name', + 'iso', + 'created_at', + 'updated_at', + ]; + } + + public function getRows() + { + + $currencyJson = config('filament-locations.json.currencies') ?: __DIR__ . '/../../database/data/currencies.json'; + + $jsonFileExists = File::exists($currencyJson); + if ($jsonFileExists) { + return json_decode(File::get($currencyJson), true); + } else { + return []; + } + } } diff --git a/src/Models/Language.php b/src/Models/Language.php index 2c0f402..c5a32dc 100644 --- a/src/Models/Language.php +++ b/src/Models/Language.php @@ -3,9 +3,11 @@ namespace TomatoPHP\FilamentLocations\Models; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Facades\File; +use TomatoPHP\FilamentLocations\Traits\SwitchDriver; /** - * @property integer $id + * @property int $id * @property string $iso * @property string $name * @property string $arabic @@ -14,6 +16,8 @@ */ class Language extends Model { + use SwitchDriver; + /** * The "type" of the auto-incrementing ID. * @@ -24,10 +28,35 @@ class Language extends Model /** * @var array */ - protected $fillable = ['translations','is_activated','iso', 'name', 'arabic', 'created_at', 'updated_at']; + protected $fillable = ['translations', 'is_activated', 'iso', 'name', 'arabic', 'created_at', 'updated_at']; protected $casts = [ 'translations' => 'json', - 'is_activated' => 'boolean' + 'is_activated' => 'boolean', ]; + + public function getSchema() + { + return [ + 'translations', + 'is_activated', + 'iso', + 'name', + 'arabic', + 'created_at', + 'updated_at', + ]; + } + + public function getRows() + { + $languageJson = config('filament-locations.json.languages') ?: __DIR__ . '/../../database/data/languages.json'; + + $jsonFileExists = File::exists($languageJson); + if ($jsonFileExists) { + return json_decode(File::get($languageJson), true); + } else { + return []; + } + } } diff --git a/src/Models/Location.php b/src/Models/Location.php index a5fd2f5..c2d9290 100644 --- a/src/Models/Location.php +++ b/src/Models/Location.php @@ -5,17 +5,17 @@ use Illuminate\Database\Eloquent\Model; /** - * @property integer $id - * @property integer $account_id + * @property int $id + * @property int $account_id * @property string $street * @property string $area * @property string $city * @property string $zip - * @property boolean $is_main + * @property bool $is_main * @property string $country - * @property integer $home_number - * @property integer $flat_number - * @property integer $floor_number + * @property int $home_number + * @property int $flat_number + * @property int $floor_number * @property string $mark * @property string $map_url * @property string $note @@ -48,31 +48,33 @@ class Location extends Model 'lat', 'lng', 'created_at', - 'updated_at' + 'updated_at', ]; protected $casts = [ 'is_main' => 'boolean', ]; - /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function modal() { - return $this->morphTo(); + return $this->morphTo(); } - public function city(){ + public function city() + { return $this->belongsTo(City::class, 'city_id', 'id'); } - public function area(){ + public function area() + { return $this->belongsTo(Area::class, 'area_id', 'id'); } - public function country(){ + public function country() + { return $this->belongsTo(Country::class, 'country_id', 'id'); } } diff --git a/src/Pages/LocationSettings.php b/src/Pages/LocationSettings.php new file mode 100644 index 0000000..ef9b2ba --- /dev/null +++ b/src/Pages/LocationSettings.php @@ -0,0 +1,99 @@ +url(SettingsHub::getUrl(['tenant' => $tenant->id])) + ->color('danger') + ->label(trans('filament-locations::messages.back')), + ]; + } + + return [ + Action::make('back') + ->url(SettingsHub::getUrl()) + ->color('danger') + ->label(trans('filament-locations::messages.back')), + ]; + + } + + public function getTitle(): string + { + return trans('filament-locations::messages.settings.location.title'); + } + + protected function getFormSchema(): array + { + return [ + Grid::make(['default' => 1])->schema([ + TextArea::make('site_address') + ->label(trans('filament-locations::messages.settings.location.form.site_address')) + ->hint(config('filament-settings-hub.show_hint') ? 'setting("site_address")' : null), + Select::make('site_location') + ->preload() + ->searchable() + ->live() + ->afterStateUpdated(function (Get $get, Set $set) { + $country = Country::query()->where('code', $get('site_location'))->first(); + if ($country) { + $set('site_phone_code', $country->phone); + $set('site_currency', $country->currency); + } + }) + ->options(Country::query()->pluck('name', 'code')->toArray()) + ->label(trans('filament-locations::messages.settings.location.form.site_location')) + ->hint(config('filament-settings-hub.show_hint') ? 'setting("site_location")' : null), + Select::make('site_phone_code') + ->searchable() + ->options(Country::query()->pluck('phone', 'phone')->toArray()) + ->label(trans('filament-locations::messages.settings.location.form.site_phone_code')) + ->hint(config('filament-settings-hub.show_hint') ? 'setting("site_phone_code")' : null), + Select::make('site_currency') + ->searchable() + ->options(Currency::query()->pluck('name', 'iso')->toArray()) + ->required() + ->label(trans('filament-locations::messages.settings.location.form.site_currency')) + ->hint(config('filament-settings-hub.show_hint') ? 'setting("site_currency")' : null), + Select::make('site_language') + ->searchable() + ->options(Language::query()->pluck('name', 'iso')->toArray()) + ->label(trans('filament-locations::messages.settings.location.form.site_language')) + ->hint(config('filament-settings-hub.show_hint') ? 'setting("site_language")' : null), + ]), + + ]; + } +} diff --git a/src/Resources/CityResource.php b/src/Resources/CityResource.php index 8d90589..206b117 100644 --- a/src/Resources/CityResource.php +++ b/src/Resources/CityResource.php @@ -2,16 +2,11 @@ namespace TomatoPHP\FilamentLocations\Resources; -use TomatoPHP\FilamentLocations\Resources\CityResource\Pages; -use TomatoPHP\FilamentLocations\Resources\CityResource\RelationManagers; -use TomatoPHP\FilamentLocations\Models\City; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; -use Filament\Tables; -use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use TomatoPHP\FilamentLocations\Models\City; +use TomatoPHP\FilamentLocations\Resources\CityResource\Pages; use TomatoPHP\FilamentLocations\Resources\CityResource\RelationManagers\AreasRelationManager; use TomatoPHP\FilamentLocations\Resources\CountryResource\Pages\ListCountries; @@ -68,7 +63,7 @@ public static function form(Form $form): Form public static function getRelations(): array { return [ - AreasRelationManager::make() + AreasRelationManager::make(), ]; } @@ -77,6 +72,7 @@ public static function getPages(): array return [ 'index' => ListCountries::route('/'), 'edit' => Pages\EditCity::route('/{record}/edit'), + 'view' => Pages\ViewCity::route('/{record}/show'), ]; } } diff --git a/src/Resources/CityResource/Pages/EditCity.php b/src/Resources/CityResource/Pages/EditCity.php index e9e1a21..8b937db 100644 --- a/src/Resources/CityResource/Pages/EditCity.php +++ b/src/Resources/CityResource/Pages/EditCity.php @@ -2,9 +2,9 @@ namespace TomatoPHP\FilamentLocations\Resources\CityResource\Pages; -use TomatoPHP\FilamentLocations\Resources\CityResource; use Filament\Actions; use Filament\Resources\Pages\EditRecord; +use TomatoPHP\FilamentLocations\Resources\CityResource; class EditCity extends EditRecord { diff --git a/src/Resources/CityResource/Pages/ViewCity.php b/src/Resources/CityResource/Pages/ViewCity.php new file mode 100644 index 0000000..8f7adf8 --- /dev/null +++ b/src/Resources/CityResource/Pages/ViewCity.php @@ -0,0 +1,11 @@ +schema([ - Forms\Components\Grid::make(['default' => 2]) + Forms\Components\Grid::make(['default' => 2]) ->schema([ Forms\Components\TextInput::make('name') ->label(trans('filament-locations::messages.country.form.title')) @@ -116,7 +113,7 @@ public static function form(Form $form): Form ->label(trans('filament-locations::messages.country.form.flag')), Forms\Components\Toggle::make('is_activated') ->label(trans('filament-locations::messages.country.form.is_activated')), - ]) + ]), ]); } @@ -124,9 +121,16 @@ public static function table(Table $table): Table { return $table ->columns([ + Tables\Columns\TextColumn::make('emoji') + ->label(trans('filament-locations::messages.country.form.emoji')) + ->searchable(), Tables\Columns\TextColumn::make('name') ->label(trans('filament-locations::messages.country.form.name')) ->searchable(), + Tables\Columns\TextColumn::make('currency_symbol') + ->label(trans('filament-locations::messages.country.form.currency_symbol')) + ->toggleable(isToggledHiddenByDefault: false) + ->searchable(), Tables\Columns\TextColumn::make('code') ->label(trans('filament-locations::messages.country.form.code')) ->searchable(), @@ -177,13 +181,6 @@ public static function table(Table $table): Table ->label(trans('filament-locations::messages.country.form.currency_name')) ->toggleable(isToggledHiddenByDefault: false) ->searchable(), - Tables\Columns\TextColumn::make('currency_symbol') - ->label(trans('filament-locations::messages.country.form.currency_symbol')) - ->toggleable(isToggledHiddenByDefault: false) - ->searchable(), - Tables\Columns\TextColumn::make('emoji') - ->label(trans('filament-locations::messages.country.form.emoji')) - ->searchable(), Tables\Columns\IconColumn::make('is_activated') ->label(trans('filament-locations::messages.country.form.is_activated')) ->boolean(), @@ -192,12 +189,13 @@ public static function table(Table $table): Table // ]) ->actions([ - Tables\Actions\EditAction::make(), - Tables\Actions\DeleteAction::make(), + Tables\Actions\ViewAction::make(), + Tables\Actions\EditAction::make()->visible(config('filament-locations.driver') !== 'json'), + Tables\Actions\DeleteAction::make()->visible(config('filament-locations.driver') !== 'json'), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ - Tables\Actions\DeleteBulkAction::make(), + Tables\Actions\DeleteBulkAction::make()->visible(config('filament-locations.driver') !== 'json'), ]), ]); } @@ -205,16 +203,20 @@ public static function table(Table $table): Table public static function getRelations(): array { return [ - RelationManagers\CitiesRelationManager::make() + RelationManagers\CitiesRelationManager::make(), ]; } public static function getPages(): array { - return [ + return config('filament-locations.driver') !== 'json' ? [ 'index' => Pages\ListCountries::route('/'), 'create' => Pages\CreateCountry::route('/create'), 'edit' => Pages\EditCountry::route('/{record}/edit'), + 'view' => Pages\ViewCountry::route('/{record}/show'), + ] : [ + 'index' => Pages\ListCountries::route('/'), + 'view' => Pages\ViewCountry::route('/{record}/show'), ]; } } diff --git a/src/Resources/CountryResource/Pages/CreateCountry.php b/src/Resources/CountryResource/Pages/CreateCountry.php index 95ef227..605fdd0 100644 --- a/src/Resources/CountryResource/Pages/CreateCountry.php +++ b/src/Resources/CountryResource/Pages/CreateCountry.php @@ -2,15 +2,14 @@ namespace TomatoPHP\FilamentLocations\Resources\CountryResource\Pages; -use TomatoPHP\FilamentLocations\Resources\CountryResource; -use Filament\Actions; use Filament\Resources\Pages\CreateRecord; +use TomatoPHP\FilamentLocations\Resources\CountryResource; class CreateCountry extends CreateRecord { protected static string $resource = CountryResource::class; - public function getTitle():string + public function getTitle(): string { return trans('filament-locations::messages.country.create'); } diff --git a/src/Resources/CountryResource/Pages/EditCountry.php b/src/Resources/CountryResource/Pages/EditCountry.php index ab01c68..6b761f4 100644 --- a/src/Resources/CountryResource/Pages/EditCountry.php +++ b/src/Resources/CountryResource/Pages/EditCountry.php @@ -2,15 +2,15 @@ namespace TomatoPHP\FilamentLocations\Resources\CountryResource\Pages; -use TomatoPHP\FilamentLocations\Resources\CountryResource; use Filament\Actions; use Filament\Resources\Pages\EditRecord; +use TomatoPHP\FilamentLocations\Resources\CountryResource; class EditCountry extends EditRecord { protected static string $resource = CountryResource::class; - public function getTitle():string + public function getTitle(): string { return trans('filament-locations::messages.country.edit'); } diff --git a/src/Resources/CountryResource/Pages/ListCountries.php b/src/Resources/CountryResource/Pages/ListCountries.php index d5f17e4..fab37ec 100644 --- a/src/Resources/CountryResource/Pages/ListCountries.php +++ b/src/Resources/CountryResource/Pages/ListCountries.php @@ -2,18 +2,17 @@ namespace TomatoPHP\FilamentLocations\Resources\CountryResource\Pages; -use Filament\Resources\Pages\ManageRecords; -use TomatoPHP\FilamentLocations\Resources\CountryResource; use Filament\Actions; -use Filament\Resources\Pages\ListRecords; +use Filament\Resources\Pages\ManageRecords; use Illuminate\Contracts\Pagination\Paginator; use Illuminate\Database\Eloquent\Builder; +use TomatoPHP\FilamentLocations\Resources\CountryResource; class ListCountries extends ManageRecords { protected static string $resource = CountryResource::class; - public function getTitle():string + public function getTitle(): string { return trans('filament-locations::messages.country.title'); } @@ -22,6 +21,7 @@ protected function getHeaderActions(): array { return [ Actions\CreateAction::make() + ->visible(config('filament-locations.driver') !== 'json') ->label(trans('filament-locations::messages.country.create')), ]; } diff --git a/src/Resources/CountryResource/Pages/ViewCountry.php b/src/Resources/CountryResource/Pages/ViewCountry.php index 4a4584a..8d7c0db 100644 --- a/src/Resources/CountryResource/Pages/ViewCountry.php +++ b/src/Resources/CountryResource/Pages/ViewCountry.php @@ -2,11 +2,8 @@ namespace TomatoPHP\FilamentLocations\Resources\CountryResource\Pages; -use Filament\Resources\Pages\ManageRecords; use Filament\Resources\Pages\ViewRecord; use TomatoPHP\FilamentLocations\Resources\CountryResource; -use Filament\Actions; -use Filament\Resources\Pages\ListRecords; class ViewCountry extends ViewRecord { diff --git a/src/Resources/CountryResource/RelationManagers/CitiesRelationManager.php b/src/Resources/CountryResource/RelationManagers/CitiesRelationManager.php index 7f79bd5..1871c11 100644 --- a/src/Resources/CountryResource/RelationManagers/CitiesRelationManager.php +++ b/src/Resources/CountryResource/RelationManagers/CitiesRelationManager.php @@ -7,11 +7,10 @@ use Filament\Resources\RelationManagers\RelationManager; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; -use Illuminate\Database\Eloquent\SoftDeletingScope; use TomatoPHP\FilamentLocations\Models\City; -use TomatoPHP\FilamentLocations\Resources\AreaResource\Pages\EditArea; +use TomatoPHP\FilamentLocations\Resources\CityResource\Pages\EditCity; +use TomatoPHP\FilamentLocations\Resources\CityResource\Pages\ViewCity; class CitiesRelationManager extends RelationManager { @@ -77,7 +76,7 @@ public function table(Table $table): Table ->label(trans('filament-locations::messages.country.form.updated_at')) ->dateTime() ->sortable() - ->toggleable(isToggledHiddenByDefault: true) + ->toggleable(isToggledHiddenByDefault: true), ]) ->headerActions([ Tables\Actions\CreateAction::make(), @@ -86,10 +85,14 @@ public function table(Table $table): Table // ]) ->actions([ + Tables\Actions\Action::make('view') + ->icon('heroicon-o-eye') + ->url(fn (City $record): string => ViewCity::getUrl(['record' => $record])), Tables\Actions\Action::make('edit') + ->visible(config('filament-locations.driver') !== 'json') ->label(trans('filament-locations::messages.city.edit')) ->icon('heroicon-o-pencil-square') - ->url(fn (City $record): string => route('filament.'.filament()->getCurrentPanel()->getId().'.resources.cities.edit', $record)), + ->url(fn (City $record): string => EditCity::getUrl(['record' => $record])), Tables\Actions\DeleteAction::make(), ]) ->bulkActions([ diff --git a/src/Resources/CurrencyResource.php b/src/Resources/CurrencyResource.php index 88affd2..15df483 100644 --- a/src/Resources/CurrencyResource.php +++ b/src/Resources/CurrencyResource.php @@ -2,16 +2,13 @@ namespace TomatoPHP\FilamentLocations\Resources; -use TomatoPHP\FilamentLocations\Resources\CurrencyResource\Pages; -use TomatoPHP\FilamentLocations\Resources\CurrencyResource\RelationManagers; -use TomatoPHP\FilamentLocations\Models\Currency; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use TomatoPHP\FilamentLocations\Models\Currency; +use TomatoPHP\FilamentLocations\Resources\CurrencyResource\Pages; class CurrencyResource extends Resource { @@ -24,12 +21,11 @@ public static function getNavigationGroup(): ?string return trans('filament-locations::messages.group'); } - public static function getNavigationLabel():string + public static function getNavigationLabel(): string { return trans('filament-locations::messages.currency.title'); } - public static function form(Form $form): Form { return $form @@ -93,12 +89,12 @@ public static function table(Table $table): Table // ]) ->actions([ - Tables\Actions\EditAction::make(), - Tables\Actions\DeleteAction::make(), + Tables\Actions\EditAction::make()->visible(config('filament-locations.driver') !== 'json'), + Tables\Actions\DeleteAction::make()->visible(config('filament-locations.driver') !== 'json'), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ - Tables\Actions\DeleteBulkAction::make(), + Tables\Actions\DeleteBulkAction::make()->visible(config('filament-locations.driver') !== 'json'), ]), ]); } @@ -113,7 +109,7 @@ public static function getRelations(): array public static function getPages(): array { return [ - 'index' => Pages\ListCurrencies::route('/') + 'index' => Pages\ListCurrencies::route('/'), ]; } } diff --git a/src/Resources/CurrencyResource/Pages/ListCurrencies.php b/src/Resources/CurrencyResource/Pages/ListCurrencies.php index 9b5edfb..fe91c07 100644 --- a/src/Resources/CurrencyResource/Pages/ListCurrencies.php +++ b/src/Resources/CurrencyResource/Pages/ListCurrencies.php @@ -2,13 +2,11 @@ namespace TomatoPHP\FilamentLocations\Resources\CurrencyResource\Pages; -use Filament\Resources\Pages\ManageRecords; -use Illuminate\Database\Eloquent\Model; -use TomatoPHP\FilamentLocations\Resources\CurrencyResource; use Filament\Actions; -use Filament\Resources\Pages\ListRecords; +use Filament\Resources\Pages\ManageRecords; use Illuminate\Contracts\Pagination\Paginator; use Illuminate\Database\Eloquent\Builder; +use TomatoPHP\FilamentLocations\Resources\CurrencyResource; class ListCurrencies extends ManageRecords { @@ -19,11 +17,12 @@ public function getTitle(): string return trans('filament-locations::messages.currency.title'); } - protected function getHeaderActions(): array { return [ - Actions\CreateAction::make()->label(trans('filament-locations::messages.currency.create')), + Actions\CreateAction::make() + ->visible(config('filament-locations.driver') !== 'json') + ->label(trans('filament-locations::messages.currency.create')), ]; } diff --git a/src/Resources/LanguageResource.php b/src/Resources/LanguageResource.php index d5f6380..eb0a6d7 100644 --- a/src/Resources/LanguageResource.php +++ b/src/Resources/LanguageResource.php @@ -2,16 +2,13 @@ namespace TomatoPHP\FilamentLocations\Resources; -use TomatoPHP\FilamentLocations\Resources\LanguageResource\Pages; -use TomatoPHP\FilamentLocations\Resources\LanguageResource\RelationManagers; -use TomatoPHP\FilamentLocations\Models\Language; use Filament\Forms; use Filament\Forms\Form; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; -use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; +use TomatoPHP\FilamentLocations\Models\Language; +use TomatoPHP\FilamentLocations\Resources\LanguageResource\Pages; class LanguageResource extends Resource { @@ -24,12 +21,11 @@ public static function getNavigationGroup(): ?string return trans('filament-locations::messages.group'); } - public static function getNavigationLabel():string + public static function getNavigationLabel(): string { return trans('filament-locations::messages.languages.title'); } - public static function form(Form $form): Form { return $form @@ -79,12 +75,12 @@ public static function table(Table $table): Table // ]) ->actions([ - Tables\Actions\EditAction::make(), - Tables\Actions\DeleteAction::make(), + Tables\Actions\EditAction::make()->visible(config('filament-locations.driver') !== 'json'), + Tables\Actions\DeleteAction::make()->visible(config('filament-locations.driver') !== 'json'), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ - Tables\Actions\DeleteBulkAction::make(), + Tables\Actions\DeleteBulkAction::make()->visible(config('filament-locations.driver') !== 'json'), ]), ]); } diff --git a/src/Resources/LanguageResource/Pages/ListLanguages.php b/src/Resources/LanguageResource/Pages/ListLanguages.php index 12cd96e..90a5969 100644 --- a/src/Resources/LanguageResource/Pages/ListLanguages.php +++ b/src/Resources/LanguageResource/Pages/ListLanguages.php @@ -2,29 +2,27 @@ namespace TomatoPHP\FilamentLocations\Resources\LanguageResource\Pages; -use Filament\Resources\Pages\ManageRecords; -use Illuminate\Database\Eloquent\Model; -use TomatoPHP\FilamentLocations\Resources\LanguageResource; use Filament\Actions; -use Filament\Resources\Pages\ListRecords; +use Filament\Resources\Pages\ManageRecords; use Illuminate\Contracts\Pagination\Paginator; use Illuminate\Database\Eloquent\Builder; +use TomatoPHP\FilamentLocations\Resources\LanguageResource; class ListLanguages extends ManageRecords { protected static string $resource = LanguageResource::class; - public function getTitle(): string { return trans('filament-locations::messages.languages.title'); } - protected function getHeaderActions(): array { return [ - Actions\CreateAction::make()->label(trans('filament-locations::messages.languages.create')) + Actions\CreateAction::make() + ->visible(config('filament-locations.driver') !== 'json') + ->label(trans('filament-locations::messages.languages.create')), ]; } diff --git a/src/Resources/LocationResource.php b/src/Resources/LocationResource.php index 140c965..e029040 100644 --- a/src/Resources/LocationResource.php +++ b/src/Resources/LocationResource.php @@ -2,20 +2,16 @@ namespace TomatoPHP\FilamentLocations\Resources; -use Filament\Forms\Components\Select; -use Filament\Forms\Get; -use TomatoPHP\FilamentLocations\Fields\LocationSelect; -use TomatoPHP\FilamentLocations\Resources\LocationResource\Pages; -use TomatoPHP\FilamentLocations\Resources\LocationResource\RelationManagers; -use TomatoPHP\FilamentLocations\Models\Location; use Filament\Forms; +use Filament\Forms\Components\Select; use Filament\Forms\Form; +use Filament\Forms\Get; use Filament\Resources\Resource; use Filament\Tables; use Filament\Tables\Table; use Illuminate\Database\Eloquent\Builder; -use Illuminate\Database\Eloquent\SoftDeletingScope; -use TomatoPHP\FilamentLocations\Views\LocationSelector; +use TomatoPHP\FilamentLocations\Models\Location; +use TomatoPHP\FilamentLocations\Resources\LocationResource\Pages; class LocationResource extends Resource { @@ -28,12 +24,11 @@ public static function getNavigationGroup(): ?string return trans('filament-locations::messages.group'); } - public static function getNavigationLabel():string + public static function getNavigationLabel(): string { return trans('filament-locations::messages.location.title'); } - public static function form(Form $form): Form { return $form @@ -47,7 +42,7 @@ public static function form(Form $form): Form ->live(), Select::make('city_id') ->label(trans('filament-locations::messages.location.form.city_id')) - ->options(function (Get $get){ + ->options(function (Get $get) { return \TomatoPHP\FilamentLocations\Models\City::where('country_id', $get('country_id')) ->get() ->pluck('name', 'id') @@ -57,7 +52,7 @@ public static function form(Form $form): Form ->live(), Select::make('area_id') ->label(trans('filament-locations::messages.location.form.area_id')) - ->options(function (Get $get){ + ->options(function (Get $get) { return \TomatoPHP\FilamentLocations\Models\Area::where('city_id', $get('city_id')) ->get() ->pluck('name', 'id') @@ -145,7 +140,7 @@ public static function table(Table $table): Table ->live(), Select::make('city_id') ->label(trans('filament-locations::messages.location.form.city_id')) - ->options(function (Get $get){ + ->options(function (Get $get) { return \TomatoPHP\FilamentLocations\Models\City::where('country_id', $get('country_id')) ->get() ->pluck('name', 'id') @@ -155,7 +150,7 @@ public static function table(Table $table): Table ->live(), Select::make('area_id') ->label(trans('filament-locations::messages.location.form.area_id')) - ->options(function (Get $get){ + ->options(function (Get $get) { return \TomatoPHP\FilamentLocations\Models\Area::where('city_id', $get('city_id')) ->get() ->pluck('name', 'id') @@ -164,15 +159,18 @@ public static function table(Table $table): Table ->searchable(), ]) ->query(function (Builder $query, array $data): Builder { - if(isset($data['country_id']) && !empty($data['country_id'])) + if (isset($data['country_id']) && ! empty($data['country_id'])) { $query->where('country_id', $data['country_id']); - if(isset($data['city_id']) && !empty($data['city_id'])) + } + if (isset($data['city_id']) && ! empty($data['city_id'])) { $query->where('city_id', $data['city_id']); - if(isset($data['area_id']) && !empty($data['area_id'])) + } + if (isset($data['area_id']) && ! empty($data['area_id'])) { $query->where('area_id', $data['area_id']); + } return $query; - }) + }), ]) ->actions([ Tables\Actions\ViewAction::make(), diff --git a/src/Resources/LocationResource/Pages/ListLocations.php b/src/Resources/LocationResource/Pages/ListLocations.php index 2fcf82d..93d5f32 100644 --- a/src/Resources/LocationResource/Pages/ListLocations.php +++ b/src/Resources/LocationResource/Pages/ListLocations.php @@ -2,12 +2,11 @@ namespace TomatoPHP\FilamentLocations\Resources\LocationResource\Pages; -use Filament\Resources\Pages\ManageRecords; -use TomatoPHP\FilamentLocations\Resources\LocationResource; use Filament\Actions; -use Filament\Resources\Pages\ListRecords; +use Filament\Resources\Pages\ManageRecords; use Illuminate\Contracts\Pagination\Paginator; use Illuminate\Database\Eloquent\Builder; +use TomatoPHP\FilamentLocations\Resources\LocationResource; class ListLocations extends ManageRecords { @@ -18,7 +17,6 @@ public function getTitle(): string return trans('filament-locations::messages.location.title'); } - protected function getHeaderActions(): array { return [ diff --git a/src/Settings/LocationsSettings.php b/src/Settings/LocationsSettings.php new file mode 100644 index 0000000..28ae4ec --- /dev/null +++ b/src/Settings/LocationsSettings.php @@ -0,0 +1,23 @@ +connection($connection); + } + + public function getConnectionName() + { + return config('filament-locations.driver') === 'json' ? static::class : $this->connection; + } + + public static function bootSushi() + { + if (config('filament-locations.driver') === 'json') { + $instance = (new self); + + $cachePath = $instance->sushiCachePath(); + $dataPath = $instance->sushiCacheReferencePath(); + + $states = [ + 'cache-file-found-and-up-to-date' => function () use ($cachePath) { + static::setSqliteConnection($cachePath); + }, + 'cache-file-not-found-or-stale' => function () use ($cachePath, $dataPath, $instance) { + static::cacheFileNotFoundOrStale($cachePath, $dataPath, $instance); + }, + 'no-caching-capabilities' => function () use ($instance) { + static::setSqliteConnection(':memory:'); + + $instance->migrate(); + }, + ]; + + switch (true) { + case ! $instance->sushiShouldCache(): + $states['no-caching-capabilities'](); + + break; + + case file_exists($cachePath) && filemtime($dataPath) <= filemtime($cachePath): + $states['cache-file-found-and-up-to-date'](); + + break; + + case file_exists($instance->sushiCacheDirectory()) && is_writable($instance->sushiCacheDirectory()): + $states['cache-file-not-found-or-stale'](); + + break; + + default: + $states['no-caching-capabilities'](); + + break; + } + } + + } +} diff --git a/src/helpers.php b/src/helpers.php new file mode 100644 index 0000000..ec4ca19 --- /dev/null +++ b/src/helpers.php @@ -0,0 +1,22 @@ +where('currency', setting('site_currency'))->first(); + if ($getDollar) { + return '' . number_format($total, 2) . "$getDollar->currency_symbol"; + } else { + return false; + } + } + } +} catch (\Exception $e) { + if (! function_exists('dollar')) { + function dollar(float | int $total): false | string + { + return number_format($total, 2); + } + } +} diff --git a/testbench.yaml b/testbench.yaml new file mode 100644 index 0000000..222415b --- /dev/null +++ b/testbench.yaml @@ -0,0 +1,30 @@ +providers: + - BladeUI\Icons\BladeIconsServiceProvider + - BladeUI\Heroicons\BladeHeroiconsServiceProvider + - Filament\Actions\ActionsServiceProvider + - Filament\FilamentServiceProvider + - Filament\Forms\FormsServiceProvider + - Filament\Infolists\InfolistsServiceProvider + - Filament\Notifications\NotificationsServiceProvider + - Filament\Support\SupportServiceProvider + - Filament\Tables\TablesServiceProvider + - Filament\Widgets\WidgetsServiceProvider + - RyanChandler\BladeCaptureDirective\BladeCaptureDirectiveServiceProvider + - Filament\SpatieLaravelSettingsPluginServiceProvider + - TomatoPHP\FilamentSettingsHub\FilamentSettingsHubServiceProvider + - TomatoPHP\FilamentLocations\FilamentLocationsServiceProvider + - TomatoPHP\FilamentLocations\Tests\AdminPanelProvider +seeders: + - TomatoPHP\FilamentLocations\Tests\Database\Seeders\LocationSeed +env: + - FILAMENT_LOCATIONS_DRIVER=database +workbench: + welcome: true + install: true + start: / + guard: testing + discovers: + web: true + api: false + commands: false + views: true diff --git a/tests/Feature/.gitkeep b/tests/Feature/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/Pest.php b/tests/Pest.php new file mode 100644 index 0000000..138e94c --- /dev/null +++ b/tests/Pest.php @@ -0,0 +1,5 @@ +in(__DIR__); diff --git a/tests/Unit/.gitkeep b/tests/Unit/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/database/factories/UserFactory.php b/tests/database/factories/UserFactory.php new file mode 100644 index 0000000..371e3fe --- /dev/null +++ b/tests/database/factories/UserFactory.php @@ -0,0 +1,23 @@ + $this->faker->name(), + 'email' => $this->faker->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + } +} diff --git a/tests/database/seeder/LocationSeed.php b/tests/database/seeder/LocationSeed.php new file mode 100644 index 0000000..40b20b6 --- /dev/null +++ b/tests/database/seeder/LocationSeed.php @@ -0,0 +1,62 @@ +insert($country); + } + } + + if ($cityFileExists) { + $cities = json_decode(file_get_contents($cityJson), true); + foreach ($cities as $city) { + DB::table('cities')->insert($city); + } + } + + if ($areaFileExists) { + $areas = json_decode(file_get_contents($areaJson), true); + foreach ($areas as $area) { + DB::table('areas')->insert($area); + } + } + + if ($currencyFileExists) { + $currencies = json_decode(file_get_contents($currencyJson), true); + foreach ($currencies as $currency) { + DB::table('currencies')->insert($currency); + } + } + + if ($languageFileExists) { + $languages = json_decode(file_get_contents($languageJson), true); + foreach ($languages as $language) { + DB::table('languages')->insert($language); + } + } + } +} diff --git a/tests/database/seeder/UserSeed.php b/tests/database/seeder/UserSeed.php new file mode 100644 index 0000000..f86dd25 --- /dev/null +++ b/tests/database/seeder/UserSeed.php @@ -0,0 +1,22 @@ +create([ + 'name' => 'Fady Mondy', + 'email' => 'info@3x1.io', + 'password' => bcrypt('password'), + 'email_verified_at' => now(), + ]); + } +} diff --git a/tests/src/AdminPanelProvider.php b/tests/src/AdminPanelProvider.php new file mode 100644 index 0000000..4476a5e --- /dev/null +++ b/tests/src/AdminPanelProvider.php @@ -0,0 +1,54 @@ +default() + ->id('admin') + ->path('admin') + ->login() + ->pages([ + Pages\Dashboard::class, + ]) + ->plugin( + FilamentSettingsHubPlugin::make() + ) + ->plugin( + FilamentLocationsPlugin::make() + ) + ->middleware([ + EncryptCookies::class, + AddQueuedCookiesToResponse::class, + StartSession::class, + AuthenticateSession::class, + ShareErrorsFromSession::class, + VerifyCsrfToken::class, + SubstituteBindings::class, + DisableBladeIconComponents::class, + DispatchServingFilamentEvent::class, + ]) + ->authMiddleware([ + Authenticate::class, + ]); + } +} diff --git a/tests/src/DebugTest.php b/tests/src/DebugTest.php new file mode 100644 index 0000000..3916b1d --- /dev/null +++ b/tests/src/DebugTest.php @@ -0,0 +1,5 @@ +each->not->toBeUsed(); +}); diff --git a/tests/src/LocationSettingsPageTest.php b/tests/src/LocationSettingsPageTest.php new file mode 100644 index 0000000..b6d708a --- /dev/null +++ b/tests/src/LocationSettingsPageTest.php @@ -0,0 +1,83 @@ +create()); +}); + +function checkLocationSettingExists($setting, $name): void +{ + assertDatabaseHas(\TomatoPHP\FilamentSettingsHub\Models\Setting::class, [ + 'name' => $name, + 'group' => 'locations', + 'payload' => is_null($setting->{$name}) ? json_encode(null) : json_encode($setting->{$name}), + ]); +} + +it('can render location settings page', function () { + get(\TomatoPHP\FilamentLocations\Pages\LocationSettings::getUrl())->assertSuccessful(); +}); + +// +//it('has site site_address exists', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// checkLocationSettingExists($siteSettings, 'site_address'); +//}); +// +//it('has site site_phone_code exists', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// checkLocationSettingExists($siteSettings, 'site_phone_code'); +//}); +// +//it('has site site_location exists', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// checkLocationSettingExists($siteSettings, 'site_location'); +//}); +// +//it('has site site_currency exists', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// checkLocationSettingExists($siteSettings, 'site_currency'); +//}); +// +//it('has site site_language exists', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// checkLocationSettingExists($siteSettings, 'site_language'); +//}); +// +//it('can render location settings page resource', function () { +// get(\TomatoPHP\FilamentLocations\Pages\LocationSettings::getUrl())->assertSuccessful(); +//}); +// +//it('can validate location settings before save', function () { +// +// livewire(\TomatoPHP\FilamentLocations\Pages\LocationSettings::class) +// ->fillForm([ +// 'site_currency' => null, +// ]) +// ->call('save') +// ->assertHasFormErrors([ +// 'site_currency' => 'required', +// ]); +//}); +// +//it('can save site settings', function () { +// $siteSettings = new \TomatoPHP\FilamentLocations\Settings\LocationsSettings; +// $data = $siteSettings->toArray(); +// $data['site_currency'] = 'USD'; +// +// livewire(\TomatoPHP\FilamentLocations\Pages\LocationSettings::class) +// ->fillForm($data) +// ->call('save'); +// +// assertDatabaseHas(\TomatoPHP\FilamentSettingsHub\Models\Setting::class, [ +// 'name' => 'site_currency', +// 'group' => 'locations', +// 'payload' => json_encode('USD'), +// ]); +//}); diff --git a/tests/src/Models/User.php b/tests/src/Models/User.php new file mode 100644 index 0000000..61efdae --- /dev/null +++ b/tests/src/Models/User.php @@ -0,0 +1,34 @@ +plugins([ + FilamentLocationsPlugin::make(), + ]); + + expect($panel->getPlugin('filament-locations')) + ->not() + ->toThrow(Exception::class); +}); diff --git a/tests/src/TestCase.php b/tests/src/TestCase.php new file mode 100644 index 0000000..1a5a64c --- /dev/null +++ b/tests/src/TestCase.php @@ -0,0 +1,72 @@ +loadMigrationsFrom(__DIR__ . '/../../database/migrations'); + $this->loadMigrationsFrom(__DIR__ . '/../../database/sql-migrations'); + } + + public function getEnvironmentSetUp($app): void + { + $app['config']->set('filament-users.model', User::class); + $app['config']->set('filament-locations.driver', 'database'); + + $app['config']->set('view.paths', [ + ...$app['config']->get('view.paths'), + __DIR__ . '/../resources/views', + ]); + } +} diff --git a/tests/src/TestDollarGlobalHelper.php b/tests/src/TestDollarGlobalHelper.php new file mode 100644 index 0000000..dd715ae --- /dev/null +++ b/tests/src/TestDollarGlobalHelper.php @@ -0,0 +1,17 @@ +name = 'United States'; + $currency->code = 'EG'; + $currency->iso3 = 'EGY'; + $currency->phone = '02'; + $currency->currency = 'EGP'; + $currency->currency_symbol = 'ج.م'; + $currency->save(); + $setting = dollar(2500); + + assertEquals('' . number_format(2500, 2) . '' . $currency->currency_symbol . '', $setting); +});